Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "cast once for all at surf level and not in the APIs"
[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/surf_routing.h"
17 #include "surf/datatypes.h"
18 #include "xbt/lib.h"
19 #include "surf/surf_routing.h"
20 #include "simgrid/datatypes.h"
21 #include "simgrid/forward.h"
22
23 SG_BEGIN_DECL()
24 /* Actions and models are highly connected structures... */
25
26 /* user-visible parameters */
27 extern XBT_PRIVATE double sg_tcp_gamma;
28 extern XBT_PRIVATE double sg_sender_gap;
29 extern XBT_PRIVATE double sg_latency_factor;
30 extern XBT_PRIVATE double sg_bandwidth_factor;
31 extern XBT_PRIVATE double sg_weight_S_parameter;
32 extern XBT_PRIVATE int sg_network_crosstraffic;
33
34 #ifdef __cplusplus
35
36 namespace simgrid {
37 namespace surf {
38
39 class Model;
40 class CpuModel;
41 class HostModel;
42 class NetworkModel;
43 class StorageModel;
44 class Resource;
45 class NetworkCm02Link;
46 class Action;
47 }
48 }
49
50 typedef simgrid::surf::Model surf_Model;
51 typedef simgrid::surf::CpuModel surf_CpuModel;
52 typedef simgrid::surf::Cpu surf_Cpu;
53 typedef simgrid::surf::HostModel surf_HostModel;
54 typedef simgrid::surf::NetworkModel surf_NetworkModel;
55 typedef simgrid::surf::StorageModel surf_StorageModel;
56 typedef simgrid::surf::Resource surf_Resource;
57 typedef simgrid::surf::HostImpl surf_Host;
58 typedef simgrid::surf::Action surf_Action;
59
60 #else
61
62 typedef struct surf_Model surf_Model;
63 typedef struct surf_CpuModel surf_CpuModel;
64 typedef struct surf_Cpu surf_Cpu;
65 typedef struct surf_HostModel surf_HostModel;
66 typedef struct surf_NetworkModel surf_NetworkModel;
67 typedef struct surf_StorageModel surf_StorageModel;
68 typedef struct surf_Resource surf_Resource;
69 typedef struct surf_Host surf_Host;
70 typedef struct surf_Action surf_Action;
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
86 typedef xbt_dictelm_t surf_resource_t;
87
88 /** @ingroup SURF_c_bindings
89  *  \brief Action structure
90  *
91  *  Never create s_surf_action_t by yourself ! The actions are created
92  *  on the fly when you call execute or communicate on a model.
93  *
94  *  \see e_surf_action_state_t
95  */
96 typedef surf_Action *surf_action_t;
97
98 typedef struct surf_file *surf_file_t;
99
100 /** \brief Resource model description
101  */
102 struct surf_model_description {
103   const char *name;
104   const char *description;
105   void_f_void_t model_init_preparse;
106 };
107 typedef struct surf_model_description  s_surf_model_description_t;
108 typedef struct surf_model_description* surf_model_description_t;
109
110 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t * table, const char *name);
111 XBT_PUBLIC(void) model_help(const char *category, s_surf_model_description_t * table);
112
113 /***************************/
114 /* Generic model object */
115 /***************************/
116
117 static inline void *surf_storage_resource_priv(const void *storage){
118   return (void*)xbt_lib_get_level((xbt_dictelm_t)storage, SURF_STORAGE_LEVEL);
119 }
120
121 static inline void *surf_storage_resource_by_name(const char *name){
122   return xbt_lib_get_elm_or_null(storage_lib, name);
123 }
124
125 /** @{ @ingroup SURF_c_bindings */
126
127 /**
128  * @brief Pop an action from the done actions set
129  *
130  * @param model The model from which the action is extracted
131  * @return An action in done state
132  */
133 XBT_PUBLIC(surf_action_t) surf_model_extract_done_action_set(surf_model_t model);
134
135 /**
136  * @brief Pop an action from the failed actions set
137  *
138  * @param model The model from which the action is extracted
139  * @return An action in failed state
140  */
141 XBT_PUBLIC(surf_action_t) surf_model_extract_failed_action_set(surf_model_t model);
142
143 /**
144  * @brief Get the size of the running action set of a model
145  *
146  * @param model The model
147  * @return The size of the running action set
148  */
149 XBT_PUBLIC(int) surf_model_running_action_set_size(surf_model_t model);
150
151 /** @brief Create a file opening action on the given host */
152 XBT_PUBLIC(surf_action_t) surf_host_open(sg_host_t host, const char* fullpath);
153
154 /** @brief Create a file closing action on the given host */
155 XBT_PUBLIC(surf_action_t) surf_host_close(sg_host_t host, surf_file_t fd);
156
157 /** @brief Create a file reading action on the given host */
158 XBT_PUBLIC(surf_action_t) surf_host_read(sg_host_t host, surf_file_t fd, sg_size_t size);
159
160 /** @brief Create a file writing action on the given host  */
161 XBT_PUBLIC(surf_action_t) surf_host_write(sg_host_t host, surf_file_t fd, sg_size_t size);
162
163 /**
164  * @brief Get the information of a file descriptor
165  * @details The returned xbt_dynar_t contains:
166  *  - the size of the file,
167  *  - the mount point,
168  *  - the storage name,
169  *  - the storage typeId,
170  *  - the storage content type
171  *
172  * @param host The surf host
173  * @param fd The file descriptor
174  * @return An xbt_dynar_t with the file information
175  */
176 XBT_PUBLIC(xbt_dynar_t) surf_host_get_info(sg_host_t host, surf_file_t fd);
177
178 /**
179  * @brief Get the available space of the storage at the mount point
180  *
181  * @param resource The surf host
182  * @param name The mount point
183  * @return The amount of available space in bytes
184  */
185 XBT_PUBLIC(sg_size_t) surf_host_get_free_size(sg_host_t resource, const char* name);
186
187 /**
188  * @brief Get the used space of the storage at the mount point
189  *
190  * @param resource The surf host
191  * @param name The mount point
192  * @return The amount of used space in bytes
193  */
194 XBT_PUBLIC(sg_size_t) surf_host_get_used_size(sg_host_t resource, const char* name);
195
196 /**
197  * @brief Unlink a file descriptor
198  *
199  * @param host The surf host
200  * @param fd The file descriptor
201  *
202  * @return 0 if failed to unlink, 1 otherwise
203  */
204 XBT_PUBLIC(int) surf_host_unlink(sg_host_t host, surf_file_t fd);
205
206 /**
207  * @brief Get the size of a file on a host
208  *
209  * @param host The surf host
210  * @param fd The file descriptor
211  *
212  * @return The size in bytes of the file
213  */
214 XBT_PUBLIC(size_t) surf_host_get_size(sg_host_t host, surf_file_t fd);
215
216 /**
217  * @brief Get the current position of the file descriptor
218  *
219  * @param host The surf host
220  * @param fd The file descriptor
221  * @return The current position of the file descriptor
222  */
223 XBT_PUBLIC(size_t) surf_host_file_tell(sg_host_t host, surf_file_t fd);
224
225 /**
226  * @brief Move a file to another location on the *same mount point*.
227  * @details [long description]
228  *
229  * @param host The surf host
230  * @param fd The file descriptor
231  * @param fullpath The new full path
232  *
233  * @return MSG_OK if successful, otherwise MSG_TASK_CANCELED
234  */
235 XBT_PUBLIC(int) surf_host_file_move(sg_host_t host, surf_file_t fd, const char* fullpath);
236
237 /**
238  * @brief Set the position indictator assiociated with the file descriptor to a new position
239  * @details [long description]
240  *
241  * @param host The surf host
242  * @param fd The file descriptor
243  * @param offset The offset from the origin
244  * @param origin Position used as a reference for the offset
245  *  - SEEK_SET: beginning of the file
246  *  - SEEK_CUR: current position indicator
247  *  - SEEK_END: end of the file
248  * @return MSG_OK if successful, otherwise MSG_TASK_CANCELED
249  */
250 XBT_PUBLIC(int) surf_host_file_seek(sg_host_t host, surf_file_t fd, sg_offset_t offset, int origin);
251
252 /**
253  * @brief Get the size in bytes of a storage
254  *
255  * @param resource The surf storage
256  * @return The size in bytes of the storage
257  */
258 XBT_PUBLIC(sg_size_t) surf_storage_get_size(surf_resource_t resource);
259
260 /**
261  * @brief Get the available size in bytes of a storage
262  *
263  * @param resource The surf storage
264  * @return The available size in bytes of the storage
265  */
266 XBT_PUBLIC(sg_size_t) surf_storage_get_free_size(surf_resource_t resource);
267
268 /**
269  * @brief Get the size in bytes of a storage
270  *
271  * @param resource The surf storage
272  * @return The used size in bytes of the storage
273  */
274 XBT_PUBLIC(sg_size_t) surf_storage_get_used_size(surf_resource_t resource);
275
276 /** @brief return the properties set associated to that storage */
277 XBT_PUBLIC(xbt_dict_t) surf_storage_get_properties(surf_resource_t resource);
278
279 /**
280  * @brief [brief description]
281  * @details [long description]
282  *
283  * @param action The surf cpu action
284  * @param bound [description]
285  */
286 XBT_PUBLIC(void) surf_cpu_action_set_bound(surf_action_t action, double bound);
287
288 /**
289  * @brief [brief description]
290  * @details [long description]
291  *
292  * @param action The surf network action
293  */
294 XBT_PUBLIC(double) surf_network_action_get_latency_limited(surf_action_t action);
295
296 /**
297  * @brief Get the file associated to a storage action
298  *
299  * @param action The surf storage action
300  * @return The file associated to a storage action
301  */
302 XBT_PUBLIC(surf_file_t) surf_storage_action_get_file(surf_action_t action);
303
304 /**
305  * @brief Get the result dictionary of an ls action
306  *
307  * @param action The surf storage action
308  * @return The dictionry listing a path
309  */
310 XBT_PUBLIC(xbt_dict_t) surf_storage_action_get_ls_dict(surf_action_t action);
311
312
313 /**
314  * @brief Get the host the storage is attached to
315  *
316  * @param resource The surf storage
317  * @return The host name
318  * may not exist.
319  */
320 XBT_PUBLIC(const char * ) surf_storage_get_host(surf_resource_t resource);
321
322 /** @} */
323
324 /**************************************/
325 /* Implementations of model object */
326 /**************************************/
327
328 /** \ingroup SURF_models
329  *  \brief The CPU model object for the physical machine layer
330  */
331 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_pm;
332
333 /** \ingroup SURF_models
334  *  \brief The CPU model object for the virtual machine layer
335  */
336 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_vm;
337
338
339 /** \ingroup SURF_models
340  *  \brief Initializes the CPU model with the model Cas01
341  *
342  *  By default, this model uses the lazy optimization mechanism that relies on partial invalidation in LMM and a heap
343  *  for lazy action update.
344  *  You can change this behavior by setting the cpu/optim configuration variable to a different value.
345  *
346  *  You shouldn't have to call it by yourself.
347  */
348 XBT_PUBLIC(void) surf_cpu_model_init_Cas01();
349
350 /** \ingroup SURF_models
351  *  \brief Initializes the CPU model with trace integration [Deprecated]
352  *
353  *  You shouldn't have to call it by yourself.
354  */
355 XBT_PUBLIC(void) surf_cpu_model_init_ti();
356
357 /** \ingroup SURF_models
358  *  \brief The list of all available optimization modes (both for cpu and networks).
359  *  These optimization modes can be set using --cfg=cpu/optim:... and --cfg=network/optim:...
360  */
361 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_optimization_mode_description[];
362
363 /** \ingroup SURF_plugins
364  *  \brief The list of all available surf plugins
365  */
366 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_plugin_description[];
367
368 /** \ingroup SURF_models
369  *  \brief The list of all available cpu model models
370  */
371 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
372
373 /** \ingroup SURF_models
374  *  \brief The network model
375  *
376  *  When creating a new API on top on SURF, you shouldn't use the network model unless you know what you are doing.
377  *  Only the host model should be accessed because depending on the platform model, the network model can be NULL.
378  */
379 XBT_PUBLIC_DATA(surf_network_model_t) surf_network_model;
380
381 /** \ingroup SURF_models
382  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
383  *
384  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud based on the model 'LV08' and
385  * different correction factors depending on the communication size (< 1KiB, < 64KiB, >= 64KiB).
386  * See comments in the code for more information.
387  *
388  *  \see surf_host_model_init_SMPI()
389  */
390 XBT_PUBLIC(void) surf_network_model_init_SMPI();
391
392 /** \ingroup SURF_models
393  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
394  *
395  * This model impelments a variant of the contention model on Infinband networks based on
396  * the works of Jérôme Vienne : http://mescal.imag.fr/membres/jean-marc.vincent/index.html/PhD/Vienne.pdf
397  *
398  *  \see surf_host_model_init_IB()
399  */
400 XBT_PUBLIC(void) surf_network_model_init_IB();
401
402 /** \ingroup SURF_models
403  *  \brief Initializes the platform with the network model 'LegrandVelho'
404  *
405  * This model is proposed by Arnaud Legrand and Pedro Velho based on the results obtained with the GTNets simulator for
406  * onelink and dogbone sharing scenarios. See comments in the code for more information.
407  *
408  *  \see surf_host_model_init_LegrandVelho()
409  */
410 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho();
411
412 /** \ingroup SURF_models
413  *  \brief Initializes the platform with the network model 'Constant'
414  *
415  *  In this model, the communication time between two network cards is constant, hence no need for a routing table.
416  *  This is particularly useful when simulating huge distributed algorithms where scalability is really an issue. This
417  *  function is called in conjunction with surf_host_model_init_compound.
418  *
419  *  \see surf_host_model_init_compound()
420  */
421 XBT_PUBLIC(void) surf_network_model_init_Constant();
422
423 /** \ingroup SURF_models
424  *  \brief Initializes the platform with the network model CM02
425  *
426  *  You sould call this function by yourself only if you plan using surf_host_model_init_compound.
427  *  See comments in the code for more information.
428  */
429 XBT_PUBLIC(void) surf_network_model_init_CM02();
430
431 /** \ingroup SURF_models
432  *  \brief Initializes the platform with the network model NS3
433  *
434  *  This function is called by surf_host_model_init_NS3 or by yourself only if you plan using
435  *  surf_host_model_init_compound
436  *
437  *  \see surf_host_model_init_NS3()
438  */
439 XBT_PUBLIC(void) surf_network_model_init_NS3();
440
441 /** \ingroup SURF_models
442  *  \brief Initializes the platform with the network model Reno
443  *
444  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
445  *
446  *  Reference:
447  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
448  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
449  *
450  *  Call this function only if you plan using surf_host_model_init_compound.
451  */
452 XBT_PUBLIC(void) surf_network_model_init_Reno();
453
454 /** \ingroup SURF_models
455  *  \brief Initializes the platform with the network model Reno2
456  *
457  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
458  *
459  *  Reference:
460  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
461  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
462  *
463  *  Call this function only if you plan using surf_host_model_init_compound.
464  */
465 XBT_PUBLIC(void) surf_network_model_init_Reno2();
466
467 /** \ingroup SURF_models
468  *  \brief Initializes the platform with the network model Vegas
469  *
470  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent  to the proportional fairness.
471  *
472  *  Reference:
473  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
474  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
475  *
476  *  Call this function only if you plan using surf_host_model_init_compound.
477  */
478 XBT_PUBLIC(void) surf_network_model_init_Vegas();
479
480 /** \ingroup SURF_models
481  *  \brief The list of all available network model models
482  */
483 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_network_model_description[];
484
485 /** \ingroup SURF_models
486  *  \brief The storage model
487  */
488 XBT_PUBLIC(void) surf_storage_model_init_default();
489
490 /** \ingroup SURF_models
491  *  \brief The list of all available storage modes.
492  *  This storage mode can be set using --cfg=storage/model:...
493  */
494 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_storage_model_description[];
495
496 XBT_PUBLIC_DATA(surf_storage_model_t) surf_storage_model;
497
498 /** \ingroup SURF_models
499  *  \brief The host model
500  *
501  *  Note that when you create an API on top of SURF, the host model should be the only one you use
502  *  because depending on the platform model, the network model and the CPU model may not exist.
503  */
504 XBT_PUBLIC_DATA(surf_host_model_t) surf_host_model;
505
506 /** \ingroup SURF_models
507  *  \brief Initializes the platform with a compound host model
508  *
509  *  This function should be called after a cpu_model and a network_model have been set up.
510  */
511 XBT_PUBLIC(void) surf_host_model_init_compound();
512
513 /** \ingroup SURF_models
514  *  \brief Initializes the platform with the current best network and cpu models at hand
515  *
516  *  This platform model separates the host model and the network model.
517  *  The host model will be initialized with the model compound, the network model with the model LV08 (with cross
518  *  traffic support) and the CPU model with the model Cas01.
519  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
520  */
521 XBT_PUBLIC(void) surf_host_model_init_current_default();
522
523 /** \ingroup SURF_models
524  *  \brief Initializes the platform with the model L07
525  *
526  *  With this model, only parallel tasks can be used. Resource sharing is done by identifying bottlenecks and giving an
527  *  equal share of the model to each action.
528  */
529 XBT_PUBLIC(void) surf_host_model_init_ptask_L07();
530
531 /** \ingroup SURF_models
532  *  \brief The list of all available host model models
533  */
534 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_host_model_description[];
535
536 /** \ingroup SURF_models
537  *  \brief Initializes the platform with the current best network and cpu models at hand
538  *
539  *  This platform model seperates the host model and the network model.
540  *  The host model will be initialized with the model compound, the network model with the model LV08 (with cross
541  *  traffic support) and the CPU model with the model Cas01.
542  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
543  */
544 XBT_PUBLIC(void) surf_vm_model_init_HL13();
545
546 /** \ingroup SURF_simulation
547  *  \brief List of hosts for which one want to be notified if they ever restart.
548  */
549 XBT_PUBLIC_DATA(xbt_dict_t) watched_hosts_lib;
550
551 /*** SURF Globals **************************/
552
553 /** \ingroup SURF_simulation
554  *  \brief Initialize SURF
555  *  \param argc argument number
556  *  \param argv arguments
557  *
558  *  This function has to be called to initialize the common structures. Then you will have to create the environment by
559  *  calling  e.g. surf_host_model_init_CM02()
560  *
561  *  \see surf_host_model_init_CM02(), surf_host_model_init_compound(), surf_exit()
562  */
563 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
564
565 /** \ingroup SURF_simulation
566  *  \brief Finish simulation initialization
567  *
568  *  This function must be called before the first call to surf_solve()
569  */
570 XBT_PUBLIC(void) surf_presolve();
571
572 /** \ingroup SURF_simulation
573  *  \brief Performs a part of the simulation
574  *  \param max_date Maximum date to update the simulation to, or -1
575  *  \return the elapsed time, or -1.0 if no event could be executed
576  *
577  *  This function execute all possible events, update the action states  and returns the time elapsed.
578  *  When you call execute or communicate on a model, the corresponding actions are not executed immediately but only
579  *  when you call surf_solve.
580  *  Note that the returned elapsed time can be zero.
581  */
582 XBT_PUBLIC(double) surf_solve(double max_date);
583
584 /** \ingroup SURF_simulation
585  *  \brief Return the current time
586  *
587  *  Return the current time in millisecond.
588  */
589 XBT_PUBLIC(double) surf_get_clock();
590
591 /** \ingroup SURF_simulation
592  *  \brief Exit SURF
593  *
594  *  Clean everything.
595  *
596  *  \see surf_init()
597  */
598 XBT_PUBLIC(void) surf_exit();
599
600 /* Prototypes of the functions that handle the properties */
601 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;// the prop set for the currently parsed element (also used in SIMIX)
602
603 /* surf parse file related (public because called from a test suite) */
604 XBT_PUBLIC(void) parse_platform_file(const char *file);
605
606 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
607 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
608
609 /*
610  * Returns the initial path. On Windows the initial path is the current directory for the current process in the other
611  * case the function returns "./" that represents the current directory on Unix/Linux platforms.
612  */
613 const char *__surf_get_initial_path();
614
615 /********** Tracing **********/
616 /* from surf_instr.c */
617 void TRACE_surf_action(surf_action_t surf_action, const char *category);
618 void TRACE_surf_alloc();
619 void TRACE_surf_release();
620
621 /* instr_routing.c */
622 void instr_routing_define_callbacks ();
623 void instr_new_variable_type (const char *new_typename, const char *color);
624 void instr_new_user_variable_type  (const char *father_type, const char *new_typename, const char *color);
625 void instr_new_user_state_type (const char *father_type, const char *new_typename);
626 void instr_new_value_for_user_state_type (const char *_typename, const char *value, const char *color);
627 int instr_platform_traced ();
628 xbt_graph_t instr_routing_platform_graph ();
629 void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename);
630
631 SG_END_DECL()
632
633 #endif