Logo AND Algorithmique Numérique Distribuée

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