Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / surf / network_ns3.cpp
1 /* Copyright (c) 2007-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 <unordered_set>
8
9 #include "ns3/core-module.h"
10 #include "ns3/node.h"
11
12 #include "ns3/ns3_interface.h"
13 #include "ns3/ns3_simulator.h"
14 #include "src/surf/network_ns3.hpp"
15
16 #include "src/surf/HostImpl.hpp"
17 #include "src/surf/surf_private.h"
18 #include "simgrid/sg_config.h"
19 #include "src/instr/instr_private.h" // TRACE_is_enabled(). FIXME: remove by subscribing tracing to the surf signals
20
21 #include "simgrid/s4u/As.hpp"
22
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ns3, surf, "Logging specific to the SURF network NS3 module");
24
25 int NS3_EXTENSION_ID;
26
27 xbt_dynar_t IPV4addr = xbt_dynar_new(sizeof(char*),free);
28 static double time_to_next_flow_completion = -1;
29
30 /*****************
31  * Crude globals *
32  *****************/
33
34 extern xbt_dict_t flowFromSock;
35
36 static ns3::InternetStackHelper stack;
37 static ns3::NodeContainer nodes;
38 static ns3::NodeContainer Cluster_nodes;
39 static ns3::Ipv4InterfaceContainer interfaces;
40
41 static int number_of_nodes = 0;
42 static int number_of_clusters_nodes = 0;
43 static int number_of_links = 1;
44 static int number_of_networks = 1;
45 static int port_number = 1025; //Port number is limited from 1025 to 65 000
46
47 static NS3Sim* ns3_sim = 0;
48
49
50 /*************
51  * Callbacks *
52  *************/
53
54 static void simgrid_ns3_add_host(simgrid::s4u::Host& host)
55 {
56   const char* id = host.name().c_str();
57   XBT_DEBUG("NS3_ADD_HOST '%s'", id);
58
59   ns3_node_t ns3host  = xbt_new0(s_ns3_node_t,1);
60   ns3::Ptr<ns3::Node> node =  ns3::CreateObject<ns3::Node> (0);
61   stack.Install(node);
62   nodes.Add(node);
63   ns3host->node_num = number_of_nodes ++;
64
65   host.extension_set(NS3_EXTENSION_ID, ns3host);
66 }
67
68 static void simgrid_ns3_add_netcard(simgrid::surf::NetCard* netcard)
69 {
70   const char* id = netcard->name();
71
72   ns3_node_t ns3netcard  = xbt_new0(s_ns3_node_t,1);
73   XBT_DEBUG("Interface ns3 add netcard[%d] '%s'",number_of_nodes,id);
74   ns3::Ptr<ns3::Node> node =  ns3::CreateObject<ns3::Node> (0);
75   stack.Install(node);
76   nodes.Add(node);
77   ns3netcard->node_num = number_of_nodes++;
78
79
80   xbt_lib_set(as_router_lib, id, NS3_ASR_LEVEL, ns3netcard );
81 }
82
83 #include "src/surf/xml/platf.hpp" // FIXME: move that back to the parsing area
84 static void parse_ns3_add_cluster(sg_platf_cluster_cbarg_t cluster)
85 {
86   const char *groups = NULL;
87
88   int start, end, i;
89   unsigned int iter;
90
91   xbt_dynar_t tab_elements_num = xbt_dynar_new(sizeof(int), NULL);
92
93   char *router_id,*host_id;
94
95   xbt_dynar_t radical_elements = xbt_str_split(cluster->radical, ",");
96   xbt_dynar_foreach(radical_elements, iter, groups) {
97   xbt_dynar_t radical_ends = xbt_str_split(groups, "-");
98
99     switch (xbt_dynar_length(radical_ends)) {
100     case 1:
101       start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
102       xbt_dynar_push_as(tab_elements_num, int, start);
103       router_id = bprintf("ns3_%s%d%s", cluster->prefix, start, cluster->suffix);
104       simgrid::s4u::Host::by_name_or_create(router_id)
105         ->extension_set(NS3_EXTENSION_ID, ns3_add_host_cluster(router_id));
106       XBT_DEBUG("NS3_ADD_ROUTER '%s'",router_id);
107       free(router_id);
108       break;
109
110     case 2:
111       start = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 0, char *));
112       end = surf_parse_get_int(xbt_dynar_get_as(radical_ends, 1, char *));
113       for (i = start; i <= end; i++){
114         xbt_dynar_push_as(tab_elements_num, int, i);
115         router_id = bprintf("ns3_%s%d%s", cluster->prefix, i, cluster->suffix);
116         simgrid::s4u::Host::by_name_or_create(router_id)
117           ->extension_set(NS3_EXTENSION_ID, ns3_add_host_cluster(router_id));
118         XBT_DEBUG("NS3_ADD_ROUTER '%s'",router_id);
119         free(router_id);
120       }
121       break;
122
123     default:
124       XBT_DEBUG("Malformed radical");
125     }
126   }
127
128   //Create links
129   unsigned int cpt;
130   int elmts;
131   char * lat = bprintf("%fs", cluster->lat);
132   char * bw =  bprintf("%fBps", cluster->bw);
133
134   xbt_dynar_foreach(tab_elements_num,cpt,elmts) {
135     host_id   = bprintf("%s%d%s", cluster->prefix, elmts, cluster->suffix);
136     router_id = bprintf("ns3_%s%d%s", cluster->prefix, elmts, cluster->suffix);
137     XBT_DEBUG("Create link from '%s' to '%s'",host_id,router_id);
138
139     ns3_node_t host_src = ns3_find_host(host_id);
140     ns3_node_t host_dst = ns3_find_host(router_id);
141
142     xbt_assert(host_src && host_dst, "\tns3_add_link from %d to %d",host_src->node_num,host_dst->node_num);
143
144     ns3_add_link(host_src->node_num,NS3_NETWORK_ELEMENT_HOST,
145                  host_dst->node_num,NS3_NETWORK_ELEMENT_HOST,
146                  bw,lat);
147
148     free(router_id);
149     free(host_id);
150   }
151   xbt_free(lat);
152   xbt_free(bw);
153   xbt_dynar_free(&tab_elements_num);
154
155
156   //Create link backbone
157   lat = bprintf("%fs", cluster->bb_lat);
158   bw =  bprintf("%fBps", cluster->bb_bw);
159   ns3_add_cluster(bw,lat,cluster->id);
160   xbt_free(lat);
161   xbt_free(bw);
162 }
163
164 /* Create the ns3 topology based on routing strategy */
165 static void create_ns3_topology(void)
166 {
167   XBT_DEBUG("Starting topology generation");
168
169   xbt_dynar_shrink(IPV4addr,0);
170
171   //get the onelinks from the parsed platform
172   xbt_dynar_t onelink_routes = routing_platf->getOneLinkRoutes();
173
174   std::unordered_set<simgrid::surf::LinkNS3*> already_seen = std::unordered_set<simgrid::surf::LinkNS3*>();
175
176   XBT_DEBUG("There is %ld one-link routes",onelink_routes->used);
177   simgrid::surf::Onelink *onelink;
178   unsigned int iter;
179   xbt_dynar_foreach(onelink_routes, iter, onelink) {
180     char *src = onelink->src_->name();
181     char *dst = onelink->dst_->name();
182     simgrid::surf::LinkNS3 *link = static_cast<simgrid::surf::LinkNS3 *>(onelink->link_);
183
184     if (strcmp(src,dst) && (already_seen.find(link) == already_seen.end())) {
185       already_seen.insert(link);
186       XBT_DEBUG("Route from '%s' to '%s' with link '%s'", src, dst, link->getName());
187       char * link_bdw = bprintf("%fBps", link->getBandwidth());
188       char * link_lat = bprintf("%fs", link->getLatency());
189
190       //   XBT_DEBUG("src (%s), dst (%s), src_id = %d, dst_id = %d",src,dst, src_id, dst_id);
191       XBT_DEBUG("\tLink (%s) bdw:%s lat:%s", link->getName(), link_bdw, link_lat);
192
193       //create link ns3
194       ns3_node_t host_src = ns3_find_host(src);
195       if (!host_src)
196         host_src = static_cast<ns3_node_t>(xbt_lib_get_or_null(as_router_lib,src,NS3_ASR_LEVEL));
197       ns3_node_t host_dst = ns3_find_host(dst);
198       if(!host_dst)
199         host_dst = static_cast<ns3_node_t>(xbt_lib_get_or_null(as_router_lib,dst,NS3_ASR_LEVEL));
200
201       if (!host_src || !host_dst)
202           xbt_die("\tns3_add_link from %d to %d",host_src->node_num,host_dst->node_num);
203
204       ns3_add_link(host_src->node_num,NS3_NETWORK_ELEMENT_HOST,host_dst->node_num,NS3_NETWORK_ELEMENT_HOST,link_bdw,link_lat);
205
206       xbt_free(link_bdw);
207       xbt_free(link_lat);
208     }
209   }
210 }
211
212 /*********
213  * Model *
214  *********/
215 void surf_network_model_init_NS3()
216 {
217   if (surf_network_model)
218     return;
219
220   surf_network_model = new simgrid::surf::NetworkNS3Model();
221   xbt_dynar_push(all_existing_models, &surf_network_model);
222 }
223
224 namespace simgrid {
225 namespace surf {
226
227 NetworkNS3Model::NetworkNS3Model() : NetworkModel() {
228   ns3_initialize(xbt_cfg_get_string(_sg_cfg_set, "ns3/TcpModel"));
229
230   routing_model_create(NULL);
231   simgrid::s4u::Host::onCreation.connect(simgrid_ns3_add_host);
232   simgrid::surf::netcardCreatedCallbacks.connect(simgrid_ns3_add_netcard);
233   simgrid::surf::on_link.connect(netlink_parse_init);
234   simgrid::surf::on_cluster.connect (&parse_ns3_add_cluster);
235   simgrid::surf::on_postparse.connect(&create_ns3_topology); //get_one_link_routes
236   simgrid::surf::on_postparse.connect(&ns3_end_platform); //InitializeRoutes
237
238   NS3_EXTENSION_ID = simgrid::s4u::Host::extension_create(xbt_free_f);
239   NS3_ASR_LEVEL  = xbt_lib_add_level(as_router_lib, xbt_free_f);
240 }
241
242 NetworkNS3Model::~NetworkNS3Model() {
243   delete ns3_sim;
244   xbt_dynar_free_container(&IPV4addr);
245   xbt_dict_free(&flowFromSock);
246 }
247
248 Link* NetworkNS3Model::createLink(const char *name, double bandwidth, double latency, e_surf_link_sharing_policy_t policy,
249     xbt_dict_t properties){
250
251   return new LinkNS3(this, name, properties, bandwidth, latency);
252 }
253
254 Action *NetworkNS3Model::communicate(NetCard *src, NetCard *dst, double size, double rate)
255 {
256   XBT_DEBUG("Communicate from %s to %s", src->name(), dst->name());
257   NetworkNS3Action *action = new NetworkNS3Action(this, size, 0);
258
259   ns3_create_flow(src->name(), dst->name(), surf_get_clock(), size, action);
260
261   action->m_lastSent = 0;
262   action->p_srcElm = src;
263   action->p_dstElm = dst;
264   networkCommunicateCallbacks(action, src, dst, size, rate);
265
266   return action;
267 }
268
269 double NetworkNS3Model::next_occuring_event(double now)
270 {
271   XBT_DEBUG("ns3_next_occuring_event");
272
273   //get the first relevant value from the running_actions list
274   if (!getRunningActionSet()->size() || now == 0.0)
275     return -1.0;
276   else
277     do {
278       ns3_simulator(now);
279       time_to_next_flow_completion = ns3::Simulator::Now().GetSeconds() - surf_get_clock();//FIXME: use now instead ?
280     } while(double_equals(time_to_next_flow_completion, 0, sg_surf_precision));
281
282   XBT_DEBUG("min       : %f", now);
283   XBT_DEBUG("ns3  time : %f", ns3::Simulator::Now().GetSeconds());
284   XBT_DEBUG("surf time : %f", surf_get_clock());
285   XBT_DEBUG("Next completion %f :", time_to_next_flow_completion);
286
287   return time_to_next_flow_completion;
288 }
289
290 void NetworkNS3Model::updateActionsState(double now, double delta)
291 {
292   static xbt_dynar_t socket_to_destroy = xbt_dynar_new(sizeof(char*),NULL);
293
294   /* If there are no running flows, advance the NS3 simulator and return */
295   if (getRunningActionSet()->empty()) {
296
297     while(double_positive(now - ns3::Simulator::Now().GetSeconds(), sg_surf_precision))
298       ns3_simulator(now-ns3::Simulator::Now().GetSeconds());
299
300     return;
301   }
302
303   xbt_dict_cursor_t cursor = NULL;
304   char *ns3Socket;
305   SgFlow *sgFlow;
306   xbt_dict_foreach(flowFromSock,cursor,ns3Socket,sgFlow){
307     NetworkNS3Action * action = sgFlow->action_;
308     XBT_DEBUG("Processing socket %p (action %p)",sgFlow,action);
309     action->setRemains(action->getCost() - sgFlow->sentBytes_);
310
311     if (TRACE_is_enabled() &&
312         action->getState() == Action::State::running){
313       double data_delta_sent = sgFlow->sentBytes_ - action->m_lastSent;
314
315       std::vector<Link*> *route = new std::vector<Link*>();
316
317       routing_platf->getRouteAndLatency (action->p_srcElm, action->p_dstElm, route, NULL);
318       for (auto link : *route)
319         TRACE_surf_link_set_utilization (link->getName(), action->getCategory(), (data_delta_sent)/delta, now-delta, delta);
320       delete route;
321
322       action->m_lastSent = sgFlow->sentBytes_;
323     }
324
325     if(sgFlow->finished_){
326       xbt_dynar_push(socket_to_destroy,&ns3Socket);
327       XBT_DEBUG("Destroy socket %p of action %p", ns3Socket, action);
328       action->finish();
329       action->setState(Action::State::done);
330     }
331   }
332
333   while (!xbt_dynar_is_empty(socket_to_destroy)){
334     xbt_dynar_pop(socket_to_destroy,&ns3Socket);
335
336     if (XBT_LOG_ISENABLED(ns3, xbt_log_priority_debug)) {
337       SgFlow *flow = (SgFlow*)xbt_dict_get (flowFromSock, ns3Socket);
338       XBT_DEBUG ("Removing socket %p of action %p", ns3Socket, flow->action_);
339     }
340     xbt_dict_remove(flowFromSock, ns3Socket);
341   }
342   return;
343 }
344
345 /************
346  * Resource *
347  ************/
348
349 LinkNS3::LinkNS3(NetworkNS3Model *model, const char *name, xbt_dict_t props, double bandwidth, double latency)
350  : Link(model, name, props)
351 {
352   m_bandwidth.peak = bandwidth;
353   m_latency.peak = latency;
354
355   Link::onCreation(this);
356 }
357
358 LinkNS3::~LinkNS3()
359 {
360 }
361
362 void LinkNS3::apply_event(tmgr_trace_iterator_t event, double value)
363 {
364   THROW_UNIMPLEMENTED;
365 }
366 void LinkNS3::setBandwidthTrace(tmgr_trace_t trace) {
367   xbt_die("The NS3 network model doesn't support latency state traces");
368 }
369 void LinkNS3::setLatencyTrace(tmgr_trace_t trace) {
370   xbt_die("The NS3 network model doesn't support latency state traces");
371 }
372
373 /**********
374  * Action *
375  **********/
376
377 NetworkNS3Action::NetworkNS3Action(Model *model, double cost, bool failed)
378 : NetworkAction(model, cost, failed)
379 {}
380
381 void NetworkNS3Action::suspend()
382 {
383   THROW_UNIMPLEMENTED;
384 }
385
386 void NetworkNS3Action::resume()
387 {
388   THROW_UNIMPLEMENTED;
389 }
390
391   /* Test whether a flow is suspended */
392 bool NetworkNS3Action::isSuspended()
393 {
394   return 0;
395 }
396
397 int NetworkNS3Action::unref()
398 {
399   m_refcount--;
400   if (!m_refcount) {
401   if (action_hook.is_linked())
402     p_stateSet->erase(p_stateSet->iterator_to(*this));
403     XBT_DEBUG ("Removing action %p", this);
404     delete this;
405     return 1;
406   }
407   return 0;
408 }
409
410 }
411 }
412
413
414
415
416
417 void ns3_simulator(double min){
418   ns3_sim->simulator_start(min);
419 }
420
421 void ns3_create_flow(const char* a,const char *b,double start,u_int32_t TotalBytes,simgrid::surf::NetworkNS3Action * action)
422 {
423   ns3_node_t node1 = ns3_find_host(a);
424   ns3_node_t node2 = ns3_find_host(b);
425
426   ns3::Ptr<ns3::Node> src_node = nodes.Get(node1->node_num);
427   ns3::Ptr<ns3::Node> dst_node = nodes.Get(node2->node_num);
428
429   char* addr = (char*)xbt_dynar_get_as(IPV4addr,node2->node_num,char*);
430
431   XBT_DEBUG("ns3_create_flow %d Bytes from %d to %d with Interface %s",TotalBytes, node1->node_num, node2->node_num,addr);
432   ns3_sim->create_flow_NS3(src_node, dst_node, port_number, start, addr, TotalBytes, action);
433
434   port_number++;
435   xbt_assert(port_number <= 65000, "Too many connections! Port number is saturated.");
436 }
437
438 // initialize the NS3 interface and environment
439 void ns3_initialize(const char* TcpProtocol){
440   xbt_assert(!ns3_sim, "ns3 already initialized");
441   ns3_sim = new NS3Sim();
442
443 //  tcpModel are:
444 //  "ns3::TcpNewReno"
445 //  "ns3::TcpReno"
446 //  "ns3::TcpTahoe"
447
448   ns3::Config::SetDefault ("ns3::TcpSocket::SegmentSize", ns3::UintegerValue (1024)); // 1024-byte packet for easier reading
449   ns3::Config::SetDefault ("ns3::TcpSocket::DelAckCount", ns3::UintegerValue (1));
450
451   if (!strcmp(TcpProtocol,"default"))
452     return;
453
454   if (!strcmp(TcpProtocol,"Reno")) {
455     XBT_INFO("Switching Tcp protocol to '%s'",TcpProtocol);
456     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpReno"));
457     return;
458   }
459   if (!strcmp(TcpProtocol,"NewReno")) {
460     XBT_INFO("Switching Tcp protocol to '%s'",TcpProtocol);
461     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpNewReno"));
462     return;
463   }
464   if(!strcmp(TcpProtocol,"Tahoe")){
465     XBT_INFO("Switching Tcp protocol to '%s'",TcpProtocol);
466     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpTahoe"));
467     return;
468   }
469
470   xbt_die("The ns3/TcpModel must be : NewReno or Reno or Tahoe");
471 }
472
473 void * ns3_add_host_cluster(const char * id)
474 {
475   ns3_node_t host  = xbt_new0(s_ns3_node_t,1);
476   XBT_DEBUG("Interface ns3 add host[%d] '%s'",number_of_nodes,id);
477   ns3::Ptr<ns3::Node> node =  ns3::CreateObject<ns3::Node> (0);
478   stack.Install(node);
479   Cluster_nodes.Add(node);
480   nodes.Add(node);
481   host->node_num = number_of_nodes;
482   number_of_nodes++;
483   return host;
484 }
485
486 void ns3_add_cluster(char * bw,char * lat,const char *id)
487 {
488
489   XBT_DEBUG("cluster_id: %s",id);
490   XBT_DEBUG("bw: %s lat: %s",bw,lat);
491   XBT_DEBUG("Number of %s nodes: %d",id,Cluster_nodes.GetN() - number_of_clusters_nodes);
492
493   ns3::NodeContainer Nodes;
494
495   for(unsigned int i = number_of_clusters_nodes; i < Cluster_nodes.GetN() ; i++){
496     Nodes.Add(Cluster_nodes.Get(i));
497     XBT_DEBUG("Add node %d to cluster",i);
498   }
499   number_of_clusters_nodes = Cluster_nodes.GetN();
500
501   XBT_DEBUG("Add router %d to cluster",nodes.GetN()-Nodes.GetN()-1);
502   Nodes.Add(nodes.Get(nodes.GetN()-Nodes.GetN()-1));
503
504   if(Nodes.GetN() > 65000)
505     xbt_die("Cluster with NS3 is limited to 65000 nodes");
506   ns3::CsmaHelper csma;
507   csma.SetChannelAttribute ("DataRate", ns3::StringValue (bw));
508   csma.SetChannelAttribute ("Delay", ns3::StringValue (lat));
509   ns3::NetDeviceContainer devices = csma.Install (Nodes);
510   XBT_DEBUG("Create CSMA");
511
512   char * adr = bprintf("%d.%d.0.0",number_of_networks,number_of_links);
513   XBT_DEBUG("Assign IP Addresses %s to CSMA.",adr);
514   ns3::Ipv4AddressHelper ipv4;
515   ipv4.SetBase (adr, "255.255.0.0");
516   free(adr);
517   interfaces.Add(ipv4.Assign (devices));
518
519   if(number_of_links == 255){
520     if(number_of_networks == 255)
521       xbt_die("Number of links and networks exceed 255*255");
522     number_of_links = 1;
523     number_of_networks++;
524   }else{
525     number_of_links++;
526   }
527   XBT_DEBUG("Number of nodes in Cluster_nodes: %d",Cluster_nodes.GetN());
528 }
529
530 static char* transformIpv4Address (ns3::Ipv4Address from){
531   std::stringstream sstream;
532   sstream << from ;
533   std::string s = sstream.str();
534   return bprintf("%s",s.c_str());
535 }
536
537 void ns3_add_link(int src, e_ns3_network_element_type_t type_src,
538           int dst, e_ns3_network_element_type_t type_dst,
539           char *bw, char *lat)
540 {
541   if(number_of_links == 1 ) {
542     LogComponentEnable("UdpEchoClientApplication", ns3::LOG_LEVEL_INFO);
543     LogComponentEnable("UdpEchoServerApplication", ns3::LOG_LEVEL_INFO);
544   }
545
546   ns3::MyPointToPointHelper pointToPoint;
547
548   ns3::NetDeviceContainer netA;
549   ns3::Ipv4AddressHelper address;
550
551   ns3::Ptr<ns3::Node> a = nodes.Get(src);
552   ns3::Ptr<ns3::Node> b = nodes.Get(dst);
553
554   XBT_DEBUG("\tAdd PTP from %d to %d bw:'%s' lat:'%s'",src,dst,bw,lat);
555   pointToPoint.SetDeviceAttribute ("DataRate", ns3::StringValue (bw));
556   pointToPoint.SetChannelAttribute ("Delay", ns3::StringValue (lat));
557   //pointToPoint.EnablePcapAll("test_ns3_trace"); //DEBUG
558
559   netA.Add(pointToPoint.Install (a, type_src, b, type_dst));
560
561   char * adr = bprintf("%d.%d.0.0",number_of_networks,number_of_links);
562   address.SetBase (adr, "255.255.0.0");
563   XBT_DEBUG("\tInterface stack '%s'",adr);
564   free(adr);
565   interfaces.Add(address.Assign (netA));
566
567   char *tmp = transformIpv4Address(interfaces.GetAddress(interfaces.GetN()-2));
568   xbt_dynar_set_as(IPV4addr,src,char*,tmp);
569   XBT_DEBUG("Have write '%s' for Node '%d'",(char*)xbt_dynar_get_as(IPV4addr,src,char*),src);
570
571   tmp = transformIpv4Address(interfaces.GetAddress(interfaces.GetN()-1));
572   xbt_dynar_set_as(IPV4addr,dst,char*,tmp);
573   XBT_DEBUG("Have write '%s' for Node '%d'",(char*)xbt_dynar_get_as(IPV4addr,dst,char*),dst);
574
575   if(number_of_links == 255){
576     if(number_of_networks == 255)
577       xbt_die("Number of links and networks exceed 255*255");
578     number_of_links = 1;
579     number_of_networks++;
580   }else{
581     number_of_links++;
582   }
583 }
584
585 void ns3_end_platform(void)
586 {
587   XBT_DEBUG("InitializeRoutes");
588   ns3::GlobalRouteManager::BuildGlobalRoutingDatabase();
589   ns3::GlobalRouteManager::InitializeRoutes();
590 }