Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
objectifies surf::Action::State
[simgrid.git] / src / include / surf / surf.h
1 /* Copyright (c) 2004-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SURF_SURF_H
8 #define _SURF_SURF_H
9
10 #include "xbt/swag.h"
11 #include "xbt/dynar.h"
12 #include "xbt/dict.h"
13 #include "xbt/graph.h"
14 #include "xbt/misc.h"
15 #include "xbt/config.h"
16 #include "src/internal_config.h"
17 #include "surf/surf_routing.h"
18 #include "surf/datatypes.h"
19 #include "xbt/lib.h"
20 #include "surf/surf_routing.h"
21 #include "simgrid/datatypes.h"
22 #include "simgrid/forward.h"
23
24 SG_BEGIN_DECL()
25 /* Actions and models are highly connected structures... */
26
27 /* user-visible parameters */
28 extern XBT_PRIVATE double sg_tcp_gamma;
29 extern XBT_PRIVATE double sg_sender_gap;
30 extern XBT_PRIVATE double sg_latency_factor;
31 extern XBT_PRIVATE double sg_bandwidth_factor;
32 extern XBT_PRIVATE double sg_weight_S_parameter;
33 extern XBT_PRIVATE int sg_network_crosstraffic;
34 extern XBT_PRIVATE xbt_dynar_t surf_path;
35
36 typedef enum {
37   SURF_NETWORK_ELEMENT_HOST=1,     /* host type */
38   SURF_NETWORK_ELEMENT_ROUTER,   /* router type */
39   SURF_NETWORK_ELEMENT_AS        /* AS type */
40 } e_surf_network_element_type_t;
41
42 #ifdef __cplusplus
43
44 namespace simgrid {
45 namespace surf {
46
47 class Model;
48 class CpuModel;
49 class HostModel;
50 class VMModel;
51 class NetworkModel;
52 class StorageModel;
53 class Resource;
54 class ResourceLmm;
55 class HostImpl;
56 class HostCLM03;
57 class NetworkCm02Link;
58 class Action;
59 class ActionLmm;
60 class StorageActionLmm;
61 class RoutingPlatf;
62 }
63 }
64
65 typedef simgrid::surf::Model surf_Model;
66 typedef simgrid::surf::CpuModel surf_CpuModel;
67 typedef simgrid::surf::HostModel surf_HostModel;
68 typedef simgrid::surf::VMModel surf_VMModel;
69 typedef simgrid::surf::NetworkModel surf_NetworkModel;
70 typedef simgrid::surf::StorageModel surf_StorageModel;
71 typedef simgrid::surf::Resource surf_Resource;
72 typedef simgrid::surf::ResourceLmm surf_ResourceLmm;
73 typedef simgrid::surf::HostImpl surf_Host;
74 typedef simgrid::surf::HostCLM03 surf_HostCLM03;
75 typedef simgrid::surf::NetworkCm02Link surf_NetworkCm02Link;
76 typedef simgrid::surf::Action surf_Action;
77 typedef simgrid::surf::ActionLmm surf_ActionLmm;
78 typedef simgrid::surf::StorageActionLmm surf_StorageActionLmm;
79 typedef simgrid::surf::RoutingPlatf surf_RoutingPlatf;
80
81 #else
82
83 typedef struct surf_Model surf_Model;
84 typedef struct surf_CpuModel surf_CpuModel;
85 typedef struct surf_HostModel surf_HostModel;
86 typedef struct surf_VMModel surf_VMModel;
87 typedef struct surf_NetworkModel surf_NetworkModel;
88 typedef struct surf_StorageModel surf_StorageModel;
89 typedef struct surf_Resource surf_Resource;
90 typedef struct surf_ResourceLmm surf_ResourceLmm;
91 typedef struct surf_HostCLM03 surf_HostCLM03;
92 typedef struct surf_Host surf_Host;
93 typedef struct surf_NetworkCm02Link surf_NetworkCm02Link;
94 typedef struct surf_Action surf_Action;
95 typedef struct surf_ActionLmm surf_ActionLmm;
96 typedef struct surf_StorageActionLmm surf_StorageActionLmm;
97 typedef struct surf_RoutingPlatf surf_RoutingPlatf;
98
99 #endif
100
101 /** @ingroup SURF_c_bindings
102  *  \brief Model datatype
103  *
104  *  Generic data structure for a model. The hosts,
105  *  the CPUs and the network links are examples of models.
106  */
107 typedef surf_Model *surf_model_t;
108 typedef surf_CpuModel *surf_cpu_model_t;
109 typedef surf_HostModel *surf_host_model_t;
110 typedef surf_VMModel *surf_vm_model_t;
111 typedef surf_NetworkModel *surf_network_model_t;
112 typedef surf_StorageModel *surf_storage_model_t;
113
114 typedef xbt_dictelm_t surf_resource_t;
115 typedef surf_Resource *surf_cpp_resource_t;
116 typedef surf_Host *surf_host_t;
117 typedef surf_Cpu *surf_cpu_t;
118
119 /** @ingroup SURF_c_bindings
120  *  \brief Action structure
121  *
122  *  Never create s_surf_action_t by yourself ! The actions are created
123  *  on the fly when you call execute or communicate on a model.
124  *
125  *  \see e_surf_action_state_t
126  */
127 typedef surf_Action *surf_action_t;
128 typedef surf_RoutingPlatf *routing_platf_t;
129
130 typedef struct surf_file *surf_file_t;
131
132 /** \brief Resource model description
133  */
134 typedef struct surf_model_description {
135   const char *name;
136   const char *description;
137   void_f_void_t model_init_preparse;
138 } s_surf_model_description_t, *surf_model_description_t;
139
140 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t * table, const char *name);
141 XBT_PUBLIC(void) model_help(const char *category, s_surf_model_description_t * table);
142
143 /** @ingroup SURF_vm_interface */
144 /* FIXME: Where should the VM state be defined? */
145 typedef enum {
146   SURF_VM_STATE_CREATED, /**< created, but not yet started */
147   SURF_VM_STATE_RUNNING,
148   SURF_VM_STATE_SUSPENDED, /**< Suspend/resume does not involve disk I/O, so we assume there is no transition states. */
149
150   SURF_VM_STATE_SAVING, /**< Save/restore involves disk I/O, so there should be transition states. */
151   SURF_VM_STATE_SAVED,
152   SURF_VM_STATE_RESTORING,
153 } e_surf_vm_state_t;
154
155 /***************************/
156 /* Generic model object */
157 /***************************/
158
159 XBT_PUBLIC_DATA(routing_platf_t) routing_platf;
160
161 static inline void *surf_storage_resource_priv(const void *storage){
162   return (void*)xbt_lib_get_level((xbt_dictelm_t)storage, SURF_STORAGE_LEVEL);
163 }
164
165 static inline void *surf_storage_resource_by_name(const char *name){
166   return xbt_lib_get_elm_or_null(storage_lib, name);
167 }
168
169 /** @{ @ingroup SURF_c_bindings */
170
171 /**
172  * @brief Pop an action from the done actions set
173  *
174  * @param model The model from which the action is extracted
175  * @return An action in done state
176  */
177 XBT_PUBLIC(surf_action_t) surf_model_extract_done_action_set(surf_model_t model);
178
179 /**
180  * @brief Pop an action from the failed actions set
181  *
182  * @param model The model from which the action is extracted
183  * @return An action in failed state
184  */
185 XBT_PUBLIC(surf_action_t) surf_model_extract_failed_action_set(surf_model_t model);
186
187 /**
188  * @brief Get the size of the running action set of a model
189  *
190  * @param model The model
191  * @return The size of the running action set
192  */
193 XBT_PUBLIC(int) surf_model_running_action_set_size(surf_model_t model);
194
195 /** @brief Create a new VM on the specified host */
196 XBT_PUBLIC(void) surf_vm_model_create(const char *name, sg_host_t host_PM);
197
198 /** @brief Create a communication between two hosts
199  *
200  * @param model The model which handle the communication
201  * @param src The source host
202  * @param dst The destination host
203  * @param size The amount of data (in bytes) needed to transfer
204  * @param rate [description]
205  * @return The action corresponding to the communication
206  */
207 XBT_PUBLIC(surf_action_t) surf_network_model_communicate(surf_network_model_t model, sg_host_t src, sg_host_t dst, double size, double rate);
208
209 /** @brief Create a sleep action on the given host */
210 XBT_PUBLIC(surf_action_t) surf_host_sleep(sg_host_t host, double duration);
211
212 /** @brief Create a file opening action on the given host */
213 XBT_PUBLIC(surf_action_t) surf_host_open(sg_host_t host, const char* fullpath);
214
215 /** @brief Create a file closing action on the given host */
216 XBT_PUBLIC(surf_action_t) surf_host_close(sg_host_t host, surf_file_t fd);
217
218 /** @brief Create a file reading action on the given host */
219 XBT_PUBLIC(surf_action_t) surf_host_read(sg_host_t host, surf_file_t fd, sg_size_t size);
220
221 /** @brief Create a file writing action on the given host  */
222 XBT_PUBLIC(surf_action_t) surf_host_write(sg_host_t host, surf_file_t fd, sg_size_t size);
223
224 /**
225  * @brief Get the informations of a file descriptor
226  * @details The returned xbt_dynar_t contains:
227  *  - the size of the file,
228  *  - the mount point,
229  *  - the storage name,
230  *  - the storage typeId,
231  *  - the storage content type
232  *
233  * @param host The surf host
234  * @param fd The file descriptor
235  * @return An xbt_dynar_t with the file informations
236  */
237 XBT_PUBLIC(xbt_dynar_t) surf_host_get_info(sg_host_t host, surf_file_t fd);
238
239 /**
240  * @brief Get the available space of the storage at the mount point
241  *
242  * @param resource The surf host
243  * @param name The mount point
244  * @return The amount of available space in bytes
245  */
246 XBT_PUBLIC(sg_size_t) surf_host_get_free_size(sg_host_t resource, const char* name);
247
248 /**
249  * @brief Get the used space of the storage at the mount point
250  *
251  * @param resource The surf host
252  * @param name The mount point
253  * @return The amount of used space in bytes
254  */
255 XBT_PUBLIC(sg_size_t) surf_host_get_used_size(sg_host_t resource, const char* name);
256
257 /**
258  * @brief Destroy a VM
259  *
260  * @param resource The surf vm
261  */
262 XBT_PUBLIC(void) surf_vm_destroy(sg_host_t resource);
263
264 /** @brief Suspend a VM */
265 XBT_PUBLIC(void) surf_vm_suspend(sg_host_t resource);
266
267 /** @brief Resume a VM */
268 XBT_PUBLIC(void) surf_vm_resume(sg_host_t resource);
269
270 /**
271  * @brief Save the VM (Not yet implemented)
272  *
273  * @param resource The surf vm
274  */
275 XBT_PUBLIC(void) surf_vm_save(sg_host_t resource);
276
277 /**
278  * @brief Restore the VM (Not yet implemented)
279  *
280  * @param resource The surf vm
281  */
282 XBT_PUBLIC(void) surf_vm_restore(sg_host_t resource);
283
284 /**
285  * @brief Migrate the VM to the destination host
286  *
287  * @param resource The surf vm
288  * @param ind_vm_ws_dest The destination host
289  */
290 XBT_PUBLIC(void) surf_vm_migrate(sg_host_t resource, sg_host_t ind_vm_ws_dest);
291
292 /**
293  * @brief Get the physical machine hosting the VM
294  *
295  * @param resource The surf vm
296  * @return The physical machine hosting the VM
297  */
298 XBT_PUBLIC(sg_host_t) surf_vm_get_pm(sg_host_t resource);
299
300 /**
301  * @brief [brief description]
302  * @details [long description]
303  *
304  * @param resource [description]
305  * @param bound [description]
306  */
307 XBT_PUBLIC(void) surf_vm_set_bound(sg_host_t resource, double bound);
308
309 /**
310  * @brief [brief description]
311  * @details [long description]
312  *
313  * @param resource [description]
314  * @param cpu [description]
315  * @param mask [description]
316  */
317 XBT_PUBLIC(void) surf_vm_set_affinity(sg_host_t resource, sg_host_t cpu, unsigned long mask);
318
319 /**
320  * @brief Unlink a file descriptor
321  *
322  * @param host The surf host
323  * @param fd The file descriptor
324  *
325  * @return 0 if failed to unlink, 1 otherwise
326  */
327 XBT_PUBLIC(int) surf_host_unlink(sg_host_t host, surf_file_t fd);
328
329 /**
330  * @brief Get the size of a file on a host
331  *
332  * @param host The surf host
333  * @param fd The file descriptor
334  *
335  * @return The size in bytes of the file
336  */
337 XBT_PUBLIC(size_t) surf_host_get_size(sg_host_t host, surf_file_t fd);
338
339 /**
340  * @brief Get the current position of the file descriptor
341  *
342  * @param host The surf host
343  * @param fd The file descriptor
344  * @return The current position of the file descriptor
345  */
346 XBT_PUBLIC(size_t) surf_host_file_tell(sg_host_t host, surf_file_t fd);
347
348 /**
349  * @brief Move a file to another location on the *same mount point*.
350  * @details [long description]
351  *
352  * @param host The surf host
353  * @param fd The file descriptor
354  * @param fullpath The new full path
355  *
356  * @return MSG_OK if successful, otherwise MSG_TASK_CANCELED
357  */
358 XBT_PUBLIC(int) surf_host_file_move(sg_host_t host, surf_file_t fd, const char* fullpath);
359
360 /**
361  * @brief Set the position indictator assiociated with the file descriptor to a new position
362  * @details [long description]
363  *
364  * @param host The surf host
365  * @param fd The file descriptor
366  * @param offset The offset from the origin
367  * @param origin Position used as a reference for the offset
368  *  - SEEK_SET: beginning of the file
369  *  - SEEK_CUR: current position indicator
370  *  - SEEK_END: end of the file
371  * @return MSG_OK if successful, otherwise MSG_TASK_CANCELED
372  */
373 XBT_PUBLIC(int) surf_host_file_seek(sg_host_t host,
374                                            surf_file_t fd, sg_offset_t offset,
375                                            int origin);
376
377 /**
378  * @brief Get the content of a storage
379  *
380  * @param resource The surf storage
381  * @return A xbt_dict_t with path as keys and size in bytes as values
382  */
383 XBT_PUBLIC(xbt_dict_t) surf_storage_get_content(surf_resource_t resource);
384
385 /**
386  * @brief Get the size in bytes of a storage
387  *
388  * @param resource The surf storage
389  * @return The size in bytes of the storage
390  */
391 XBT_PUBLIC(sg_size_t) surf_storage_get_size(surf_resource_t resource);
392
393 /**
394  * @brief Get the available size in bytes of a storage
395  *
396  * @param resource The surf storage
397  * @return The available size in bytes of the storage
398  */
399 XBT_PUBLIC(sg_size_t) surf_storage_get_free_size(surf_resource_t resource);
400
401 /**
402  * @brief Get the size in bytes of a storage
403  *
404  * @param resource The surf storage
405  * @return The used size in bytes of the storage
406  */
407 XBT_PUBLIC(sg_size_t) surf_storage_get_used_size(surf_resource_t resource);
408
409 /** @brief return the properties set associated to that storage */
410 XBT_PUBLIC(xbt_dict_t) surf_storage_get_properties(surf_resource_t resource);
411
412 /**
413  * @brief [brief description]
414  * @details [long description]
415  *
416  * @param action The surf cpu action
417  * @param bound [description]
418  */
419 XBT_PUBLIC(void) surf_cpu_action_set_bound(surf_action_t action, double bound);
420
421 /**
422  * @brief [brief description]
423  * @details [long description]
424  *
425  * @param action The surf network action
426  */
427 XBT_PUBLIC(double) surf_network_action_get_latency_limited(surf_action_t action);
428
429 /**
430  * @brief Get the file associated to a storage action
431  *
432  * @param action The surf storage action
433  * @return The file associated to a storage action
434  */
435 XBT_PUBLIC(surf_file_t) surf_storage_action_get_file(surf_action_t action);
436
437 /**
438  * @brief Get the result dictionary of an ls action
439  *
440  * @param action The surf storage action
441  * @return The dictionry listing a path
442  */
443 XBT_PUBLIC(xbt_dict_t) surf_storage_action_get_ls_dict(surf_action_t action);
444
445
446 /**
447  * @brief Get the host the storage is attached to
448  *
449  * @param resource The surf storage
450  * @return The host name
451  * may not exist.
452  */
453 XBT_PUBLIC(const char * ) surf_storage_get_host(surf_resource_t resource);
454
455 /** @} */
456
457 /**************************************/
458 /* Implementations of model object */
459 /**************************************/
460
461 XBT_PUBLIC_DATA(void_f_void_t) surf_cpu_model_init_preparse;
462
463 /** \ingroup SURF_models
464  *  \brief The CPU model object for the physical machine layer
465  */
466 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_pm;
467
468 /** \ingroup SURF_models
469  *  \brief The CPU model object for the virtual machine layer
470  */
471 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model_vm;
472
473
474 /** \ingroup SURF_models
475  *  \brief Initializes the CPU model with the model Cas01
476  *
477  *  By default, this model uses the lazy optimization mechanism that relies on partial invalidation in LMM and a heap
478  *  for lazy action update.
479  *  You can change this behavior by setting the cpu/optim configuration variable to a different value.
480  *
481  *  You shouldn't have to call it by yourself.
482  */
483 XBT_PUBLIC(void) surf_cpu_model_init_Cas01(void);
484
485 /** \ingroup SURF_models
486  *  \brief Initializes the CPU model with trace integration [Deprecated]
487  *
488  *  You shouldn't have to call it by yourself.
489  */
490 XBT_PUBLIC(void) surf_cpu_model_init_ti(void);
491
492 /** \ingroup SURF_models
493  *  \brief The list of all available optimization modes (both for cpu and networks).
494  *  These optimization modes can be set using --cfg=cpu/optim:... and --cfg=network/optim:...
495  */
496 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_optimization_mode_description[];
497
498 /** \ingroup SURF_plugins
499  *  \brief The list of all available surf plugins
500  */
501 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_plugin_description[];
502
503 /** \ingroup SURF_models
504  *  \brief The list of all available cpu model models
505  */
506 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
507
508 /** \ingroup SURF_models
509  *  \brief The network model
510  *
511  *  When creating a new API on top on SURF, you shouldn't use the network model unless you know what you are doing.
512  *  Only the host model should be accessed because depending on the platform model, the network model can be NULL.
513  */
514 XBT_PUBLIC_DATA(surf_network_model_t) surf_network_model;
515
516 /** \ingroup SURF_models
517  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
518  *
519  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud based on the model 'LV08' and
520  * different correction factors depending on the communication size (< 1KiB, < 64KiB, >= 64KiB).
521  * See comments in the code for more information.
522  *
523  *  \see surf_host_model_init_SMPI()
524  */
525 XBT_PUBLIC(void) surf_network_model_init_SMPI(void);
526
527 /** \ingroup SURF_models
528  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
529  *
530  * This model impelments a variant of the contention model on Infinband networks based on
531  * the works of Jérôme Vienne : http://mescal.imag.fr/membres/jean-marc.vincent/index.html/PhD/Vienne.pdf
532  *
533  *  \see surf_host_model_init_IB()
534  */
535 XBT_PUBLIC(void) surf_network_model_init_IB(void);
536
537 /** \ingroup SURF_models
538  *  \brief Initializes the platform with the network model 'LegrandVelho'
539  *
540  * This model is proposed by Arnaud Legrand and Pedro Velho based on the results obtained with the GTNets simulator for
541  * onelink and dogbone sharing scenarios. See comments in the code for more information.
542  *
543  *  \see surf_host_model_init_LegrandVelho()
544  */
545 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho(void);
546
547 /** \ingroup SURF_models
548  *  \brief Initializes the platform with the network model 'Constant'
549  *
550  *  In this model, the communication time between two network cards is constant, hence no need for a routing table.
551  *  This is particularly useful when simulating huge distributed algorithms where scalability is really an issue. This
552  *  function is called in conjunction with surf_host_model_init_compound.
553  *
554  *  \see surf_host_model_init_compound()
555  */
556 XBT_PUBLIC(void) surf_network_model_init_Constant(void);
557
558 /** \ingroup SURF_models
559  *  \brief Initializes the platform with the network model CM02
560  *
561  *  You sould call this function by yourself only if you plan using surf_host_model_init_compound.
562  *  See comments in the code for more information.
563  */
564 XBT_PUBLIC(void) surf_network_model_init_CM02(void);
565
566 #if HAVE_NS3
567 /** \ingroup SURF_models
568  *  \brief Initializes the platform with the network model NS3
569  *
570  *  This function is called by surf_host_model_init_NS3 or by yourself only if you plan using
571  *  surf_host_model_init_compound
572  *
573  *  \see surf_host_model_init_NS3()
574  */
575 XBT_PUBLIC(void) surf_network_model_init_NS3(void);
576 #endif
577
578 /** \ingroup SURF_models
579  *  \brief Initializes the platform with the network model Reno
580  *
581  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
582  *
583  *  Reference:
584  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
585  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
586  *
587  *  Call this function only if you plan using surf_host_model_init_compound.
588  */
589 XBT_PUBLIC(void) surf_network_model_init_Reno(void);
590
591 /** \ingroup SURF_models
592  *  \brief Initializes the platform with the network model Reno2
593  *
594  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
595  *
596  *  Reference:
597  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
598  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
599  *
600  *  Call this function only if you plan using surf_host_model_init_compound.
601  */
602 XBT_PUBLIC(void) surf_network_model_init_Reno2(void);
603
604 /** \ingroup SURF_models
605  *  \brief Initializes the platform with the network model Vegas
606  *
607  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent  to the proportional fairness.
608  *
609  *  Reference:
610  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
611  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
612  *
613  *  Call this function only if you plan using surf_host_model_init_compound.
614  */
615 XBT_PUBLIC(void) surf_network_model_init_Vegas(void);
616
617 /** \ingroup SURF_models
618  *  \brief The list of all available network model models
619  */
620 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_network_model_description[];
621
622 /** \ingroup SURF_models
623  *  \brief The storage model
624  */
625 XBT_PUBLIC(void) surf_storage_model_init_default(void);
626
627 /** \ingroup SURF_models
628  *  \brief The list of all available storage modes.
629  *  This storage mode can be set using --cfg=storage/model:...
630  */
631 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_storage_model_description[];
632
633 XBT_PUBLIC_DATA(surf_storage_model_t) surf_storage_model;
634
635 /** \ingroup SURF_models
636  *  \brief The host model
637  *
638  *  Note that when you create an API on top of SURF, the host model should be the only one you use
639  *  because depending on the platform model, the network model and the CPU model may not exist.
640  */
641 XBT_PUBLIC_DATA(surf_host_model_t) surf_host_model;
642
643 /** \ingroup SURF_models
644  *  \brief The vm model
645  *
646  *  Note that when you create an API on top of SURF,the vm model should be the only one you use
647  *  because depending on the platform model, the network model and the CPU model may not exist.
648  */
649 XBT_PUBLIC_DATA(surf_vm_model_t) surf_vm_model;
650
651 /** \ingroup SURF_models
652  *  \brief Initializes the platform with a compound host model
653  *
654  *  This function should be called after a cpu_model and a network_model have been set up.
655  */
656 XBT_PUBLIC(void) surf_host_model_init_compound(void);
657
658 /** \ingroup SURF_models
659  *  \brief Initializes the platform with the current best network and cpu models at hand
660  *
661  *  This platform model separates the host model and the network model.
662  *  The host model will be initialized with the model compound, the network model with the model LV08 (with cross
663  *  traffic support) and the CPU model with the model Cas01.
664  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
665  */
666 XBT_PUBLIC(void) surf_host_model_init_current_default(void);
667
668 /** \ingroup SURF_models
669  *  \brief Initializes the platform with the model L07
670  *
671  *  With this model, only parallel tasks can be used. Resource sharing is done by identifying bottlenecks and giving an
672  *  equal share of the model to each action.
673  */
674 XBT_PUBLIC(void) surf_host_model_init_ptask_L07(void);
675
676 /** \ingroup SURF_models
677  *  \brief The list of all available host model models
678  */
679 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_host_model_description[];
680
681 /** \ingroup SURF_models
682  *  \brief Initializes the platform with the current best network and cpu models at hand
683  *
684  *  This platform model seperates the host model and the network model.
685  *  The host model will be initialized with the model compound, the network model with the model LV08 (with cross
686  *  traffic support) and the CPU model with the model Cas01.
687  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
688  */
689 XBT_PUBLIC(void) surf_vm_model_init_HL13(void);
690
691 /** \ingroup SURF_models
692  *  \brief The list of all available vm model models
693  */
694 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_vm_model_description[];
695
696 /** \ingroup SURF_models
697  *  \brief List of initialized models
698  */
699 XBT_PUBLIC_DATA(xbt_dynar_t) all_existing_models;
700
701 /** \ingroup SURF_simulation
702  *  \brief List of hosts that have just restarted and whose autorestart process should be restarted.
703  */
704 XBT_PUBLIC_DATA(xbt_dynar_t) host_that_restart;
705
706 /** \ingroup SURF_simulation
707  *  \brief List of hosts for which one want to be notified if they ever restart.
708  */
709 XBT_PUBLIC_DATA(xbt_dict_t) watched_hosts_lib;
710
711 /*** SURF Globals **************************/
712
713 /** \ingroup SURF_simulation
714  *  \brief Initialize SURF
715  *  \param argc argument number
716  *  \param argv arguments
717  *
718  *  This function has to be called to initialize the common structures. Then you will have to create the environment by
719  *  calling  e.g. surf_host_model_init_CM02()
720  *
721  *  \see surf_host_model_init_CM02(), surf_host_model_init_compound(), surf_exit()
722  */
723 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
724
725 /** \ingroup SURF_simulation
726  *  \brief Finish simulation initialization
727  *
728  *  This function must be called before the first call to surf_solve()
729  */
730 XBT_PUBLIC(void) surf_presolve(void);
731
732 /** \ingroup SURF_simulation
733  *  \brief Performs a part of the simulation
734  *  \param max_date Maximum date to update the simulation to, or -1
735  *  \return the elapsed time, or -1.0 if no event could be executed
736  *
737  *  This function execute all possible events, update the action states  and returns the time elapsed.
738  *  When you call execute or communicate on a model, the corresponding actions are not executed immediately but only
739  *  when you call surf_solve.
740  *  Note that the returned elapsed time can be zero.
741  */
742 XBT_PUBLIC(double) surf_solve(double max_date);
743
744 /** \ingroup SURF_simulation
745  *  \brief Return the current time
746  *
747  *  Return the current time in millisecond.
748  */
749 XBT_PUBLIC(double) surf_get_clock(void);
750
751 /** \ingroup SURF_simulation
752  *  \brief Exit SURF
753  *
754  *  Clean everything.
755  *
756  *  \see surf_init()
757  */
758 XBT_PUBLIC(void) surf_exit(void);
759
760 /* Prototypes of the functions that handle the properties */
761 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;// the prop set for the currently parsed element (also used in SIMIX)
762 /* The same for model_prop set*/
763 XBT_PUBLIC_DATA(xbt_dict_t) current_model_property_set;
764
765 /* surf parse file related (public because called from a test suite) */
766 XBT_PUBLIC(void) parse_platform_file(const char *file);
767
768 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
769 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
770
771 XBT_PUBLIC(xbt_dict_t) get_as_router_properties(const char* name);
772
773 /*
774  * Returns the initial path. On Windows the initial path is the current directory for the current process in the other
775  * case the function returns "./" that represents the current directory on Unix/Linux platforms.
776  */
777 const char *__surf_get_initial_path(void);
778
779 /********** Tracing **********/
780 /* from surf_instr.c */
781 void TRACE_surf_action(surf_action_t surf_action, const char *category);
782 void TRACE_surf_alloc(void);
783 void TRACE_surf_release(void);
784
785 /* instr_routing.c */
786 void instr_routing_define_callbacks (void);
787 void instr_new_variable_type (const char *new_typename, const char *color);
788 void instr_new_user_variable_type  (const char *father_type, const char *new_typename, const char *color);
789 void instr_new_user_state_type (const char *father_type, const char *new_typename);
790 void instr_new_value_for_user_state_type (const char *_typename, const char *value, const char *color);
791 int instr_platform_traced (void);
792 xbt_graph_t instr_routing_platform_graph (void);
793 void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename);
794
795 SG_END_DECL()
796 #endif                          /* _SURF_SURF_H */