Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
nobody use these structures, so I won't try to understand their purpose
[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           global_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   global_routing->finalize();
414
415   ptask_host_count = 0;
416
417   if (ptask_maxmin_system) {
418     lmm_system_free(ptask_maxmin_system);
419     ptask_maxmin_system = NULL;
420   }
421 }
422
423 /**************************************/
424 /******* Resource Private    **********/
425 /**************************************/
426
427 static e_surf_resource_state_t ptask_resource_get_state(void *cpu)
428 {
429   return ((cpu_L07_t) cpu)->state_current;
430 }
431
432 static double ptask_get_speed(void *cpu, double load)
433 {
434   return load * (((cpu_L07_t) cpu)->power_scale);
435 }
436
437 static double ptask_get_available_speed(void *cpu)
438 {
439   return ((cpu_L07_t) cpu)->power_current;
440 }
441
442 static surf_action_t ptask_execute_parallel_task(int workstation_nb,
443                                                  void **workstation_list,
444                                                  double
445                                                  *computation_amount, double
446                                                  *communication_amount,
447                                                  double amount,
448                                                  double rate)
449 {
450   surf_action_workstation_L07_t action = NULL;
451   int i, j;
452   unsigned int cpt;
453   int nb_link = 0;
454   int nb_host = 0;
455   double latency = 0.0;
456
457   if (ptask_parallel_task_link_set == NULL)
458     ptask_parallel_task_link_set = xbt_dict_new();
459
460   xbt_dict_reset(ptask_parallel_task_link_set);
461
462   /* Compute the number of affected resources... */
463   for (i = 0; i < workstation_nb; i++) {
464     for (j = 0; j < workstation_nb; j++) {
465       link_L07_t link;
466       xbt_dynar_t route =
467           global_routing->get_route(surf_resource_name
468                                     (workstation_list[i]),
469                                     surf_resource_name(workstation_list
470                                                        [j]));
471       double lat = 0.0;
472
473       if (communication_amount[i * workstation_nb + j] > 0)
474         xbt_dynar_foreach(route, cpt, link) {
475         lat += link->lat_current;
476         xbt_dict_set(ptask_parallel_task_link_set,
477                      link->generic_resource.name, link, NULL);
478         }
479       latency = MAX(latency, lat);
480     }
481   }
482
483   nb_link = xbt_dict_length(ptask_parallel_task_link_set);
484   xbt_dict_reset(ptask_parallel_task_link_set);
485
486   for (i = 0; i < workstation_nb; i++)
487     if (computation_amount[i] > 0)
488       nb_host++;
489
490   action =
491       surf_action_new(sizeof(s_surf_action_workstation_L07_t), amount,
492                       surf_workstation_model, 0);
493   XBT_DEBUG("Creating a parallel task (%p) with %d cpus and %d links.",
494          action, workstation_nb, nb_link);
495   action->suspended = 0;        /* Should be useless because of the
496                                    calloc but it seems to help valgrind... */
497   action->workstation_nb = workstation_nb;
498   action->workstation_list = (cpu_L07_t *) workstation_list;
499   action->computation_amount = computation_amount;
500   action->communication_amount = communication_amount;
501   action->latency = latency;
502   action->rate = rate;
503
504   action->variable =
505       lmm_variable_new(ptask_maxmin_system, action, 1.0,
506                        (action->rate > 0) ? action->rate : -1.0,
507                        workstation_nb + nb_link);
508
509   if (action->latency > 0)
510     lmm_update_variable_weight(ptask_maxmin_system, action->variable, 0.0);
511
512   for (i = 0; i < workstation_nb; i++)
513     lmm_expand(ptask_maxmin_system,
514                ((cpu_L07_t) workstation_list[i])->constraint,
515                action->variable, computation_amount[i]);
516
517   for (i = 0; i < workstation_nb; i++) {
518     for (j = 0; j < workstation_nb; j++) {
519       link_L07_t link;
520       xbt_dynar_t route =
521           global_routing->get_route(surf_resource_name
522                                     (workstation_list[i]),
523                                     surf_resource_name(workstation_list
524                                                        [j]));
525
526       if (communication_amount[i * workstation_nb + j] == 0.0)
527         continue;
528       xbt_dynar_foreach(route, cpt, link) {
529         lmm_expand_add(ptask_maxmin_system, link->constraint,
530                        action->variable,
531                        communication_amount[i * workstation_nb + j]);
532       }
533     }
534   }
535
536   if (nb_link + nb_host == 0) {
537     action->generic_action.cost = 1.0;
538     action->generic_action.remains = 0.0;
539   }
540
541   return (surf_action_t) action;
542 }
543
544 static surf_action_t ptask_execute(void *cpu, double size)
545 {
546   void **workstation_list = xbt_new0(void *, 1);
547   double *computation_amount = xbt_new0(double, 1);
548   double *communication_amount = xbt_new0(double, 1);
549
550   workstation_list[0] = cpu;
551   communication_amount[0] = 0.0;
552   computation_amount[0] = size;
553
554   return ptask_execute_parallel_task(1, workstation_list,
555                                      computation_amount,
556                                      communication_amount, 1, -1);
557 }
558
559 static surf_action_t ptask_communicate(void *src, void *dst, double size,
560                                        double rate)
561 {
562   void **workstation_list = xbt_new0(void *, 2);
563   double *computation_amount = xbt_new0(double, 2);
564   double *communication_amount = xbt_new0(double, 4);
565   surf_action_t res = NULL;
566
567   workstation_list[0] = src;
568   workstation_list[1] = dst;
569   communication_amount[1] = size;
570
571   res = ptask_execute_parallel_task(2, workstation_list,
572                                     computation_amount,
573                                     communication_amount, 1, rate);
574
575   return res;
576 }
577
578 static surf_action_t ptask_action_sleep(void *cpu, double duration)
579 {
580   surf_action_workstation_L07_t action = NULL;
581
582   XBT_IN("(%s,%g)", surf_resource_name(cpu), duration);
583
584   action = (surf_action_workstation_L07_t) ptask_execute(cpu, 1.0);
585   action->generic_action.max_duration = duration;
586   action->suspended = 2;
587   lmm_update_variable_weight(ptask_maxmin_system, action->variable, 0.0);
588
589   XBT_OUT();
590   return (surf_action_t) action;
591 }
592
593 static xbt_dynar_t ptask_get_route(void *src, void *dst)
594 {
595   return global_routing->get_route(surf_resource_name(src),
596                                    surf_resource_name(dst));
597 }
598
599 static double ptask_get_link_bandwidth(const void *link)
600 {
601   return ((link_L07_t) link)->bw_current;
602 }
603
604 static double ptask_get_link_latency(const void *link)
605 {
606   return ((link_L07_t) link)->lat_current;
607 }
608
609 static int ptask_link_shared(const void *link)
610 {
611   return lmm_constraint_is_shared(((link_L07_t) link)->constraint);
612 }
613
614 /**************************************/
615 /*** Resource Creation & Destruction **/
616 /**************************************/
617
618 static void* ptask_cpu_create_resource(const char *name, double power_scale,
619                                double power_initial,
620                                tmgr_trace_t power_trace,
621                                e_surf_resource_state_t state_initial,
622                                tmgr_trace_t state_trace,
623                                xbt_dict_t cpu_properties)
624 {
625   cpu_L07_t cpu = NULL;
626   xbt_assert(!surf_workstation_resource_by_name(name),
627               "Host '%s' declared several times in the platform file.",
628               name);
629
630   cpu = (cpu_L07_t) surf_resource_new(sizeof(s_cpu_L07_t),
631           surf_workstation_model, name,cpu_properties);
632
633   cpu->type = SURF_WORKSTATION_RESOURCE_CPU;
634   cpu->id = ptask_host_count++;
635
636   cpu->power_scale = power_scale;
637   xbt_assert(cpu->power_scale > 0, "Power has to be >0");
638
639   cpu->power_current = power_initial;
640   if (power_trace)
641     cpu->power_event =
642         tmgr_history_add_trace(history, power_trace, 0.0, 0, cpu);
643
644   cpu->state_current = state_initial;
645   if (state_trace)
646     cpu->state_event =
647         tmgr_history_add_trace(history, state_trace, 0.0, 0, cpu);
648
649   cpu->constraint =
650       lmm_constraint_new(ptask_maxmin_system, cpu,
651                          cpu->power_current * cpu->power_scale);
652
653   xbt_lib_set(host_lib, name, SURF_WKS_LEVEL, cpu);
654
655   return cpu;
656 }
657
658 static void ptask_parse_cpu_init(sg_platf_host_cbarg_t host)
659 {
660   ptask_cpu_create_resource(
661                   host->id,
662                   host->power_peak,
663                   host->power_scale,
664                   host->power_trace,
665                   host->initial_state,
666                   host->state_trace,
667                   host->properties);
668 }
669
670 static void* ptask_link_create_resource(const char *name,
671                                  double bw_initial,
672                                  tmgr_trace_t bw_trace,
673                                  double lat_initial,
674                                  tmgr_trace_t lat_trace,
675                                  e_surf_resource_state_t
676                                  state_initial,
677                                  tmgr_trace_t state_trace,
678                                  e_surf_link_sharing_policy_t
679                                  policy, xbt_dict_t properties)
680 {
681   link_L07_t nw_link = xbt_new0(s_link_L07_t, 1);
682   xbt_assert(!xbt_lib_get_or_null(link_lib, name, SURF_LINK_LEVEL),
683               "Link '%s' declared several times in the platform file.",
684               name);
685
686   nw_link->generic_resource.model = surf_workstation_model;
687   nw_link->generic_resource.properties = properties;
688   nw_link->generic_resource.name = xbt_strdup(name);
689   nw_link->type = SURF_WORKSTATION_RESOURCE_LINK;
690   nw_link->bw_current = bw_initial;
691   if (bw_trace)
692     nw_link->bw_event =
693         tmgr_history_add_trace(history, bw_trace, 0.0, 0, nw_link);
694   nw_link->state_current = state_initial;
695   nw_link->lat_current = lat_initial;
696   if (lat_trace)
697     nw_link->lat_event =
698         tmgr_history_add_trace(history, lat_trace, 0.0, 0, nw_link);
699   if (state_trace)
700     nw_link->state_event =
701         tmgr_history_add_trace(history, state_trace, 0.0, 0, nw_link);
702
703   nw_link->constraint =
704       lmm_constraint_new(ptask_maxmin_system, nw_link,
705                          nw_link->bw_current);
706
707   if (policy == SURF_LINK_FATPIPE)
708     lmm_constraint_shared(nw_link->constraint);
709
710   xbt_lib_set(link_lib, name, SURF_LINK_LEVEL, nw_link);
711   return nw_link;
712 }
713
714 static void ptask_parse_link_init(sg_platf_link_cbarg_t link)
715 {
716   if (link->policy == SURF_LINK_FULLDUPLEX) {
717     char *link_id;
718     link_id = bprintf("%s_UP", link->id);
719     ptask_link_create_resource(link_id,
720                                link->bandwidth,
721                                link->bandwidth_trace,
722                                link->latency,
723                                link->latency_trace,
724                                link->state,
725                                link->state_trace,
726                                link->policy,
727                                link->properties);
728     xbt_free(link_id);
729     link_id = bprintf("%s_DOWN", link->id);
730     ptask_link_create_resource(bprintf("%s_DOWN", link->id),
731                                link->bandwidth,
732                                link->bandwidth_trace,
733                                link->latency,
734                                link->latency_trace,
735                                link->state,
736                                link->state_trace,
737                                link->policy,
738                                NULL); /* FIXME: We need to deep copy the
739                                        * properties or we won't be able to free
740                                        * it */
741     xbt_free(link_id);
742   } else {
743     ptask_link_create_resource(link->id,
744                                link->bandwidth,
745                                link->bandwidth_trace,
746                                link->latency,
747                                link->latency_trace,
748                                link->state,
749                                link->state_trace,
750                                link->policy,
751                                link->properties);
752   }
753
754   current_property_set = NULL;
755 }
756
757 static void ptask_add_traces(void)
758 {
759   xbt_dict_cursor_t cursor = NULL;
760   char *trace_name, *elm;
761
762   if (!trace_connect_list_host_avail)
763     return;
764
765   /* Connect traces relative to cpu */
766   xbt_dict_foreach(trace_connect_list_host_avail, cursor, trace_name, elm) {
767     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
768     cpu_L07_t host = surf_workstation_resource_by_name(elm);
769
770     xbt_assert(host, "Host %s undefined", elm);
771     xbt_assert(trace, "Trace %s undefined", trace_name);
772
773     host->state_event =
774         tmgr_history_add_trace(history, trace, 0.0, 0, host);
775   }
776
777   xbt_dict_foreach(trace_connect_list_power, cursor, trace_name, elm) {
778     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
779     cpu_L07_t host = surf_workstation_resource_by_name(elm);
780
781     xbt_assert(host, "Host %s undefined", elm);
782     xbt_assert(trace, "Trace %s undefined", trace_name);
783
784     host->power_event =
785         tmgr_history_add_trace(history, trace, 0.0, 0, host);
786   }
787
788   /* Connect traces relative to network */
789   xbt_dict_foreach(trace_connect_list_link_avail, cursor, trace_name, elm) {
790     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
791     link_L07_t link =
792                 xbt_lib_get_or_null(link_lib, elm, SURF_LINK_LEVEL);
793
794     xbt_assert(link, "Link %s undefined", elm);
795     xbt_assert(trace, "Trace %s undefined", trace_name);
796
797     link->state_event =
798         tmgr_history_add_trace(history, trace, 0.0, 0, link);
799   }
800
801   xbt_dict_foreach(trace_connect_list_bandwidth, cursor, trace_name, elm) {
802     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
803     link_L07_t link =
804                 xbt_lib_get_or_null(link_lib, elm, SURF_LINK_LEVEL);
805
806     xbt_assert(link, "Link %s undefined", elm);
807     xbt_assert(trace, "Trace %s undefined", trace_name);
808
809     link->bw_event = tmgr_history_add_trace(history, trace, 0.0, 0, link);
810   }
811
812   xbt_dict_foreach(trace_connect_list_latency, cursor, trace_name, elm) {
813     tmgr_trace_t trace = xbt_dict_get_or_null(traces_set_list, trace_name);
814     link_L07_t link =
815                 xbt_lib_get_or_null(link_lib, elm, SURF_LINK_LEVEL);
816
817     xbt_assert(link, "Link %s undefined", elm);
818     xbt_assert(trace, "Trace %s undefined", trace_name);
819
820     link->lat_event = tmgr_history_add_trace(history, trace, 0.0, 0, link);
821   }
822 }
823
824 static void ptask_define_callbacks()
825 {
826   sg_platf_host_add_cb(ptask_parse_cpu_init);
827   sg_platf_link_add_cb(ptask_parse_link_init);
828   sg_platf_postparse_add_cb(ptask_add_traces);
829 }
830
831 /**************************************/
832 /********* Module  creation ***********/
833 /**************************************/
834
835 static void ptask_model_init_internal(void)
836 {
837   surf_workstation_model = surf_model_init();
838
839   surf_workstation_model->action_unref = ptask_action_unref;
840   surf_workstation_model->action_cancel = ptask_action_cancel;
841   surf_workstation_model->action_state_set = surf_action_state_set;
842   surf_workstation_model->suspend = ptask_action_suspend;
843   surf_workstation_model->resume = ptask_action_resume;
844   surf_workstation_model->is_suspended = ptask_action_is_suspended;
845   surf_workstation_model->set_max_duration = ptask_action_set_max_duration;
846   surf_workstation_model->set_priority = ptask_action_set_priority;
847   surf_workstation_model->get_remains = ptask_action_get_remains;
848   surf_workstation_model->name = "Workstation ptask_L07";
849
850   surf_workstation_model->model_private->resource_used =
851       ptask_resource_used;
852   surf_workstation_model->model_private->share_resources =
853       ptask_share_resources;
854   surf_workstation_model->model_private->update_actions_state =
855       ptask_update_actions_state;
856   surf_workstation_model->model_private->update_resource_state =
857       ptask_update_resource_state;
858   surf_workstation_model->model_private->finalize = ptask_finalize;
859
860
861   surf_workstation_model->extension.workstation.execute = ptask_execute;
862   surf_workstation_model->extension.workstation.sleep = ptask_action_sleep;
863   surf_workstation_model->extension.workstation.get_state =
864       ptask_resource_get_state;
865   surf_workstation_model->extension.workstation.get_speed =
866       ptask_get_speed;
867   surf_workstation_model->extension.workstation.get_available_speed =
868       ptask_get_available_speed;
869   surf_workstation_model->extension.workstation.communicate =
870       ptask_communicate;
871   surf_workstation_model->extension.workstation.get_route =
872       ptask_get_route;
873   surf_workstation_model->extension.workstation.execute_parallel_task =
874       ptask_execute_parallel_task;
875   surf_workstation_model->extension.workstation.get_link_bandwidth =
876       ptask_get_link_bandwidth;
877   surf_workstation_model->extension.workstation.get_link_latency =
878       ptask_get_link_latency;
879   surf_workstation_model->extension.workstation.link_shared =
880       ptask_link_shared;
881   surf_workstation_model->extension.workstation.get_properties =
882       surf_resource_properties;
883   surf_workstation_model->extension.workstation.link_create_resource =
884       ptask_link_create_resource;
885   surf_workstation_model->extension.workstation.cpu_create_resource =
886       ptask_cpu_create_resource;
887   surf_workstation_model->extension.workstation.add_traces =
888       ptask_add_traces;
889
890   if (!ptask_maxmin_system)
891     ptask_maxmin_system = lmm_system_new();
892
893   routing_model_create(sizeof(link_L07_t),
894                        ptask_link_create_resource("__loopback__",
895                                                   498000000, NULL,
896                                                   0.000015, NULL,
897                                                   SURF_RESOURCE_ON, NULL,
898                                                   SURF_LINK_FATPIPE, NULL),
899                        ptask_get_link_latency);
900
901 }
902
903 /**************************************/
904 /*************** Generic **************/
905 /**************************************/
906 void surf_workstation_model_init_ptask_L07(void)
907 {
908   XBT_INFO("surf_workstation_model_init_ptask_L07");
909   xbt_assert(!surf_cpu_model, "CPU model type already defined");
910   xbt_assert(!surf_network_model, "network model type already defined");
911   surf_network_model = surf_model_init();
912   ptask_define_callbacks();
913   ptask_model_init_internal();
914
915   update_model_description(surf_workstation_model_description,
916                            "ptask_L07", surf_workstation_model);
917   xbt_dynar_push(model_list, &surf_workstation_model);
918 }