Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
AS don't need a modelDesc. They have a C++ class
[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 A network card
32  * @details This represents a position in the network. One can route information between two netcards
33  */
34 class NetCard {
35 public:
36   virtual ~NetCard(){};
37   virtual int getId()=0;
38   virtual int *getIdPtr()=0;
39   virtual void setId(int id)=0;
40   virtual char *getName()=0;
41   virtual As *getRcComponent()=0;
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   xbt_dynar_t p_indexNetworkElm = xbt_dynar_new(sizeof(char*),NULL);
52   xbt_dict_t p_bypassRoutes;    /* store bypass routes */
53   e_surf_routing_hierarchy_t p_hierarchy;
54   char *p_name = nullptr;
55   As *p_routingFather = nullptr;
56   xbt_dict_t p_routingSons = xbt_dict_new_homogeneous(NULL);
57   NetCard *p_netcard;
58   xbt_dynar_t p_linkUpDownList = xbt_dynar_new(sizeof(s_surf_parsing_link_up_down_t),NULL);
59
60   As(){};
61   /* Close that AS: no more content can be added to it */
62   virtual void Seal()=0;
63
64   virtual ~As(){
65     xbt_dict_free(&p_routingSons);
66     xbt_dynar_free(&p_indexNetworkElm);
67     xbt_dynar_free(&p_linkUpDownList);
68     xbt_free(p_name);
69     if (p_netcard)
70       delete p_netcard;
71   };
72
73   /**
74    * @brief Get the characteristics of the routing path between two points
75    *
76    * This function is used by the networking model to find the information it needs when starting a communication.
77    *
78    * The things are not straightforward because the platform can be routed using several routing models.
79    * 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.
80    * Some ASes may even not have any predefined links and use only coordinate informations to compute the latency.
81    *
82    * So, the path is constructed recursively, with each traversed AS adding its information to the set.
83    * The algorithm for that is explained in http://hal.inria.fr/hal-00650233/
84    * 
85    * @param src Initial point of the routing path
86    * @param dst Final point of the routing path
87    * @param into Container into which the links should be pushed
88    * @param latency Accumulator in which the latencies should be added
89    */
90   virtual void getRouteAndLatency(
91       NetCard *src, NetCard *dst,
92       sg_platf_route_cbarg_t into, double *latency)=0;
93   virtual xbt_dynar_t getOneLinkRoutes()=0;
94   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges)=0;
95   virtual sg_platf_route_cbarg_t getBypassRoute(
96       NetCard *src, NetCard *dst,
97       double *lat)=0;
98
99   /* The parser calls the following functions to inform the routing models
100    * that a new element is added to the AS currently built.
101    *
102    * Of course, only the routing model of this AS is informed, not every ones */
103   virtual int parsePU(NetCard *elm)=0; /* A host or a router, whatever */
104   virtual int parseAS(NetCard *elm)=0;
105   virtual void parseRoute(sg_platf_route_cbarg_t route)=0;
106   virtual void parseASroute(sg_platf_route_cbarg_t route)=0;
107   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
108 };
109
110 struct XBT_PRIVATE NetCardImpl : public NetCard {
111 public:
112   NetCardImpl(const char *name, e_surf_network_element_type_t componentType, As *component)
113   : component_(component),
114     componentType_(componentType),
115     name_(xbt_strdup(name)) {}
116   ~NetCardImpl() { xbt_free(name_);};
117
118   int getId() {return id_;}
119   int *getIdPtr() {return &id_;}
120   void setId(int id) {id_ = id;}
121   char *getName() {return name_;}
122   As *getRcComponent() {return component_;}
123   e_surf_network_element_type_t getRcType() {return componentType_;}
124 private:
125   As *component_;
126   e_surf_network_element_type_t componentType_;
127   int id_ = -1;
128   char *name_;
129 };
130
131 /** @ingroup SURF_routing_interface
132  * @brief Link of lenght 1, alongside with its source and destination. This is mainly usefull in the ns3 bindings
133  */
134 class Onelink {
135 public:
136   Onelink(void *link, NetCard *src, NetCard *dst)
137     : p_src(src), p_dst(dst), p_link(link) {};
138   NetCard *p_src;
139   NetCard *p_dst;
140   void *p_link;
141 };
142
143 /** @ingroup SURF_routing_interface
144  * @brief The class representing a whole routing platform
145  */
146 XBT_PUBLIC_CLASS RoutingPlatf {
147 public:
148   RoutingPlatf(void *loopback);
149   ~RoutingPlatf();
150   As *p_root = nullptr;
151   void *p_loopback;
152   xbt_dynar_t p_lastRoute = xbt_dynar_new(sizeof(sg_routing_link_t),NULL);
153   xbt_dynar_t getOneLinkRoutes(void);
154   xbt_dynar_t recursiveGetOneLinkRoutes(As *rc);
155   void getRouteAndLatency(NetCard *src, NetCard *dst, xbt_dynar_t * links, double *latency);
156 };
157
158 /*************
159  * Callbacks *
160  *************/
161
162 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(NetCard*)>) netcardCreatedCallbacks;
163 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(As*)>) asCreatedCallbacks;
164
165 }
166 }
167
168 #endif /* NETWORK_ROUTING_HPP_ */