X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8fda7faea52d55ca15ff084a64029b2a63e2f720..e4fca2dba5c9d2b6ab3fa3e9d46016eff7e03103:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 53f948d22a..771747bdaa 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,15 +1,14 @@ -/* Copyright (c) 2004-2015. 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. */ -#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_ @@ -17,15 +16,10 @@ #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. -namespace simgrid { -namespace surf { - -/*********** - * Classes * - ***********/ +typedef struct s_dirty_page* dirty_page_t; -class XBT_PRIVATE VMModel; -class XBT_PRIVATE VirtualMachineImpl; +namespace simgrid { +namespace vm { /************* * Callbacks * @@ -34,17 +28,17 @@ class XBT_PRIVATE VirtualMachineImpl; /** @ingroup SURF_callbacks * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)` */ -extern XBT_PRIVATE simgrid::xbt::signal onVmCreation; +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; +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; +extern XBT_PRIVATE simgrid::xbt::signal onVmStateChange; /************ * Resource * @@ -54,56 +48,55 @@ extern XBT_PRIVATE simgrid::xbt::signal dp_objs; int dp_enabled = 0; - xbt_dict_t dp_objs = nullptr; 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_; + static std::deque allVms_; + int coreAmount() { return coreAmount_; } bool isMigrating = false; private: + simgrid::s4u::Host* hostPM_; s_vm_params_t params_; - -protected: + int coreAmount_; e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; }; @@ -114,9 +107,10 @@ 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 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{}; @@ -124,4 +118,6 @@ public: } } +XBT_PUBLIC_DATA(simgrid::vm::VMModel*) surf_vm_model; + #endif /* VM_INTERFACE_HPP_ */