X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1a826bc9b199ebfc23aa7a1bb38f8cdbab57e105..d426ea0d62bcfe4e7d92f5ff6cb5d66bdc0e567d:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 387aaa0c39..026071ea97 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-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_ @@ -18,6 +16,8 @@ #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 s_dirty_page* dirty_page_t; + namespace simgrid { namespace vm { @@ -26,7 +26,7 @@ namespace vm { ***********/ class XBT_PRIVATE VMModel; -class XBT_PRIVATE VirtualMachineImpl; +XBT_PUBLIC_CLASS VirtualMachineImpl; // Made visible to the Java plugin /************* * Callbacks * @@ -55,27 +55,25 @@ extern XBT_PRIVATE simgrid::xbt::signal * @brief SURF VM interface class * @details A VM represent a virtual machine */ -class VirtualMachineImpl : public surf::HostImpl { +XBT_PUBLIC_CLASS VirtualMachineImpl : public surf::HostImpl +{ friend simgrid::s4u::VirtualMachine; public: - explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host); + explicit VirtualMachineImpl(s4u::VirtualMachine * piface, s4u::Host * host, int coreAmount); ~VirtualMachineImpl(); /** @brief Suspend the VM */ - virtual void suspend(); + virtual void suspend(simgrid::simix::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::simix::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(); @@ -91,24 +89,21 @@ public: surf::Action* action_ = nullptr; /* Dirty pages stuff */ + std::unordered_map 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_; + 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; }; @@ -121,7 +116,8 @@ protected: */ class VMModel : public surf::HostModel { public: - void adjustWeightOfDummyCpuActions() override{}; + VMModel(); + void ignoreEmptyVmInPmLMM() override{}; double nextOccuringEvent(double now) override; void updateActionsState(double /*now*/, double /*delta*/) override{};