X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/22e6546d2c6f14864cc93c4ed1470d8e8c1e2d95..471d0736505fc6cfd8f018bdeb8bd3846ee2adad:/include/simgrid/s4u/VirtualMachine.hpp diff --git a/include/simgrid/s4u/VirtualMachine.hpp b/include/simgrid/s4u/VirtualMachine.hpp index 0d6023d321..689afdd918 100644 --- a/include/simgrid/s4u/VirtualMachine.hpp +++ b/include/simgrid/s4u/VirtualMachine.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-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. */ @@ -6,59 +6,64 @@ #ifndef SIMGRID_S4U_VM_HPP #define SIMGRID_S4U_VM_HPP -#include "simgrid/datatypes.h" -#include "simgrid/s4u/Host.hpp" -#include "simgrid/s4u/forward.hpp" - -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 +#include namespace simgrid { -namespace vm { -class VirtualMachineImpl; -}; namespace s4u { /** @ingroup s4u_api * * @tableofcontents * - * A VM is a virtual machine that contains actors. The total computing power that the contained - * processes can get is constrained to the virtual machine size. + * A VM represents a virtual machine (or a container) that hosts actors. + * The total computing power that the contained actors can get is constrained to the virtual machine size. * */ -XBT_PUBLIC_CLASS VirtualMachine : public s4u::Host -{ +class XBT_PUBLIC VirtualMachine : public s4u::Host { + vm::VirtualMachineImpl* const pimpl_vm_; + virtual ~VirtualMachine(); public: - explicit VirtualMachine(const char* name, s4u::Host* hostPm, int coreAmount); + 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 -private: - virtual ~VirtualMachine(); + 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 + }; -public: + vm::VirtualMachineImpl* get_impl() const { return pimpl_vm_; } void start(); - bool isMigrating(); - - void getParameters(vm_params_t params); - void setParameters(vm_params_t params); - double getRamsize(); - simgrid::s4u::Host* getPm(); + void suspend(); + void resume(); + void shutdown(); + void destroy() override; - e_surf_vm_state_t getState(); + Host* get_pm() const; + void set_pm(Host* pm); + size_t get_ramsize() const; + void set_ramsize(size_t ramsize); + void set_bound(double bound); - /* FIXME: protect me */ - simgrid::vm::VirtualMachineImpl* pimpl_vm_ = nullptr; + VirtualMachine::state get_state(); + 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; + static xbt::signal on_migration_start; + static xbt::signal on_migration_end; }; -} -} // namespace simgrid::s4u +} // namespace s4u +} // namespace simgrid -#endif /* SIMGRID_S4U_HOST_HPP */ +#endif