Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
change way disks are managed in the XML parsing
[simgrid.git] / src / surf / xml / platf_private.hpp
1 /* platf_private.h - Interface to the SimGrid platforms which visibility should be limited to this directory */
2
3 /* Copyright (c) 2004-2021. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef SG_PLATF_H
10 #define SG_PLATF_H
11
12 #include "simgrid/host.h"
13 #include "simgrid/s4u/Link.hpp"
14 #include "src/surf/xml/platf.hpp"
15 #include "src/surf/xml/simgrid_dtd.h"
16
17 #include <map>
18 #include <string>
19 #include <vector>
20
21 namespace simgrid {
22 namespace kernel {
23 namespace routing {
24 /* ***************************************** */
25 /*
26  * Platform creation functions. Instead of passing 123 arguments to the creation functions
27  * (one for each possible XML attribute), we pass structures containing them all. It removes the
28  * chances of switching arguments by error, and reduce the burden when we add a new attribute:
29  * old models can just continue to ignore it without having to update their headers.
30  *
31  * It shouldn't be too costly at runtime, provided that structures living on the stack are
32  * used, instead of malloced structures.
33  */
34
35 class HostCreationArgs {
36 public:
37   std::string id;
38   std::vector<double> speed_per_pstate;
39   int pstate               = 0;
40   int core_amount          = 0;
41   profile::Profile* speed_trace                            = nullptr;
42   profile::Profile* state_trace                            = nullptr;
43   std::string coord                                        = "";
44 };
45
46 class HostLinkCreationArgs {
47 public:
48   std::string id;
49   std::string link_up;
50   std::string link_down;
51 };
52
53 class LinkCreationArgs {
54 public:
55   std::string id;
56   std::vector<double> bandwidths;
57   profile::Profile* bandwidth_trace                        = nullptr;
58   double latency                                           = 0;
59   profile::Profile* latency_trace                          = nullptr;
60   profile::Profile* state_trace                            = nullptr;
61   s4u::Link::SharingPolicy policy                          = s4u::Link::SharingPolicy::FATPIPE;
62   std::unordered_map<std::string, std::string> properties;
63 };
64
65 class PeerCreationArgs {
66 public:
67   std::string id;
68   double speed;
69   double bw_in;
70   double bw_out;
71   std::string coord;
72   profile::Profile* speed_trace;
73   profile::Profile* state_trace;
74 };
75
76 class RouteCreationArgs {
77 public:
78   bool symmetrical = false;
79   NetPoint* src    = nullptr;
80   NetPoint* dst    = nullptr;
81   NetPoint* gw_src = nullptr;
82   NetPoint* gw_dst = nullptr;
83   std::vector<resource::LinkImpl*> link_list;
84 };
85
86 enum class ClusterTopology { DRAGONFLY = 3, FAT_TREE = 2, FLAT = 1, TORUS = 0 };
87
88 class ClusterCreationArgs {
89 public:
90   std::string id;
91   std::string prefix;
92   std::string suffix;
93   std::vector<int> radicals;
94   std::vector<double> speeds;
95   int core_amount     = 0;
96   double bw           = 0;
97   double lat          = 0;
98   double bb_bw        = 0;
99   double bb_lat       = 0;
100   double loopback_bw  = 0;
101   double loopback_lat = 0;
102   double limiter_link = 0;
103   ClusterTopology topology = ClusterTopology::FLAT;
104   std::string topo_parameters;
105   std::unordered_map<std::string, std::string> properties;
106   std::string router_id;
107   s4u::Link::SharingPolicy sharing_policy    = s4u::Link::SharingPolicy::SPLITDUPLEX;
108   s4u::Link::SharingPolicy bb_sharing_policy = s4u::Link::SharingPolicy::SHARED;
109 };
110
111 class CabinetCreationArgs {
112 public:
113   std::string id;
114   std::string prefix;
115   std::string suffix;
116   std::vector<int> radicals;
117   double speed;
118   double bw;
119   double lat;
120 };
121
122 class DiskCreationArgs {
123 public:
124   std::string id;
125   std::unordered_map<std::string, std::string> properties;
126   double read_bw;
127   double write_bw;
128 };
129
130 class ProfileCreationArgs {
131 public:
132   std::string id;
133   std::string file;
134   double periodicity;
135   std::string pc_data;
136 };
137
138 enum class TraceConnectKind { HOST_AVAIL, SPEED, LINK_AVAIL, BANDWIDTH, LATENCY };
139
140 class TraceConnectCreationArgs {
141 public:
142   TraceConnectKind kind;
143   std::string trace;
144   std::string element;
145 };
146
147 class ActorCreationArgs {
148 public:
149   std::vector<std::string> args;
150   std::unordered_map<std::string, std::string> properties;
151   const char* host                       = nullptr;
152   const char* function                   = nullptr;
153   double start_time                      = 0.0;
154   double kill_time                       = 0.0;
155   bool restart_on_failure                                  = false;
156 };
157
158 class ZoneCreationArgs {
159 public:
160   std::string id;
161   std::string routing;
162 };
163
164 extern XBT_PRIVATE xbt::signal<void(ClusterCreationArgs const&)> on_cluster_creation;
165
166 } // namespace routing
167 } // namespace kernel
168 } // namespace simgrid
169
170 /********** Routing **********/
171 void routing_cluster_add_backbone(simgrid::kernel::resource::LinkImpl* bb);
172 /*** END of the parsing cruft ***/
173
174 XBT_PUBLIC simgrid::kernel::routing::NetZoneImpl*
175 sg_platf_new_Zone_begin(const simgrid::kernel::routing::ZoneCreationArgs* zone); // Begin description of new Zone
176 XBT_PUBLIC void sg_platf_new_Zone_set_properties(const std::unordered_map<std::string, std::string>& props);
177 XBT_PUBLIC void sg_platf_new_Zone_seal();                                          // That Zone is fully described
178
179 XBT_PUBLIC void
180 sg_platf_new_host_begin(const simgrid::kernel::routing::HostCreationArgs* host); // Add a host to the current Zone
181 XBT_PUBLIC void sg_platf_new_host_set_properties(const std::unordered_map<std::string, std::string>& props);
182 XBT_PUBLIC void sg_platf_new_host_seal(int pstate); // That Host is fully described
183
184 XBT_PUBLIC void
185 sg_platf_new_hostlink(const simgrid::kernel::routing::HostLinkCreationArgs* h); // Add a host_link to the current Zone
186 XBT_PUBLIC void
187 sg_platf_new_link(const simgrid::kernel::routing::LinkCreationArgs* link); // Add a link to the current Zone
188 XBT_PUBLIC void
189 sg_platf_new_disk(const simgrid::kernel::routing::DiskCreationArgs* disk); // Add a disk to the current host
190 XBT_PUBLIC void
191 sg_platf_new_peer(const simgrid::kernel::routing::PeerCreationArgs* peer); // Add a peer to the current Zone
192 XBT_PUBLIC void sg_platf_new_cluster(simgrid::kernel::routing::ClusterCreationArgs* clust);   // Add a cluster   to the current Zone
193 XBT_PUBLIC void
194 sg_platf_new_cabinet(const simgrid::kernel::routing::CabinetCreationArgs* cabinet); // Add a cabinet to the current Zone
195 XBT_PUBLIC simgrid::kernel::routing::NetPoint*                                      // Add a router to the current Zone
196 sg_platf_new_router(const std::string&, const std::string& coords);
197
198 XBT_PUBLIC void sg_platf_new_route(simgrid::kernel::routing::RouteCreationArgs* route);             // Add a route
199 XBT_PUBLIC void sg_platf_new_bypassRoute(simgrid::kernel::routing::RouteCreationArgs* bypassroute); // Add a bypassRoute
200
201 XBT_PUBLIC void sg_platf_new_trace(simgrid::kernel::routing::ProfileCreationArgs* trace);
202
203
204 XBT_PUBLIC void sg_platf_new_actor(simgrid::kernel::routing::ActorCreationArgs* actor);
205 XBT_PRIVATE void sg_platf_trace_connect(simgrid::kernel::routing::TraceConnectCreationArgs* trace_connect);
206
207 /* Prototypes of the functions offered by flex */
208 XBT_PUBLIC int surf_parse_lex();
209 XBT_PUBLIC int surf_parse_get_lineno();
210 XBT_PUBLIC FILE* surf_parse_get_in();
211 XBT_PUBLIC FILE* surf_parse_get_out();
212 XBT_PUBLIC int surf_parse_get_leng();
213 XBT_PUBLIC char* surf_parse_get_text();
214 XBT_PUBLIC void surf_parse_set_lineno(int line_number);
215 XBT_PUBLIC void surf_parse_set_in(FILE* in_str);
216 XBT_PUBLIC void surf_parse_set_out(FILE* out_str);
217 XBT_PUBLIC int surf_parse_get_debug();
218 XBT_PUBLIC void surf_parse_set_debug(int bdebug);
219 XBT_PUBLIC int surf_parse_lex_destroy();
220
221 #endif                          /* SG_PLATF_H */