X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/05a1845ae0f4e4ed1988408ec0e8f95671ff2501..79853b8925152a5b89d3f8f44d64ffaf284a0196:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index 54cf61fe09..04f6d98786 100644 --- a/src/surf/network_cm02.hpp +++ b/src/surf/network_cm02.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2013-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2013-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. */ @@ -10,11 +9,9 @@ #include #include "network_interface.hpp" -#include "xbt/fifo.h" #include "xbt/graph.h" - /*********** * Classes * ***********/ @@ -39,14 +36,15 @@ namespace simgrid { class NetworkCm02Model : public NetworkModel { public: NetworkCm02Model(); - ~NetworkCm02Model() { } - Link* createLink(const char *name, double bandwidth, double latency, e_surf_link_sharing_policy_t policy, - xbt_dict_t properties) override; + explicit NetworkCm02Model(void (*solve_fun)(lmm_system_t self)); + virtual ~NetworkCm02Model() = default; + LinkImpl* createLink(const char* name, double bandwidth, double latency, + e_surf_link_sharing_policy_t policy) override; void updateActionsStateLazy(double now, double delta) override; void updateActionsStateFull(double now, double delta) override; - Action *communicate(NetCard *src, NetCard *dst, double size, double rate) override; - bool next_occuring_event_isIdempotent() override {return true;} - virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; + Action* communicate(s4u::Host* src, s4u::Host* dst, double size, double rate) override; + virtual void gapAppend(double size, const LinkImpl* link, NetworkAction* action); + protected: bool haveGap_ = false; }; @@ -55,17 +53,15 @@ namespace simgrid { * Resource * ************/ - class NetworkCm02Link : public Link { + class NetworkCm02Link : public LinkImpl { public: - NetworkCm02Link(NetworkCm02Model *model, const char *name, xbt_dict_t props, - lmm_system_t system, - double constraint_value, double bandwidth, double latency, - e_surf_link_sharing_policy_t policy); - - void apply_event(tmgr_trace_iterator_t event, double value) override; - void updateBandwidth(double value) override; - void updateLatency(double value) override; - virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; + NetworkCm02Link(NetworkCm02Model* model, const char* name, double bandwidth, double latency, + e_surf_link_sharing_policy_t policy, lmm_system_t system); + virtual ~NetworkCm02Link() = default; + void apply_event(tmgr_trace_event_t event, double value) override; + void setBandwidth(double value) override; + void setLatency(double value) override; + virtual void gapAppend(double size, const LinkImpl* link, NetworkAction* action); }; @@ -73,13 +69,13 @@ namespace simgrid { * Action * **********/ class NetworkCm02Action : public NetworkAction { - friend Action *NetworkCm02Model::communicate(NetCard *src, NetCard *dst, double size, double rate); + friend Action* NetworkCm02Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate); friend NetworkSmpiModel; - public: NetworkCm02Action(Model *model, double cost, bool failed) - : NetworkAction(model, cost, failed) {}; - void updateRemainingLazy(double now); + : NetworkAction(model, cost, failed) {}; + virtual ~NetworkCm02Action() = default; + void updateRemainingLazy(double now) override; protected: double senderGap_; };