X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6badbbf58554a35b03f58509b0b18cf606c38f5e..e5a5b0f6ee35cb592f9345a9dafa0e29df8477ef:/src/surf/virtual_machine.hpp diff --git a/src/surf/virtual_machine.hpp b/src/surf/virtual_machine.hpp index 7b78d6ae7e..c69a11ca16 100644 --- a/src/surf/virtual_machine.hpp +++ b/src/surf/virtual_machine.hpp @@ -4,9 +4,11 @@ /* 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 "host_interface.hpp" +#include "src/surf/HostImpl.hpp" #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ @@ -31,17 +33,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 * @@ -51,21 +53,9 @@ extern XBT_PRIVATE simgrid::surf::signal V * @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 netElm The RoutingEdge associated to this VM - * @param cpu The Cpu associated to this VM - */ - VirtualMachine(simgrid::surf::Model *model, const char *name, xbt_dict_t props, - simgrid::Host *host); - - /** @brief Destructor */ + VirtualMachine(simgrid::surf::HostModel *model, const char *name, simgrid::s4u::Host *host); ~VirtualMachine(); /** @brief Suspend the VM */ @@ -87,22 +77,21 @@ public: sg_host_t getPm(); virtual void setBound(double bound)=0; - virtual void setAffinity(Cpu *cpu, unsigned long mask)=0; /* The vm object of the lower layer */ - CpuAction *p_action; - simgrid::Host *p_hostPM; + CpuAction *action_; +protected: + simgrid::s4u::Host *hostPM_; +public: 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; }; @@ -124,7 +113,6 @@ public: * * @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() {};