X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0ea1a3dca97a66f81466333806853c97af7eb398..131ea969cf91c332bd533b7e9d67c729149e9b4d:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 362409a932..a3c5464d4c 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,10 +1,10 @@ -/* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2020. 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 "simgrid/s4u/VirtualMachine.hpp" -#include "src/simix/ActorImpl.hpp" +#include "src/kernel/actor/ActorImpl.hpp" #include "src/surf/HostImpl.hpp" #include #include @@ -13,10 +13,10 @@ #ifndef VM_INTERFACE_HPP_ #define VM_INTERFACE_HPP_ -#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 { + +extern template class XBT_PUBLIC xbt::Extendable; + namespace vm { /************ @@ -31,61 +31,54 @@ class XBT_PUBLIC VirtualMachineImpl : public surf::HostImpl, public simgrid::xbt friend simgrid::s4u::VirtualMachine; public: - explicit VirtualMachineImpl(s4u::VirtualMachine * piface, s4u::Host * host, int coreAmount, size_t ramsize); - ~VirtualMachineImpl(); + /** @brief Callbacks fired after VM creation. Signature: `void(VirtualMachineImpl&)` */ + static xbt::signal on_creation; + /** @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachineImpl const&)` */ + static xbt::signal on_destruction; - /** @brief Suspend the VM */ - virtual void suspend(simgrid::kernel::actor::ActorImpl* issuer); + static std::deque allVms_; - /** @brief Resume the VM */ - virtual void resume(); + explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host, int core_amount, size_t ramsize); + ~VirtualMachineImpl(); - /** @brief Shutdown the VM */ - virtual void shutdown(simgrid::kernel::actor::ActorImpl* issuer); + virtual void suspend(kernel::actor::ActorImpl* issuer); + virtual void resume(); + virtual void shutdown(kernel::actor::ActorImpl* issuer); /** @brief Change the physical host on which the given VM is running */ - virtual void setPm(s4u::Host* dest); + virtual void set_physical_host(s4u::Host* dest); + /** @brief Get the physical host on which the given VM is running */ + s4u::Host* get_physical_host() { return physical_host_; } - /** @brief Get the physical machine hosting the VM */ - s4u::Host* getPm(); + sg_size_t get_ramsize() const { return ramsize_; } + void set_ramsize(sg_size_t ramsize) { ramsize_ = ramsize; } - sg_size_t getRamsize() { return ramsize_; } - void setRamsize(sg_size_t ramsize) { ramsize_ = ramsize; } + s4u::VirtualMachine::state get_state() const { return vm_state_; } + void set_state(s4u::VirtualMachine::state state) { vm_state_ = state; } - virtual void setBound(double bound); + unsigned int get_core_amount() { return core_amount_; } + kernel::resource::Action* get_action() { return action_; } - /* The vm object of the lower layer */ - kernel::resource::Action* action_ = nullptr; + virtual void set_bound(double bound); - 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; + void update_action_weight(); + + void add_active_exec() { active_execs_++; } + void remove_active_exec() { active_execs_--; } + + void start_migration() { is_migrating_ = true; } + void end_migration() { is_migrating_ = false; } + bool is_migrating() const { return is_migrating_; } private: - simgrid::s4u::Host* hostPM_; - int coreAmount_; - size_t ramsize_ = 0; - e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; + kernel::resource::Action* action_ = nullptr; + unsigned int active_execs_ = 0; + s4u::Host* physical_host_; + unsigned int core_amount_; + double user_bound_ = std::numeric_limits::max(); + size_t ramsize_ = 0; + s4u::VirtualMachine::state vm_state_ = s4u::VirtualMachine::state::CREATED; + bool is_migrating_ = false; }; /********* @@ -98,10 +91,14 @@ private: class XBT_PRIVATE VMModel : public surf::HostModel { public: VMModel(); - void ignore_empty_vm_in_pm_LMM() override{}; - double next_occuring_event(double now) override; + double next_occurring_event(double now) override; void update_actions_state(double /*now*/, double /*delta*/) override{}; + kernel::resource::Action* execute_parallel(const std::vector& host_list, const double* flops_amount, + const double* bytes_amount, double rate) override + { + return nullptr; + }; }; } }