Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[simix] Use std::string for s_smx_process_arg
[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 "src/surf/xml/platf_private.hpp" // FIXME: including this here is pure madness. KILKILKIL XML.
15 #include "src/surf/AsImpl.hpp"
16
17 #include <float.h>
18 #include <vector>
19 #include <map>
20
21 SG_BEGIN_DECL()
22 XBT_PUBLIC(void) routing_model_create(Link *loopback);
23 XBT_PRIVATE xbt_node_t new_xbt_graph_node (xbt_graph_t graph, const char *name, xbt_dict_t nodes);
24 XBT_PRIVATE xbt_edge_t new_xbt_graph_edge (xbt_graph_t graph, xbt_node_t s, xbt_node_t d, xbt_dict_t edges);
25 SG_END_DECL()
26
27 namespace simgrid {
28 namespace surf {
29
30   XBT_PUBLIC_DATA(simgrid::xbt::signal<void(s4u::As*)>) asCreatedCallbacks;
31   XBT_PUBLIC_DATA(simgrid::xbt::signal<void(NetCard*)>) netcardCreatedCallbacks;
32
33 /***********
34  * Classes *
35  ***********/
36
37 class XBT_PRIVATE Onelink;
38 class RoutingPlatf;
39
40 /** @ingroup SURF_routing_interface
41  * @brief Network cards are the vertices in the graph representing the network, used to compute paths between nodes.
42  *
43  * @details This represents a position in the network. One can route information between two netcards
44  */
45 class NetCard {
46 public:
47   virtual ~NetCard(){};
48   virtual int id()=0; // Our rank in the vertices_ array of our containing AS.
49   virtual char *name()=0;
50   virtual AsImpl *containingAS()=0; // This is the AS in which I am
51   virtual bool isAS()=0;
52   virtual bool isHost()=0;
53   virtual bool isRouter()=0;
54   enum class Type {
55     Host, Router, As
56   };
57 };
58
59 struct XBT_PRIVATE NetCardImpl : public NetCard {
60 public:
61   NetCardImpl(const char *name, NetCard::Type componentType, AsImpl *containingAS)
62   : name_(xbt_strdup(name)),
63     componentType_(componentType),
64     containingAS_(containingAS)
65   {
66     if (containingAS != nullptr)
67       id_ = containingAS->addComponent(this);
68     simgrid::surf::netcardCreatedCallbacks(this);
69   }
70   ~NetCardImpl() { xbt_free(name_);};
71
72   int id()           override {return id_;}
73   char *name()       override {return name_;}
74   AsImpl *containingAS() override {return containingAS_;}
75
76   bool isAS()        override {return componentType_ == Type::As;}
77   bool isHost()      override {return componentType_ == Type::Host;}
78   bool isRouter()    override {return componentType_ == Type::Router;}
79
80 private:
81   int id_ = -1;
82   char *name_;
83   NetCard::Type componentType_;
84   AsImpl *containingAS_;
85 };
86
87 /** @ingroup SURF_routing_interface
88  * @brief Link of length 1, alongside with its source and destination. This is mainly useful in the ns3 bindings
89  */
90 class Onelink {
91 public:
92   Onelink(void *link, NetCard *src, NetCard *dst)
93     : src_(src), dst_(dst), link_(link) {};
94   NetCard *src_;
95   NetCard *dst_;
96   void *link_;
97 };
98
99 /** @ingroup SURF_routing_interface
100  * @brief The class representing a whole routing platform
101  */
102 XBT_PUBLIC_CLASS RoutingPlatf {
103 public:
104   RoutingPlatf(Link *loopback);
105   ~RoutingPlatf();
106   AsImpl *root_ = nullptr;
107   Link *loopback_;
108   xbt_dynar_t getOneLinkRoutes(void);
109   void getRouteAndLatency(NetCard *src, NetCard *dst, std::vector<Link*> * links, double *latency);
110 };
111
112 }
113 }
114
115 #endif /* NETWORK_ROUTING_HPP_ */