Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
WIP stop using const char* in C++ layers
[simgrid.git] / src / surf / network_interface.cpp
1 /* Copyright (c) 2013-2015. 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(const char* name)
24   {
25     if (links->find(name) == links->end())
26       return nullptr;
27     return links->at(name);
28   }
29   /** @brief Returns the amount of links in the platform */
30   int LinkImpl::linksCount()
31   {
32     return links->size();
33     }
34     /** @brief Returns a list of all existing links */
35     LinkImpl** LinkImpl::linksList()
36     {
37       LinkImpl** res = xbt_new(LinkImpl*, (int)links->size());
38       int i=0;
39       for (auto kv : *links) {
40         res[i++] = kv.second;
41       }
42       return res;
43     }
44     /** @brief destructor of the static data */
45     void LinkImpl::linksExit()
46     {
47       for (auto kv : *links)
48         (kv.second)->destroy();
49       delete links;
50     }
51   }
52 }
53
54 /*********
55  * Model *
56  *********/
57
58 simgrid::surf::NetworkModel *surf_network_model = nullptr;
59
60 namespace simgrid {
61   namespace surf {
62
63     NetworkModel::~NetworkModel()
64     {
65       lmm_system_free(maxminSystem_);
66       xbt_heap_free(actionHeap_);
67       delete modifiedSet_;
68     }
69
70     double NetworkModel::latencyFactor(double /*size*/) {
71       return sg_latency_factor;
72     }
73
74     double NetworkModel::bandwidthFactor(double /*size*/) {
75       return sg_bandwidth_factor;
76     }
77
78     double NetworkModel::bandwidthConstraint(double rate, double /*bound*/, double /*size*/) {
79       return rate;
80     }
81
82     double NetworkModel::nextOccuringEventFull(double now)
83     {
84       double minRes = Model::nextOccuringEventFull(now);
85
86       for(auto it(getRunningActionSet()->begin()), itend(getRunningActionSet()->end()); it != itend ; it++) {
87         NetworkAction *action = static_cast<NetworkAction*>(&*it);
88         if (action->latency_ > 0)
89           minRes = (minRes < 0) ? action->latency_ : std::min(minRes, action->latency_);
90       }
91
92       XBT_DEBUG("Min of share resources %f", minRes);
93
94       return minRes;
95     }
96
97     /************
98      * Resource *
99      ************/
100
101     LinkImpl::LinkImpl(simgrid::surf::NetworkModel* model, const char* name, lmm_constraint_t constraint)
102         : Resource(model, name, constraint), piface_(Link(this))
103     {
104
105       if (strcmp(name,"__loopback__"))
106         xbt_assert(!LinkImpl::byName(name), "Link '%s' declared several times in the platform.", name);
107
108       latency_.scale   = 1;
109       bandwidth_.scale = 1;
110
111       links->insert({name, this});
112       XBT_DEBUG("Create link '%s'",name);
113
114     }
115
116     /** @brief use destroy() instead of this destructor */
117     LinkImpl::~LinkImpl()
118     {
119       xbt_assert(currentlyDestroying_, "Don't delete Links directly. Call destroy() instead.");
120     }
121     /** @brief Fire the required callbacks and destroy the object
122      *
123      * Don't delete directly a Link, call l->destroy() instead.
124      */
125     void LinkImpl::destroy()
126     {
127       if (!currentlyDestroying_) {
128         currentlyDestroying_ = true;
129         s4u::Link::onDestruction(this->piface_);
130         delete this;
131       }
132     }
133
134     bool LinkImpl::isUsed()
135     {
136       return lmm_constraint_used(model()->getMaxminSystem(), constraint());
137     }
138
139     double LinkImpl::latency()
140     {
141       return latency_.peak * latency_.scale;
142     }
143
144     double LinkImpl::bandwidth()
145     {
146       return bandwidth_.peak * bandwidth_.scale;
147     }
148
149     int LinkImpl::sharingPolicy()
150     {
151       return lmm_constraint_sharing_policy(constraint());
152     }
153
154     void LinkImpl::turnOn()
155     {
156       if (isOff()) {
157         Resource::turnOn();
158         s4u::Link::onStateChange(this->piface_);
159       }
160     }
161     void LinkImpl::turnOff()
162     {
163       if (isOn()) {
164         Resource::turnOff();
165         s4u::Link::onStateChange(this->piface_);
166       }
167     }
168     void LinkImpl::setStateTrace(tmgr_trace_t trace)
169     {
170       xbt_assert(stateEvent_ == nullptr, "Cannot set a second state trace to Link %s", cname());
171       stateEvent_ = future_evt_set->add_trace(trace, 0.0, this);
172     }
173     void LinkImpl::setBandwidthTrace(tmgr_trace_t trace)
174     {
175       xbt_assert(bandwidth_.event == nullptr, "Cannot set a second bandwidth trace to Link %s", cname());
176       bandwidth_.event = future_evt_set->add_trace(trace, 0.0, this);
177     }
178     void LinkImpl::setLatencyTrace(tmgr_trace_t trace)
179     {
180       xbt_assert(latency_.event == nullptr, "Cannot set a second latency trace to Link %s", cname());
181       latency_.event = future_evt_set->add_trace(trace, 0.0, this);
182     }
183
184
185     /**********
186      * Action *
187      **********/
188
189     void NetworkAction::setState(Action::State state)
190     {
191       Action::setState(state);
192       s4u::Link::onCommunicationStateChange(this);
193     }
194
195     /** @brief returns a list of all Links that this action is using */
196     std::list<LinkImpl*> NetworkAction::links()
197     {
198       std::list<LinkImpl*> retlist;
199       lmm_system_t sys = getModel()->getMaxminSystem();
200       int llen         = lmm_get_number_of_cnst_from_var(sys, getVariable());
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*>(lmm_constraint_id(lmm_get_cnst_from_var(sys, getVariable(), i)));
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_ */