X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d33e7a563a884247bff85406dcc589a70a162e79..0afad4b7e2215154531cd6b2933af898ec6b781d:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 1063bf1ff8..709ff69224 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2017. 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. */ @@ -16,37 +16,9 @@ #define GUESTOS_NOISE 100 // This value corresponds to the cost of the global action associated to the VM // It corresponds to the cost of a VM running no tasks. -typedef struct dirty_page* dirty_page_t; - namespace simgrid { namespace vm { -/*********** - * Classes * - ***********/ - -class XBT_PRIVATE VMModel; -XBT_PUBLIC_CLASS VirtualMachineImpl; // Made visible to the Java plugin - -/************* - * 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,12 +27,12 @@ extern XBT_PRIVATE simgrid::xbt::signal * @brief SURF VM interface class * @details A VM represent a virtual machine */ -XBT_PUBLIC_CLASS VirtualMachineImpl : public surf::HostImpl +XBT_PUBLIC_CLASS VirtualMachineImpl : public surf::HostImpl, public simgrid::xbt::Extendable { friend simgrid::s4u::VirtualMachine; public: - explicit VirtualMachineImpl(s4u::VirtualMachine * piface, s4u::Host * host, int coreAmount); + explicit VirtualMachineImpl(s4u::VirtualMachine * piface, s4u::Host * host, int coreAmount, size_t ramsize); ~VirtualMachineImpl(); /** @brief Suspend the VM */ @@ -78,37 +50,42 @@ public: /** @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 */ - std::unordered_map dp_objs; - int dp_enabled = 0; - double dp_updated_by_deleted_tasks = 0; - -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_; + simgrid::s4u::Host* hostPM_; int coreAmount_; - -protected: + size_t ramsize_ = 0; e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; }; @@ -119,8 +96,9 @@ 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: + VMModel(); void ignoreEmptyVmInPmLMM() override{}; double nextOccuringEvent(double now) override;