Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use the function sg_platf_new_linkctn when parsing platform
[simgrid.git] / include / simgrid / platf.h
1 /* platf.h - Public interface to the SimGrid platforms                      */
2
3 /* Copyright (c) 2004-2012. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef SG_PLATF_H
9 #define SG_PLATF_H
10
11 #include <xbt.h>
12
13 typedef void *sg_routing_link_t; /* The actual type is model-dependent so use void* instead*/
14 typedef struct s_routing_edge *sg_routing_edge_t;
15
16 XBT_PUBLIC(sg_routing_edge_t) sg_routing_edge_by_name_or_null(const char *name);
17
18
19
20 typedef struct tmgr_trace *tmgr_trace_t; /**< Opaque structure defining an availability trace */
21
22 /** opaque structure defining a event generator for availability based on a probability distribution */
23 typedef struct probabilist_event_generator *probabilist_event_generator_t;
24
25 XBT_PUBLIC(tmgr_trace_t) tmgr_trace_new_from_file(const char *filename);
26 XBT_PUBLIC(tmgr_trace_t) tmgr_trace_new_from_string(const char *id,
27                                                     const char *input,
28                                                     double periodicity);
29 XBT_PUBLIC(tmgr_trace_t) tmgr_trace_new_from_generator(const char *id,
30                                                   probabilist_event_generator_t generator1,
31                                                   probabilist_event_generator_t generator2,
32                                                   int is_state_trace);
33
34 XBT_PUBLIC(probabilist_event_generator_t) tmgr_event_generator_new_uniform(const char* id,
35                                                                            double min,
36                                                                            double max);
37 XBT_PUBLIC(probabilist_event_generator_t) tmgr_event_generator_new_exponential(const char* id,
38                                                                            double rate);
39 XBT_PUBLIC(probabilist_event_generator_t) tmgr_event_generator_new_weibull(const char* id,
40                                                                            double scale,
41                                                                            double shape);
42
43 /** Defines whether a given resource is working or not */
44 typedef enum {
45   SURF_RESOURCE_ON = 1,                   /**< Up & ready        */
46   SURF_RESOURCE_OFF = 0                   /**< Down & broken     */
47 } e_surf_resource_state_t;
48
49 typedef enum {
50   SURF_LINK_FULLDUPLEX = 2,
51   SURF_LINK_SHARED = 1,
52   SURF_LINK_FATPIPE = 0
53 } e_surf_link_sharing_policy_t;
54
55 typedef enum {
56   SURF_LINK_DIRECTION_NONE = 2,
57   SURF_LINK_DIRECTION_UP = 1,
58   SURF_LINK_DIRECTION_DOWN = 0
59 } e_surf_link_ctn_direction_t;
60
61 /*
62  * Platform creation functions. Instead of passing 123 arguments to the creation functions
63  * (one for each possible XML attribute), we pass structures containing them all. It removes the
64  * chances of switching arguments by error, and reduce the burden when we add a new attribute:
65  * old models can just continue to ignore it without having to update their headers.
66  *
67  * It shouldn't be too costly at runtime, provided that structures living on the stack are
68  * used, instead of malloced structures.
69  */
70
71 typedef struct {
72   const char* id;
73   double power_peak;
74   int core_amount;
75   double power_scale;
76   tmgr_trace_t power_trace;
77   e_surf_resource_state_t initial_state;
78   tmgr_trace_t state_trace;
79   const char* coord;
80   xbt_dict_t properties;
81 } s_sg_platf_host_cbarg_t, *sg_platf_host_cbarg_t;
82
83 typedef struct {
84   const char* id;
85   const char* link_up;
86   const char* link_down;
87 } s_sg_platf_host_link_cbarg_t, *sg_platf_host_link_cbarg_t;
88
89
90 typedef struct {
91   const char* id;
92   const char* coord;
93 } s_sg_platf_router_cbarg_t, *sg_platf_router_cbarg_t;
94
95 typedef struct {
96   const char* id;
97   double bandwidth;
98   tmgr_trace_t bandwidth_trace;
99   double latency;
100   tmgr_trace_t latency_trace;
101   e_surf_resource_state_t state;
102   tmgr_trace_t state_trace;
103   e_surf_link_sharing_policy_t policy;
104   xbt_dict_t properties;
105 } s_sg_platf_link_cbarg_t, *sg_platf_link_cbarg_t;
106
107 typedef struct s_sg_platf_peer_cbarg *sg_platf_peer_cbarg_t;
108 typedef struct s_sg_platf_peer_cbarg {
109   const char* id;
110   double power;
111   double bw_in;
112   double bw_out;
113   double lat;
114   const char* coord;
115   tmgr_trace_t availability_trace;
116   tmgr_trace_t state_trace;
117 } s_sg_platf_peer_cbarg_t;
118
119 typedef struct s_sg_platf_linkctn_cbarg *sg_platf_linkctn_cbarg_t;
120 typedef struct s_sg_platf_linkctn_cbarg {
121   const char *id;
122   e_surf_link_ctn_direction_t direction;
123 } s_sg_platf_linkctn_cbarg_t;
124
125 typedef struct s_sg_platf_cluster_cbarg *sg_platf_cluster_cbarg_t;
126 typedef struct s_sg_platf_cluster_cbarg {
127   const char* id;
128   const char* prefix;
129   const char* suffix;
130   const char* radical;
131   double power;
132   int core_amount;
133   double bw;
134   double lat;
135   double bb_bw;
136   double bb_lat;
137   const char* router_id;
138   e_surf_link_sharing_policy_t sharing_policy;
139   e_surf_link_sharing_policy_t bb_sharing_policy;
140   const char* availability_trace; //don't convert to tmgr_trace_t since there is a trace per host and some rewriting is needed
141   const char* state_trace;
142 } s_sg_platf_cluster_cbarg_t;
143
144 typedef struct s_sg_platf_cabinet_cbarg *sg_platf_cabinet_cbarg_t;
145 typedef struct s_sg_platf_cabinet_cbarg {
146   const char* id;
147   const char* prefix;
148   const char* suffix;
149   const char* radical;
150   double power;
151   double bw;
152   double lat;
153 } s_sg_platf_cabinet_cbarg_t;
154
155 typedef struct {
156   const char* id;
157   const char* type_id;
158   const char* content;
159 } s_sg_platf_storage_cbarg_t, *sg_platf_storage_cbarg_t;
160
161 typedef struct {
162   const char* id;
163   const char* model;
164   const char* content;
165   xbt_dict_t properties;
166   unsigned long size; /* size in Gbytes */
167 } s_sg_platf_storage_type_cbarg_t, *sg_platf_storage_type_cbarg_t;
168
169 typedef struct {
170   const char* type_id;
171   const char* name;
172 } s_sg_platf_mstorage_cbarg_t, *sg_platf_mstorage_cbarg_t;
173
174 typedef struct {
175   const char* id;
176   const char* name;
177 } s_sg_platf_mount_cbarg_t, *sg_platf_mount_cbarg_t;
178
179
180 XBT_PUBLIC(void) sg_platf_begin(void);  // Start a new platform
181 XBT_PUBLIC(void) sg_platf_end(void); // Finish the creation of the platform
182
183 XBT_PUBLIC(void) sg_platf_new_AS_begin(const char *id, int mode); // Begin description of new AS
184 XBT_PUBLIC(void) sg_platf_new_AS_end(void);                            // That AS is fully described
185
186 XBT_PUBLIC(void) sg_platf_new_host   (sg_platf_host_cbarg_t   host);   // Add an host   to the currently described AS
187 XBT_PUBLIC(void) sg_platf_new_host_link(sg_platf_host_link_cbarg_t h); // Add an host_link to the currently described AS
188 XBT_PUBLIC(void) sg_platf_new_router (sg_platf_router_cbarg_t router); // Add a router  to the currently described AS
189 XBT_PUBLIC(void) sg_platf_new_link   (sg_platf_link_cbarg_t link);     // Add a link    to the currently described AS
190 XBT_PUBLIC(void) sg_platf_new_linkctn   (sg_platf_linkctn_cbarg_t linkctn);     // Add a linkctn
191 XBT_PUBLIC(void) sg_platf_new_peer   (sg_platf_peer_cbarg_t peer);     // Add a peer    to the currently described AS
192 XBT_PUBLIC(void) sg_platf_new_cluster(sg_platf_cluster_cbarg_t clust); // Add a cluster to the currently described AS
193 XBT_PUBLIC(void) sg_platf_new_cabinet(sg_platf_cabinet_cbarg_t cabinet); // Add a cabinet to the currently described AS
194 XBT_PUBLIC(void) sg_platf_new_storage(sg_platf_storage_cbarg_t storage); // Add a storage to the currently described AS
195 XBT_PUBLIC(void) sg_platf_new_storage(sg_platf_storage_cbarg_t storage); // Add a storage to the currently described AS
196 XBT_PUBLIC(void) sg_platf_new_mstorage(sg_platf_mstorage_cbarg_t mstorage);
197 XBT_PUBLIC(void) sg_platf_new_storage_type(sg_platf_storage_type_cbarg_t storage_type);
198 XBT_PUBLIC(void) sg_platf_new_mount(sg_platf_mount_cbarg_t mount);
199
200 #endif                          /* SG_PLATF_H */