X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6:/src/plugins/vm/VirtualMachineImpl.hpp diff --git a/src/plugins/vm/VirtualMachineImpl.hpp b/src/plugins/vm/VirtualMachineImpl.hpp index 6f3398476a..d26383456c 100644 --- a/src/plugins/vm/VirtualMachineImpl.hpp +++ b/src/plugins/vm/VirtualMachineImpl.hpp @@ -1,52 +1,21 @@ -/* Copyright (c) 2004-2015. 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 -#include - -#include - #include "simgrid/s4u/VirtualMachine.hpp" +#include "src/kernel/actor/ActorImpl.hpp" #include "src/surf/HostImpl.hpp" +#include +#include +#include #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 { namespace vm { -/*********** - * Classes * - ***********/ - -class XBT_PRIVATE VMModel; -class XBT_PRIVATE VirtualMachineImpl; - -/************* - * Callbacks * - *************/ - -/** @ingroup SURF_callbacks - * @brief Callbacks fired after VM creation. Signature: `void(VirtualMachine*)` - */ -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; - -/** @ingroup SURF_callbacks - * @brief Callbacks after VM State changes. Signature: `void(VirtualMachine*)` - */ -extern XBT_PRIVATE simgrid::xbt::signal onVmStateChange; - /************ * Resource * ************/ @@ -55,61 +24,51 @@ extern XBT_PRIVATE simgrid::xbt::signal * @brief SURF VM interface class * @details A VM represent a virtual machine */ -class VirtualMachineImpl : public surf::HostImpl { +class XBT_PUBLIC VirtualMachineImpl : public surf::HostImpl, public simgrid::xbt::Extendable { friend simgrid::s4u::VirtualMachine; public: - explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host); + explicit VirtualMachineImpl(s4u::VirtualMachine* piface, s4u::Host* host, int core_amount, size_t ramsize); ~VirtualMachineImpl(); - /** @brief Suspend the VM */ - virtual void suspend(); + /** @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 Resume the VM */ + virtual void suspend(kernel::actor::ActorImpl* issuer); virtual void resume(); + virtual void shutdown(kernel::actor::ActorImpl* issuer); - /** @brief Save the VM (Not yet implemented) */ - virtual void save(); - - /** @brief Restore the VM (Not yet implemented) */ - virtual void restore(); + /** @brief Change the physical host on which the given VM is running */ + 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 Migrate the VM to the destination host */ - virtual void migrate(s4u::Host* dest); + sg_size_t get_ramsize() const { return ramsize_; } + void set_ramsize(sg_size_t ramsize) { ramsize_ = ramsize; } - /** @brief Get the physical machine hosting the VM */ - s4u::Host* getPm(); + s4u::VirtualMachine::state get_state() const { return vm_state_; } + void set_state(s4u::VirtualMachine::state state) { vm_state_ = state; } - sg_size_t getRamsize(); + int get_core_amount() { return core_amount_; } - virtual void setBound(double bound); - - void getParams(vm_params_t params); - void setParams(vm_params_t params); + virtual void set_bound(double bound); /* The vm object of the lower layer */ - surf::Action* action_ = nullptr; - - /* Dirty pages stuff */ - 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); + kernel::resource::Action* action_ = nullptr; static std::deque allVms_; + bool is_migrating_ = false; + int active_tasks_ = 0; - bool isMigrating = false; + void update_action_weight(); private: - s_vm_params_t params_; - -protected: - e_surf_vm_state_t vmState_ = SURF_VM_STATE_CREATED; + s4u::Host* physical_host_; + int core_amount_; + double user_bound_ = std::numeric_limits::max(); + size_t ramsize_ = 0; + s4u::VirtualMachine::state vm_state_ = s4u::VirtualMachine::state::CREATED; }; /********* @@ -119,14 +78,21 @@ 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 surf::HostModel { +class XBT_PRIVATE VMModel : public surf::HostModel { public: - void adjustWeightOfDummyCpuActions() override{}; - - double nextOccuringEvent(double now) override; - void updateActionsState(double /*now*/, double /*delta*/) override{}; + VMModel(); + + 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; + #endif /* VM_INTERFACE_HPP_ */