X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3622a9c058d91313ef3d2bf6af1b54ab5f4786f8..83ade874cb34c7f3afbc9f7a782e097cbb7209bf:/src/surf/host_interface.hpp diff --git a/src/surf/host_interface.hpp b/src/surf/host_interface.hpp index 42a31e912c..7766807dd9 100644 --- a/src/surf/host_interface.hpp +++ b/src/surf/host_interface.hpp @@ -33,8 +33,8 @@ class XBT_PRIVATE HostAction; /********* * Tools * *********/ + XBT_PUBLIC_DATA(simgrid::surf::HostModel*) surf_host_model; -XBT_PUBLIC(void) host_add_traces(); /********* * Model * @@ -47,20 +47,20 @@ namespace surf { * @brief SURF Host model interface class * @details A model is an object which handle the interactions between its Resources and its Actions */ -class HostModel : public Model{ +class HostModel : public Model { public: HostModel() : Model() {} - ~HostModel() {} + ~HostModel() override {} - virtual Host *createHost(const char *name, RoutingEdge *net, Cpu *cpu, xbt_dict_t props)=0; + Host *createHost(const char *name, NetCard *net, Cpu *cpu, xbt_dict_t props); void addTraces() override {DIE_IMPOSSIBLE;} virtual void adjustWeightOfDummyCpuActions(); virtual Action *executeParallelTask(int host_nb, - sg_host_t *host_list, - double *flops_amount, - double *bytes_amount, - double rate)=0; + sg_host_t *host_list, + double *flops_amount, + double *bytes_amount, + double rate); bool shareResourcesIsIdempotent() override {return true;} }; @@ -72,18 +72,14 @@ public: * @brief SURF Host interface class * @details An host represents a machine with a aggregation of a Cpu, a RoutingEdge and a Storage */ -class Host : public simgrid::surf::Resource, - public simgrid::surf::PropertyHolder { +class Host : + public simgrid::surf::Resource, + public simgrid::surf::PropertyHolder { public: - static simgrid::xbt::Extension EXTENSION_ID; - - /* callbacks */ - static simgrid::surf::signal onCreation; /** Called on each newly created object */ - static simgrid::surf::signal onDestruction; /** Called just before destructing an object */ - static simgrid::surf::signal onStateChange; + static simgrid::xbt::Extension EXTENSION_ID; public: - static void classInit(); + static void classInit(); // must be called before the first use of that class /** * @brief Host constructor * @@ -91,11 +87,10 @@ public: * @param name The name of the Host * @param props Dictionary of properties associated to this Host * @param storage The Storage associated to this Host - * @param netElm The RoutingEdge associated to this Host * @param cpu The Cpu associated to this Host */ - Host(simgrid::surf::Model *model, const char *name, xbt_dict_t props, - xbt_dynar_t storage, RoutingEdge *netElm, Cpu *cpu); + Host(HostModel *model, const char *name, xbt_dict_t props, + xbt_dynar_t storage, Cpu *cpu); /** * @brief Host constructor @@ -105,46 +100,26 @@ public: * @param props Dictionary of properties associated to this Host * @param constraint The lmm constraint associated to this Host if it is part of a LMM component * @param storage The Storage associated to this Host - * @param netElm The RoutingEdge associated to this Host * @param cpu The Cpu associated to this Host */ - Host(simgrid::surf::Model *model, const char *name, xbt_dict_t props, - lmm_constraint_t constraint, xbt_dynar_t storage, RoutingEdge *netElm, - Cpu *cpu); + Host(HostModel *model, const char *name, xbt_dict_t props, + lmm_constraint_t constraint, xbt_dynar_t storage, Cpu *cpu); /* Host destruction logic */ /**************************/ -protected: ~Host(); -public: - void destroy(); // Must be called instead of the destructor -private: - bool currentlyDestroying_ = false; - public: - void attach(simgrid::Host* host); + HostModel *getModel() + { + return static_cast(Resource::getModel()); + } + void attach(simgrid::s4u::Host* host); - e_surf_resource_state_t getState(); - void setState(e_surf_resource_state_t state); - - /** - * @brief Execute some quantity of computation - * - * @param flops_amount The value of the processing amount (in flop) needed to process - * @return The CpuAction corresponding to the processing - * @see Cpu - */ - virtual Action *execute(double flops_amount)=0; - - /** - * @brief Make a process sleep for duration seconds - * - * @param duration The number of seconds to sleep - * @return The CpuAction corresponding to the sleeping - * @see Cpu - */ - virtual Action *sleep(double duration)=0; + bool isOn() override; + bool isOff() override; + void turnOn() override; + void turnOff() override; /** @brief Return the storage of corresponding mount point */ virtual simgrid::surf::Storage *findStorageOnMountList(const char* storage); @@ -253,11 +228,14 @@ public: */ virtual int fileMove(surf_file_t fd, const char* fullpath); + bool isUsed() override {DIE_IMPOSSIBLE;} // FIXME: Host should not be a Resource + void updateState(tmgr_trace_iterator_t event_type, double value, double date) override + {THROW_IMPOSSIBLE;} // FIXME: Host should not be a Resource + public: xbt_dynar_t p_storage; - RoutingEdge *p_netElm; Cpu *p_cpu; - simgrid::Host* p_host = nullptr; + simgrid::s4u::Host* p_host = nullptr; /** @brief Get the list of virtual machines on the current Host */ xbt_dynar_t getVms(); @@ -268,46 +246,11 @@ 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; } + simgrid::s4u::Host* getHost() { return p_host; } private: s_vm_params_t p_params; }; -/********** - * Action * - **********/ - -/** @ingroup SURF_host_interface - * @brief SURF host action interface class - */ -class HostAction : public Action { -public: - static simgrid::surf::signal onStateChange; - - /** - * @brief HostAction constructor - * - * @param model The HostModel associated to this HostAction - * @param cost The cost of this HostAction in [TODO] - * @param failed [description] - */ - HostAction(simgrid::surf::Model *model, double cost, bool failed) - : Action(model, cost, failed) {} - - /** - * @brief HostAction constructor - * - * @param model The HostModel associated to this HostAction - * @param cost The cost of this HostAction in [TODO] - * @param failed [description] - * @param var The lmm variable associated to this StorageAction if it is part of a LMM component - */ - HostAction(simgrid::surf::Model *model, double cost, bool failed, lmm_variable_t var) - : Action(model, cost, failed, var) {} - - void setState(e_surf_action_state_t state); -}; - } }