Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #259 from simgrid/configfix
[simgrid.git] / include / simgrid / s4u / NetZone.hpp
1 /* Copyright (c) 2016-2018. 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_NETZONE_HPP
7 #define SIMGRID_S4U_NETZONE_HPP
8
9 #include <string>
10 #include <unordered_map>
11 #include <utility>
12 #include <vector>
13
14 #include <xbt/base.h>
15 #include <xbt/graph.h>
16 #include <xbt/signal.hpp>
17
18 #include <simgrid/forward.h>
19 #include <simgrid/s4u/forward.hpp>
20
21 namespace simgrid {
22
23 namespace s4u {
24
25 /** @brief Networking Zones
26  *
27  * A netzone is a network container, in charge of routing information between elements (hosts) and to the nearby
28  * netzones. In SimGrid, there is a hierarchy of netzones, with a unique root zone (that you can retrieve from the
29  * s4u::Engine).
30  */
31 class XBT_PUBLIC NetZone {
32 protected:
33   friend simgrid::kernel::routing::NetZoneImpl;
34
35   explicit NetZone(NetZone * father, std::string name);
36   virtual ~NetZone();
37
38 public:
39   /** @brief Seal your netzone once you're done adding content, and before routing stuff through it */
40   virtual void seal();
41   /** @brief Retrieves the name of that netzone as a C++ string */
42   const std::string& getName() const { return name_; }
43   /** @brief Retrieves the name of that netzone as a C string */
44   const char* getCname() const;
45   NetZone* getFather();
46
47   std::vector<NetZone*>* getChildren();             // Sub netzones
48   void getHosts(std::vector<s4u::Host*> * whereto); // retrieve my content as a vector of hosts
49   int getHostCount();
50
51   /** Get the properties assigned to a host */
52   std::unordered_map<std::string, std::string>* getProperties();
53
54   /** Retrieve the property value (or nullptr if not set) */
55   const char* getProperty(const char* key);
56   void setProperty(const char* key, const char* value);
57
58   /* Add content to the netzone, at parsing time. It should be sealed afterward. */
59   virtual int addComponent(kernel::routing::NetPoint * elm); /* A host, a router or a netzone, whatever */
60   virtual void addRoute(kernel::routing::NetPoint * src, kernel::routing::NetPoint * dst,
61                         kernel::routing::NetPoint * gw_src, kernel::routing::NetPoint * gw_dst,
62                         std::vector<simgrid::surf::LinkImpl*> & link_list, bool symmetrical);
63   virtual void addBypassRoute(kernel::routing::NetPoint * src, kernel::routing::NetPoint * dst,
64                               kernel::routing::NetPoint * gw_src, kernel::routing::NetPoint * gw_dst,
65                               std::vector<simgrid::surf::LinkImpl*> & link_list, bool symmetrical) = 0;
66
67   /*** Called on each newly created regular route (not on bypass routes) */
68   static simgrid::xbt::signal<void(bool symmetrical, kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst,
69                                    kernel::routing::NetPoint* gw_src, kernel::routing::NetPoint* gw_dst,
70                                    std::vector<surf::LinkImpl*>& link_list)>
71       onRouteCreation;
72   static simgrid::xbt::signal<void(NetZone&)> onCreation;
73   static simgrid::xbt::signal<void(NetZone&)> onSeal;
74
75 protected:
76   unsigned int getTableSize() { return vertices_.size(); }
77   std::vector<kernel::routing::NetPoint*> getVertices() { return vertices_; }
78
79 private:
80   // our content, as known to our graph routing algorithm (maps vertexId -> vertex)
81   std::vector<kernel::routing::NetPoint*> vertices_;
82
83   std::unordered_map<std::string, std::string> properties_;
84   NetZone* father_ = nullptr;
85   std::string name_;
86
87   bool sealed_ = false; // We cannot add more content when sealed
88
89   std::vector<NetZone*>* children_ = nullptr; // sub-netzones
90 };
91 }
92 }; // Namespace simgrid::s4u
93
94 #endif /* SIMGRID_S4U_NETZONE_HPP */