Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Restructure surf++ cpu and network
[simgrid.git] / src / surf / surf.cpp
1 #include "surf_private.h"
2 #include "surf.hpp"
3 #include "network_interface.hpp"
4 #include "cpu_interface.hpp"
5 #include "workstation.hpp"
6 #include "vm_workstation.hpp"
7 #include "simix/smx_host_private.h"
8 #include "surf_routing.hpp"
9 #include "simgrid/sg_config.h"
10 #include "mc/mc.h"
11
12 extern "C" {
13 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
15                                 "Logging specific to SURF (kernel)");
16 }
17
18
19
20 /*********
21  * Utils *
22  *********/
23
24 /* This function is a pimple that we ought to fix. But it won't be easy.
25  *
26  * The surf_solve() function does properly return the set of actions that changed.
27  * Instead, each model change a global data, and then the caller of surf_solve must
28  * pick into these sets of action_failed and action_done.
29  *
30  * This was not clean but ok as long as we didn't had to restart the processes when the resource comes back up.
31  * We worked by putting sentinel actions on every resources we are interested in,
32  * so that surf informs us if/when the corresponding resource fails.
33  *
34  * But this does not work to get Simix informed of when a resource comes back up, and this is where this pimple comes.
35  * We have a set of resources that are currently down and for which simix needs to know when it comes back up.
36  * And the current function is called *at every simulation step* to sweep over that set, searching for a resource
37  * that was turned back up in the meanwhile. This is UGLY and slow.
38  *
39  * The proper solution would be to not rely on globals for the action_failed and action_done swags.
40  * They must be passed as parameter by the caller (the handling of these actions in simix may let you
41  * think that these two sets can be merged, but their handling in SimDag induce the contrary unless this
42  * simdag code can check by itself whether the action is done of failed -- seems very doable, but yet more
43  * cleanup to do).
44  *
45  * Once surf_solve() is passed the set of actions that changed, you want to add a new set of resources back up
46  * as parameter to this function. You also want to add a boolean field "restart_watched" to each resource, and
47  * make sure that whenever a resource with this field enabled comes back up, it's added to that set so that Simix
48  * sees it and react accordingly. This would kill that need for surf to call simix.
49  *
50  */
51
52 static void remove_watched_host(void *key)
53 {
54   xbt_dict_remove(watched_hosts_lib, *(char**)key);
55 }
56
57 /*void surf_watched_hosts(void)
58 {
59   char *key;
60   void *host;
61   xbt_dict_cursor_t cursor;
62   xbt_dynar_t hosts = xbt_dynar_new(sizeof(char*), NULL);
63
64   XBT_DEBUG("Check for host SURF_RESOURCE_ON on watched_hosts_lib");
65   xbt_dict_foreach(watched_hosts_lib, cursor, key, host)
66   {
67     if(SIMIX_host_get_state((smx_host_t)host) == SURF_RESOURCE_ON){
68       XBT_INFO("Restart processes on host: %s", SIMIX_host_get_name((smx_host_t)host));
69       SIMIX_host_autorestart((smx_host_t)host);
70       xbt_dynar_push_as(hosts, char*, key);
71     }
72     else
73       XBT_DEBUG("See SURF_RESOURCE_OFF on host: %s",key);
74   }
75   xbt_dynar_map(hosts, remove_watched_host);
76   xbt_dynar_free(&hosts);
77 }*/
78
79 /* model_list_invoke contains only surf_workstation and surf_vm_workstation.
80  * The callback functions of cpu_model and network_model will be called from
81  * those of these workstation models. */
82 xbt_dynar_t model_list = NULL; /* for destroying all models correctly */
83 xbt_dynar_t model_list_invoke = NULL;  /* for invoking callbacks */
84
85 tmgr_history_t history = NULL;
86 lmm_system_t maxmin_system = NULL;
87 xbt_dynar_t surf_path = NULL;
88 xbt_dynar_t host_that_restart = NULL;
89 xbt_dict_t watched_hosts_lib;
90
91 /* Don't forget to update the option description in smx_config when you change this */
92 s_surf_model_description_t surf_network_model_description[] = {
93   {"LV08",
94    "Realistic network analytic model (slow-start modeled by multiplying latency by 10.4, bandwidth by .92; bottleneck sharing uses a payload of S=8775 for evaluating RTT). ",
95    surf_network_model_init_LegrandVelho},
96   {"Constant",
97    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
98    surf_network_model_init_Constant},
99   {"SMPI",
100    "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
101    surf_network_model_init_SMPI},
102   {"CM02",
103    "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
104    surf_network_model_init_CM02},
105 #ifdef HAVE_GTNETS
106   {"GTNets",
107    "Network pseudo-model using the GTNets simulator instead of an analytic model",
108    surf_network_model_init_GTNETS},
109 #endif
110 #ifdef HAVE_NS3
111   {"NS3",
112    "Network pseudo-model using the NS3 tcp model instead of an analytic model",
113   surf_network_model_init_NS3},
114 #endif
115   {"Reno",
116    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
117    surf_network_model_init_Reno},
118   {"Reno2",
119    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
120    surf_network_model_init_Reno2},
121   {"Vegas",
122    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
123    surf_network_model_init_Vegas},
124   {NULL, NULL, NULL}      /* this array must be NULL terminated */
125 };
126
127 s_surf_model_description_t surf_cpu_model_description[] = {
128   {"Cas01",
129    "Simplistic CPU model (time=size/power).",
130    surf_cpu_model_init_Cas01},
131   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
132 };
133
134 s_surf_model_description_t surf_workstation_model_description[] = {
135   {"default",
136    "Default workstation model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)",
137    surf_workstation_model_init_current_default},
138   {"compound",
139    "Workstation model that is automatically chosen if you change the network and CPU models",
140    surf_workstation_model_init_compound},
141   {"ptask_L07", "Workstation model somehow similar to Cas01+CM02 but allowing parallel tasks",
142    surf_workstation_model_init_ptask_L07},
143   {NULL, NULL, NULL}      /* this array must be NULL terminated */
144 };
145
146 s_surf_model_description_t surf_vm_workstation_model_description[] = {
147   {"default",
148    "Default vm workstation model.)",
149    surf_vm_workstation_model_init_current_default},
150   {NULL, NULL, NULL}      /* this array must be NULL terminated */
151 };
152
153 s_surf_model_description_t surf_optimization_mode_description[] = {
154   {"Lazy",
155    "Lazy action management (partial invalidation in lmm + heap in action remaining).",
156    NULL},
157   {"TI",
158    "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).",
159     NULL},
160   {"Full",
161    "Full update of remaining and variables. Slow but may be useful when debugging.",
162    NULL},
163   {NULL, NULL, NULL}      /* this array must be NULL terminated */
164 };
165
166 s_surf_model_description_t surf_storage_model_description[] = {
167   {"default",
168    "Simplistic storage model.",
169    surf_storage_model_init_default},
170   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
171 };
172
173 #ifdef CONTEXT_THREADS
174 static xbt_parmap_t surf_parmap = NULL; /* parallel map on models */
175 #endif
176
177 double NOW = 0;
178 double *surf_mins = NULL; /* return value of share_resources for each model */
179 int surf_min_index;       /* current index in surf_mins */
180 double surf_min;               /* duration determined by surf_solve */
181
182 double surf_get_clock(void)
183 {
184   return NOW;
185 }
186
187 #ifdef _XBT_WIN32
188 # define FILE_DELIM "\\"
189 #else
190 # define FILE_DELIM "/"         /* FIXME: move to better location */
191 #endif
192
193 FILE *surf_fopen(const char *name, const char *mode)
194 {
195   unsigned int cpt;
196   char *path_elm = NULL;
197   char *buff;
198   FILE *file = NULL;
199
200   xbt_assert(name);
201
202   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
203     return fopen(name, mode);
204
205   /* search relative files in the path */
206   xbt_dynar_foreach(surf_path, cpt, path_elm) {
207     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
208     file = fopen(buff, mode);
209     free(buff);
210
211     if (file)
212       return file;
213   }
214   return NULL;
215 }
216
217 /*
218  * Returns the initial path. On Windows the initial path is
219  * the current directory for the current process in the other
220  * case the function returns "./" that represents the current
221  * directory on Unix/Linux platforms.
222  */
223
224 const char *__surf_get_initial_path(void)
225 {
226
227 #ifdef _XBT_WIN32
228   unsigned i;
229   char current_directory[MAX_PATH + 1] = { 0 };
230   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
231   char root[4] = { 0 };
232
233   if (!len)
234     return NULL;
235
236   strncpy(root, current_directory, 3);
237
238   for (i = 0; i < MAX_DRIVE; i++) {
239     if (toupper(root[0]) == disk_drives_letter_table[i][0])
240       return disk_drives_letter_table[i];
241   }
242
243   return NULL;
244 #else
245   return "./";
246 #endif
247 }
248
249 /* The __surf_is_absolute_file_path() returns 1 if
250  * file_path is a absolute file path, in the other
251  * case the function returns 0.
252  */
253 int __surf_is_absolute_file_path(const char *file_path)
254 {
255 #ifdef _XBT_WIN32
256   WIN32_FIND_DATA wfd = { 0 };
257   HANDLE hFile = FindFirstFile(file_path, &wfd);
258
259   if (INVALID_HANDLE_VALUE == hFile)
260     return 0;
261
262   FindClose(hFile);
263   return 1;
264 #else
265   return (file_path[0] == '/');
266 #endif
267 }
268
269 /** Displays the long description of all registered models, and quit */
270 void model_help(const char *category, s_surf_model_description_t * table)
271 {
272   int i;
273   printf("Long description of the %s models accepted by this simulator:\n",
274          category);
275   for (i = 0; table[i].name; i++)
276     printf("  %s: %s\n", table[i].name, table[i].description);
277 }
278
279 int find_model_description(s_surf_model_description_t * table,
280                            const char *name)
281 {
282   int i;
283   char *name_list = NULL;
284
285   for (i = 0; table[i].name; i++)
286     if (!strcmp(name, table[i].name)) {
287       return i;
288     }
289   name_list = strdup(table[0].name);
290   for (i = 1; table[i].name; i++) {
291     name_list = (char *) xbt_realloc(name_list, strlen(name_list) + strlen(table[i].name) + 3);
292     strcat(name_list, ", ");
293     strcat(name_list, table[i].name);
294   }
295   xbt_die("Model '%s' is invalid! Valid models are: %s.", name, name_list);
296   return -1;
297 }
298
299 static XBT_INLINE void routing_asr_host_free(void *p)
300 {
301   delete ((RoutingEdgePtr) p);
302 }
303
304 static XBT_INLINE void routing_asr_prop_free(void *p)
305 {
306   xbt_dict_t elm = (xbt_dict_t) p;
307   xbt_dict_free(&elm);
308 }
309
310 static XBT_INLINE void surf_cpu_free(void *r)
311 {
312   delete dynamic_cast<CpuPtr>(static_cast<ResourcePtr>(r));
313 }
314
315 static XBT_INLINE void surf_link_free(void *r)
316 {
317   delete dynamic_cast<NetworkLinkPtr>(static_cast<ResourcePtr>(r));
318 }
319
320 static XBT_INLINE void surf_workstation_free(void *r)
321 {
322   delete dynamic_cast<WorkstationCLM03Ptr>(static_cast<ResourcePtr>(r));
323 }
324
325
326 void sg_version(int *ver_major,int *ver_minor,int *ver_patch) {
327   *ver_major = SIMGRID_VERSION_MAJOR;
328   *ver_minor = SIMGRID_VERSION_MINOR;
329   *ver_patch = SIMGRID_VERSION_PATCH;
330 }
331
332 void surf_init(int *argc, char **argv)
333 {
334   XBT_DEBUG("Create all Libs");
335   host_lib = xbt_lib_new();
336   link_lib = xbt_lib_new();
337   as_router_lib = xbt_lib_new();
338   storage_lib = xbt_lib_new();
339   storage_type_lib = xbt_lib_new();
340   watched_hosts_lib = xbt_dict_new_homogeneous(NULL);
341
342   XBT_DEBUG("Add routing levels");
343   ROUTING_HOST_LEVEL = xbt_lib_add_level(host_lib,routing_asr_host_free);
344   ROUTING_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,routing_asr_host_free);
345   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
346
347   XBT_DEBUG("Add SURF levels");
348   SURF_CPU_LEVEL = xbt_lib_add_level(host_lib,surf_cpu_free);
349   SURF_WKS_LEVEL = xbt_lib_add_level(host_lib,surf_workstation_free);
350   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_link_free);
351
352   xbt_init(argc, argv);
353   if (!model_list)
354     model_list = xbt_dynar_new(sizeof(ModelPtr), NULL);
355   if (!model_list_invoke)
356     model_list_invoke = xbt_dynar_new(sizeof(ModelPtr), NULL);
357   if (!history)
358     history = tmgr_history_new();
359
360 #ifdef HAVE_TRACING
361   TRACE_add_start_function(TRACE_surf_alloc);
362   TRACE_add_end_function(TRACE_surf_release);
363 #endif
364
365   sg_config_init(argc, argv);
366
367   if (MC_is_active())
368     MC_memory_init();
369 }
370
371 void surf_exit(void)
372 {
373   unsigned int iter;
374   ModelPtr model = NULL;
375
376 #ifdef HAVE_TRACING
377   TRACE_end();                  /* Just in case it was not called by the upper
378                                  * layer (or there is no upper layer) */
379 #endif
380
381   sg_config_finalize();
382
383   xbt_dynar_foreach(model_list, iter, model)
384     delete model;
385   xbt_dynar_free(&model_list);
386   xbt_dynar_free(&model_list_invoke);
387   routing_exit();
388
389   if (maxmin_system) {
390     lmm_system_free(maxmin_system);
391     maxmin_system = NULL;
392   }
393   if (history) {
394     tmgr_history_free(history);
395     history = NULL;
396   }
397
398 #ifdef CONTEXT_THREADS
399   xbt_parmap_destroy(surf_parmap);
400 #endif
401
402   xbt_free(surf_mins);
403   surf_mins = NULL;
404
405   xbt_dynar_free(&host_that_restart);
406   xbt_dynar_free(&surf_path);
407
408   xbt_lib_free(&host_lib);
409   xbt_lib_free(&link_lib);
410   xbt_lib_free(&as_router_lib);
411   xbt_lib_free(&storage_lib);
412   xbt_lib_free(&storage_type_lib);
413
414   xbt_dict_free(&watched_hosts_lib);
415
416   tmgr_finalize();
417   surf_parse_lex_destroy();
418   surf_parse_free_callbacks();
419
420   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
421 }
422 /*********
423  * Model *
424  *********/
425
426 Model::Model(string name)
427   : p_maxminSystem(0),  m_name(name),
428     m_resOnCB(0), m_resOffCB(0),
429     m_actCancelCB(0), m_actSuspendCB(0), m_actResumeCB(0)
430 {
431   ActionPtr action = NULL;
432   p_readyActionSet = xbt_swag_new(xbt_swag_offset(*action, p_stateHookup));
433   p_runningActionSet = xbt_swag_new(xbt_swag_offset(*action, p_stateHookup));
434   p_failedActionSet = xbt_swag_new(xbt_swag_offset(*action, p_stateHookup));
435   p_doneActionSet = xbt_swag_new(xbt_swag_offset(*action, p_stateHookup));
436
437   p_modifiedSet = NULL;
438   p_actionHeap = NULL;
439   p_updateMechanism = UM_UNDEFINED;
440   m_selectiveUpdate = 0;
441 }
442
443 Model::~Model(){
444 xbt_swag_free(p_readyActionSet);
445 xbt_swag_free(p_runningActionSet);
446 xbt_swag_free(p_failedActionSet);
447 xbt_swag_free(p_doneActionSet);
448 }
449
450 double Model::shareResources(double now)
451 {
452   //FIXME: set the good function once and for all
453   if (p_updateMechanism == UM_LAZY)
454         return shareResourcesLazy(now);
455   else if (p_updateMechanism == UM_FULL)
456         return shareResourcesFull(now);
457   else
458         xbt_die("Invalid cpu update mechanism!");
459 }
460
461 double Model::shareResourcesLazy(double now)
462 {
463   ActionLmmPtr action = NULL;
464   double min = -1;
465   double value;
466
467   XBT_DEBUG
468       ("Before share resources, the size of modified actions set is %d",
469        xbt_swag_size(p_modifiedSet));
470
471   lmm_solve(p_maxminSystem);
472
473   XBT_DEBUG
474       ("After share resources, The size of modified actions set is %d",
475        xbt_swag_size(p_modifiedSet));
476
477   while((action = static_cast<ActionLmmPtr>(xbt_swag_extract(p_modifiedSet)))) {
478     int max_dur_flag = 0;
479
480     if (action->p_stateSet != p_runningActionSet)
481       continue;
482
483     /* bogus priority, skip it */
484     if (action->m_priority <= 0)
485       continue;
486
487     action->updateRemainingLazy(now);
488
489     min = -1;
490     value = lmm_variable_getvalue(action->p_variable);
491     if (value > 0) {
492       if (action->m_remains > 0) {
493         value = action->m_remains / value;
494         min = now + value;
495       } else {
496         value = 0.0;
497         min = now;
498       }
499     }
500
501     if ((action->m_maxDuration != NO_MAX_DURATION)
502         && (min == -1
503             || action->m_start +
504             action->m_maxDuration < min)) {
505       min = action->m_start +
506           action->m_maxDuration;
507       max_dur_flag = 1;
508     }
509
510     XBT_DEBUG("Action(%p) Start %lf Finish %lf Max_duration %lf", action,
511         action->m_start, now + value,
512         action->m_maxDuration);
513
514     if (min != -1) {
515       action->heapRemove(p_actionHeap);
516       action->heapInsert(p_actionHeap, min, max_dur_flag ? MAX_DURATION : NORMAL);
517       XBT_DEBUG("Insert at heap action(%p) min %lf now %lf", action, min,
518                 now);
519     } else DIE_IMPOSSIBLE;
520   }
521
522   //hereafter must have already the min value for this resource model
523   if (xbt_heap_size(p_actionHeap) > 0)
524     min = xbt_heap_maxkey(p_actionHeap) - now;
525   else
526     min = -1;
527
528   XBT_DEBUG("The minimum with the HEAP %lf", min);
529
530   return min;
531 }
532
533 double Model::shareResourcesFull(double /*now*/) {
534   THROW_UNIMPLEMENTED;
535 }
536
537
538 double Model::shareResourcesMaxMin(xbt_swag_t running_actions,
539                           lmm_system_t sys,
540                           void (*solve) (lmm_system_t))
541 {
542   void *_action = NULL;
543   ActionLmmPtr action = NULL;
544   double min = -1;
545   double value = -1;
546
547   solve(sys);
548
549   xbt_swag_foreach(_action, running_actions) {
550     action = dynamic_cast<ActionLmmPtr>(static_cast<ActionPtr>(_action));
551     value = lmm_variable_getvalue(action->p_variable);
552     if ((value > 0) || (action->m_maxDuration >= 0))
553       break;
554   }
555
556   if (!_action)
557     return -1.0;
558
559   if (value > 0) {
560     if (action->m_remains > 0)
561       min = action->m_remains / value;
562     else
563       min = 0.0;
564     if ((action->m_maxDuration >= 0) && (action->m_maxDuration < min))
565       min = action->m_maxDuration;
566   } else
567     min = action->m_maxDuration;
568
569
570   for (_action = xbt_swag_getNext(static_cast<ActionPtr>(action), running_actions->offset);
571        _action;
572        _action = xbt_swag_getNext(static_cast<ActionPtr>(action), running_actions->offset)) {
573         action = dynamic_cast<ActionLmmPtr>(static_cast<ActionPtr>(_action));
574     value = lmm_variable_getvalue(action->p_variable);
575     if (value > 0) {
576       if (action->m_remains > 0)
577         value = action->m_remains / value;
578       else
579         value = 0.0;
580       if (value < min) {
581         min = value;
582         XBT_DEBUG("Updating min (value) with %p: %f", action, min);
583       }
584     }
585     if ((action->m_maxDuration >= 0) && (action->m_maxDuration < min)) {
586       min = action->m_maxDuration;
587       XBT_DEBUG("Updating min (duration) with %p: %f", action, min);
588     }
589   }
590   XBT_DEBUG("min value : %f", min);
591
592   return min;
593 }
594
595 void Model::updateActionsState(double now, double delta)
596 {
597   if (p_updateMechanism == UM_FULL)
598         updateActionsStateFull(now, delta);
599   else if (p_updateMechanism == UM_LAZY)
600         updateActionsStateLazy(now, delta);
601   else
602         xbt_die("Invalid cpu update mechanism!");
603 }
604
605 void Model::updateActionsStateLazy(double /*now*/, double /*delta*/)
606 {
607
608 }
609
610 void Model::updateActionsStateFull(double /*now*/, double /*delta*/)
611 {
612
613 }
614
615
616 void Model::addTurnedOnCallback(ResourceCallback rc)
617 {
618   m_resOnCB = rc;
619 }
620
621 void Model::notifyResourceTurnedOn(ResourcePtr r)
622 {
623   m_resOnCB(r);
624 }
625
626 void Model::addTurnedOffCallback(ResourceCallback rc)
627 {
628   m_resOffCB = rc;
629 }
630
631 void Model::notifyResourceTurnedOff(ResourcePtr r)
632 {
633   m_resOffCB(r);
634 }
635
636 void Model::addActionCancelCallback(ActionCallback ac)
637 {
638   m_actCancelCB = ac;
639 }
640
641 void Model::notifyActionCancel(ActionPtr a)
642 {
643   m_actCancelCB(a);
644 }
645
646 void Model::addActionResumeCallback(ActionCallback ac)
647 {
648   m_actResumeCB = ac;
649 }
650
651 void Model::notifyActionResume(ActionPtr a)
652 {
653   m_actResumeCB(a);
654 }
655
656 void Model::addActionSuspendCallback(ActionCallback ac)
657 {
658   m_actSuspendCB = ac;
659 }
660
661 void Model::notifyActionSuspend(ActionPtr a)
662 {
663   m_actSuspendCB(a);
664 }
665
666
667 /************
668  * Resource *
669  ************/
670
671 Resource::Resource(surf_model_t model, const char *name, xbt_dict_t props)
672   : m_name(xbt_strdup(name)), m_properties(props), p_model(model), m_running(true)
673 {}
674
675 Resource::Resource()
676 : m_name(NULL), m_properties(NULL), p_model(NULL)
677 {}
678
679 const char *Resource::getName()
680 {
681   return m_name;
682 }
683
684 xbt_dict_t Resource::getProperties()
685 {
686   return m_properties;
687 }
688
689 e_surf_resource_state_t Resource::getState()
690 {
691   return p_stateCurrent;
692 }
693
694 void Resource::setState(e_surf_resource_state_t state)
695 {
696   p_stateCurrent = state;
697 }
698
699 bool Resource::isOn()
700 {
701   return m_running;
702 }
703
704 void Resource::turnOn()
705 {
706   if (!m_running) {
707     m_running = true;
708     p_model->notifyResourceTurnedOn(this);
709   }
710 }
711
712 void Resource::turnOff()
713 {
714   if (m_running) {
715     m_running = false;
716     p_model->notifyResourceTurnedOff(this);
717   }
718 }
719
720 ResourceLmm::ResourceLmm(lmm_system_t system,
721                          double constraint_value,
722                          tmgr_history_t history,
723                          e_surf_resource_state_t state_init,
724                          tmgr_trace_t state_trace,
725                          double metric_peak,
726                          tmgr_trace_t metric_trace)
727 {
728   p_constraint = lmm_constraint_new(system, this, constraint_value);
729   p_stateCurrent = state_init;
730   if (state_trace)
731     p_stateEvent = tmgr_history_add_trace(history, state_trace, 0.0, 0, static_cast<ResourcePtr>(this));
732   p_power.scale = 1.0;
733   p_power.peak = metric_peak;
734   if (metric_trace)
735     p_power.event = tmgr_history_add_trace(history, metric_trace, 0.0, 0, static_cast<ResourcePtr>(this));
736   else
737     p_power.event = NULL;
738 }
739
740 /**********
741  * Action *
742  **********/
743
744 const char *surf_action_state_names[6] = {
745   "SURF_ACTION_READY",
746   "SURF_ACTION_RUNNING",
747   "SURF_ACTION_FAILED",
748   "SURF_ACTION_DONE",
749   "SURF_ACTION_TO_FREE",
750   "SURF_ACTION_NOT_IN_THE_SYSTEM"
751 };
752
753 Action::Action(){}
754
755 Action::Action(ModelPtr model, double cost, bool failed):
756          m_priority(1.0),
757          m_failed(failed),
758          m_start(surf_get_clock()), m_finish(-1.0),
759          m_remains(cost),
760          m_maxDuration(NO_MAX_DURATION),
761          m_cost(cost),
762          p_model(model),
763          m_refcount(1),
764          p_data(NULL)
765 {
766   #ifdef HAVE_TRACING
767     p_category = NULL;
768   #endif
769   p_stateHookup.prev = 0;
770   p_stateHookup.next = 0;
771   if (failed)
772     p_stateSet = p_model->p_failedActionSet;
773   else
774     p_stateSet = p_model->p_runningActionSet;
775
776   xbt_swag_insert(this, p_stateSet);
777 }
778
779 Action::~Action() {}
780
781 int Action::unref(){
782   DIE_IMPOSSIBLE;
783 }
784
785 void Action::cancel(){
786   DIE_IMPOSSIBLE;
787 }
788
789 void Action::recycle(){
790   DIE_IMPOSSIBLE;
791 }
792
793 e_surf_action_state_t Action::getState()
794 {
795   if (p_stateSet ==  p_model->p_readyActionSet)
796     return SURF_ACTION_READY;
797   if (p_stateSet ==  p_model->p_runningActionSet)
798     return SURF_ACTION_RUNNING;
799   if (p_stateSet ==  p_model->p_failedActionSet)
800     return SURF_ACTION_FAILED;
801   if (p_stateSet ==  p_model->p_doneActionSet)
802     return SURF_ACTION_DONE;
803   return SURF_ACTION_NOT_IN_THE_SYSTEM;
804 }
805
806 void Action::setState(e_surf_action_state_t state)
807 {
808   //surf_action_state_t action_state = &(action->model_type->states);
809   XBT_IN("(%p,%s)", this, surf_action_state_names[state]);
810   xbt_swag_remove(this, p_stateSet);
811
812   if (state == SURF_ACTION_READY)
813     p_stateSet = p_model->p_readyActionSet;
814   else if (state == SURF_ACTION_RUNNING)
815     p_stateSet = p_model->p_runningActionSet;
816   else if (state == SURF_ACTION_FAILED)
817     p_stateSet = p_model->p_failedActionSet;
818   else if (state == SURF_ACTION_DONE)
819     p_stateSet = p_model->p_doneActionSet;
820   else
821     p_stateSet = NULL;
822
823   if (p_stateSet)
824     xbt_swag_insert(this, p_stateSet);
825   XBT_OUT();
826 }
827
828 double Action::getStartTime()
829 {
830   return m_start;
831 }
832
833 double Action::getFinishTime()
834 {
835   /* keep the function behavior, some models (cpu_ti) change the finish time before the action end */
836   return m_remains == 0 ? m_finish : -1;
837 }
838
839 double Action::getRemains()
840 {
841   XBT_IN("(%p)", this);
842   XBT_OUT();
843   return m_remains;
844 }
845
846 void Action::setData(void* data)
847 {
848   p_data = data;
849 }
850
851 #ifdef HAVE_TRACING
852 void Action::setCategory(const char *category)
853 {
854   XBT_IN("(%p,%s)", this, category);
855   p_category = xbt_strdup(category);
856   XBT_OUT();
857 }
858 #endif
859
860 void Action::ref(){
861   m_refcount++;
862 }
863
864 void ActionLmm::setMaxDuration(double duration)
865 {
866   XBT_IN("(%p,%g)", this, duration);
867   m_maxDuration = duration;
868   if (p_model->p_updateMechanism == UM_LAZY)      // remove action from the heap
869     heapRemove(p_model->p_actionHeap);
870   XBT_OUT();
871 }
872
873 void ActionLmm::gapRemove() {}
874
875 void ActionLmm::setPriority(double priority)
876 {
877   XBT_IN("(%p,%g)", this, priority);
878   m_priority = priority;
879   lmm_update_variable_weight(p_model->p_maxminSystem, p_variable, priority);
880
881   if (p_model->p_updateMechanism == UM_LAZY)
882         heapRemove(p_model->p_actionHeap);
883   XBT_OUT();
884 }
885
886 void ActionLmm::cancel(){
887   setState(SURF_ACTION_FAILED);
888   if (p_model->p_updateMechanism == UM_LAZY) {
889     xbt_swag_remove(this, p_model->p_modifiedSet);
890     heapRemove(p_model->p_actionHeap);
891   }
892 }
893
894 int ActionLmm::unref(){
895   m_refcount--;
896   if (!m_refcount) {
897         xbt_swag_remove(static_cast<ActionPtr>(this), p_stateSet);
898         if (p_variable)
899           lmm_variable_free(p_model->p_maxminSystem, p_variable);
900         if (p_model->p_updateMechanism == UM_LAZY) {
901           /* remove from heap */
902           heapRemove(p_model->p_actionHeap);
903           xbt_swag_remove(this, p_model->p_modifiedSet);
904     }
905 #ifdef HAVE_TRACING
906     xbt_free(p_category);
907 #endif
908         delete this;
909         return 1;
910   }
911   return 0;
912 }
913
914 void ActionLmm::suspend()
915 {
916   XBT_IN("(%p)", this);
917   if (m_suspended != 2) {
918     lmm_update_variable_weight(p_model->p_maxminSystem, p_variable, 0.0);
919     m_suspended = 1;
920     if (p_model->p_updateMechanism == UM_LAZY)
921       heapRemove(p_model->p_actionHeap);
922   }
923   XBT_OUT();
924 }
925
926 void ActionLmm::resume()
927 {
928   XBT_IN("(%p)", this);
929   if (m_suspended != 2) {
930     lmm_update_variable_weight(p_model->p_maxminSystem, p_variable, m_priority);
931     m_suspended = 0;
932     if (p_model->p_updateMechanism == UM_LAZY)
933       heapRemove(p_model->p_actionHeap);
934   }
935   XBT_OUT();
936 }
937
938 bool ActionLmm::isSuspended()
939 {
940   return m_suspended == 1;
941 }
942 /* insert action on heap using a given key and a hat (heap_action_type)
943  * a hat can be of three types for communications:
944  *
945  * NORMAL = this is a normal heap entry stating the date to finish transmitting
946  * LATENCY = this is a heap entry to warn us when the latency is payed
947  * MAX_DURATION =this is a heap entry to warn us when the max_duration limit is reached
948  */
949 void ActionLmm::heapInsert(xbt_heap_t heap, double key, enum heap_action_type hat)
950 {
951   m_hat = hat;
952   xbt_heap_push(heap, this, key);
953 }
954
955 void ActionLmm::heapRemove(xbt_heap_t heap)
956 {
957   m_hat = NOTSET;
958   if (m_indexHeap >= 0) {
959     xbt_heap_remove(heap, m_indexHeap);
960   }
961 }
962
963 /* added to manage the communication action's heap */
964 void surf_action_lmm_update_index_heap(void *action, int i) {
965   ((ActionLmmPtr)action)->updateIndexHeap(i);
966 }
967
968 void ActionLmm::updateIndexHeap(int i) {
969   m_indexHeap = i;
970 }
971
972 double ActionLmm::getRemains()
973 {
974   XBT_IN("(%p)", this);
975   /* update remains before return it */
976   if (p_model->p_updateMechanism == UM_LAZY)      /* update remains before return it */
977     updateRemainingLazy(surf_get_clock());
978   XBT_OUT();
979   return m_remains;
980 }
981
982 //FIXME split code in the right places
983 void ActionLmm::updateRemainingLazy(double now)
984 {
985   double delta = 0.0;
986
987   if(p_model == static_cast<ModelPtr>(surf_network_model))
988   {
989     if (m_suspended != 0)
990       return;
991   }
992   else
993   {
994     xbt_assert(p_stateSet == p_model->p_runningActionSet,
995         "You're updating an action that is not running.");
996
997       /* bogus priority, skip it */
998     xbt_assert(m_priority > 0,
999         "You're updating an action that seems suspended.");
1000   }
1001
1002   delta = now - m_lastUpdate;
1003
1004   if (m_remains > 0) {
1005     XBT_DEBUG("Updating action(%p): remains was %f, last_update was: %f", this, m_remains, m_lastUpdate);
1006     double_update(&m_remains, m_lastValue * delta);
1007
1008 #ifdef HAVE_TRACING
1009     if (p_model == static_cast<ModelPtr>(surf_cpu_model_pm) && TRACE_is_enabled()) {
1010       ResourcePtr cpu = static_cast<ResourcePtr>(lmm_constraint_id(lmm_get_cnst_from_var(p_model->p_maxminSystem, p_variable, 0)));
1011       TRACE_surf_host_set_utilization(cpu->m_name, p_category, m_lastValue, m_lastUpdate, now - m_lastUpdate);
1012     }
1013 #endif
1014     XBT_DEBUG("Updating action(%p): remains is now %f", this, m_remains);
1015   }
1016
1017   if(p_model == static_cast<ModelPtr>(surf_network_model))
1018   {
1019     if (m_maxDuration != NO_MAX_DURATION)
1020       double_update(&m_maxDuration, delta);
1021
1022     //FIXME: duplicated code
1023     if ((m_remains <= 0) &&
1024         (lmm_get_variable_weight(p_variable) > 0)) {
1025       m_finish = surf_get_clock();
1026       setState(SURF_ACTION_DONE);
1027       heapRemove(p_model->p_actionHeap);
1028     } else if (((m_maxDuration != NO_MAX_DURATION)
1029         && (m_maxDuration <= 0))) {
1030       m_finish = surf_get_clock();
1031       setState(SURF_ACTION_DONE);
1032       heapRemove(p_model->p_actionHeap);
1033     }
1034   }
1035
1036   m_lastUpdate = now;
1037   m_lastValue = lmm_variable_getvalue(p_variable);
1038 }
1039
1040 /*void Action::cancel()
1041 {
1042   p_model->notifyActionCancel(this);
1043 }
1044
1045 void Action::suspend()
1046 {
1047   p_model->notifyActionSuspend(this);
1048 }
1049
1050 void Action::resume()
1051 {
1052   p_model->notifyActionResume(this);
1053 }
1054
1055 bool Action::isSuspended()
1056 {
1057   return false;
1058 }*/
1059