Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang-format changes related to the previous commit
[simgrid.git] / include / simgrid / s4u / As.hpp
1 /* Copyright (c) 2016. The SimGrid Team. All rights reserved.               */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_S4U_AS_HPP
7 #define SIMGRID_S4U_AS_HPP
8
9 #include <map>
10 #include <string>
11 #include <utility>
12 #include <vector>
13
14 #include <xbt/base.h>
15 #include <xbt/graph.h>
16
17 #include <simgrid/s4u/forward.hpp>
18
19 #include "src/surf/xml/platf_private.hpp" // FIXME: kill sg_platf_route_cbarg_t to remove that UGLY include
20
21 namespace simgrid {
22
23 namespace surf {
24   class Link;
25 }
26 namespace kernel {
27   namespace routing {
28     class AsImpl;
29     class NetCard;
30   }
31 }
32 namespace s4u {
33
34 /** @brief Autonomous Systems
35  *
36  * An AS is a network container, in charge of routing information between elements (hosts) and to the nearby ASes.
37  * In SimGrid, there is a hierarchy of ASes, with a unique root AS (that you can retrieve from the s4u::Engine).
38  */
39 XBT_PUBLIC_CLASS As {
40 protected:
41   friend simgrid::kernel::routing::AsImpl;
42
43   explicit As(As * father, const char* name);
44   virtual ~As();
45   
46 public:
47   /** @brief Seal your AS once you're done adding content, and before routing stuff through it */
48   virtual void seal();
49   char *name();
50   As *father();;
51   xbt_dict_t children(); // Sub AS
52   xbt_dynar_t hosts();   // my content as a dynar
53
54 public:
55   /* Add content to the AS, at parsing time. It should be sealed afterward. */
56   virtual int addComponent(kernel::routing::NetCard *elm); /* A host, a router or an AS, whatever */
57   virtual void addRoute(sg_platf_route_cbarg_t route);
58   virtual void addBypassRoute(sg_platf_route_cbarg_t e_route) = 0;
59
60   /*** Called on each newly created regular route (not on bypass routes) */
61   static simgrid::xbt::signal<void(bool symmetrical, kernel::routing::NetCard* src, kernel::routing::NetCard* dst,
62                                    kernel::routing::NetCard* gw_src, kernel::routing::NetCard* gw_dst,
63                                    std::vector<Link*>* link_list)>
64       onRouteCreation;
65
66 protected:
67   std::vector<kernel::routing::NetCard*> vertices_; // our content, as known to our graph routing algorithm (maps vertexId -> vertex)
68
69 private:
70   As* father_ = nullptr;
71   char* name_ = nullptr;
72
73   bool sealed_ = false; // We cannot add more content when sealed
74
75   xbt_dict_t children_ = xbt_dict_new_homogeneous(nullptr);                               // sub-ASes
76 };
77
78 }}; // Namespace simgrid::s4u
79
80 #endif /* SIMGRID_S4U_AS_HPP */