Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move the callbacks to the cluster creation from surfxml_parse to sg_platf
[simgrid.git] / src / surf / workstation_ptask_L07.c
1 /* Copyright (c) 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 #include "xbt/ex.h"
8 #include "xbt/str.h"
9 #include "xbt/dict.h"
10 #include "surf_private.h"
11 #include "surf/surf_resource.h"
12 //#include "surf/surf_resource_lmm.h"
13
14 typedef enum {
15   SURF_WORKSTATION_RESOURCE_CPU,
16   SURF_WORKSTATION_RESOURCE_LINK,
17 } e_surf_workstation_model_type_t;
18
19 /**************************************/
20 /********* cpu object *****************/
21 /**************************************/
22 typedef struct cpu_L07 {
23   s_surf_resource_t generic_resource;   /* Do not move this field: must match surf_resource_t */
24   e_surf_workstation_model_type_t type; /* Do not move this field: must match link_L07_t */
25   lmm_constraint_t constraint;  /* Do not move this field: must match link_L07_t */
26   double power_scale;
27   double power_current;
28   tmgr_trace_event_t power_event;
29   e_surf_resource_state_t state_current;
30   tmgr_trace_event_t state_event;
31   int id;                       /* cpu and network card are a single object... */
32 } s_cpu_L07_t, *cpu_L07_t;
33
34 /**************************************/
35 /*********** network object ***********/
36 /**************************************/
37
38 typedef struct link_L07 {
39   s_surf_resource_t generic_resource;   /* Do not move this field: must match surf_resource_t */
40   e_surf_workstation_model_type_t type; /* Do not move this field: must match cpu_L07_t */
41   lmm_constraint_t constraint;  /* Do not move this field: must match cpu_L07_t */
42   double lat_current;
43   tmgr_trace_event_t lat_event;
44   double bw_current;
45   tmgr_trace_event_t bw_event;
46   e_surf_resource_state_t state_current;
47   tmgr_trace_event_t state_event;
48 } s_link_L07_t, *link_L07_t;
49
50 /**************************************/
51 /*************** actions **************/
52 /**************************************/
53 typedef struct surf_action_workstation_L07 {
54   s_surf_action_t generic_action;
55   lmm_variable_t variable;
56   int workstation_nb;
57   cpu_L07_t *workstation_list;
58   double *computation_amount;
59   double *communication_amount;
60   double latency;
61   double rate;
62   int suspended;
63 } s_surf_action_workstation_L07_t, *surf_action_workstation_L07_t;
64
65
66 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_workstation);
67
68 static int ptask_host_count = 0;
69 static xbt_dict_t ptask_parallel_task_link_set = NULL;
70 lmm_system_t ptask_maxmin_system = NULL;
71
72
73 static void ptask_update_action_bound(surf_action_workstation_L07_t action)
74 {
75   int workstation_nb = action->workstation_nb;
76   double lat_current = 0.0;
77   double lat_bound = -1.0;
78   int i, j;
79   unsigned int cpt;
80   link_L07_t link;
81
82   for (i = 0; i < workstation_nb; i++) {
83     for (j = 0; j < workstation_nb; j++) {
84       xbt_dynar_t route =
85           routing_get_route(surf_resource_name
86                                     (action->workstation_list[i]),
87                                     surf_resource_name(action->
88                                                        workstation_list
89                                                        [j]));
90
91       double lat = 0.0;
92
93       if (action->communication_amount[i * workstation_nb + j] > 0) {
94         xbt_dynar_foreach(route, cpt, link) {
95           lat += link->lat_current;
96         }
97         lat_current =
98             MAX(lat_current,
99                 lat * action->communication_amount[i * workstation_nb +
100                                                    j]);
101       }
102     }
103   }
104   lat_bound = sg_tcp_gamma / (2.0 * lat_current);
105   XBT_DEBUG("action (%p) : lat_bound = %g", action, lat_bound);
106   if ((action->latency == 0.0) && (action->suspended == 0)) {
107     if (action->rate < 0)
108       lmm_update_variable_bound(ptask_maxmin_system, action->variable,
109                                 lat_bound);
110     else
111       lmm_update_variable_bound(ptask_maxmin_system, action->variable,
112                                 min(action->rate, lat_bound));
113   }
114 }
115
116 /**************************************/
117 /******* Resource Public     **********/
118 /**************************************/
119
120 static int ptask_action_unref(surf_action_t action)
121 {
122   action->refcount--;
123
124   if (!action->refcount) {
125     xbt_swag_remove(action, action->state_set);
126     if (((surf_action_workstation_L07_t) action)->variable)
127       lmm_variable_free(ptask_maxmin_system,
128                         ((surf_action_workstation_L07_t)
129                          action)->variable);
130     free(((surf_action_workstation_L07_t) action)->workstation_list);
131     free(((surf_action_workstation_L07_t) action)->communication_amount);
132     free(((surf_action_workstation_L07_t) action)->computation_amount);
133     surf_action_free(&action);
134     return 1;
135   }
136   return 0;
137 }
138
139 static void ptask_action_cancel(surf_action_t action)
140 {
141   surf_action_state_set(action, SURF_ACTION_FAILED);
142   return;
143 }
144
145 /* action_change_state is inherited from the surf module */
146 /* action_set_data is inherited from the surf module */
147
148 static void ptask_action_suspend(surf_action_t action)
149 {
150   XBT_IN("(%p))", action);
151   if (((surf_action_workstation_L07_t) action)->suspended != 2) {
152     ((surf_action_workstation_L07_t) action)->suspended = 1;
153     lmm_update_variable_weight(ptask_maxmin_system,
154                                ((surf_action_workstation_L07_t)
155                                 action)->variable, 0.0);
156   }
157   XBT_OUT();
158 }
159
160 static void ptask_action_resume(surf_action_t action)
161 {
162   surf_action_workstation_L07_t act =
163       (surf_action_workstation_L07_t) action;
164
165   XBT_IN("(%p)", act);
166   if (act->suspended != 2) {
167     lmm_update_variable_weight(ptask_maxmin_system, act->variable, 1.0);
168     act->suspended = 0;
169   }
170   XBT_OUT();
171 }
172
173 static int ptask_action_is_suspended(surf_action_t action)
174 {
175   return (((surf_action_workstation_L07_t) action)->suspended == 1);
176 }
177
178 static void ptask_action_set_max_duration(surf_action_t action,
179                                           double duration)
180 {                               /* FIXME: should inherit */
181   XBT_IN("(%p,%g)", action, duration);
182   action->max_duration = duration;
183   XBT_OUT();
184 }
185
186
187 static void ptask_action_set_priority(surf_action_t action,
188                                       double priority)
189 {                               /* FIXME: should inherit */
190   XBT_IN("(%p,%g)", action, priority);
191   action->priority = priority;
192   XBT_OUT();
193 }
194
195 static double ptask_action_get_remains(surf_action_t action)
196 {
197   XBT_IN("(%p)", action);
198   return action->remains;
199   XBT_OUT();
200 }
201
202 /**************************************/
203 /******* Resource Private    **********/
204 /**************************************/
205
206 static int ptask_resource_used(void *resource_id)
207 {
208   /* We can freely cast as a link_L07_t because it has
209      the same prefix as cpu_L07_t */
210   return lmm_constraint_used(ptask_maxmin_system,
211                              ((link_L07_t) resource_id)->constraint);
212
213 }
214
215 static double ptask_share_resources(double now)
216 {
217   s_surf_action_workstation_L07_t s_action;
218   surf_action_workstation_L07_t action = NULL;
219
220   xbt_swag_t running_actions =
221       surf_workstation_model->states.running_action_set;
222   double min = generic_maxmin_share_resources(running_actions,
223                                               xbt_swag_offset(s_action,
224                                                               variable),
225                                               ptask_maxmin_system,
226                                               bottleneck_solve);
227
228   xbt_swag_foreach(action, running_actions) {
229     if (action->latency > 0) {
230       if (min < 0) {
231         min = action->latency;
232         XBT_DEBUG("Updating min (value) with %p (start %f): %f", action,
233                action->generic_action.start, min);
234       } else if (action->latency < min) {
235         min = action->latency;
236         XBT_DEBUG("Updating min (latency) with %p (start %f): %f", action,
237                action->generic_action.start, min);
238       }
239     }
240   }
241
242   XBT_DEBUG("min value : %f", min);
243
244   return min;
245 }
246
247 static void ptask_update_actions_state(double now, double delta)
248 {
249   double deltap = 0.0;
250   surf_action_workstation_L07_t action = NULL;
251   surf_action_workstation_L07_t next_action = NULL;
252   xbt_swag_t running_actions =
253       surf_workstation_model->states.running_action_set;
254
255   xbt_swag_foreach_safe(action, next_action, running_actions) {
256     deltap = delta;
257     if (action->latency > 0) {
258       if (action->latency > deltap) {
259         double_update(&(action->latency), deltap);
260         deltap = 0.0;
261       } else {
262         double_update(&(deltap), action->latency);
263         action->latency = 0.0;
264       }
265       if ((action->latency == 0.0) && (action->suspended == 0)) {
266         ptask_update_action_bound(action);
267         lmm_update_variable_weight(ptask_maxmin_system, action->variable,
268                                    1.0);
269       }
270     }
271     XBT_DEBUG("Action (%p) : remains (%g) updated by %g.",
272            action, action->generic_action.remains,
273            lmm_variable_getvalue(action->variable) * delta);
274     double_update(&(action->generic_action.remains),
275                   lmm_variable_getvalue(action->variable) * delta);
276
277     if (action->generic_action.max_duration != NO_MAX_DURATION)
278       double_update(&(action->generic_action.max_duration), delta);
279
280     XBT_DEBUG("Action (%p) : remains (%g).",
281            action, action->generic_action.remains);
282     if ((action->generic_action.remains <= 0) &&
283         (lmm_get_variable_weight(action->variable) > 0)) {
284       action->generic_action.finish = surf_get_clock();
285       surf_action_state_set((surf_action_t) action, SURF_ACTION_DONE);
286     } else if ((action->generic_action.max_duration != NO_MAX_DURATION) &&
287                (action->generic_action.max_duration <= 0)) {
288       action->generic_action.finish = surf_get_clock();
289       surf_action_state_set((surf_action_t) action, SURF_ACTION_DONE);
290     } else {
291       /* Need to check that none of the model has failed */
292       lmm_constraint_t cnst = NULL;
293       int i = 0;
294       void *constraint_id = NULL;
295
296       while ((cnst =
297               lmm_get_cnst_from_var(ptask_maxmin_system, action->variable,
298                                     i++))) {
299         constraint_id = lmm_constraint_id(cnst);
300
301 /*      if(((link_L07_t)constraint_id)->type== */
302 /*         SURF_WORKSTATION_RESOURCE_LINK) { */
303 /*        XBT_DEBUG("Checking for link %s (%p)", */
304 /*               ((link_L07_t)constraint_id)->name, */
305 /*               ((link_L07_t)constraint_id)); */
306 /*      } */
307 /*      if(((cpu_L07_t)constraint_id)->type== */
308 /*         SURF_WORKSTATION_RESOURCE_CPU) { */
309 /*        XBT_DEBUG("Checking for cpu %s (%p) : %s", */
310 /*               ((cpu_L07_t)constraint_id)->name, */
311 /*               ((cpu_L07_t)constraint_id), */
312 /*               ((cpu_L07_t)constraint_id)->state_current==SURF_CPU_OFF?"Off":"On"); */
313 /*      } */
314
315         if (((((link_L07_t) constraint_id)->type ==
316               SURF_WORKSTATION_RESOURCE_LINK) &&
317              (((link_L07_t) constraint_id)->state_current ==
318               SURF_RESOURCE_OFF)) ||
319             ((((cpu_L07_t) constraint_id)->type ==
320               SURF_WORKSTATION_RESOURCE_CPU) &&
321              (((cpu_L07_t) constraint_id)->state_current ==
322               SURF_RESOURCE_OFF))) {
323           XBT_DEBUG("Action (%p) Failed!!", action);
324           action->generic_action.finish = surf_get_clock();
325           surf_action_state_set((surf_action_t) action,
326                                 SURF_ACTION_FAILED);
327           break;
328         }
329       }
330     }
331   }
332   return;
333 }
334
335 static void ptask_update_resource_state(void *id,
336                                         tmgr_trace_event_t event_type,
337                                         double value, double date)
338 {
339   cpu_L07_t cpu = id;
340   link_L07_t nw_link = id;
341
342   if (nw_link->type == SURF_WORKSTATION_RESOURCE_LINK) {
343     XBT_DEBUG("Updating link %s (%p)", surf_resource_name(nw_link), nw_link);
344     if (event_type == nw_link->bw_event) {
345       nw_link->bw_current = value;
346       lmm_update_constraint_bound(ptask_maxmin_system, nw_link->constraint,
347                                   nw_link->bw_current);
348       if (tmgr_trace_event_free(event_type))
349         nw_link->bw_event = NULL;
350     } else if (event_type == nw_link->lat_event) {
351       lmm_variable_t var = NULL;
352       surf_action_workstation_L07_t action = NULL;
353       lmm_element_t elem = NULL;
354
355       nw_link->lat_current = value;
356       while ((var = lmm_get_var_from_cnst
357               (ptask_maxmin_system, nw_link->constraint, &elem))) {
358
359
360         action = lmm_variable_id(var);
361         ptask_update_action_bound(action);
362       }
363       if (tmgr_trace_event_free(event_type))
364         nw_link->lat_event = NULL;
365
366     } else if (event_type == nw_link->state_event) {
367       if (value > 0)
368         nw_link->state_current = SURF_RESOURCE_ON;
369       else
370         nw_link->state_current = SURF_RESOURCE_OFF;
371       if (tmgr_trace_event_free(event_type))
372         nw_link->state_event = NULL;
373     } else {
374       XBT_CRITICAL("Unknown event ! \n");
375       xbt_abort();
376     }
377     return;
378   } else if (cpu->type == SURF_WORKSTATION_RESOURCE_CPU) {
379     XBT_DEBUG("Updating cpu %s (%p) with value %g", surf_resource_name(cpu),
380            cpu, value);
381     if (event_type == cpu->power_event) {
382       cpu->power_current = value;
383       lmm_update_constraint_bound(ptask_maxmin_system, cpu->constraint,
384                                   cpu->power_current * cpu->power_scale);
385       if (tmgr_trace_event_free(event_type))
386         cpu->power_event = NULL;
387     } else if (event_type == cpu->state_event) {
388       if (value > 0)
389         cpu->state_current = SURF_RESOURCE_ON;
390       else
391         cpu->state_current = SURF_RESOURCE_OFF;
392       if (tmgr_trace_event_free(event_type))
393         cpu->state_event = NULL;
394     } else {
395       XBT_CRITICAL("Unknown event ! \n");
396       xbt_abort();
397     }
398     return;
399   } else {
400     DIE_IMPOSSIBLE;
401   }
402   return;
403 }
404
405 static void ptask_finalize(void)
406 {
407   xbt_dict_free(&ptask_parallel_task_link_set);
408
409   surf_model_exit(surf_workstation_model);
410   surf_workstation_model = NULL;
411   surf_model_exit(surf_network_model);
412   surf_network_model = NULL;
413
414   ptask_host_count = 0;
415
416   if (ptask_maxmin_system) {
417     lmm_system_free(ptask_maxmin_system);
418     ptask_maxmin_system = NULL;
419   }
420 }
421
422 /**************************************/
423 /******* Resource Private    **********/
424 /**************************************/
425
426 static e_surf_resource_state_t ptask_resource_get_state(void *cpu)
427 {
428   return ((cpu_L07_t) cpu)->state_current;
429 }
430
431 static double ptask_get_speed(void *cpu, double load)
432 {
433   return load * (((cpu_L07_t) cpu)->power_scale);
434 }
435
436 static double ptask_get_available_speed(void *cpu)
437 {
438   return ((cpu_L07_t) cpu)->power_current;
439 }
440
441 static surf_action_t ptask_execute_parallel_task(int workstation_nb,
442                                                  void **workstation_list,
443                                                  double
444                                                  *computation_amount, double
445                                                  *communication_amount,
446                                                  double amount,
447                                                  double rate)
448 {
449   surf_action_workstation_L07_t action = NULL;
450   int i, j;
451   unsigned int cpt;
452   int nb_link = 0;
453   int nb_host = 0;
454   double latency = 0.0;
455
456   if (ptask_parallel_task_link_set == NULL)
457     ptask_parallel_task_link_set = xbt_dict_new();
458
459   xbt_dict_reset(ptask_parallel_task_link_set);
460
461   /* Compute the number of affected resources... */
462   for (i = 0; i < workstation_nb; i++) {
463     for (j = 0; j < workstation_nb; j++) {
464       link_L07_t link;
465       xbt_dynar_t route =
466           routing_get_route(surf_resource_name
467                                     (workstation_list[i]),
468                                     surf_resource_name(workstation_list
469                                                        [j]));
470       double lat = 0.0;
471
472       if (communication_amount[i * workstation_nb + j] > 0)
473         xbt_dynar_foreach(route, cpt, link) {
474         lat += link->lat_current;
475         xbt_dict_set(ptask_parallel_task_link_set,
476                      link->generic_resource.name, link, NULL);
477         }
478       latency = MAX(latency, lat);
479     }
480   }
481
482   nb_link = xbt_dict_length(ptask_parallel_task_link_set);
483   xbt_dict_reset(ptask_parallel_task_link_set);
484
485   for (i = 0; i < workstation_nb; i++)
486     if (computation_amount[i] > 0)
487       nb_host++;
488
489   action =
490       surf_action_new(sizeof(s_surf_action_workstation_L07_t), amount,
491                       surf_workstation_model, 0);
492   XBT_DEBUG("Creating a parallel task (%p) with %d cpus and %d links.",
493          action, workstation_nb, nb_link);
494   action->suspended = 0;        /* Should be useless because of the
495                                    calloc but it seems to help valgrind... */
496   action->workstation_nb = workstation_nb;
497   action->workstation_list = (cpu_L07_t *) workstation_list;
498   action->computation_amount = computation_amount;
499   action->communication_amount = communication_amount;
500   action->latency = latency;
501   action->rate = rate;
502
503   action->variable =
504       lmm_variable_new(ptask_maxmin_system, action, 1.0,
505                        (action->rate > 0) ? action->rate : -1.0,
506                        workstation_nb + nb_link);
507
508   if (action->latency > 0)
509     lmm_update_variable_weight(ptask_maxmin_system, action->variable, 0.0);
510
511   for (i = 0; i < workstation_nb; i++)
512     lmm_expand(ptask_maxmin_system,
513                ((cpu_L07_t) workstation_list[i])->constraint,
514                action->variable, computation_amount[i]);
515
516   for (i = 0; i < workstation_nb; i++) {
517     for (j = 0; j < workstation_nb; j++) {
518       link_L07_t link;
519       xbt_dynar_t route =
520           routing_get_route(surf_resource_name
521                                     (workstation_list[i]),
522                                     surf_resource_name(workstation_list
523                                                        [j]));
524
525       if (communication_amount[i * workstation_nb + j] == 0.0)
526         continue;
527       xbt_dynar_foreach(route, cpt, link) {
528         lmm_expand_add(ptask_maxmin_system, link->constraint,
529                        action->variable,
530                        communication_amount[i * workstation_nb + j]);
531       }
532     }
533   }
534
535   if (nb_link + nb_host == 0) {
536     action->generic_action.cost = 1.0;
537     action->generic_action.remains = 0.0;
538   }
539
540   return (surf_action_t) action;
541 }
542
543 static surf_action_t ptask_execute(void *cpu, double size)
544 {
545   void **workstation_list = xbt_new0(void *, 1);
546   double *computation_amount = xbt_new0(double, 1);
547   double *communication_amount = xbt_new0(double, 1);
548
549   workstation_list[0] = cpu;
550   communication_amount[0] = 0.0;
551   computation_amount[0] = size;
552
553   return ptask_execute_parallel_task(1, workstation_list,
554                                      computation_amount,
555                                      communication_amount, 1, -1);
556 }
557
558 static surf_action_t ptask_communicate(void *src, void *dst, double size,
559                                        double rate)
560 {
561   void **workstation_list = xbt_new0(void *, 2);
562   double *computation_amount = xbt_new0(double, 2);
563   double *communication_amount = xbt_new0(double, 4);
564   surf_action_t res = NULL;
565
566   workstation_list[0] = src;
567   workstation_list[1] = dst;
568   communication_amount[1] = size;
569
570   res = ptask_execute_parallel_task(2, workstation_list,
571                                     computation_amount,
572                                     communication_amount, 1, rate);
573
574   return res;
575 }
576
577 static surf_action_t ptask_action_sleep(void *cpu, double duration)
578 {
579   surf_action_workstation_L07_t action = NULL;
580
581   XBT_IN("(%s,%g)", surf_resource_name(cpu), duration);
582
583   action = (surf_action_workstation_L07_t) ptask_execute(cpu, 1.0);
584   action->generic_action.max_duration = duration;
585   action->suspended = 2;
586   lmm_update_variable_weight(ptask_maxmin_system, action->variable, 0.0);
587
588   XBT_OUT();
589   return (surf_action_t) action;
590 }
591
592 static xbt_dynar_t ptask_get_route(void *src, void *dst) // FIXME: kill that callback kind?
593 {
594   return routing_get_route(surf_resource_name(src),
595                                    surf_resource_name(dst));
596 }
597
598 static double ptask_get_link_bandwidth(const void *link)
599 {
600   return ((link_L07_t) link)->bw_current;
601 }
602
603 static double ptask_get_link_latency(const void *link)
604 {
605   return ((link_L07_t) link)->lat_current;
606 }
607
608 static int ptask_link_shared(const void *link)
609 {
610   return lmm_constraint_is_shared(((link_L07_t) link)->constraint);
611 }
612
613 /**************************************/
614 /*** Resource Creation & Destruction **/
615 /**************************************/
616
617 static void* ptask_cpu_create_resource(const char *name, double power_scale,
618                                double power_initial,
619                                tmgr_trace_t power_trace,
620                                e_surf_resource_state_t state_initial,
621                                tmgr_trace_t state_trace,
622                                xbt_dict_t cpu_properties)
623 {
624   cpu_L07_t cpu = NULL;
625   xbt_assert(!surf_workstation_resource_by_name(name),
626               "Host '%s' declared several times in the platform file.",
627               name);
628
629   cpu = (cpu_L07_t) surf_resource_new(sizeof(s_cpu_L07_t),
630           surf_workstation_model, name,cpu_properties);
631
632   cpu->type = SURF_WORKSTATION_RESOURCE_CPU;
633   cpu->id = ptask_host_count++;
634
635   cpu->power_scale = power_scale;
636   xbt_assert(cpu->power_scale > 0, "Power has to be >0");
637
638   cpu->power_current = power_initial;
639   if (power_trace)
640     cpu->power_event =
641         tmgr_history_add_trace(history, power_trace, 0.0, 0, cpu);
642
643   cpu->state_current = state_initial;
644   if (state_trace)
645     cpu->state_event =
646         tmgr_history_add_trace(history, state_trace, 0.0, 0, cpu);
647
648   cpu->constraint =
649       lmm_constraint_new(ptask_maxmin_system, cpu,
650                          cpu->power_current * cpu->power_scale);
651
652   xbt_lib_set(host_lib, name, SURF_WKS_LEVEL, cpu);
653
654   return cpu;
655 }
656
657 static void ptask_parse_cpu_init(sg_platf_host_cbarg_t host)
658 {
659   ptask_cpu_create_resource(
660                   host->id,
661                   host->power_peak,
662                   host->power_scale,
663                   host->power_trace,
664                   host->initial_state,
665                   host->state_trace,
666                   host->properties);
667 }
668
669 static void* ptask_link_create_resource(const char *name,
670                                  double bw_initial,
671                                  tmgr_trace_t bw_trace,
672                                  double lat_initial,
673                                  tmgr_trace_t lat_trace,
674                                  e_surf_resource_state_t
675                                  state_initial,
676                                  tmgr_trace_t state_trace,
677                                  e_surf_link_sharing_policy_t
678                                  policy, xbt_dict_t properties)
679 {
680   link_L07_t nw_link = xbt_new0(s_link_L07_t, 1);
681   xbt_assert(!xbt_lib_get_or_null(link_lib, name, SURF_LINK_LEVEL),
682               "Link '%s' declared several times in the platform file.",
683               name);
684
685   nw_link->generic_resource.model = surf_workstation_model;
686   nw_link->generic_resource.properties = properties;
687   nw_link->generic_resource.name = xbt_strdup(name);
688   nw_link->type = SURF_WORKSTATION_RESOURCE_LINK;
689   nw_link->bw_current = bw_initial;
690   if (bw_trace)
691     nw_link->bw_event =
692         tmgr_history_add_trace(history, bw_trace, 0.0, 0, nw_link);
693   nw_link->state_current = state_initial;
694   nw_link->lat_current = lat_initial;
695   if (lat_trace)
696     nw_link->lat_event =
697         tmgr_history_add_trace(history, lat_trace, 0.0, 0, nw_link);
698   if (state_trace)
699     nw_link->state_event =
700         tmgr_history_add_trace(history, state_trace, 0.0, 0, nw_link);
701
702   nw_link->constraint =
703       lmm_constraint_new(ptask_maxmin_system, nw_link,
704                          nw_link->bw_current);
705
706   if (policy == SURF_LINK_FATPIPE)
707     lmm_constraint_shared(nw_link->constraint);
708
709   xbt_lib_set(link_lib, name, SURF_LINK_LEVEL, nw_link);
710   return nw_link;
711 }
712
713 static void ptask_parse_link_init(sg_platf_link_cbarg_t link)
714 {
715   if (link->policy == SURF_LINK_FULLDUPLEX) {
716     char *link_id;
717     link_id = bprintf("%s_UP", link->id);
718     ptask_link_create_resource(link_id,
719                                link->bandwidth,
720                                link->bandwidth_trace,
721                                link->latency,
722                                link->latency_trace,
723                                link->state,
724                                link->state_trace,
725                                link->policy,
726                                link->properties);
727     xbt_free(link_id);
728     link_id = bprintf("%s_DOWN", link->id);
729     ptask_link_create_resource(bprintf("%s_DOWN", link->id),
730                                link->bandwidth,
731                                link->bandwidth_trace,
732                                link->latency,
733                                link->latency_trace,
734                                link->state,
735                                link->state_trace,
736                                link->policy,
737                                NULL); /* FIXME: We need to deep copy the
738                                        * properties or we won't be able to free
739                                        * it */
740     xbt_free(link_id);
741   } else {
742     ptask_link_create_resource(link->id,
743                                link->bandwidth,
744                                link->bandwidth_trace,
745                                link->latency,
746                                link->latency_trace,
747                                link->state,
748                                link->state_trace,
749                                link->policy,
750                                link->properties);
751   }
752
753   current_property_set = NULL;
754 }
755
756 static void ptask_add_traces(void)
757 {
758   xbt_dict_cursor_t cursor = NULL;
759   char *trace_name, *elm;
760
761   if (!trace_connect_list_host_avail)
762     return;
763
764   /* Connect traces relative to cpu */
765   xbt_dict_foreach(trace_connect_list_host_avail, cursor, trace_name, elm) {
766     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
767     cpu_L07_t host = surf_workstation_resource_by_name(elm);
768
769     xbt_assert(host, "Host %s undefined", elm);
770     xbt_assert(trace, "Trace %s undefined", trace_name);
771
772     host->state_event =
773         tmgr_history_add_trace(history, trace, 0.0, 0, host);
774   }
775
776   xbt_dict_foreach(trace_connect_list_power, cursor, trace_name, elm) {
777     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
778     cpu_L07_t host = surf_workstation_resource_by_name(elm);
779
780     xbt_assert(host, "Host %s undefined", elm);
781     xbt_assert(trace, "Trace %s undefined", trace_name);
782
783     host->power_event =
784         tmgr_history_add_trace(history, trace, 0.0, 0, host);
785   }
786
787   /* Connect traces relative to network */
788   xbt_dict_foreach(trace_connect_list_link_avail, cursor, trace_name, elm) {
789     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
790     link_L07_t link =
791                 xbt_lib_get_or_null(link_lib, elm, SURF_LINK_LEVEL);
792
793     xbt_assert(link, "Link %s undefined", elm);
794     xbt_assert(trace, "Trace %s undefined", trace_name);
795
796     link->state_event =
797         tmgr_history_add_trace(history, trace, 0.0, 0, link);
798   }
799
800   xbt_dict_foreach(trace_connect_list_bandwidth, cursor, trace_name, elm) {
801     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
802     link_L07_t link =
803                 xbt_lib_get_or_null(link_lib, elm, SURF_LINK_LEVEL);
804
805     xbt_assert(link, "Link %s undefined", elm);
806     xbt_assert(trace, "Trace %s undefined", trace_name);
807
808     link->bw_event = tmgr_history_add_trace(history, trace, 0.0, 0, link);
809   }
810
811   xbt_dict_foreach(trace_connect_list_latency, cursor, trace_name, elm) {
812     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
813     link_L07_t link =
814                 xbt_lib_get_or_null(link_lib, elm, SURF_LINK_LEVEL);
815
816     xbt_assert(link, "Link %s undefined", elm);
817     xbt_assert(trace, "Trace %s undefined", trace_name);
818
819     link->lat_event = tmgr_history_add_trace(history, trace, 0.0, 0, link);
820   }
821 }
822
823 static void ptask_define_callbacks()
824 {
825   sg_platf_host_add_cb(ptask_parse_cpu_init);
826   sg_platf_link_add_cb(ptask_parse_link_init);
827   sg_platf_postparse_add_cb(ptask_add_traces);
828 }
829
830 /**************************************/
831 /********* Module  creation ***********/
832 /**************************************/
833
834 static void ptask_model_init_internal(void)
835 {
836   surf_workstation_model = surf_model_init();
837
838   surf_workstation_model->action_unref = ptask_action_unref;
839   surf_workstation_model->action_cancel = ptask_action_cancel;
840   surf_workstation_model->action_state_set = surf_action_state_set;
841   surf_workstation_model->suspend = ptask_action_suspend;
842   surf_workstation_model->resume = ptask_action_resume;
843   surf_workstation_model->is_suspended = ptask_action_is_suspended;
844   surf_workstation_model->set_max_duration = ptask_action_set_max_duration;
845   surf_workstation_model->set_priority = ptask_action_set_priority;
846   surf_workstation_model->get_remains = ptask_action_get_remains;
847   surf_workstation_model->name = "Workstation ptask_L07";
848
849   surf_workstation_model->model_private->resource_used =
850       ptask_resource_used;
851   surf_workstation_model->model_private->share_resources =
852       ptask_share_resources;
853   surf_workstation_model->model_private->update_actions_state =
854       ptask_update_actions_state;
855   surf_workstation_model->model_private->update_resource_state =
856       ptask_update_resource_state;
857   surf_workstation_model->model_private->finalize = ptask_finalize;
858
859
860   surf_workstation_model->extension.workstation.execute = ptask_execute;
861   surf_workstation_model->extension.workstation.sleep = ptask_action_sleep;
862   surf_workstation_model->extension.workstation.get_state =
863       ptask_resource_get_state;
864   surf_workstation_model->extension.workstation.get_speed =
865       ptask_get_speed;
866   surf_workstation_model->extension.workstation.get_available_speed =
867       ptask_get_available_speed;
868   surf_workstation_model->extension.workstation.communicate =
869       ptask_communicate;
870   surf_workstation_model->extension.workstation.get_route =
871       ptask_get_route;
872   surf_workstation_model->extension.workstation.execute_parallel_task =
873       ptask_execute_parallel_task;
874   surf_workstation_model->extension.workstation.get_link_bandwidth =
875       ptask_get_link_bandwidth;
876   surf_workstation_model->extension.workstation.get_link_latency =
877       ptask_get_link_latency;
878   surf_workstation_model->extension.workstation.link_shared =
879       ptask_link_shared;
880   surf_workstation_model->extension.workstation.get_properties =
881       surf_resource_properties;
882   surf_workstation_model->extension.workstation.link_create_resource =
883       ptask_link_create_resource;
884   surf_workstation_model->extension.workstation.cpu_create_resource =
885       ptask_cpu_create_resource;
886   surf_workstation_model->extension.workstation.add_traces =
887       ptask_add_traces;
888
889   if (!ptask_maxmin_system)
890     ptask_maxmin_system = lmm_system_new();
891
892   routing_model_create(sizeof(link_L07_t),
893                        ptask_link_create_resource("__loopback__",
894                                                   498000000, NULL,
895                                                   0.000015, NULL,
896                                                   SURF_RESOURCE_ON, NULL,
897                                                   SURF_LINK_FATPIPE, NULL));
898
899 }
900
901 /**************************************/
902 /*************** Generic **************/
903 /**************************************/
904 void surf_workstation_model_init_ptask_L07(void)
905 {
906   XBT_INFO("surf_workstation_model_init_ptask_L07");
907   xbt_assert(!surf_cpu_model, "CPU model type already defined");
908   xbt_assert(!surf_network_model, "network model type already defined");
909   surf_network_model = surf_model_init();
910   ptask_define_callbacks();
911   ptask_model_init_internal();
912   xbt_dynar_push(model_list, &surf_workstation_model);
913 }