X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/16bbb8a8212497d9c44c81333ed2c0e689e0c5af..f5a24e63c4711950e12735bda603ed31fd8403a7:/src/surf/virtual_machine.hpp diff --git a/src/surf/virtual_machine.hpp b/src/surf/virtual_machine.hpp index 21c48969d0..9e5452fdff 100644 --- a/src/surf/virtual_machine.hpp +++ b/src/surf/virtual_machine.hpp @@ -4,9 +4,12 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +#include +#include + #include -#include "host_interface.hpp" +#include "src/surf/HostImpl.hpp" #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ @@ -31,17 +34,17 @@ class XBT_PRIVATE VirtualMachine; /** @ingroup SURF_callbacks * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::xbt::signal VMCreatedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal onVmCreation; /** @ingroup SURF_callbacks * @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::xbt::signal VMDestructedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal onVmDestruction; /** @ingroup SURF_callbacks * @brief Callbacks after VM State changes. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::xbt::signal VMStateChangedCallbacks; +extern XBT_PRIVATE simgrid::xbt::signal onVmStateChange; /************ * Resource * @@ -51,59 +54,43 @@ extern XBT_PRIVATE simgrid::xbt::signal VM * @brief SURF VM interface class * @details A VM represent a virtual machine */ -class VirtualMachine : public Host { +class VirtualMachine : public HostImpl { public: - /** - * @brief Constructor - * - * @param model VMModel associated to this VM - * @param name The name of the VM - * @param props Dictionary of properties associated to this VM - * @param host The host - */ - VirtualMachine(simgrid::surf::HostModel *model, const char *name, xbt_dict_t props, - simgrid::s4u::Host *host); - - /** @brief Destructor */ + VirtualMachine(simgrid::surf::HostModel *model, const char *name, simgrid::s4u::Host *host); ~VirtualMachine(); /** @brief Suspend the VM */ - virtual void suspend()=0; + virtual void suspend(); /** @brief Resume the VM */ - virtual void resume()=0; + virtual void resume(); /** @brief Save the VM (Not yet implemented) */ - virtual void save()=0; + virtual void save(); /** @brief Restore the VM (Not yet implemented) */ - virtual void restore()=0; + virtual void restore(); /** @brief Migrate the VM to the destination host */ - virtual void migrate(sg_host_t dest_PM)=0; + virtual void migrate(sg_host_t dest_PM); /** @brief Get the physical machine hosting the VM */ sg_host_t getPm(); - virtual void setBound(double bound)=0; - virtual void setAffinity(Cpu *cpu, unsigned long mask)=0; + virtual void setBound(double bound); /* The vm object of the lower layer */ - CpuAction *p_action; - simgrid::s4u::Host *p_hostPM; - - void turnOn() override; - void turnOff() override; + CpuAction *action_ = nullptr; +protected: + simgrid::s4u::Host *hostPM_; 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; - + static std::deque allVms_; -public: - boost::intrusive::list_member_hook<> vm_hook; +protected: + e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; }; /********* @@ -115,23 +102,18 @@ public: */ class VMModel : public HostModel { public: - VMModel() :HostModel(){} - ~VMModel(){}; - /** * @brief Create a new VM * * @param name The name of the new VM * @param host_PM The real machine hosting the VM - * */ - virtual VirtualMachine *createVM(const char *name, sg_host_t host_PM)=0; - void adjustWeightOfDummyCpuActions() {}; + s4u::Host *createVM(const char *name, sg_host_t host_PM); + void adjustWeightOfDummyCpuActions() override {}; + + double nextOccuringEvent(double now) override; + void updateActionsState(double /*now*/, double /*delta*/) override {}; - typedef boost::intrusive::member_hook< - VirtualMachine, boost::intrusive::list_member_hook<>, &VirtualMachine::vm_hook> VmOptions; - typedef boost::intrusive::list > vm_list_t; - static vm_list_t ws_vms; }; }