Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in routing
[simgrid.git] / src / surf / surf_routing.hpp
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 #ifndef NETWORK_ROUTING_HPP_
8 #define NETWORK_ROUTING_HPP_
9
10 #include <xbt/base.h>
11 #include <xbt/signal.hpp>
12
13 #include "surf_interface.hpp"
14 #include <float.h>
15
16 XBT_PUBLIC(void) routing_model_create( void *loopback);
17
18 namespace simgrid {
19 namespace surf {
20
21 /***********
22  * Classes *
23  ***********/
24
25 class As;
26 class XBT_PRIVATE RoutingModelDescription;
27 class XBT_PRIVATE Onelink;
28 class RoutingPlatf;
29
30 /** @ingroup SURF_routing_interface
31  * @brief Network cards are the vertices in the graph representing the network, used to compute paths between nodes.
32  *
33  * @details This represents a position in the network. One can route information between two netcards
34  */
35 class NetCard {
36 public:
37   virtual ~NetCard(){};
38   virtual int id()=0; // Our rank in the vertices_ array of our containing AS.
39   virtual void setId(int id)=0;
40   virtual char *name()=0;
41   virtual As *containingAS()=0; // This is the AS in which I am
42   virtual e_surf_network_element_type_t getRcType()=0;
43 };
44
45 /** @ingroup SURF_routing_interface
46  * @brief The Autonomous System (AS) routing interface
47  * @details [TODO]
48  */
49 class As {
50 public:
51   As(const char*name);
52   /** @brief Close that AS: no more content can be added to it */
53   virtual void Seal()=0;
54   virtual ~As();
55
56   char *name_ = nullptr;
57   NetCard *netcard_ = nullptr;
58   As *father_ = nullptr;
59   xbt_dict_t sons_ = xbt_dict_new_homogeneous(NULL);
60
61   xbt_dynar_t vertices_ = xbt_dynar_new(sizeof(char*),NULL); // our content, as known to our graph routing algorithm (maps vertexId -> vertex)
62   xbt_dict_t bypassRoutes_ = nullptr;
63   e_surf_routing_hierarchy_t hierarchy_ = SURF_ROUTING_NULL;
64   xbt_dynar_t upDownLinks = xbt_dynar_new(sizeof(s_surf_parsing_link_up_down_t),NULL);
65
66
67
68   /**
69    * @brief Probe the routing path between two points
70    *
71    * The networking model uses this function when creating a communication
72    * to retrieve both the list of links that the create communication will use,
73    * and the summed latency that these links represent.
74    *
75    * The network could recompute the latency by itself from the list, but it would
76    * require an additional link set traversal. This operation being on the critical
77    * path of SimGrid, the routing computes the latency in behalf of the network.
78    *
79    * Things are rather complex here because we have to find the path from ASes to ASes, and within each.
80    * In addition, the different ASes may use differing routing models.
81    * Some ASes may be routed in full, others may have only some connection information and use a shortest path on top of that, and so on.
82    * Some ASes may even not have any predefined links and use only coordinate informations to compute the latency.
83    *
84    * So, the path is constructed recursively, with each traversed AS adding its information to the set.
85    * The algorithm for that is explained in http://hal.inria.fr/hal-00650233/
86    * 
87    * @param src Initial point of the routing path
88    * @param dst Final point of the routing path
89    * @param into Container into which the traversed links should be pushed
90    * @param latency Accumulator in which the latencies should be added (caller must set it to 0)
91    */
92   virtual void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency)=0;
93   /** @brief retrieves the list of all routes of size 1 (of type src x dst x Link) */
94   virtual xbt_dynar_t getOneLinkRoutes()=0;
95
96   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges)=0;
97
98   virtual sg_platf_route_cbarg_t getBypassRoute(NetCard *src, NetCard *dst,double *lat);
99
100   /* Add content to the AS, at parsing time. It should be sealed afterward. */
101   virtual int addComponent(NetCard *elm); /* A host, a router or an AS, whatever */
102   virtual void parseRoute(sg_platf_route_cbarg_t route);
103   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route);
104 };
105
106 struct XBT_PRIVATE NetCardImpl : public NetCard {
107 public:
108   NetCardImpl(const char *name, e_surf_network_element_type_t componentType, As *as)
109   : name_(xbt_strdup(name)),
110     componentType_(componentType),
111     containingAS_(as)
112   {}
113   ~NetCardImpl() { xbt_free(name_);};
114
115   int id()           override {return id_;}
116   void setId(int id) override {id_ = id;}
117   char *name()       override {return name_;}
118   As *containingAS() override {return containingAS_;}
119   e_surf_network_element_type_t getRcType() override {return componentType_;}
120 private:
121   int id_ = -1;
122   char *name_;
123   e_surf_network_element_type_t componentType_;
124   As *containingAS_;
125 };
126
127 /** @ingroup SURF_routing_interface
128  * @brief Link of lenght 1, alongside with its source and destination. This is mainly usefull in the ns3 bindings
129  */
130 class Onelink {
131 public:
132   Onelink(void *link, NetCard *src, NetCard *dst)
133     : src_(src), dst_(dst), link_(link) {};
134   NetCard *src_;
135   NetCard *dst_;
136   void *link_;
137 };
138
139 /** @ingroup SURF_routing_interface
140  * @brief The class representing a whole routing platform
141  */
142 XBT_PUBLIC_CLASS RoutingPlatf {
143 public:
144   RoutingPlatf(void *loopback);
145   ~RoutingPlatf();
146   As *root_ = nullptr;
147   void *loopback_;
148   xbt_dynar_t lastRoute_ = xbt_dynar_new(sizeof(Link*),NULL);
149   xbt_dynar_t getOneLinkRoutes(void);
150   void getRouteAndLatency(NetCard *src, NetCard *dst, xbt_dynar_t * links, double *latency);
151 };
152
153 /*************
154  * Callbacks *
155  *************/
156
157 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(NetCard*)>) netcardCreatedCallbacks;
158 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(As*)>) asCreatedCallbacks;
159
160 }
161 }
162
163 #endif /* NETWORK_ROUTING_HPP_ */