X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bd7d5780ee8b73efd58c83f5d6f864d0a941b3ed..0c586d7f087b772253980cafd92796edcbd58c50:/include/simgrid/s4u/VirtualMachine.hpp diff --git a/include/simgrid/s4u/VirtualMachine.hpp b/include/simgrid/s4u/VirtualMachine.hpp index 89063d55fb..41be4d1974 100644 --- a/include/simgrid/s4u/VirtualMachine.hpp +++ b/include/simgrid/s4u/VirtualMachine.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2022. 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. */ @@ -6,23 +6,23 @@ #ifndef SIMGRID_S4U_VM_HPP #define SIMGRID_S4U_VM_HPP +#include #include -#include - -enum e_surf_vm_state_t { - SURF_VM_STATE_CREATED, /**< created, but not yet started */ - SURF_VM_STATE_RUNNING, - SURF_VM_STATE_SUSPENDED, /**< Suspend/resume does not involve disk I/O, so we assume there is no transition states. */ - SURF_VM_STATE_DESTROYED -}; +#include namespace simgrid { -namespace vm { -class VirtualMachineImpl; -}; - namespace s4u { +/** @brief Host extension for the VMs */ +class VmHostExt { +public: + static xbt::Extension EXTENSION_ID; + + sg_size_t ramsize = 0; /* available ramsize (0= not taken into account) */ + bool overcommit = true; /* Whether the host allows overcommiting more VM than the avail ramsize allows */ + static void ensureVmExtInstalled(); +}; + /** @ingroup s4u_api * * @tableofcontents @@ -32,34 +32,74 @@ namespace s4u { * */ class XBT_PUBLIC VirtualMachine : public s4u::Host { - simgrid::vm::VirtualMachineImpl* pimpl_vm_ = nullptr; - virtual ~VirtualMachine(); + kernel::resource::VirtualMachineImpl* const pimpl_vm_; public: - explicit VirtualMachine(const char* name, s4u::Host* hostPm, int coreAmount); - explicit VirtualMachine(const char* name, s4u::Host* hostPm, int coreAmount, size_t ramsize); + explicit VirtualMachine(const std::string& name, Host* physical_host, int core_amount); + explicit VirtualMachine(const std::string& name, Host* physical_host, int core_amount, size_t ramsize); +#ifndef DOXYGEN // No copy/move VirtualMachine(VirtualMachine const&) = delete; VirtualMachine& operator=(VirtualMachine const&) = delete; +#endif + + // enum class State { ... } + XBT_DECLARE_ENUM_CLASS(State, + CREATED, /**< created, but not yet started */ + RUNNING, + SUSPENDED, /**< Suspend/resume does not involve disk I/O, so we assume there is no transition states. */ + DESTROYED + ); +#ifndef DOXYGEN + using state XBT_ATTRIB_DEPRECATED_v332("Please use VirtualMachine::State") = State; +#endif - simgrid::vm::VirtualMachineImpl* getImpl() { return pimpl_vm_; } + kernel::resource::VirtualMachineImpl* get_vm_impl() const { return pimpl_vm_; } void start(); void suspend(); void resume(); void shutdown(); - void destroy(); + void destroy() override; + + Host* get_pm() const; + VirtualMachine* set_pm(Host* pm); + size_t get_ramsize() const; + VirtualMachine* set_ramsize(size_t ramsize); + VirtualMachine* set_bound(double bound); - simgrid::s4u::Host* getPm(); - void setPm(simgrid::s4u::Host * pm); - size_t getRamsize(); - void setRamsize(size_t ramsize); - void setBound(double bound); + State get_state() const; + static void on_creation_cb(const std::function& cb) { on_creation.connect(cb); } + static void on_start_cb(const std::function& cb) { on_start.connect(cb); } + static void on_started_cb(const std::function& cb) { on_started.connect(cb); } + static void on_shutdown_cb(const std::function& cb) { on_shutdown.connect(cb); } + static void on_suspend_cb(const std::function& cb) { on_suspend.connect(cb); } + static void on_resume_cb(const std::function& cb) { on_resume.connect(cb); } + static void on_destruction_cb(const std::function& cb) { on_destruction.connect(cb); } + static void on_migration_start_cb(const std::function& cb) + { + on_migration_start.connect(cb); + } + static void on_migration_end_cb(const std::function& cb) + { + on_migration_end.connect(cb); + } +#ifndef DOXYGEN + /* FIXME the signals should be private */ + static xbt::signal on_migration_start; + static xbt::signal on_migration_end; + static xbt::signal on_destruction; +#endif - e_surf_vm_state_t getState(); - static simgrid::xbt::signal onVmShutdown; +private: + static xbt::signal on_creation; + static xbt::signal on_start; + static xbt::signal on_started; + static xbt::signal on_shutdown; + static xbt::signal on_suspend; + static xbt::signal on_resume; }; -} -} // namespace simgrid::s4u +} // namespace s4u +} // namespace simgrid #endif