X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d8d122c3f5f13f494067f09a2daddfc091e4272a..153259d001d7e03ebc06ea7dc27803788a9cdb9d:/src/surf/host_interface.hpp diff --git a/src/surf/host_interface.hpp b/src/surf/host_interface.hpp index ed143b8836..8fde63d95d 100644 --- a/src/surf/host_interface.hpp +++ b/src/surf/host_interface.hpp @@ -8,6 +8,7 @@ #include "storage_interface.hpp" #include "cpu_interface.hpp" #include "network_interface.hpp" +#include "src/surf/PropertyHolder.hpp" #include @@ -32,22 +33,22 @@ class XBT_PRIVATE HostAction; /** @ingroup SURF_callbacks * @brief Callbacks fired after Host creation. Signature: `void(Host*)` */ -XBT_PUBLIC_DATA(surf_callback(void, Host*)) hostCreatedCallbacks; +XBT_PUBLIC_DATA(simgrid::surf::signal) hostCreatedCallbacks; /** @ingroup SURF_callbacks * @brief Callbacks fired Host destruction. Signature: `void(Host*)` */ -XBT_PUBLIC_DATA(surf_callback(void, Host*)) hostDestructedCallbacks; +XBT_PUBLIC_DATA(simgrid::surf::signal) hostDestructedCallbacks; /** @ingroup SURF_callbacks * @brief Callbacks fired after Host State changed. Signature: `void(Host *, e_surf_resource_state_t old, e_surf_resource_state_t current)` */ -XBT_PUBLIC_DATA(surf_callback(void, Host*, e_surf_resource_state_t, e_surf_resource_state_t)) hostStateChangedCallbacks; +XBT_PUBLIC_DATA(simgrid::surf::signal) hostStateChangedCallbacks; /** @ingroup SURF_callbacks * @brief Callbacks fired HostAction State changed. Signature: `void(HostAction *, e_surf_action_state_t old, e_surf_action_state_t current)` */ -XBT_PUBLIC_DATA(surf_callback(void, HostAction*, e_surf_action_state_t, e_surf_action_state_t)) hostActionStateChangedCallbacks; +XBT_PUBLIC_DATA(simgrid::surf::signal) hostActionStateChangedCallbacks; } } @@ -74,8 +75,8 @@ public: HostModel() : Model() {} ~HostModel() {} - virtual Host *createHost(const char *name, RoutingEdge *net, Cpu *cpu)=0; - void addTraces(){DIE_IMPOSSIBLE;} + virtual Host *createHost(const char *name, RoutingEdge *net, Cpu *cpu, xbt_dict_t props)=0; + void addTraces() override {DIE_IMPOSSIBLE;} virtual void adjustWeightOfDummyCpuActions(); virtual Action *executeParallelTask(int host_nb, @@ -84,7 +85,7 @@ public: double *bytes_amount, double rate)=0; - bool shareResourcesIsIdempotent() {return true;} + bool shareResourcesIsIdempotent() override {return true;} }; /************ @@ -94,9 +95,10 @@ public: * @brief SURF Host interface class * @details An host represents a machine with a aggregation of a Cpu, a Link and a Storage */ -class Host : public simgrid::surf::Resource { +class Host : public simgrid::surf::Resource, + public simgrid::surf::PropertyHolder { public: - static simgrid::xbt::FacetLevel LEVEL; + static simgrid::xbt::Extension EXTENSION_ID; static void init(); /** * @brief Host constructor @@ -132,13 +134,6 @@ public: void attach(simgrid::Host* host); void setState(e_surf_resource_state_t state); - /** - * @brief Get the properties of the current Host - * - * @return The properties of the current Host - */ - xbt_dict_t getProperties(); - /** * @brief Execute some quantity of computation * @@ -265,6 +260,10 @@ public: */ virtual int fileMove(surf_file_t fd, const char* fullpath); +protected: + void onDie() override; + +public: xbt_dynar_t p_storage; RoutingEdge *p_netElm; Cpu *p_cpu; @@ -279,6 +278,7 @@ public: void getParams(vm_params_t params); /** @brief Sets the params of that VM/PM */ void setParams(vm_params_t params); + simgrid::Host* getHost() { return p_host; } private: s_vm_params_t p_params; };