X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4e0879e02f32153ee997c27cbe0255309a2668db..ceeab8813fc0aff89562202f64c29a808e84cb9a:/src/surf/virtual_machine.hpp diff --git a/src/surf/virtual_machine.hpp b/src/surf/virtual_machine.hpp index fff482a981..26f37117a1 100644 --- a/src/surf/virtual_machine.hpp +++ b/src/surf/virtual_machine.hpp @@ -31,17 +31,17 @@ class XBT_PRIVATE VirtualMachine; /** @ingroup SURF_callbacks * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::surf::signal VMCreatedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal VMCreatedCallbacks; /** @ingroup SURF_callbacks * @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::surf::signal VMDestructedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal VMDestructedCallbacks; /** @ingroup SURF_callbacks * @brief Callbacks after VM State changes. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::surf::signal VMStateChangedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal VMStateChangedCallbacks; /************ * Resource * @@ -59,17 +59,14 @@ public: * @param model VMModel associated to this VM * @param name The name of the VM * @param props Dictionary of properties associated to this VM - * @param netElm The RoutingEdge associated to this VM - * @param cpu The Cpu associated to this VM + * @param host The host */ - VirtualMachine(simgrid::surf::Model *model, const char *name, xbt_dict_t props, - simgrid::Host *host); + VirtualMachine(simgrid::surf::HostModel *model, const char *name, xbt_dict_t props, + simgrid::s4u::Host *host); /** @brief Destructor */ ~VirtualMachine(); - void setState(e_surf_resource_state_t state); - /** @brief Suspend the VM */ virtual void suspend()=0; @@ -93,8 +90,18 @@ public: /* The vm object of the lower layer */ CpuAction *p_action; - simgrid::Host *p_hostPM; - e_surf_vm_state_t p_currentState; + simgrid::s4u::Host *p_hostPM; + + void turnOn() override; + void turnOff() override; + +public: + e_surf_vm_state_t getState(); + void setState(e_surf_vm_state_t state); +protected: + e_surf_vm_state_t p_vm_state = SURF_VM_STATE_CREATED; + + public: boost::intrusive::list_member_hook<> vm_hook; };