Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add vm_resume and fix minor erros
[simgrid.git] / src / simix / smx_vm.c
1 /* Copyright (c) 2007-2012. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "smx_private.h"
8 #include "xbt/sysdep.h"
9 #include "xbt/log.h"
10 #include "xbt/dict.h"
11 #include "mc/mc.h"
12
13 //If you need to log some stuffs, just uncomment these two lines and uses XBT_DEBUG for instance
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_vm, simix, "Logging specific to SIMIX (vms)");
15
16 /* **** create a VM **** */
17
18 /**
19  * \brief Internal function to create a SIMIX host.
20  * \param name name of the host to create
21  * \param data some user data (may be NULL)
22  */
23 smx_host_t SIMIX_vm_create(const char *name, smx_host_t ind_phys_host)
24 {
25
26   smx_host_priv_t smx_host = xbt_new0(s_smx_host_priv_t, 1);
27   s_smx_process_t proc;
28
29   // TODO check why we do not have any VM here and why we have the host_proc_hookup  ?
30
31   /* Host structure */
32   smx_host->data = NULL;
33   smx_host->process_list =
34       xbt_swag_new(xbt_swag_offset(proc, host_proc_hookup));
35
36   /* Update global variables */
37   xbt_lib_set(host_lib,name,SIMIX_HOST_LEVEL,smx_host);
38
39   /* Create surf associated resource */
40   // TODO change phys_host into the right workstation surf model
41   surf_vm_workstation_model->extension.vm_workstation.create(name, ind_phys_host);
42
43   return xbt_lib_get_elm_or_null(host_lib, name);
44 }
45
46
47 smx_host_t SIMIX_pre_vm_create(smx_simcall_t simcall, const char *name, smx_host_t ind_phys_host){
48    return SIMIX_vm_create(name, ind_phys_host);
49 }
50
51
52 /* **** start a VM **** */
53 int __can_be_started(smx_host_t vm){
54         // TODO add checking code related to overcommitment or not.
55         return 1;
56 }
57 void SIMIX_vm_start(smx_host_t ind_vm){
58
59   //TODO only start the VM if you can
60   if (can_be_started(ind_vm))
61           SIMIX_set_vm_state(ind_vm, msg_vm_state_running);
62   else
63           THROWF(vm_error, 0, "The VM %s cannot be started", SIMIX_host_get_name(ind_vm));
64 }
65
66 void SIMIX_pre_vm_start(smx_simcall_t simcall, smx_host_t ind_vm){
67    SIMIX_vm_start(ind_vm);
68 }
69
70 /* ***** set/get state of a VM ***** */
71 void SIMIX_set_vm_state(smx_host_t ind_vm, int state){
72         surf_vm_workstation_model->extension.vm_workstation.set_state(ind_vm, state);
73 }
74 void SIMIX_prev_set_vm_state(smx_host_t ind_vm, int state){
75         SIMIX_set_vm_state(ind_vm, state);
76 }
77
78 int SIMIX_get_vm_state(smx_host_t ind_vm){
79  return surf_vm_workstation_model->extension.vm_workstation.get_state(ind_vm);
80 }
81 int SIMIX_pre_vm_state(smx_host_t ind_vm){
82         return SIMIX_get_vm_state(ind_vm);
83 }
84
85 /**
86  * \brief Function to suspend a SIMIX VM host. This function stops the exection of the
87  * VM. All the processes on this VM will pause. The state of the VM is
88  * perserved. We can later resume it again.
89  *
90  * \param host the vm host to suspend (a smx_host_t)
91  */
92 void SIMIX_vm_suspend(smx_host_t ind_vm)
93 {
94   /* TODO: check state */
95
96   XBT_DEBUG("%lu processes in the VM", xbt_swag_size(SIMIX_host_priv(ind_vm)->process_list));
97
98   smx_process_t smx_process, smx_process_safe;
99   xbt_swag_foreach_safe(smx_process, smx_process_safe, SIMIX_host_priv(ind_vm)->process_list) {
100          XBT_DEBUG("suspend %s", SIMIX_host_get_name(ind_vm));
101          /* FIXME: calling a simcall from the SIMIX layer is strange. */
102          simcall_process_suspend(smx_process);
103   }
104
105   /* TODO: Using the variable of the MSG layer is not clean. */
106   SIMIX_set_vm_state(ind_vm, msg_vm_state_suspended);
107 }
108
109 void SIMIX_pre_vm_suspend(smx_simcall_t simcall, smx_host_t ind_vm){
110    SIMIX_vm_suspend(ind_vm);
111 }
112
113 /**
114  * \brief Function to resume a SIMIX VM host. This function restart the execution of the
115  * VM. All the processes on this VM will run again. 
116  *
117  * \param host the vm host to resume (a smx_host_t)
118  */
119 void SIMIX_vm_resume(smx_host_t ind_vm)
120 {
121   /* TODO: check state */
122
123   XBT_DEBUG("%lu processes in the VM", xbt_swag_size(SIMIX_host_priv(ind_vm)->process_list));
124
125   smx_process_t smx_process, smx_process_safe;
126   xbt_swag_foreach_safe(smx_process, smx_process_safe, SIMIX_host_priv(ind_vm)->process_list) {
127          XBT_DEBUG("resume %s", SIMIX_host_get_name(ind_vm));
128          /* FIXME: calling a simcall from the SIMIX layer is strange. */
129          simcall_process_resume(smx_process);
130   }
131
132   /* TODO: Using the variable of the MSG layer is not clean. */
133   SIMIX_set_vm_state(ind_vm, msg_vm_state_resumeed);
134 }
135
136 void SIMIX_pre_vm_resume(smx_simcall_t simcall, smx_host_t ind_vm){
137    SIMIX_vm_resume(ind_vm);
138 }
139
140 /**
141  * \brief Function to shutdown a SIMIX VM host. This function powers off the
142  * VM. All the processes on this VM will be killed. But, the state of the VM is
143  * perserved. We can later start it again.
144  *
145  * \param host the vm host to shutdown (a smx_host_t)
146  */
147 void SIMIX_vm_shutdown(smx_host_t ind_vm, smx_process_t issuer)
148 {
149   /* TODO: check state */
150
151   XBT_DEBUG("%lu processes in the VM", xbt_swag_size(SIMIX_host_priv(ind_vm)->process_list));
152
153   smx_process_t smx_process, smx_process_safe;
154   xbt_swag_foreach_safe(smx_process, smx_process_safe, SIMIX_host_priv(ind_vm)->process_list) {
155          XBT_DEBUG("kill %s", SIMIX_host_get_name(ind_vm));
156
157          SIMIX_process_kill(smx_process, issuer);
158   }
159
160   /* TODO: Using the variable of the MSG layer is not clean. */
161   SIMIX_set_vm_state(ind_vm, msg_vm_state_sleeping);
162 }
163
164 void SIMIX_pre_vm_shutdown(smx_simcall_t simcall, smx_host_t ind_vm){
165    SIMIX_vm_shutdown(ind_vm, simcall->issuer);
166 }
167
168 /**
169  * \brief Function to destroy a SIMIX VM host.
170  *
171  * \param host the vm host to destroy (a smx_host_t)
172  */
173 void SIMIX_vm_destroy(smx_host_t ind_vm)
174 {
175   /* this code basically performs a similar thing like SIMIX_host_destroy() */
176
177   xbt_assert((ind_vm != NULL), "Invalid parameters");
178   const char *hostname = SIMIX_host_get_name(ind_vm);
179
180   smx_host_priv_t host_priv = SIMIX_host_priv(ind_vm);
181
182   /* this will call the registered callback function, i.e., SIMIX_host_destroy().  */
183   xbt_lib_unset(host_lib, hostname, SIMIX_HOST_LEVEL);
184
185   /* jump to vm_ws_destroy(). The surf level resource will be freed. */
186   surf_vm_workstation_model->extension.vm_workstation.destroy(ind_vm);
187 }
188
189 void SIMIX_pre_vm_destroy(smx_simcall_t simcall, smx_host_t ind_vm){
190    SIMIX_vm_destroy(ind_vm);
191 }