X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f4ed74ca6d4a744d2956a4f2906c897e1886cefd..b35d70d6818026204833410d2e3917252fa35127:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index ff805e4a22..8d7e33a266 100644 --- a/src/surf/network_cm02.hpp +++ b/src/surf/network_cm02.hpp @@ -1,42 +1,54 @@ -/* Copyright (c) 2013-2014. The SimGrid Team. +/* Copyright (c) 2013-2015. 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. */ +#ifndef SURF_NETWORK_CM02_HPP_ +#define SURF_NETWORK_CM02_HPP_ + +#include + #include "network_interface.hpp" #include "xbt/fifo.h" #include "xbt/graph.h" -#ifndef SURF_NETWORK_CM02_HPP_ -#define SURF_NETWORK_CM02_HPP_ + /*********** * Classes * ***********/ -class NetworkCm02Model; -class NetworkCm02Action; + +namespace simgrid { +namespace surf { + +class XBT_PRIVATE NetworkCm02Model; +class XBT_PRIVATE NetworkCm02Action; +class XBT_PRIVATE NetworkSmpiModel; + +} +} /********* * Tools * *********/ -void net_define_callbacks(void); +XBT_PRIVATE void net_define_callbacks(void); /********* * Model * *********/ + +namespace simgrid { +namespace surf { + class NetworkCm02Model : public NetworkModel { private: void initialize(); public: - NetworkCm02Model(int /*i*/) : NetworkModel() { - f_networkSolve = lmm_solve; - m_haveGap = false; - };//FIXME: add network clean interface + NetworkCm02Model(int /*i*/) : NetworkModel() {}; NetworkCm02Model(); - ~NetworkCm02Model() { - } + ~NetworkCm02Model() { } Link* createLink(const char *name, double bw_initial, tmgr_trace_t bw_trace, @@ -45,13 +57,15 @@ public: e_surf_resource_state_t state_initial, tmgr_trace_t state_trace, e_surf_link_sharing_policy_t policy, - xbt_dict_t properties); + xbt_dict_t properties) override; void addTraces(); void updateActionsStateLazy(double now, double delta); void updateActionsStateFull(double now, double delta); - Action *communicate(RoutingEdge *src, RoutingEdge *dst, + Action *communicate(NetCard *src, NetCard *dst, double size, double rate); bool shareResourcesIsIdempotent() {return true;} + virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; + bool m_haveGap = false; }; /************ @@ -74,20 +88,28 @@ public: void updateState(tmgr_trace_event_t event_type, double value, double date); void updateBandwidth(double value, double date=surf_get_clock()); void updateLatency(double value, double date=surf_get_clock()); + virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; + + }; /********** * Action * **********/ - class NetworkCm02Action : public NetworkAction { - friend Action *NetworkCm02Model::communicate(RoutingEdge *src, RoutingEdge *dst, double size, double rate); + friend Action *NetworkCm02Model::communicate(NetCard *src, NetCard *dst, double size, double rate); + friend NetworkSmpiModel; public: NetworkCm02Action(Model *model, double cost, bool failed) : NetworkAction(model, cost, failed) {}; void updateRemainingLazy(double now); +protected: + double m_senderGap; }; +} +} + #endif /* SURF_NETWORK_CM02_HPP_ */