Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix free of uninitialized values
[simgrid.git] / src / surf / surf_routing.hpp
1 #include "surf.hpp"
2 #include <float.h>
3
4 #ifndef NETWORK_ROUTING_HPP_
5 #define NETWORK_ROUTING_HPP_
6
7 void routing_model_create( void *loopback);
8
9 /* ************************************************************************** */
10 /* ************************* GRAPH EXPORTING FUNCTIONS ********************** */
11 xbt_node_t new_xbt_graph_node (xbt_graph_t graph, const char *name, xbt_dict_t nodes);
12 xbt_edge_t new_xbt_graph_edge (xbt_graph_t graph, xbt_node_t s, xbt_node_t d, xbt_dict_t edges);
13
14 /***********
15  * Classes *
16  ***********/
17 struct As;
18 typedef As *AsPtr;
19
20 class RoutingModelDescription;
21 typedef RoutingModelDescription *RoutingModelDescriptionPtr;
22
23 struct RoutingEdge;
24 typedef RoutingEdge *RoutingEdgePtr;
25
26 class Onelink;
27 typedef Onelink *OnelinkPtr;
28
29 class RoutingPlatf;
30 typedef RoutingPlatf *RoutingPlatfPtr;
31
32
33 /*FIXME:class RoutingModelDescription {
34   const char *p_name;
35   const char *p_desc;
36   AsPtr create();
37   void end(AsPtr as);
38 };*/
39
40 struct As {
41 public:
42   xbt_dynar_t p_indexNetworkElm;
43   xbt_dict_t p_bypassRoutes;    /* store bypass routes */
44   routing_model_description_t p_modelDesc;
45   e_surf_routing_hierarchy_t p_hierarchy;
46   char *p_name;
47   AsPtr p_routingFather;
48   xbt_dict_t p_routingSons;
49   RoutingEdgePtr p_netElem;
50   xbt_dynar_t p_linkUpDownList;
51
52   As(){};
53   virtual ~As(){
54         xbt_free(p_name);
55   };
56
57   virtual void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, double *latency)=0;
58   virtual xbt_dynar_t getOneLinkRoutes()=0;
59   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges)=0;
60   virtual sg_platf_route_cbarg_t getBypassRoute(RoutingEdgePtr src, RoutingEdgePtr dst, double *lat)=0;
61
62   /* The parser calls the following functions to inform the routing models
63    * that a new element is added to the AS currently built.
64    *
65    * Of course, only the routing model of this AS is informed, not every ones */
66   virtual int parsePU(RoutingEdgePtr elm)=0; /* A host or a router, whatever */
67   virtual int parseAS( RoutingEdgePtr elm)=0;
68   virtual void parseRoute(sg_platf_route_cbarg_t route)=0;
69   virtual void parseASroute(sg_platf_route_cbarg_t route)=0;
70   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
71 };
72
73 struct RoutingEdge {
74 public:
75   ~RoutingEdge() { xbt_free(p_name);};
76   AsPtr p_rcComponent;
77   e_surf_network_element_type_t p_rcType;
78   int m_id;
79   char *p_name;
80 };
81
82 /*
83  * Link of lenght 1, alongside with its source and destination. This is mainly usefull in the bindings to gtnets and ns3
84  */
85 class Onelink {
86 public:
87   Onelink(void *link, RoutingEdgePtr src, RoutingEdgePtr dst)
88     : p_src(src), p_dst(dst), p_link(link) {};
89   RoutingEdgePtr p_src;
90   RoutingEdgePtr p_dst;
91   void *p_link;
92 };
93
94 class RoutingPlatf {
95 public:
96   ~RoutingPlatf();
97   AsPtr p_root;
98   void *p_loopback;
99   xbt_dynar_t p_lastRoute;
100   xbt_dynar_t getOneLinkRoutes(void);
101   xbt_dynar_t recursiveGetOneLinkRoutes(AsPtr rc);
102   void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, xbt_dynar_t * links, double *latency);
103 };
104
105 #endif /* NETWORK_ROUTING_HPP_ */