Logo AND Algorithmique Numérique Distribuée

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