Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
directly store the ns3Node, don't rely on a num ID to find it later on
[simgrid.git] / src / surf / network_interface.cpp
1 /* Copyright (c) 2013-2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <algorithm>
8
9 #include "network_interface.hpp"
10 #include "simgrid/sg_config.h"
11
12 #ifndef NETWORK_INTERFACE_CPP_
13 #define NETWORK_INTERFACE_CPP_
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_network, surf, "Logging specific to the SURF network module");
16
17 namespace simgrid {
18   namespace surf {
19
20   /* List of links */
21   std::unordered_map<std::string, LinkImpl*>* LinkImpl::links = new std::unordered_map<std::string, LinkImpl*>();
22
23   LinkImpl* LinkImpl::byName(std::string name)
24   {
25     auto link = links->find(name);
26     return link == links->end() ? nullptr : link->second;
27   }
28   /** @brief Returns the amount of links in the platform */
29   int LinkImpl::linksCount()
30   {
31     return links->size();
32   }
33   void LinkImpl::linksList(std::vector<s4u::Link*>* linkList)
34   {
35     for (auto const& kv : *links) {
36       linkList->push_back(&kv.second->piface_);
37     }
38   }
39
40   /** @brief Returns a list of all existing links */
41   LinkImpl** LinkImpl::linksList()
42   {
43     LinkImpl** res = xbt_new(LinkImpl*, (int)links->size());
44     int i          = 0;
45     for (auto const& kv : *links) {
46       res[i] = kv.second;
47       i++;
48     }
49     return res;
50   }
51   /** @brief destructor of the static data */
52   void LinkImpl::linksExit()
53   {
54     for (auto const& kv : *links)
55       (kv.second)->destroy();
56     delete links;
57   }
58   }
59 }
60
61 /*********
62  * Model *
63  *********/
64
65 simgrid::surf::NetworkModel *surf_network_model = nullptr;
66
67 namespace simgrid {
68   namespace surf {
69
70   NetworkModel::~NetworkModel() = default;
71
72     double NetworkModel::latencyFactor(double /*size*/) {
73       return sg_latency_factor;
74     }
75
76     double NetworkModel::bandwidthFactor(double /*size*/) {
77       return sg_bandwidth_factor;
78     }
79
80     double NetworkModel::bandwidthConstraint(double rate, double /*bound*/, double /*size*/) {
81       return rate;
82     }
83
84     double NetworkModel::nextOccuringEventFull(double now)
85     {
86       double minRes = Model::nextOccuringEventFull(now);
87
88       for (Action const& action : *getRunningActionSet()) {
89         const NetworkAction& net_action = static_cast<const NetworkAction&>(action);
90         if (net_action.latency_ > 0)
91           minRes = (minRes < 0) ? net_action.latency_ : std::min(minRes, net_action.latency_);
92       }
93
94       XBT_DEBUG("Min of share resources %f", minRes);
95
96       return minRes;
97     }
98
99     /************
100      * Resource *
101      ************/
102
103     LinkImpl::LinkImpl(simgrid::surf::NetworkModel* model, const std::string& name, lmm_constraint_t constraint)
104         : Resource(model, name, constraint), piface_(this)
105     {
106
107       if (name != "__loopback__")
108         xbt_assert(not LinkImpl::byName(name), "Link '%s' declared several times in the platform.", name.c_str());
109
110       latency_.scale   = 1;
111       bandwidth_.scale = 1;
112
113       links->insert({name, this});
114       XBT_DEBUG("Create link '%s'", name.c_str());
115     }
116
117     /** @brief use destroy() instead of this destructor */
118     LinkImpl::~LinkImpl()
119     {
120       xbt_assert(currentlyDestroying_, "Don't delete Links directly. Call destroy() instead.");
121     }
122     /** @brief Fire the required callbacks and destroy the object
123      *
124      * Don't delete directly a Link, call l->destroy() instead.
125      */
126     void LinkImpl::destroy()
127     {
128       if (not currentlyDestroying_) {
129         currentlyDestroying_ = true;
130         s4u::Link::onDestruction(this->piface_);
131         delete this;
132       }
133     }
134
135     bool LinkImpl::isUsed()
136     {
137       return model()->getMaxminSystem()->constraint_used(constraint());
138     }
139
140     double LinkImpl::latency()
141     {
142       return latency_.peak * latency_.scale;
143     }
144
145     double LinkImpl::bandwidth()
146     {
147       return bandwidth_.peak * bandwidth_.scale;
148     }
149
150     int LinkImpl::sharingPolicy()
151     {
152       return constraint()->get_sharing_policy();
153     }
154
155     void LinkImpl::turnOn()
156     {
157       if (isOff()) {
158         Resource::turnOn();
159         s4u::Link::onStateChange(this->piface_);
160       }
161     }
162     void LinkImpl::turnOff()
163     {
164       if (isOn()) {
165         Resource::turnOff();
166         s4u::Link::onStateChange(this->piface_);
167       }
168     }
169     void LinkImpl::setStateTrace(tmgr_trace_t trace)
170     {
171       xbt_assert(stateEvent_ == nullptr, "Cannot set a second state trace to Link %s", getCname());
172       stateEvent_ = future_evt_set->add_trace(trace, this);
173     }
174     void LinkImpl::setBandwidthTrace(tmgr_trace_t trace)
175     {
176       xbt_assert(bandwidth_.event == nullptr, "Cannot set a second bandwidth trace to Link %s", getCname());
177       bandwidth_.event = future_evt_set->add_trace(trace, this);
178     }
179     void LinkImpl::setLatencyTrace(tmgr_trace_t trace)
180     {
181       xbt_assert(latency_.event == nullptr, "Cannot set a second latency trace to Link %s", getCname());
182       latency_.event = future_evt_set->add_trace(trace, this);
183     }
184
185
186     /**********
187      * Action *
188      **********/
189
190     void NetworkAction::setState(Action::State state)
191     {
192       Action::setState(state);
193       s4u::Link::onCommunicationStateChange(this);
194     }
195
196     /** @brief returns a list of all Links that this action is using */
197     std::list<LinkImpl*> NetworkAction::links()
198     {
199       std::list<LinkImpl*> retlist;
200       int llen = getVariable()->get_number_of_constraint();
201
202       for (int i = 0; i < llen; i++) {
203         /* Beware of composite actions: ptasks put links and cpus together */
204         // extra pb: we cannot dynamic_cast from void*...
205         Resource* resource = static_cast<Resource*>(getVariable()->get_constraint(i)->get_id());
206         LinkImpl* link     = dynamic_cast<LinkImpl*>(resource);
207         if (link != nullptr)
208           retlist.push_back(link);
209       }
210
211       return retlist;
212     }
213   }
214 }
215
216 #endif /* NETWORK_INTERFACE_CPP_ */