Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d67c9f96b3c86a02618ea9a2dba582ddbe649bce
[simgrid.git] / src / include / surf / surf.h
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. 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 "portable.h"
16 #include "xbt/config.h"
17 #include "surf/datatypes.h"
18 #include "xbt/lib.h"
19 #include "surf/surf_routing.h"
20 #include "simgrid/platf_interface.h"
21
22 SG_BEGIN_DECL()
23 /* Actions and models are highly connected structures... */
24
25 /* user-visible parameters */
26 extern double sg_tcp_gamma;
27 extern double sg_sender_gap;
28 extern double sg_latency_factor;
29 extern double sg_bandwidth_factor;
30 extern double sg_weight_S_parameter;
31 extern int sg_network_crosstraffic;
32 #ifdef HAVE_GTNETS
33 extern double sg_gtnets_jitter;
34 extern int sg_gtnets_jitter_seed;
35 #endif
36 extern xbt_dynar_t surf_path;
37
38 typedef enum {
39   SURF_NETWORK_ELEMENT_NULL = 0,        /* NULL */
40   SURF_NETWORK_ELEMENT_HOST,    /* host type */
41   SURF_NETWORK_ELEMENT_ROUTER,  /* router type */
42   SURF_NETWORK_ELEMENT_AS       /* AS type */
43 } e_surf_network_element_type_t;
44
45 #ifdef __cplusplus
46 class Model;
47 class CpuModel;
48 class WorkstationModel;
49 class NetworkCm02Model;
50 class Resource;
51 class ResourceLmm;
52 class WorkstationCLM03;
53 class NetworkCm02Link;
54 class Cpu;
55 class Action;
56 class ActionLmm;
57 class StorageActionLmm;
58 class As;
59 class RoutingEdge;
60 class RoutingPlatf;
61 #else
62 typedef struct Model Model;
63 typedef struct CpuModel CpuModel;
64 typedef struct WorkstationModel WorkstationModel;
65 typedef struct NetworkCm02Model NetworkCm02Model;
66 typedef struct Resource Resource;
67 typedef struct ResourceLmm ResourceLmm;
68 typedef struct WorkstationCLM03 WorkstationCLM03;
69 typedef struct NetworkCm02Link NetworkCm02Link;
70 typedef struct Cpu Cpu;
71 typedef struct Action Action;
72 typedef struct ActionLmm ActionLmm;
73 typedef struct StorageActionLmm StorageActionLmm;
74 typedef struct As As;
75 typedef struct RoutingEdge RoutingEdge;
76 typedef struct RoutingPlatf RoutingPlatf;
77 #endif
78
79 /** \ingroup SURF_models
80  *  \brief Model datatype
81  *
82  *  Generic data structure for a model. The workstations,
83  *  the CPUs and the network links are examples of models.
84  */
85 typedef Model *surf_model_t;
86 typedef CpuModel *surf_cpu_model_t;
87 typedef WorkstationModel *surf_workstation_model_t;
88 typedef NetworkCm02Model *surf_network_model_t;
89
90 typedef xbt_dictelm_t surf_resource_t;
91 typedef Resource *surf_cpp_resource_t;
92 typedef WorkstationCLM03 *surf_workstation_CLM03_t;
93 typedef NetworkCm02Link *surf_network_link_t;
94 typedef Cpu *surf_cpu_t;
95
96 /** \ingroup SURF_actions
97  *  \brief Action structure
98  *
99  *  Never create s_surf_action_t by yourself ! The actions are created
100  *  on the fly when you call execute or communicate on a model.
101  *
102  *  \see e_surf_action_state_t
103  */
104 typedef Action *surf_action_t;
105 typedef ActionLmm *surf_action_lmm_t;
106 typedef StorageActionLmm *surf_storage_action_lmm_t;
107
108 typedef As *AS_t;
109 typedef RoutingEdge *routing_edge_t;
110 typedef RoutingPlatf *routing_platf_t;
111
112 typedef struct surf_file *surf_file_t;
113
114 XBT_PUBLIC(e_surf_network_element_type_t)
115   routing_get_network_element_type(const char* name);
116
117 /** @Brief Specify that we use that action */
118 XBT_PUBLIC(void) surf_action_ref(surf_action_t action);
119
120 /** @brief Creates a new action.
121  *
122  * @param size The size is the one of the subtype you want to create
123  * @param cost initial value
124  * @param model to which model we should attach this action
125  * @param failed whether we should start this action in failed mode
126  */
127 XBT_PUBLIC(void *) surf_action_new(size_t size, double cost,
128                                    surf_model_t model, int failed);
129
130 /** \brief Resource model description
131  */
132 typedef struct surf_model_description {
133   const char *name;
134   const char *description;
135   void_f_void_t model_init_preparse;
136 } s_surf_model_description_t, *surf_model_description_t;
137
138 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t * table,
139                                        const char *name);
140 XBT_PUBLIC(void) model_help(const char *category,
141                             s_surf_model_description_t * table);
142
143
144
145 /** \ingroup SURF_actions
146  *  \brief Action states
147  *
148  *  Action states.
149  *
150  *  \see surf_action_t, surf_action_state_t
151  */
152
153 typedef enum {
154   SURF_ACTION_READY = 0,        /**< Ready        */
155   SURF_ACTION_RUNNING,          /**< Running      */
156   SURF_ACTION_FAILED,           /**< Task Failure */
157   SURF_ACTION_DONE,             /**< Completed    */
158   SURF_ACTION_TO_FREE,          /**< Action to free in next cleanup */
159   SURF_ACTION_NOT_IN_THE_SYSTEM
160                                 /**< Not in the system anymore. Why did you ask ? */
161 } e_surf_action_state_t;
162
163 /***************************/
164 /* Generic model object */
165 /***************************/
166 //FIXME:REMOVE typedef struct s_routing_platf s_routing_platf_t, *routing_platf_t;
167 XBT_PUBLIC_DATA(routing_platf_t) routing_platf;
168
169 /*******************************************
170  *  TUTORIAL: New model
171  *  New model extension public
172  *  Public functions specific to a New model.
173  */
174 typedef struct surf_new_model_extension_public {
175   surf_action_t(*fct) ();
176   void* (*create_resource) ();
177 } s_surf_model_extension_new_model_t;
178 /*******************************************/
179
180 /** \ingroup SURF_models
181  *  \brief Private data available on all models
182  */
183 typedef struct surf_model_private *surf_model_private_t;
184
185      /* Cpu model */
186
187      /** \ingroup SURF_models
188       *  \brief CPU model extension public
189       *
190       *  Public functions specific to the CPU model.
191       */
192 typedef struct surf_cpu_model_extension_public {
193   surf_action_t(*execute) (void *cpu, double size);
194   surf_action_t(*sleep) (void *cpu, double duration);
195   e_surf_resource_state_t(*get_state) (void *cpu);
196   int (*get_core) (void *cpu);
197   double (*get_speed) (void *cpu, double load);
198   double (*get_available_speed) (void *cpu);
199   void (*add_traces) (void);
200 } s_surf_model_extension_cpu_t;
201
202      /* Network model */
203
204      /** \ingroup SURF_models
205       *  \brief Network model extension public
206       *
207       *  Public functions specific to the network model
208       */
209 typedef struct surf_network_model_extension_public {
210   surf_action_t (*communicate) (sg_routing_edge_t src,
211                                 sg_routing_edge_t dst,
212                                 double size, double rate);
213   xbt_dynar_t(*get_route) (void *src, void *dst); //FIXME: kill field? That is done by the routing nowadays
214   double (*get_link_bandwidth) (const void *link);
215   double (*get_link_latency) (const void *link);
216   int (*link_shared) (const void *link);
217   void (*add_traces) (void);
218 } s_surf_model_extension_network_t;
219
220 /* Storage model */
221 //
222 /** \ingroup SURF_models
223  *  \brief Storage model extension public
224  *
225  *  Public functions specific to the Storage model.
226  */
227
228 typedef struct surf_storage_model_extension_public {
229   surf_action_t(*open) (void *storage, const char* mount, const char* path);
230   surf_action_t(*close) (void *storage, surf_file_t fd);
231   surf_action_t(*read) (void *storage, void* ptr, size_t size,
232                         surf_file_t fd);
233   surf_action_t(*write) (void *storage, const void* ptr, size_t size,
234                          surf_file_t fd);
235   surf_action_t(*stat) (void *storage, surf_file_t fd);
236   surf_action_t(*ls) (void *storage, const char *path);
237 } s_surf_model_extension_storage_t;
238
239      /** \ingroup SURF_models
240       *  \brief Workstation model extension public
241       *
242       *  Public functions specific to the workstation model.
243       */
244 typedef struct surf_workstation_model_extension_public {
245   surf_action_t(*execute) (void *workstation, double size);                                /**< Execute a computation amount on a workstation
246                                       and create the corresponding action */
247   surf_action_t(*sleep) (void *workstation, double duration);                              /**< Make a workstation sleep during a given duration */
248   e_surf_resource_state_t(*get_state) (void *workstation);                                      /**< Return the CPU state of a workstation */
249   int (*get_core) (void *workstation); 
250   double (*get_speed) (void *workstation, double load);                                    /**< Return the speed of a workstation */
251   double (*get_available_speed) (void *workstation);                                       /**< Return tha available speed of a workstation */
252    surf_action_t(*communicate) (void *workstation_src,                                     /**< Execute a communication amount between two workstations */
253                                 void *workstation_dst, double size,
254                                 double max_rate);
255    // FIXME: kill next field, which duplicates the routing
256    xbt_dynar_t(*get_route) (void *workstation_src, void *workstation_dst);                 /**< Get the list of links between two ws */
257
258    surf_action_t(*execute_parallel_task) (int workstation_nb,                              /**< Execute a parallel task on several workstations */
259                                           void **workstation_list,
260                                           double *computation_amount,
261                                           double *communication_amount,
262                                           double rate);
263   double (*get_link_bandwidth) (const void *link);                                         /**< Return the current bandwidth of a network link */
264   double (*get_link_latency) (const void *link);                                           /**< Return the current latency of a network link */
265   surf_action_t(*open) (void *workstation, const char* storage,
266                         const char* path);
267   surf_action_t(*close) (void *workstation, surf_file_t fd);
268   surf_action_t(*read) (void *workstation, void* ptr, size_t size,
269                         surf_file_t fd);
270   surf_action_t(*write) (void *workstation, const void* ptr, size_t size,
271                          surf_file_t fd);
272   surf_action_t(*stat) (void *workstation, surf_file_t fd);
273   int(*unlink) (void *workstation, surf_file_t fd);
274   surf_action_t(*ls) (void *workstation, const char* mount, const char *path);
275   size_t (*get_size) (void *workstation, surf_file_t fd);
276
277   int (*link_shared) (const void *link);
278    xbt_dict_t(*get_properties) (const void *resource);
279   void (*add_traces) (void);
280
281 } s_surf_model_extension_workstation_t;
282
283
284 static inline void *surf_cpu_resource_priv(const void *host) {
285   return xbt_lib_get_level((xbt_dictelm_t)host, SURF_CPU_LEVEL);
286 }
287 static inline void *surf_workstation_resource_priv(const void *host){
288   return (void*)xbt_lib_get_level((xbt_dictelm_t)host, SURF_WKS_LEVEL);
289 }
290 static inline void *surf_storage_resource_priv(const void *host){
291   return (void*)xbt_lib_get_level((xbt_dictelm_t)host, SURF_STORAGE_LEVEL);
292 }
293
294 static inline void *surf_cpu_resource_by_name(const char *name) {
295   return xbt_lib_get_elm_or_null(host_lib, name);
296 }
297 static inline void *surf_workstation_resource_by_name(const char *name){
298   return xbt_lib_get_elm_or_null(host_lib, name);
299 }
300 static inline void *surf_storage_resource_by_name(const char *name){
301   return xbt_lib_get_elm_or_null(storage_lib, name);
302 }
303
304 #ifdef __cplusplus
305 extern "C" {
306 #endif
307 char *surf_routing_edge_name(sg_routing_edge_t edge);
308
309 const char *surf_model_name(surf_model_t model);
310 xbt_swag_t surf_model_done_action_set(surf_model_t model);
311 xbt_swag_t surf_model_failed_action_set(surf_model_t model);
312 xbt_swag_t surf_model_ready_action_set(surf_model_t model);
313 xbt_swag_t surf_model_running_action_set(surf_model_t model);
314 surf_action_t surf_workstation_model_execute_parallel_task(surf_workstation_model_t model,
315                                                     int workstation_nb,
316                                             void **workstation_list,
317                                             double *computation_amount,
318                                             double *communication_amount,
319                                             double rate);
320 surf_action_t surf_workstation_model_communicate(surf_workstation_model_t model, surf_resource_t src, surf_resource_t dst, double size, double rate);
321 xbt_dynar_t surf_workstation_model_get_route(surf_workstation_model_t model, surf_resource_t src, surf_resource_t dst);
322 surf_action_t surf_network_model_communicate(surf_network_model_t model, sg_routing_edge_t src, sg_routing_edge_t dst, double size, double rate);
323 const char *surf_resource_name(surf_cpp_resource_t resource);
324 xbt_dict_t surf_resource_get_properties(surf_cpp_resource_t resource);
325 e_surf_resource_state_t surf_resource_get_state(surf_cpp_resource_t resource);
326 double surf_workstation_get_speed(surf_resource_t resource, double load);
327 double surf_workstation_get_available_speed(surf_resource_t resource);
328 int surf_workstation_get_core(surf_resource_t resource);
329 surf_action_t surf_workstation_execute(surf_resource_t resource, double size);
330 surf_action_t surf_workstation_sleep(surf_resource_t resource, double duration);
331 surf_action_t surf_workstation_open(surf_resource_t workstation, const char* mount, const char* path);
332 surf_action_t surf_workstation_close(surf_resource_t workstation, surf_file_t fd);
333 surf_action_t surf_cpu_execute(surf_resource_t cpu, double size);
334 surf_action_t surf_cpu_sleep(surf_resource_t cpu, double duration);
335 int surf_workstation_unlink(surf_resource_t workstation, surf_file_t fd);
336 surf_action_t surf_workstation_ls(surf_resource_t workstation, const char* mount, const char *path);
337 size_t surf_workstation_get_size(surf_resource_t workstation, surf_file_t fd);
338 surf_action_t surf_workstation_read(surf_resource_t resource, void *ptr, size_t size, surf_file_t fd);
339 surf_action_t surf_workstation_write(surf_resource_t resource, const void *ptr, size_t size, surf_file_t fd);
340 int surf_network_link_is_shared(surf_network_link_t link);
341 double surf_network_link_get_bandwidth(surf_network_link_t link);
342 double surf_network_link_get_latency(surf_network_link_t link);
343 void *surf_action_get_data(surf_action_t action);
344 void surf_action_set_data(surf_action_t action, void *data);
345 void surf_action_unref(surf_action_t action);
346 double surf_action_get_start_time(surf_action_t action);
347 double surf_action_get_finish_time(surf_action_t action);
348 double surf_action_get_remains(surf_action_t action);
349 void surf_action_suspend(surf_action_t action);
350 void surf_action_resume(surf_action_t action);
351 void surf_action_cancel(surf_action_t action);
352 void surf_action_set_priority(surf_action_t action, double priority);
353 void surf_action_set_category(surf_action_t action, const char *category);
354 e_surf_action_state_t surf_action_get_state(surf_action_t action);
355 int surf_action_get_cost(surf_action_t action);
356 surf_file_t surf_storage_action_get_file(surf_storage_action_lmm_t action);
357 xbt_dict_t surf_storage_action_get_ls_dict(surf_storage_action_lmm_t action);
358
359 #ifdef __cplusplus
360 }
361 #endif
362
363 /**************************************/
364 /* Implementations of model object */
365 /**************************************/
366
367
368 /** \ingroup SURF_models
369  *  \brief The CPU model
370  */
371 XBT_PUBLIC_DATA(surf_cpu_model_t) surf_cpu_model;
372
373 /** \ingroup SURF_models
374  *  \brief Initializes the CPU model with the model Cas01
375  *
376  *  By default, this model uses the lazy optimization mechanism that
377  *  relies on partial invalidation in LMM and a heap for lazy action update.
378  *  You can change this behavior by setting the cpu/optim configuration
379  *  variable to a different value.
380  *
381  *  You shouldn't have to call it by yourself.
382  */
383 XBT_PUBLIC(void) surf_cpu_model_init_Cas01(void);
384
385 /** \ingroup SURF_models
386  *  \brief Initializes the CPU model with trace integration [Deprecated]
387  *
388  *  You shouldn't have to call it by yourself.
389  */
390 XBT_PUBLIC(void) surf_cpu_model_init_ti(void);
391
392 /** \ingroup SURF_models
393  *  \brief The list of all available optimization modes (both for cpu and networks).
394  *  These optimization modes can be set using --cfg=cpu/optim:... and --cfg=network/optim:...
395  */
396 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_optimization_mode_description[];
397
398 /** \ingroup SURF_models
399  *  \brief The list of all available cpu model models
400  */
401 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
402
403 /**\brief create new host bypass the parser
404  *
405  */
406
407
408 /** \ingroup SURF_models
409  *  \brief The network model
410  *
411  *  When creating a new API on top on SURF, you shouldn't use the
412  *  network model unless you know what you are doing. Only the workstation
413  *  model should be accessed because depending on the platform model,
414  *  the network model can be NULL.
415  */
416 XBT_PUBLIC_DATA(surf_network_model_t) surf_network_model;
417
418 /** \ingroup SURF_models
419  *  \brief Same as network model 'LagrangeVelho', only with different correction factors.
420  *
421  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud
422  * based on the model 'LV08' and different correction factors depending on the communication
423  * size (< 1KiB, < 64KiB, >= 64KiB).
424  * See comments in the code for more information.
425  *
426  *  \see surf_workstation_model_init_SMPI()
427  */
428 XBT_PUBLIC(void) surf_network_model_init_SMPI(void);
429
430 /** \ingroup SURF_models
431  *  \brief Initializes the platform with the network model 'LegrandVelho'
432  *
433  * This model is proposed by Arnaud Legrand and Pedro Velho based on
434  * the results obtained with the GTNets simulator for onelink and
435  * dogbone sharing scenarios. See comments in the code for more information.
436  *
437  *  \see surf_workstation_model_init_LegrandVelho()
438  */
439 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho(void);
440
441 /** \ingroup SURF_models
442  *  \brief Initializes the platform with the network model 'Constant'
443  *
444  *  In this model, the communication time between two network cards is
445  *  constant, hence no need for a routing table. This is particularly
446  *  usefull when simulating huge distributed algorithms where
447  *  scalability is really an issue. This function is called in
448  *  conjunction with surf_workstation_model_init_compound.
449  *
450  *  \see surf_workstation_model_init_compound()
451  */
452 XBT_PUBLIC(void) surf_network_model_init_Constant(void);
453
454 /** \ingroup SURF_models
455  *  \brief Initializes the platform with the network model CM02
456  *
457  *  You sould call this function by yourself only if you plan using
458  *  surf_workstation_model_init_compound.
459  *  See comments in the code for more information.
460  */
461 XBT_PUBLIC(void) surf_network_model_init_CM02(void);
462
463 #ifdef HAVE_GTNETS
464 /** \ingroup SURF_models
465  *  \brief Initializes the platform with the network model GTNETS
466  *  \param filename XML platform file name
467  *
468  *  This function is called by surf_workstation_model_init_GTNETS
469  *  or by yourself only if you plan using surf_workstation_model_init_compound
470  *
471  *  \see surf_workstation_model_init_GTNETS()
472  */
473 XBT_PUBLIC(void) surf_network_model_init_GTNETS(void);
474 #endif
475
476 #ifdef HAVE_NS3
477 /** \ingroup SURF_models
478  *  \brief Initializes the platform with the network model NS3
479  *  \param filename XML platform file name
480  *
481  *  This function is called by surf_workstation_model_init_NS3
482  *  or by yourself only if you plan using surf_workstation_model_init_compound
483  *
484  *  \see surf_workstation_model_init_NS3()
485  */
486 XBT_PUBLIC(void) surf_network_model_init_NS3(void);
487 #endif
488
489 /** \ingroup SURF_models
490  *  \brief Initializes the platform with the network model Reno
491  *  \param filename XML platform file name
492  *
493  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
494  *
495  *  Reference:
496  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
497  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
498  *
499  *  Call this function only if you plan using surf_workstation_model_init_compound.
500  *
501  */
502 XBT_PUBLIC(void) surf_network_model_init_Reno(void);
503
504 /** \ingroup SURF_models
505  *  \brief Initializes the platform with the network model Reno2
506  *  \param filename XML platform file name
507  *
508  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
509  *
510  *  Reference:
511  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
512  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
513  *
514  *  Call this function only if you plan using surf_workstation_model_init_compound.
515  *
516  */
517 XBT_PUBLIC(void) surf_network_model_init_Reno2(void);
518
519 /** \ingroup SURF_models
520  *  \brief Initializes the platform with the network model Vegas
521  *  \param filename XML platform file name
522  *
523  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent
524  *  to the proportional fairness.
525  *
526  *  Reference:
527  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
528  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
529  *
530  *  Call this function only if you plan using surf_workstation_model_init_compound.
531  *
532  */
533 XBT_PUBLIC(void) surf_network_model_init_Vegas(void);
534
535 /** \ingroup SURF_models
536  *  \brief The list of all available network model models
537  */
538 XBT_PUBLIC_DATA(s_surf_model_description_t)
539     surf_network_model_description[];
540
541 /** \ingroup SURF_models
542  *  \brief The storage model
543  */
544 XBT_PUBLIC(void) surf_storage_model_init_default(void);
545
546 /** \ingroup SURF_models
547  *  \brief The list of all available storage modes.
548  *  This storage mode can be set using --cfg=storage/model:...
549  */
550 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_storage_model_description[];
551
552 /** \ingroup SURF_models
553  *  \brief The workstation model
554  *
555  *  Note that when you create an API on top of SURF,
556  *  the workstation model should be the only one you use
557  *  because depending on the platform model, the network model and the CPU model
558  *  may not exist.
559  */
560 XBT_PUBLIC_DATA(surf_workstation_model_t) surf_workstation_model;
561
562 /** \ingroup SURF_models
563  *  \brief Initializes the platform with a compound workstation model
564  *
565  *  This function should be called after a cpu_model and a
566  *  network_model have been set up.
567  *
568  */
569 XBT_PUBLIC(void) surf_workstation_model_init_compound(void);
570
571 /** \ingroup SURF_models
572  *  \brief Initializes the platform with the current best network and cpu models at hand
573  *
574  *  This platform model seperates the workstation model and the network model.
575  *  The workstation model will be initialized with the model compound, the network
576  *  model with the model LV08 (with cross traffic support) and the CPU model with
577  *  the model Cas01.
578  *  Such model is subject to modification with warning in the ChangeLog so monitor it!
579  *
580  */
581 XBT_PUBLIC(void) surf_workstation_model_init_current_default(void);
582
583 /** \ingroup SURF_models
584  *  \brief Initializes the platform with the model KCCFLN05
585  *
586  *  With this model, only parallel tasks can be used. Resource sharing
587  *  is done by identifying bottlenecks and giving an equal share of
588  *  the model to each action.
589  *
590  */
591 XBT_PUBLIC(void) surf_workstation_model_init_ptask_L07(void);
592
593 /** \ingroup SURF_models
594  *  \brief The list of all available workstation model models
595  */
596 XBT_PUBLIC_DATA(s_surf_model_description_t)
597     surf_workstation_model_description[];
598
599 /*******************************************
600  *  TUTORIAL: New model
601  */
602 XBT_PUBLIC(void) surf_new_model_init_default(void);
603
604 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_new_model_description[];
605
606 /*******************************************/
607
608 /** \ingroup SURF_models
609  *  \brief List of initialized models
610  */
611 XBT_PUBLIC_DATA(xbt_dynar_t) model_list;
612
613 /*******************************************/
614 /*** SURF Platform *************************/
615 /*******************************************/
616 #ifdef __cplusplus
617 extern "C" {
618 #endif
619 XBT_PUBLIC_DATA(AS_t) surf_AS_get_routing_root(void); 
620 XBT_PUBLIC_DATA(const char *) surf_AS_get_name(AS_t as);
621 XBT_PUBLIC_DATA(xbt_dict_t) surf_AS_get_routing_sons(AS_t as);
622 XBT_PUBLIC_DATA(const char *) surf_AS_get_model(AS_t as);
623 XBT_PUBLIC_DATA(xbt_dynar_t) surf_AS_get_hosts(AS_t as);
624 XBT_PUBLIC_DATA(void) surf_AS_get_graph(AS_t as, xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
625 XBT_PUBLIC_DATA(AS_t) surf_platf_get_root(routing_platf_t platf);
626 XBT_PUBLIC_DATA(e_surf_network_element_type_t) surf_routing_edge_get_rc_type(sg_routing_edge_t edge);
627 #ifdef __cplusplus
628 }
629 #endif
630
631 /*******************************************/
632 /*** SURF Globals **************************/
633 /*******************************************/
634
635 /** \ingroup SURF_simulation
636  *  \brief Initialize SURF
637  *  \param argc argument number
638  *  \param argv arguments
639  *
640  *  This function has to be called to initialize the common
641  *  structures.  Then you will have to create the environment by
642  *  calling 
643  *  e.g. surf_workstation_model_init_CM02()
644  *
645  *  \see surf_workstation_model_init_CM02(), surf_workstation_model_init_compound(), surf_exit()
646  */
647 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
648
649 /** \ingroup SURF_simulation
650  *  \brief Finish simulation initialization
651  *
652  *  This function must be called before the first call to surf_solve()
653  */
654 XBT_PUBLIC(void) surf_presolve(void);
655
656 /** \ingroup SURF_simulation
657  *  \brief Performs a part of the simulation
658  *  \param max_date Maximum date to update the simulation to, or -1
659  *  \return the elapsed time, or -1.0 if no event could be executed
660  *
661  *  This function execute all possible events, update the action states
662  *  and returns the time elapsed.
663  *  When you call execute or communicate on a model, the corresponding actions
664  *  are not executed immediately but only when you call surf_solve.
665  *  Note that the returned elapsed time can be zero.
666  */
667 XBT_PUBLIC(double) surf_solve(double max_date);
668
669 /** \ingroup SURF_simulation
670  *  \brief Return the current time
671  *
672  *  Return the current time in millisecond.
673  */
674 XBT_PUBLIC(double) surf_get_clock(void);
675
676 /** \ingroup SURF_simulation
677  *  \brief Exit SURF
678  *
679  *  Clean everything.
680  *
681  *  \see surf_init()
682  */
683 XBT_PUBLIC(void) surf_exit(void);
684
685 /* Prototypes of the functions that handle the properties */
686 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;       /* the prop set for the currently parsed element (also used in SIMIX) */
687
688 /* surf parse file related (public because called from a test suite) */
689 XBT_PUBLIC(void) parse_platform_file(const char *file);
690
691 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
692 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
693 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_host_avail;
694 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_power;
695 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_link_avail;
696 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_bandwidth;
697 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_latency;
698
699
700 XBT_PUBLIC(double) get_cpu_power(const char *power);
701
702 XBT_PUBLIC(xbt_dict_t) get_as_router_properties(const char* name);
703
704 int surf_get_nthreads(void);
705 void surf_set_nthreads(int nthreads);
706
707 void surf_watched_hosts(void);
708
709 /*
710  * Returns the initial path. On Windows the initial path is
711  * the current directory for the current process in the other
712  * case the function returns "./" that represents the current
713  * directory on Unix/Linux platforms.
714  */
715 const char *__surf_get_initial_path(void);
716
717 /********** Tracing **********/
718 /* from surf_instr.c */
719 void TRACE_surf_action(surf_action_t surf_action, const char *category);
720 void TRACE_surf_alloc(void);
721 void TRACE_surf_release(void);
722
723 /* instr_routing.c */
724 void instr_routing_define_callbacks (void);
725 void instr_new_variable_type (const char *new_typename, const char *color);
726 void instr_new_user_variable_type  (const char *father_type, const char *new_typename, const char *color);
727 void instr_new_user_state_type (const char *father_type, const char *new_typename);
728 void instr_new_value_for_user_state_type (const char *_typename, const char *value, const char *color);
729 int instr_platform_traced (void);
730 xbt_graph_t instr_routing_platform_graph (void);
731 void instr_routing_platform_graph_export_graphviz (xbt_graph_t g, const char *filename);
732
733 SG_END_DECL()
734 #endif                          /* _SURF_SURF_H */