X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/16bbb8a8212497d9c44c81333ed2c0e689e0c5af..3be0396ca83e510e42adc8e3eb12f4befb2f1fff:/src/surf/network_cm02.hpp?ds=sidebyside diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index fb354f7aa9..54c01364e9 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-2022. 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. */ @@ -7,107 +6,75 @@ #ifndef SURF_NETWORK_CM02_HPP_ #define SURF_NETWORK_CM02_HPP_ -#include - -#include "network_interface.hpp" -#include "xbt/fifo.h" -#include "xbt/graph.h" - - +#include "src/kernel/resource/NetworkModel.hpp" +#include "src/kernel/resource/StandardLinkImpl.hpp" +#include "xbt/base.h" /*********** * Classes * ***********/ -namespace simgrid { -namespace surf { +namespace simgrid::kernel::resource { class XBT_PRIVATE NetworkCm02Model; class XBT_PRIVATE NetworkCm02Action; class XBT_PRIVATE NetworkSmpiModel; -} -} - -/********* - * Tools * - *********/ - -XBT_PRIVATE void net_define_callbacks(void); - /********* * Model * *********/ -namespace simgrid { -namespace surf { - class NetworkCm02Model : public NetworkModel { + /** @brief Get route information (2-way) */ + bool comm_get_route_info(const s4u::Host* src, const s4u::Host* dst, /* OUT */ double& latency, + std::vector& route, std::vector& back_route, + std::unordered_set& netzones) const; + /** @brief Create network action for this communication */ + NetworkCm02Action* comm_action_create(s4u::Host* src, s4u::Host* dst, double size, + const std::vector& route, bool failed); + /** @brief Expand link contraint considering this new communication action */ + void comm_action_expand_constraints(const s4u::Host* src, const s4u::Host* dst, const NetworkCm02Action* action, + const std::vector& route, + const std::vector& back_route) const; + /** @brief Set communication bounds for latency and bandwidth */ + void comm_action_set_bounds(const s4u::Host* src, const s4u::Host* dst, double size, NetworkCm02Action* action, + const std::vector& route, + const std::unordered_set& netzones, double rate) const; + /** @brief Create maxmin variable in communication action */ + void comm_action_set_variable(NetworkCm02Action* action, const std::vector& route, + const std::vector& back_route, bool streamed); + public: - NetworkCm02Model(); - ~NetworkCm02Model() { } - Link* createLink(const char *name, - double bw_initial, - tmgr_trace_t bw_trace, - double lat_initial, - tmgr_trace_t lat_trace, - int initiallyOn, - tmgr_trace_t state_trace, - e_surf_link_sharing_policy_t policy, - xbt_dict_t properties) override; - void addTraces() 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 shareResourcesIsIdempotent() override {return true;} - virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; -protected: - bool m_haveGap = false; + explicit NetworkCm02Model(const std::string& name); + StandardLinkImpl* create_link(const std::string& name, const std::vector& bandwidths) final; + StandardLinkImpl* create_wifi_link(const std::string& name, const std::vector& bandwidths) override; + void update_actions_state_lazy(double now, double delta) override; + void update_actions_state_full(double now, double delta) override; + Action* communicate(s4u::Host* src, s4u::Host* dst, double size, double rate, bool streamed) override; }; /************ * Resource * ************/ -class NetworkCm02Link : public Link { +class NetworkCm02Link : public StandardLinkImpl { public: - NetworkCm02Link(NetworkCm02Model *model, const char *name, xbt_dict_t props, - lmm_system_t system, - double constraint_value, - sg_future_evt_set_t fes, - int initiallyOn, - tmgr_trace_t state_trace, - double metric_peak, - tmgr_trace_t metric_trace, - double lat_initial, - tmgr_trace_t lat_trace, - e_surf_link_sharing_policy_t policy); - void updateState(tmgr_trace_iterator_t event_type, double value, double date) override; - void updateBandwidth(double value, double date=surf_get_clock()) override; - void updateLatency(double value, double date=surf_get_clock()) override; - virtual void gapAppend(double /*size*/, const Link* /*link*/, NetworkAction * /*action*/) {}; - - + NetworkCm02Link(const std::string& name, double bandwidth, lmm::System* system); + void apply_event(kernel::profile::Event* event, double value) override; + void set_bandwidth(double value) override; + void set_latency(double value) override; }; - /********** * Action * **********/ class NetworkCm02Action : public NetworkAction { - friend Action *NetworkCm02Model::communicate(NetCard *src, NetCard *dst, double size, double rate); - friend NetworkSmpiModel; + friend Action* NetworkCm02Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate, + bool streamed); public: - NetworkCm02Action(Model *model, double cost, bool failed) - : NetworkAction(model, cost, failed) {}; - void updateRemainingLazy(double now); -protected: - double m_senderGap; + using NetworkAction::NetworkAction; + void update_remains_lazy(double now) override; }; - -} -} - +} // namespace simgrid::kernel::resource #endif /* SURF_NETWORK_CM02_HPP_ */