Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
vm: kill some useless static functions
[simgrid.git] / src / simix / smx_vm.cpp
1 /* Copyright (c) 2007-2015. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "mc/mc.h"
7 #include "simgrid/s4u/VirtualMachine.hpp"
8 #include "smx_private.h"
9 #include "src/plugins/vm/VirtualMachineImpl.hpp"
10 #include "src/plugins/vm/VmHostExt.hpp"
11 #include "src/surf/HostImpl.hpp"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_vm, simix, "Logging specific to SIMIX Virtual Machines");
14
15 /**
16  * @brief Function to suspend a SIMIX VM host. This function stops the execution of the
17  * VM. All the processes on this VM will pause. The state of the VM is
18  * preserved on memory. We can later resume it again.
19  *
20  * @param vm the vm host to suspend (a sg_host_t)
21  */
22 void SIMIX_vm_suspend(sg_host_t vm, smx_actor_t issuer)
23 {
24   if (static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->getState() != SURF_VM_STATE_RUNNING)
25     THROWF(vm_error, 0, "VM(%s) is not running", vm->name().c_str());
26
27   XBT_DEBUG("suspend VM(%s), where %d processes exist", vm->name().c_str(), xbt_swag_size(sg_host_simix(vm)->process_list));
28
29   /* jump to vm_ws_suspend. The state will be set. */
30   static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->suspend();
31
32   smx_actor_t smx_process, smx_process_safe;
33   xbt_swag_foreach_safe(smx_process, smx_process_safe, sg_host_simix(vm)->process_list) {
34     XBT_DEBUG("suspend %s", smx_process->name.c_str());
35     SIMIX_process_suspend(smx_process, issuer);
36   }
37
38   XBT_DEBUG("suspend all processes on the VM done done");
39 }
40
41 void simcall_HANDLER_vm_suspend(smx_simcall_t simcall, sg_host_t vm)
42 {
43   xbt_assert(simcall->issuer->host != vm, "cannot suspend the VM where I run");
44
45   SIMIX_vm_suspend(vm, simcall->issuer);
46
47   XBT_DEBUG("simcall_HANDLER_vm_suspend done");
48 }
49
50
51 /**
52  * @brief Function to resume a SIMIX VM host. This function restart the execution of the
53  * VM. All the processes on this VM will run again.
54  *
55  * @param vm the vm host to resume (a sg_host_t)
56  */
57 void SIMIX_vm_resume(sg_host_t vm)
58 {
59   if (static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->getState() != SURF_VM_STATE_SUSPENDED)
60     THROWF(vm_error, 0, "VM(%s) was not suspended", vm->name().c_str());
61
62   XBT_DEBUG("resume VM(%s), where %d processes exist",
63       vm->name().c_str(), xbt_swag_size(sg_host_simix(vm)->process_list));
64
65   /* jump to vm_ws_resume() */
66   static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->resume();
67
68   smx_actor_t smx_process, smx_process_safe;
69   xbt_swag_foreach_safe(smx_process, smx_process_safe, sg_host_simix(vm)->process_list) {
70     XBT_DEBUG("resume %s", smx_process->name.c_str());
71     SIMIX_process_resume(smx_process);
72   }
73 }
74
75 /**
76  * @brief Function to save a SIMIX VM host.
77  * This function is the same as vm_suspend, but the state of the VM is saved to the disk, and not preserved on memory.
78  * We can later restore it again.
79  *
80  * @param vm the vm host to save (a sg_host_t)
81  */
82 void SIMIX_vm_save(sg_host_t vm, smx_actor_t issuer)
83 {
84   const char *name = sg_host_get_name(vm);
85
86   if (static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->getState() != SURF_VM_STATE_RUNNING)
87     THROWF(vm_error, 0, "VM(%s) is not running", name);
88
89   XBT_DEBUG("save VM(%s), where %d processes exist", name, xbt_swag_size(sg_host_simix(vm)->process_list));
90
91   /* jump to vm_ws_save() */
92   static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->save();
93
94   smx_actor_t smx_process, smx_process_safe;
95   xbt_swag_foreach_safe(smx_process, smx_process_safe, sg_host_simix(vm)->process_list) {
96     XBT_DEBUG("suspend %s", smx_process->name.c_str());
97     SIMIX_process_suspend(smx_process, issuer);
98   }
99 }
100
101 void simcall_HANDLER_vm_save(smx_simcall_t simcall, sg_host_t vm)
102 {
103   SIMIX_vm_save(vm, simcall->issuer);
104 }
105
106 /**
107  * @brief Function to shutdown a SIMIX VM host. This function powers off the
108  * VM. All the processes on this VM will be killed. But, the state of the VM is
109  * preserved on memory. We can later start it again.
110  *
111  * @param vm the VM to shutdown (a sg_host_t)
112  */
113 void SIMIX_vm_shutdown(sg_host_t vm, smx_actor_t issuer)
114 {
115   if (static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->getState() != SURF_VM_STATE_RUNNING)
116     THROWF(vm_error, 0, "VM(%s) is not running", vm->name().c_str());
117
118   XBT_DEBUG("shutdown VM %s, that contains %d processes",
119       vm->name().c_str(),xbt_swag_size(sg_host_simix(vm)->process_list));
120
121   smx_actor_t smx_process, smx_process_safe;
122   xbt_swag_foreach_safe(smx_process, smx_process_safe, sg_host_simix(vm)->process_list) {
123     XBT_DEBUG("kill %s", smx_process->name.c_str());
124     SIMIX_process_kill(smx_process, issuer);
125   }
126
127   /* FIXME: we may have to do something at the surf layer, e.g., vcpu action */
128   static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->setState(SURF_VM_STATE_CREATED);
129 }
130
131 void simcall_HANDLER_vm_shutdown(smx_simcall_t simcall, sg_host_t vm)
132 {
133   SIMIX_vm_shutdown(vm, simcall->issuer);
134 }