X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..9fb274493911c49b0e1e9ef4b19c81adea5ff7c8:/include/simgrid/s4u/VirtualMachine.hpp diff --git a/include/simgrid/s4u/VirtualMachine.hpp b/include/simgrid/s4u/VirtualMachine.hpp index de3ecc0fdf..0d6023d321 100644 --- a/include/simgrid/s4u/VirtualMachine.hpp +++ b/include/simgrid/s4u/VirtualMachine.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2017. 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,19 +6,16 @@ #ifndef SIMGRID_S4U_VM_HPP #define SIMGRID_S4U_VM_HPP -#include -#include -#include +#include "simgrid/datatypes.h" +#include "simgrid/s4u/Host.hpp" +#include "simgrid/s4u/forward.hpp" -typedef enum { +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_SAVING, /**< Save/restore involves disk I/O, so there should be transition states. */ - SURF_VM_STATE_SAVED, - SURF_VM_STATE_RESTORING, -} e_surf_vm_state_t; + SURF_VM_STATE_DESTROYED +}; namespace simgrid { namespace vm { @@ -38,7 +35,7 @@ XBT_PUBLIC_CLASS VirtualMachine : public s4u::Host { public: - explicit VirtualMachine(const char* name, s4u::Host* hostPm); + explicit VirtualMachine(const char* name, s4u::Host* hostPm, int coreAmount); // No copy/move VirtualMachine(VirtualMachine const&) = delete; @@ -48,11 +45,15 @@ private: virtual ~VirtualMachine(); public: + void start(); bool isMigrating(); - void parameters(vm_params_t params); + void getParameters(vm_params_t params); void setParameters(vm_params_t params); double getRamsize(); + simgrid::s4u::Host* getPm(); + + e_surf_vm_state_t getState(); /* FIXME: protect me */ simgrid::vm::VirtualMachineImpl* pimpl_vm_ = nullptr;