Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more cleanups
[simgrid.git] / src / include / surf / surf.h
1 /* Copyright (c) 2004-2017. 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 SURF_SURF_H
7 #define SURF_SURF_H
8
9 #include "xbt/swag.h"
10 #include "xbt/dynar.h"
11 #include "xbt/dict.h"
12 #include "xbt/graph.h"
13 #include "xbt/misc.h"
14 #include "xbt/config.h"
15 #include "src/internal_config.h"
16 #include "surf/datatypes.h"
17 #include "simgrid/datatypes.h"
18 #include "simgrid/forward.h"
19
20 SG_BEGIN_DECL()
21 /* Actions and models are highly connected structures... */
22
23 /* user-visible parameters */
24 extern XBT_PRIVATE double sg_tcp_gamma;
25 extern XBT_PRIVATE double sg_sender_gap;
26 extern XBT_PRIVATE double sg_latency_factor;
27 extern XBT_PRIVATE double sg_bandwidth_factor;
28 extern XBT_PRIVATE double sg_weight_S_parameter;
29 extern XBT_PRIVATE int sg_network_crosstraffic;
30
31 #ifdef __cplusplus
32
33 namespace simgrid {
34 namespace surf {
35
36 class Model;
37 class CpuModel;
38 class HostModel;
39 class NetworkModel;
40 class StorageModel;
41 class Resource;
42 class NetworkCm02Link;
43 class Action;
44 }
45 }
46
47 typedef simgrid::surf::Model surf_Model;
48 typedef simgrid::surf::CpuModel surf_CpuModel;
49 typedef simgrid::surf::Cpu surf_Cpu;
50 typedef simgrid::surf::HostModel surf_HostModel;
51 typedef simgrid::surf::NetworkModel surf_NetworkModel;
52 typedef simgrid::surf::StorageImpl surf_Storage;
53 typedef simgrid::surf::StorageModel surf_StorageModel;
54 typedef simgrid::surf::Resource surf_Resource;
55 typedef simgrid::surf::Action surf_Action;
56 typedef simgrid::surf::FileImpl surf_File;
57
58 #else
59
60 typedef struct surf_Model surf_Model;
61 typedef struct surf_CpuModel surf_CpuModel;
62 typedef struct surf_Cpu surf_Cpu;
63 typedef struct surf_HostModel surf_HostModel;
64 typedef struct surf_NetworkModel surf_NetworkModel;
65 typedef struct surf_StorageImpl surf_Storage;
66 typedef struct surf_StorageModel surf_StorageModel;
67 typedef struct surf_Resource surf_Resource;
68 typedef struct surf_Host surf_Host;
69 typedef struct surf_Action surf_Action;
70 typedef struct surf_File surf_File;
71
72 #endif
73
74 /** @ingroup SURF_c_bindings
75  *  \brief Model datatype
76  *
77  *  Generic data structure for a model. The hosts,
78  *  the CPUs and the network links are examples of models.
79  */
80 typedef surf_Model *surf_model_t;
81 typedef surf_CpuModel *surf_cpu_model_t;
82 typedef surf_HostModel *surf_host_model_t;
83 typedef surf_NetworkModel *surf_network_model_t;
84 typedef surf_StorageModel *surf_storage_model_t;
85 typedef surf_File* surf_file_t;
86
87 /** @ingroup SURF_c_bindings
88  *  \brief Action structure
89  *
90  *  Never create s_surf_action_t by yourself ! The actions are created
91  *  on the fly when you call execute or communicate on a model.
92  *
93  *  \see e_surf_action_state_t
94  */
95 typedef surf_Action *surf_action_t;
96
97
98 /** \brief Resource model description
99  */
100 struct surf_model_description {
101   const char *name;
102   const char *description;
103   void_f_void_t model_init_preparse;
104 };
105 typedef struct surf_model_description  s_surf_model_description_t;
106 typedef struct surf_model_description* surf_model_description_t;
107
108 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t * table, const char *name);
109 XBT_PUBLIC(void) model_help(const char *category, s_surf_model_description_t * table);
110
111 /***************************/
112 /* Generic model object */
113 /***************************/
114
115 /** @{ @ingroup SURF_c_bindings */
116
117 /**
118  * @brief Pop an action from the done actions set
119  *
120  * @param model The model from which the action is extracted
121  * @return An action in done state
122  */
123 XBT_PUBLIC(surf_action_t) surf_model_extract_done_action_set(surf_model_t model);
124
125 /**
126  * @brief Pop an action from the failed actions set
127  *
128  * @param model The model from which the action is extracted
129  * @return An action in failed state
130  */
131 XBT_PUBLIC(surf_action_t) surf_model_extract_failed_action_set(surf_model_t model);
132
133 /**
134  * @brief Get the size of the running action set of a model
135  *
136  * @param model The model
137  * @return The size of the running action set
138  */
139 XBT_PUBLIC(int) surf_model_running_action_set_size(surf_model_t model);
140
141 /**
142  * @brief [brief description]
143  * @details [long description]
144  *
145  * @param action The surf cpu action
146  * @param bound [description]
147  */
148 XBT_PUBLIC(void) surf_cpu_action_set_bound(surf_action_t action, double bound);
149
150 /**
151  * @brief [brief description]
152  * @details [long description]
153  *
154  * @param action The surf network action
155  */
156 XBT_PUBLIC(double) surf_network_action_get_latency_limited(surf_action_t action);
157
158 /** @} */
159
160 /**************************************/
161 /* Implementations of model object */
162 /**************************************/
163
164 /** \ingroup SURF_models
165  *  \brief The CPU model object for the physical machine layer
166  */
167 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_pm;
168
169 /** \ingroup SURF_models
170  *  \brief The CPU model object for the virtual machine layer
171  */
172 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_vm;
173
174
175 /** \ingroup SURF_models
176  *  \brief Initializes the CPU model with the model Cas01
177  *
178  *  By default, this model uses the lazy optimization mechanism that relies on partial invalidation in LMM and a heap
179  *  for lazy action update.
180  *  You can change this behavior by setting the cpu/optim configuration variable to a different value.
181  *
182  *  You shouldn't have to call it by yourself.
183  */
184 XBT_PUBLIC(void) surf_cpu_model_init_Cas01();
185
186 /** \ingroup SURF_models
187  *  \brief Initializes the CPU model with trace integration [Deprecated]
188  *
189  *  You shouldn't have to call it by yourself.
190  */
191 XBT_PUBLIC(void) surf_cpu_model_init_ti();
192
193 /** \ingroup SURF_models
194  *  \brief The list of all available optimization modes (both for cpu and networks).
195  *  These optimization modes can be set using --cfg=cpu/optim:... and --cfg=network/optim:...
196  */
197 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_optimization_mode_description[];
198
199 /** \ingroup SURF_plugins
200  *  \brief The list of all available surf plugins
201  */
202 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_plugin_description[];
203
204 /** \ingroup SURF_models
205  *  \brief The list of all available cpu model models
206  */
207 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
208
209 /** \ingroup SURF_models
210  *  \brief The network model
211  *
212  *  When creating a new API on top on SURF, you shouldn't use the network model unless you know what you are doing.
213  *  Only the host model should be accessed because depending on the platform model, the network model can be NULL.
214  */
215 XBT_PUBLIC_DATA(surf_network_model_t) surf_network_model;
216
217 /** \ingroup SURF_models
218  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
219  *
220  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud based on the model 'LV08' and
221  * different correction factors depending on the communication size (< 1KiB, < 64KiB, >= 64KiB).
222  * See comments in the code for more information.
223  *
224  *  \see surf_host_model_init_SMPI()
225  */
226 XBT_PUBLIC(void) surf_network_model_init_SMPI();
227
228 /** \ingroup SURF_models
229  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
230  *
231  * This model impelments a variant of the contention model on Infinband networks based on
232  * the works of Jérôme Vienne : http://mescal.imag.fr/membres/jean-marc.vincent/index.html/PhD/Vienne.pdf
233  *
234  *  \see surf_host_model_init_IB()
235  */
236 XBT_PUBLIC(void) surf_network_model_init_IB();
237
238 /** \ingroup SURF_models
239  *  \brief Initializes the platform with the network model 'LegrandVelho'
240  *
241  * This model is proposed by Arnaud Legrand and Pedro Velho based on the results obtained with the GTNets simulator for
242  * onelink and dogbone sharing scenarios. See comments in the code for more information.
243  *
244  *  \see surf_host_model_init_LegrandVelho()
245  */
246 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho();
247
248 /** \ingroup SURF_models
249  *  \brief Initializes the platform with the network model 'Constant'
250  *
251  *  In this model, the communication time between two network cards is constant, hence no need for a routing table.
252  *  This is particularly useful when simulating huge distributed algorithms where scalability is really an issue. This
253  *  function is called in conjunction with surf_host_model_init_compound.
254  *
255  *  \see surf_host_model_init_compound()
256  */
257 XBT_PUBLIC(void) surf_network_model_init_Constant();
258
259 /** \ingroup SURF_models
260  *  \brief Initializes the platform with the network model CM02
261  *
262  *  You sould call this function by yourself only if you plan using surf_host_model_init_compound.
263  *  See comments in the code for more information.
264  */
265 XBT_PUBLIC(void) surf_network_model_init_CM02();
266
267 /** \ingroup SURF_models
268  *  \brief Initializes the platform with the network model NS3
269  *
270  *  This function is called by surf_host_model_init_NS3 or by yourself only if you plan using
271  *  surf_host_model_init_compound
272  *
273  *  \see surf_host_model_init_NS3()
274  */
275 XBT_PUBLIC(void) surf_network_model_init_NS3();
276
277 /** \ingroup SURF_models
278  *  \brief Initializes the platform with the network model Reno
279  *
280  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
281  *
282  *  Reference:
283  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
284  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
285  *
286  *  Call this function only if you plan using surf_host_model_init_compound.
287  */
288 XBT_PUBLIC(void) surf_network_model_init_Reno();
289
290 /** \ingroup SURF_models
291  *  \brief Initializes the platform with the network model Reno2
292  *
293  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
294  *
295  *  Reference:
296  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
297  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
298  *
299  *  Call this function only if you plan using surf_host_model_init_compound.
300  */
301 XBT_PUBLIC(void) surf_network_model_init_Reno2();
302
303 /** \ingroup SURF_models
304  *  \brief Initializes the platform with the network model Vegas
305  *
306  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent  to the proportional fairness.
307  *
308  *  Reference:
309  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
310  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
311  *
312  *  Call this function only if you plan using surf_host_model_init_compound.
313  */
314 XBT_PUBLIC(void) surf_network_model_init_Vegas();
315
316 /** \ingroup SURF_models
317  *  \brief The list of all available network model models
318  */
319 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_network_model_description[];
320
321 /** \ingroup SURF_models
322  *  \brief The storage model
323  */
324 XBT_PUBLIC(void) surf_storage_model_init_default();
325
326 /** \ingroup SURF_models
327  *  \brief The list of all available storage modes.
328  *  This storage mode can be set using --cfg=storage/model:...
329  */
330 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_storage_model_description[];
331
332 XBT_PUBLIC_DATA(surf_storage_model_t) surf_storage_model;
333
334 /** \ingroup SURF_models
335  *  \brief The host model
336  *
337  *  Note that when you create an API on top of SURF, the host model should be the only one you use
338  *  because depending on the platform model, the network model and the CPU model may not exist.
339  */
340 XBT_PUBLIC_DATA(surf_host_model_t) surf_host_model;
341
342 /** \ingroup SURF_models
343  *  \brief Initializes the platform with a compound host model
344  *
345  *  This function should be called after a cpu_model and a network_model have been set up.
346  */
347 XBT_PUBLIC(void) surf_host_model_init_compound();
348
349 /** \ingroup SURF_models
350  *  \brief Initializes the platform with the current best network and cpu models at hand
351  *
352  *  This platform model separates the host model and the network model.
353  *  The host model will be initialized with the model compound, the network model with the model LV08 (with cross
354  *  traffic support) and the CPU model with the model Cas01.
355  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
356  */
357 XBT_PUBLIC(void) surf_host_model_init_current_default();
358
359 /** \ingroup SURF_models
360  *  \brief Initializes the platform with the model L07
361  *
362  *  With this model, only parallel tasks can be used. Resource sharing is done by identifying bottlenecks and giving an
363  *  equal share of the model to each action.
364  */
365 XBT_PUBLIC(void) surf_host_model_init_ptask_L07();
366
367 /** \ingroup SURF_models
368  *  \brief The list of all available host model models
369  */
370 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_host_model_description[];
371
372 /** \ingroup SURF_models
373  *  \brief Initializes the platform with the current best network and cpu models at hand
374  *
375  *  This platform model seperates the host model and the network model.
376  *  The host model will be initialized with the model compound, the network model with the model LV08 (with cross
377  *  traffic support) and the CPU model with the model Cas01.
378  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
379  */
380 XBT_PUBLIC(void) surf_vm_model_init_HL13();
381
382 /** \ingroup SURF_simulation
383  *  \brief List of hosts for which one want to be notified if they ever restart.
384  */
385 XBT_PUBLIC_DATA(xbt_dict_t) watched_hosts_lib;
386
387 /*** SURF Globals **************************/
388
389 /** \ingroup SURF_simulation
390  *  \brief Initialize SURF
391  *  \param argc argument number
392  *  \param argv arguments
393  *
394  *  This function has to be called to initialize the common structures. Then you will have to create the environment by
395  *  calling  e.g. surf_host_model_init_CM02()
396  *
397  *  \see surf_host_model_init_CM02(), surf_host_model_init_compound(), surf_exit()
398  */
399 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
400
401 /** \ingroup SURF_simulation
402  *  \brief Finish simulation initialization
403  *
404  *  This function must be called before the first call to surf_solve()
405  */
406 XBT_PUBLIC(void) surf_presolve();
407
408 /** \ingroup SURF_simulation
409  *  \brief Performs a part of the simulation
410  *  \param max_date Maximum date to update the simulation to, or -1
411  *  \return the elapsed time, or -1.0 if no event could be executed
412  *
413  *  This function execute all possible events, update the action states  and returns the time elapsed.
414  *  When you call execute or communicate on a model, the corresponding actions are not executed immediately but only
415  *  when you call surf_solve.
416  *  Note that the returned elapsed time can be zero.
417  */
418 XBT_PUBLIC(double) surf_solve(double max_date);
419
420 /** \ingroup SURF_simulation
421  *  \brief Return the current time
422  *
423  *  Return the current time in millisecond.
424  */
425 XBT_PUBLIC(double) surf_get_clock();
426
427 /** \ingroup SURF_simulation
428  *  \brief Exit SURF
429  *
430  *  Clean everything.
431  *
432  *  \see surf_init()
433  */
434 XBT_PUBLIC(void) surf_exit();
435
436 /* Prototypes of the functions that handle the properties */
437 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;// the prop set for the currently parsed element (also used in SIMIX)
438
439 /* surf parse file related (public because called from a test suite) */
440 XBT_PUBLIC(void) parse_platform_file(const char *file);
441
442 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
443 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
444
445 /*
446  * Returns the initial path. On Windows the initial path is the current directory for the current process in the other
447  * case the function returns "./" that represents the current directory on Unix/Linux platforms.
448  */
449 const char *__surf_get_initial_path();
450
451 /********** Tracing **********/
452 /* from surf_instr.c */
453 void TRACE_surf_action(surf_action_t surf_action, const char *category);
454 void TRACE_surf_alloc();
455 void TRACE_surf_release();
456
457 /* instr_routing.c */
458 void instr_routing_define_callbacks ();
459 void instr_new_variable_type (const char *new_typename, const char *color);
460 void instr_new_user_variable_type  (const char *father_type, const char *new_typename, const char *color);
461 void instr_new_user_state_type (const char *father_type, const char *new_typename);
462 void instr_new_value_for_user_state_type (const char *_typename, const char *value, const char *color);
463 int instr_platform_traced ();
464 xbt_graph_t instr_routing_platform_graph ();
465 void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename);
466
467 SG_END_DECL()
468
469 #endif