X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fedb0ec6497d5d21ee4eab39c686fc0cdebcfc9a..183a6118a95c570b0c66695505dab7dbebc0c7b3:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 8af4347fff..797bfb0d51 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,16 +1,13 @@ -/* Copyright (c) 2004-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2004-2016. 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 #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ @@ -26,7 +23,7 @@ namespace vm { ***********/ class XBT_PRIVATE VMModel; -class XBT_PRIVATE VirtualMachineImpl; +XBT_PUBLIC_CLASS VirtualMachineImpl; // Made visible to the Java plugin /************* * Callbacks * @@ -55,24 +52,22 @@ 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(smx_actor_t issuer); + virtual void suspend(simgrid::simix::ActorImpl* issuer); /** @brief Resume the VM */ virtual void resume(); - /** @brief Save (suspend+store on disk) the VM */ - virtual void save(smx_actor_t issuer); - - /** @brief Restore (read from disk+resume) the VM */ - virtual void restore(); + /** @brief Shutdown the VM */ + virtual void shutdown(simgrid::simix::ActorImpl* issuer); /** @brief Change the physical host on which the given VM is running */ virtual void setPm(s4u::Host* dest); @@ -102,11 +97,13 @@ 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: s_vm_params_t params_; + int coreAmount_; protected: e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; @@ -121,7 +118,7 @@ protected: */ class VMModel : public surf::HostModel { public: - void adjustWeightOfDummyCpuActions() override{}; + void ignoreEmptyVmInPmLMM() override{}; double nextOccuringEvent(double now) override; void updateActionsState(double /*now*/, double /*delta*/) override{};