X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/20fc29c9161b5d8356c192fc2ddd031f7fe1fe76..c66deda6497d36e70e2485fff5431151be1713c6:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index b13f3e7450..d9371762d4 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,15 +1,10 @@ -/* 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" #ifndef VM_INTERFACE_HPP_ @@ -19,14 +14,14 @@ // It corresponds to the cost of a VM running no tasks. namespace simgrid { -namespace surf { +namespace vm { /*********** * Classes * ***********/ class XBT_PRIVATE VMModel; -class XBT_PRIVATE VirtualMachineImpl; +XBT_PUBLIC_CLASS VirtualMachineImpl; // Made visible to the Java plugin /************* * Callbacks * @@ -35,17 +30,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 * @@ -55,25 +50,25 @@ extern XBT_PRIVATE simgrid::xbt::signal allVms_; + static std::deque allVms_; bool isMigrating = false; private: s_vm_params_t params_; + int coreAmount_; protected: e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; @@ -117,9 +113,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 HostModel { +class VMModel : public surf::HostModel { public: - void adjustWeightOfDummyCpuActions() override{}; + void ignoreEmptyVmInPmLMM() override{}; double nextOccuringEvent(double now) override; void updateActionsState(double /*now*/, double /*delta*/) override{}; @@ -127,4 +123,6 @@ public: } } +XBT_PUBLIC_DATA(simgrid::vm::VMModel*) surf_vm_model; + #endif /* VM_INTERFACE_HPP_ */