X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2a81e806265c18e1c1f8ff624a37f317105b3904..4bf353490f2324e8df2e3fa9f9d51e585a8dfca7:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 56c0adefed..031c355cfb 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-2021. 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,49 +31,59 @@ class XBT_PUBLIC VirtualMachineImpl : public surf::HostImpl, public simgrid::xbt friend simgrid::s4u::VirtualMachine; public: - explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host, int core_amount, 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 Callbacks fired after VM creation. Signature: `void(VirtualMachineImpl*)` */ - static xbt::signal on_creation; - /** @brief Callbacks fired after VM destruction. Signature: `void(VirtualMachineImpl*)` */ - static xbt::signal on_destruction; - /** @brief Callbacks after VM State changes. Signature: `void(VirtualMachineImpl*)` */ - static xbt::signal on_state_change; + static std::deque allVms_; + + explicit VirtualMachineImpl(const std::string& name, s4u::VirtualMachine* piface, s4u::Host* host, int core_amount, + size_t ramsize); + ~VirtualMachineImpl() override; - virtual void suspend(kernel::actor::ActorImpl* issuer); - virtual void resume(); - virtual void shutdown(kernel::actor::ActorImpl* issuer); + void suspend(kernel::actor::ActorImpl* issuer); + void resume(); + void shutdown(kernel::actor::ActorImpl* issuer); /** @brief Change the physical host on which the given VM is running */ - virtual void set_physical_host(s4u::Host* dest); + 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_; } + s4u::Host* get_physical_host() const { return physical_host_; } - sg_size_t get_ramsize() { return ramsize_; } + sg_size_t get_ramsize() const { return ramsize_; } void set_ramsize(sg_size_t ramsize) { ramsize_ = ramsize; } - s4u::VirtualMachine::state get_state() { return vm_state_; } + s4u::VirtualMachine::state get_state() const { return vm_state_; } void set_state(s4u::VirtualMachine::state state) { vm_state_ = state; } - int get_core_amount() { return core_amount_; } + unsigned int get_core_amount() const { return core_amount_; } + kernel::resource::Action* get_action() const { return action_; } - virtual void set_bound(double bound); + const s4u::VirtualMachine* get_iface() const override { return piface_; } + s4u::VirtualMachine* get_iface() override { return piface_; } - /* The vm object of the lower layer */ - kernel::resource::Action* action_ = nullptr; - static std::deque allVms_; - bool is_migrating_ = false; - int active_tasks_ = 0; + void set_bound(double bound); 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: + s4u::VirtualMachine* piface_; + kernel::resource::Action* action_ = nullptr; + unsigned int active_execs_ = 0; s4u::Host* physical_host_; - int core_amount_; - double user_bound_; - size_t ramsize_ = 0; + 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; }; /********* @@ -85,14 +95,17 @@ private: */ class XBT_PRIVATE VMModel : public surf::HostModel { public: - VMModel(); + explicit VMModel(const std::string& name); - 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; + }; }; -} -} - -XBT_PUBLIC_DATA simgrid::vm::VMModel* surf_vm_model; +} // namespace vm +} // namespace simgrid #endif /* VM_INTERFACE_HPP_ */