X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1a826bc9b199ebfc23aa7a1bb38f8cdbab57e105..7c480b01951b33f03d72ede0a47a45a88bd40b61:/src/plugins/vm/VirtualMachineImpl.hpp?ds=sidebyside diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 387aaa0c39..575103b30a 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,16 +1,14 @@ -/* Copyright (c) 2004-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved. */ /* 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 "simgrid/s4u/VirtualMachine.hpp" +#include "src/simix/ActorImpl.hpp" #include "src/surf/HostImpl.hpp" +#include +#include +#include #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ @@ -21,32 +19,6 @@ namespace simgrid { namespace vm { -/*********** - * Classes * - ***********/ - -class XBT_PRIVATE VMModel; -class XBT_PRIVATE VirtualMachineImpl; - -/************* - * Callbacks * - *************/ - -/** @ingroup SURF_callbacks - * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)` - */ -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 onVmDestruction; - -/** @ingroup SURF_callbacks - * @brief Callbacks after VM State changes. Signature: `void(VirtualMachine*)` - */ -extern XBT_PRIVATE simgrid::xbt::signal onVmStateChange; - /************ * Resource * ************/ @@ -55,60 +27,64 @@ extern XBT_PRIVATE simgrid::xbt::signal * @brief SURF VM interface class * @details A VM represent a virtual machine */ -class VirtualMachineImpl : public surf::HostImpl { +class XBT_PUBLIC VirtualMachineImpl : public surf::HostImpl, public simgrid::xbt::Extendable { friend simgrid::s4u::VirtualMachine; public: - explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host); + explicit VirtualMachineImpl(s4u::VirtualMachine * piface, s4u::Host * host, int coreAmount, size_t ramsize); ~VirtualMachineImpl(); /** @brief Suspend the VM */ - virtual void suspend(); + virtual void suspend(simgrid::kernel::actor::ActorImpl* issuer); /** @brief Resume the VM */ virtual void resume(); - /** @brief Save the VM (Not yet implemented) */ - virtual void save(); - - /** @brief Restore the VM (Not yet implemented) */ - virtual void restore(); + /** @brief Shutdown the VM */ + virtual void shutdown(simgrid::kernel::actor::ActorImpl* issuer); - /** @brief Migrate the VM to the destination host */ - virtual void migrate(s4u::Host* dest); + /** @brief Change the physical host on which the given VM is running */ + virtual void setPm(s4u::Host* dest); /** @brief Get the physical machine hosting the VM */ s4u::Host* getPm(); - sg_size_t getRamsize(); + sg_size_t getRamsize() { return ramsize_; } + void setRamsize(sg_size_t ramsize) { ramsize_ = ramsize; } virtual void setBound(double bound); - void getParams(vm_params_t params); - void setParams(vm_params_t params); - /* The vm object of the lower layer */ - surf::Action* action_ = nullptr; - - /* Dirty pages stuff */ - int dp_enabled = 0; - xbt_dict_t dp_objs = nullptr; - double dp_updated_by_deleted_tasks = 0; + kernel::resource::Action* action_ = nullptr; -protected: - simgrid::s4u::Host* hostPM_; - -public: e_surf_vm_state_t getState(); void setState(e_surf_vm_state_t state); static std::deque allVms_; + int coreAmount() { return coreAmount_; } bool isMigrating = false; + /************* + * Callbacks * + *************/ + /** @ingroup SURF_callbacks + * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)` + */ + static simgrid::xbt::signal onVmCreation; + + /** @ingroup SURF_callbacks + * @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachine*)` + */ + static simgrid::xbt::signal onVmDestruction; + + /** @ingroup SURF_callbacks + * @brief Callbacks after VM State changes. Signature: `void(VirtualMachine*)` + */ + static simgrid::xbt::signal onVmStateChange; private: - s_vm_params_t params_; - -protected: + simgrid::s4u::Host* hostPM_; + int coreAmount_; + size_t ramsize_ = 0; e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; }; @@ -119,16 +95,17 @@ protected: * @brief SURF VM model interface class * @details A model is an object which handle the interactions between its Resources and its Actions */ -class VMModel : public surf::HostModel { +class XBT_PRIVATE VMModel : public surf::HostModel { public: - void adjustWeightOfDummyCpuActions() override{}; + VMModel(); + void ignoreEmptyVmInPmLMM() override{}; - double nextOccuringEvent(double now) override; - void updateActionsState(double /*now*/, double /*delta*/) override{}; + double next_occuring_event(double now) override; + void update_actions_state(double /*now*/, double /*delta*/) override{}; }; } } -XBT_PUBLIC_DATA(simgrid::vm::VMModel*) surf_vm_model; +XBT_PUBLIC_DATA simgrid::vm::VMModel* surf_vm_model; #endif /* VM_INTERFACE_HPP_ */