Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[L07] Don't segfault on point-to-point communications
[simgrid.git] / src / surf / surf_interface.cpp
1 /* Copyright (c) 2004-2015. 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 "surf_private.h"
8 #include "surf_interface.hpp"
9 #include "network_interface.hpp"
10 #include "cpu_interface.hpp"
11 #include "host_interface.hpp"
12 #include "src/simix/smx_host_private.h"
13 #include "surf_routing.hpp"
14 #include "simgrid/sg_config.h"
15 #include "mc/mc.h"
16 #include "virtual_machine.hpp"
17
18 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
19 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
20                                 "Logging specific to SURF (kernel)");
21
22 /*********
23  * Utils *
24  *********/
25
26 /* model_list_invoke contains only surf_host and surf_vm.
27  * The callback functions of cpu_model and network_model will be called from
28  * those of these host models. */
29 xbt_dynar_t model_list = NULL; /* for destroying all models correctly */
30 xbt_dynar_t model_list_invoke = NULL;  /* for invoking callbacks */
31
32 tmgr_history_t history = NULL;
33 lmm_system_t maxmin_system = NULL;
34 xbt_dynar_t surf_path = NULL;
35 xbt_dynar_t host_that_restart = NULL;
36 xbt_dict_t watched_hosts_lib;
37
38 surf_callback(void, void) surfExitCallbacks;
39
40 s_surf_model_description_t surf_plugin_description[] = {
41     {"Energy", "Cpu energy consumption.", sg_energy_plugin_init},
42      {NULL, NULL,  NULL}      /* this array must be NULL terminated */
43 };
44
45 /* Don't forget to update the option description in smx_config when you change
46    this */
47 s_surf_model_description_t surf_network_model_description[] = {
48   {"LV08",
49    "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). ",
50    surf_network_model_init_LegrandVelho},
51   {"Constant",
52    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
53    surf_network_model_init_Constant},
54   {"SMPI",
55    "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
56    surf_network_model_init_SMPI},
57   {"IB",
58    "Realistic network model specifically tailored for HPC settings, with Infiniband contention model",
59    surf_network_model_init_IB},
60   {"CM02",
61    "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
62    surf_network_model_init_CM02},
63 #ifdef HAVE_NS3
64   {"NS3",
65    "Network pseudo-model using the NS3 tcp model instead of an analytic model",
66   surf_network_model_init_NS3},
67 #endif
68   {"Reno",
69    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
70    surf_network_model_init_Reno},
71   {"Reno2",
72    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
73    surf_network_model_init_Reno2},
74   {"Vegas",
75    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
76    surf_network_model_init_Vegas},
77   {NULL, NULL, NULL}      /* this array must be NULL terminated */
78 };
79
80 s_surf_model_description_t surf_cpu_model_description[] = {
81   {"Cas01",
82    "Simplistic CPU model (time=size/power).",
83    surf_cpu_model_init_Cas01},
84   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
85 };
86
87 s_surf_model_description_t surf_host_model_description[] = {
88   {"default",
89    "Default host model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)",
90    surf_host_model_init_current_default},
91   {"compound",
92    "Host model that is automatically chosen if you change the network and CPU models",
93    surf_host_model_init_compound},
94   {"ptask_L07", "Host model somehow similar to Cas01+CM02 but allowing parallel tasks",
95    surf_host_model_init_ptask_L07},
96   {NULL, NULL, NULL}      /* this array must be NULL terminated */
97 };
98
99 s_surf_model_description_t surf_vm_model_description[] = {
100   {"default",
101    "Default vm model.",
102    surf_vm_model_init_HL13},
103   {NULL, NULL, NULL}      /* this array must be NULL terminated */
104 };
105
106 s_surf_model_description_t surf_optimization_mode_description[] = {
107   {"Lazy",
108    "Lazy action management (partial invalidation in lmm + heap in action remaining).",
109    NULL},
110   {"TI",
111    "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).",
112     NULL},
113   {"Full",
114    "Full update of remaining and variables. Slow but may be useful when debugging.",
115    NULL},
116   {NULL, NULL, NULL}      /* this array must be NULL terminated */
117 };
118
119 s_surf_model_description_t surf_storage_model_description[] = {
120   {"default",
121    "Simplistic storage model.",
122    surf_storage_model_init_default},
123   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
124 };
125
126 #ifdef CONTEXT_THREADS
127 static xbt_parmap_t surf_parmap = NULL; /* parallel map on models */
128 #endif
129
130 double NOW = 0;
131
132 double surf_get_clock(void)
133 {
134   return NOW;
135 }
136
137 #ifdef _XBT_WIN32
138 # define FILE_DELIM "\\"
139 #else
140 # define FILE_DELIM "/"         /* FIXME: move to better location */
141 #endif
142
143 FILE *surf_fopen(const char *name, const char *mode)
144 {
145   unsigned int cpt;
146   char *path_elm = NULL;
147   char *buff;
148   FILE *file = NULL;
149
150   xbt_assert(name);
151
152   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
153     return fopen(name, mode);
154
155   /* search relative files in the path */
156   xbt_dynar_foreach(surf_path, cpt, path_elm) {
157     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
158     file = fopen(buff, mode);
159     free(buff);
160
161     if (file)
162       return file;
163   }
164   return NULL;
165 }
166
167 #ifdef _XBT_WIN32
168 #include <windows.h>
169 #define MAX_DRIVE 26
170 static const char *disk_drives_letter_table[MAX_DRIVE] = {
171   "A:\\","B:\\","C:\\","D:\\","E:\\","F:\\","G:\\","H:\\","I:\\","J:\\","K:\\","L:\\","M:\\",
172   "N:\\","O:\\","P:\\","Q:\\","R:\\","S:\\","T:\\","U:\\","V:\\","W:\\","X:\\","Y:\\","Z:\\"
173 };
174 #endif
175
176 /*
177  * Returns the initial path. On Windows the initial path is
178  * the current directory for the current process in the other
179  * case the function returns "./" that represents the current
180  * directory on Unix/Linux platforms.
181  */
182
183 const char *__surf_get_initial_path(void)
184 {
185
186 #ifdef _XBT_WIN32
187   unsigned i;
188   char current_directory[MAX_PATH + 1] = { 0 };
189   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
190   char root[4] = { 0 };
191
192   if (!len)
193     return NULL;
194
195   strncpy(root, current_directory, 3);
196
197   for (i = 0; i < MAX_DRIVE; i++) {
198     if (toupper(root[0]) == disk_drives_letter_table[i][0])
199       return disk_drives_letter_table[i];
200   }
201
202   return NULL;
203 #else
204   return "./";
205 #endif
206 }
207
208 /* The __surf_is_absolute_file_path() returns 1 if
209  * file_path is a absolute file path, in the other
210  * case the function returns 0.
211  */
212 int __surf_is_absolute_file_path(const char *file_path)
213 {
214 #ifdef _XBT_WIN32
215   WIN32_FIND_DATA wfd = { 0 };
216   HANDLE hFile = FindFirstFile(file_path, &wfd);
217
218   if (INVALID_HANDLE_VALUE == hFile)
219     return 0;
220
221   FindClose(hFile);
222   return 1;
223 #else
224   return (file_path[0] == '/');
225 #endif
226 }
227
228 /** Displays the long description of all registered models, and quit */
229 void model_help(const char *category, s_surf_model_description_t * table)
230 {
231   int i;
232   printf("Long description of the %s models accepted by this simulator:\n",
233          category);
234   for (i = 0; table[i].name; i++)
235     printf("  %s: %s\n", table[i].name, table[i].description);
236 }
237
238 int find_model_description(s_surf_model_description_t * table,
239                            const char *name)
240 {
241   int i;
242   char *name_list = NULL;
243
244   for (i = 0; table[i].name; i++)
245     if (!strcmp(name, table[i].name)) {
246       return i;
247     }
248   if (!table[0].name)
249     xbt_die("No model is valid! This is a bug.");
250   name_list = xbt_strdup(table[0].name);
251   for (i = 1; table[i].name; i++) {
252     name_list = (char *) xbt_realloc(name_list, strlen(name_list) + strlen(table[i].name) + 3);
253     strcat(name_list, ", ");
254     strcat(name_list, table[i].name);
255   }
256   xbt_die("Model '%s' is invalid! Valid models are: %s.", name, name_list);
257   return -1;
258 }
259
260 static XBT_INLINE void routing_asr_prop_free(void *p)
261 {
262   //xbt_dict_t elm = (xbt_dict_t) p;
263   //xbt_dict_free(&elm); FIXME: leaking in some case? That's a sometimes double-free with AsCluster::~AsCluster
264 }
265
266 static XBT_INLINE void surf_host_free(void *r)
267 {
268   delete static_cast<Host*>(r);
269 }
270
271 static XBT_INLINE void surf_storage_free(void *r)
272 {
273   delete static_cast<Storage*>(r);
274 }
275
276 void sg_version_check(int lib_version_major,int lib_version_minor,int lib_version_patch) {
277     if ((lib_version_major != SIMGRID_VERSION_MAJOR) || (lib_version_minor != SIMGRID_VERSION_MINOR)) {
278       fprintf(stderr,
279                   "FATAL ERROR: Your program was compiled with SimGrid version %d.%d.%d, "
280                   "and then linked against SimGrid %d.%d.%d. Please fix this.\n",
281               SIMGRID_VERSION_MAJOR,SIMGRID_VERSION_MINOR,SIMGRID_VERSION_PATCH,
282                           lib_version_major,lib_version_minor,lib_version_patch);
283       abort();
284     }
285     if (lib_version_patch != SIMGRID_VERSION_PATCH) {
286         fprintf(stderr,
287                   "Warning: Your program was compiled with SimGrid version %d.%d.%d, "
288                   "and then linked against SimGrid %d.%d.%d. Proceeding anyway.\n",
289                 SIMGRID_VERSION_MAJOR,SIMGRID_VERSION_MINOR,SIMGRID_VERSION_PATCH,
290                           lib_version_major,lib_version_minor,lib_version_patch);
291     }
292 }
293
294 void sg_version(int *ver_major,int *ver_minor,int *ver_patch) {
295   *ver_major = SIMGRID_VERSION_MAJOR;
296   *ver_minor = SIMGRID_VERSION_MINOR;
297   *ver_patch = SIMGRID_VERSION_PATCH;
298 }
299
300 void surf_init(int *argc, char **argv)
301 {
302   XBT_DEBUG("Create all Libs");
303   host_lib = xbt_lib_new();
304   as_router_lib = xbt_lib_new();
305   storage_lib = xbt_lib_new();
306   storage_type_lib = xbt_lib_new();
307   file_lib = xbt_lib_new();
308   watched_hosts_lib = xbt_dict_new_homogeneous(NULL);
309
310   sg_host_init();
311
312   XBT_DEBUG("Add routing levels");
313   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
314
315   XBT_DEBUG("Add SURF levels");
316   SURF_HOST_LEVEL = xbt_lib_add_level(host_lib,surf_host_free);
317   SURF_STORAGE_LEVEL = xbt_lib_add_level(storage_lib,surf_storage_free);
318
319   xbt_init(argc, argv);
320   if (!model_list)
321     model_list = xbt_dynar_new(sizeof(Model*), NULL);
322   if (!model_list_invoke)
323     model_list_invoke = xbt_dynar_new(sizeof(Model*), NULL);
324   if (!history)
325     history = tmgr_history_new();
326
327   TRACE_add_start_function(TRACE_surf_alloc);
328   TRACE_add_end_function(TRACE_surf_release);
329
330   sg_config_init(argc, argv);
331
332   if (MC_is_active())
333     MC_memory_init();
334 }
335
336 void surf_exit(void)
337 {
338   unsigned int iter;
339   Model *model = NULL;
340
341   TRACE_end();                  /* Just in case it was not called by the upper
342                                  * layer (or there is no upper layer) */
343
344   sg_config_finalize();
345
346   xbt_dynar_free(&host_that_restart);
347   xbt_dynar_free(&surf_path);
348
349   xbt_lib_free(&host_lib);
350   xbt_lib_free(&as_router_lib);
351   xbt_lib_free(&storage_lib);
352   sg_link_exit();
353   xbt_lib_free(&storage_type_lib);
354   xbt_lib_free(&file_lib);
355   xbt_dict_free(&watched_hosts_lib);
356
357   xbt_dynar_foreach(model_list, iter, model)
358     delete model;
359   xbt_dynar_free(&model_list);
360   xbt_dynar_free(&model_list_invoke);
361   routing_exit();
362
363   surf_callback_emit(surfExitCallbacks);
364
365   if (maxmin_system) {
366     lmm_system_free(maxmin_system);
367     maxmin_system = NULL;
368   }
369   if (history) {
370     tmgr_history_free(history);
371     history = NULL;
372   }
373
374 #ifdef CONTEXT_THREADS
375   xbt_parmap_destroy(surf_parmap);
376 #endif
377
378   tmgr_finalize();
379   surf_parse_lex_destroy();
380   surf_parse_free_callbacks();
381
382   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
383 }
384
385 /*********
386  * Model *
387  *********/
388
389 Model::Model()
390   : p_maxminSystem(NULL)
391 {
392   p_readyActionSet = new ActionList();
393   p_runningActionSet = new ActionList();
394   p_failedActionSet = new ActionList();
395   p_doneActionSet = new ActionList();
396
397   p_modifiedSet = NULL;
398   p_actionHeap = NULL;
399   p_updateMechanism = UM_UNDEFINED;
400   m_selectiveUpdate = 0;
401 }
402
403 Model::~Model(){
404   delete p_readyActionSet;
405   delete p_runningActionSet;
406   delete p_failedActionSet;
407   delete p_doneActionSet;
408 }
409
410 double Model::shareResources(double now)
411 {
412   //FIXME: set the good function once and for all
413   if (p_updateMechanism == UM_LAZY)
414     return shareResourcesLazy(now);
415   else if (p_updateMechanism == UM_FULL)
416     return shareResourcesFull(now);
417   else
418     xbt_die("Invalid cpu update mechanism!");
419 }
420
421 double Model::shareResourcesLazy(double now)
422 {
423   Action *action = NULL;
424   double min = -1;
425   double share;
426
427   XBT_DEBUG
428       ("Before share resources, the size of modified actions set is %zd",
429        p_modifiedSet->size());
430
431   lmm_solve(p_maxminSystem);
432
433   XBT_DEBUG
434       ("After share resources, The size of modified actions set is %zd",
435        p_modifiedSet->size());
436
437   while(!p_modifiedSet->empty()) {
438     action = &(p_modifiedSet->front());
439     p_modifiedSet->pop_front();
440     int max_dur_flag = 0;
441
442     if (action->getStateSet() != p_runningActionSet)
443       continue;
444
445     /* bogus priority, skip it */
446     if (action->getPriority() <= 0 || action->getHat()==LATENCY)
447       continue;
448
449     action->updateRemainingLazy(now);
450
451     min = -1;
452     share = lmm_variable_getvalue(action->getVariable());
453
454     if (share > 0) {
455       double time_to_completion;
456       if (action->getRemains() > 0) {
457         time_to_completion = action->getRemainsNoUpdate() / share;
458       } else {
459         time_to_completion = 0.0;
460       }
461       min = now + time_to_completion; // when the task will complete if nothing changes
462     }
463
464     if ((action->getMaxDuration() != NO_MAX_DURATION)
465         && (min == -1
466             || action->getStartTime() +
467             action->getMaxDuration() < min)) {
468       min = action->getStartTime() +
469           action->getMaxDuration();  // when the task will complete anyway because of the deadline if any
470       max_dur_flag = 1;
471     }
472
473
474     XBT_DEBUG("Action(%p) corresponds to variable %d", action, action->getVariable()->id_int);
475
476     XBT_DEBUG("Action(%p) Start %f. May finish at %f (got a share of %f). Max_duration %f", action,
477         action->getStartTime(), min, share,
478         action->getMaxDuration());
479
480     if (min != -1) {
481       action->heapUpdate(p_actionHeap, min, max_dur_flag ? MAX_DURATION : NORMAL);
482       XBT_DEBUG("Insert at heap action(%p) min %f now %f", action, min,
483                 now);
484     } else DIE_IMPOSSIBLE;
485   }
486
487   //hereafter must have already the min value for this resource model
488   if (xbt_heap_size(p_actionHeap) > 0)
489     min = xbt_heap_maxkey(p_actionHeap) - now;
490   else
491     min = -1;
492
493   XBT_DEBUG("The minimum with the HEAP %f", min);
494
495   return min;
496 }
497
498 double Model::shareResourcesFull(double /*now*/) {
499   THROW_UNIMPLEMENTED;
500 }
501
502 double Model::shareResourcesMaxMin(ActionList *running_actions,
503                           lmm_system_t sys,
504                           void (*solve) (lmm_system_t))
505 {
506   Action *action = NULL;
507   double min = -1;
508   double value = -1;
509
510   solve(sys);
511
512   ActionList::iterator it(running_actions->begin()), itend(running_actions->end());
513   for(; it != itend ; ++it) {
514     action = &*it;
515     value = lmm_variable_getvalue(action->getVariable());
516     if ((value > 0) || (action->getMaxDuration() >= 0))
517       break;
518   }
519
520   if (!action)
521     return -1.0;
522
523   if (value > 0) {
524     if (action->getRemains() > 0)
525       min = action->getRemainsNoUpdate() / value;
526     else
527       min = 0.0;
528     if ((action->getMaxDuration() >= 0) && (action->getMaxDuration() < min))
529       min = action->getMaxDuration();
530   } else
531     min = action->getMaxDuration();
532
533
534   for (++it; it != itend; ++it) {
535         action = &*it;
536     value = lmm_variable_getvalue(action->getVariable());
537     if (value > 0) {
538       if (action->getRemains() > 0)
539         value = action->getRemainsNoUpdate() / value;
540       else
541         value = 0.0;
542       if (value < min) {
543         min = value;
544         XBT_DEBUG("Updating min (value) with %p: %f", action, min);
545       }
546     }
547     if ((action->getMaxDuration() >= 0) && (action->getMaxDuration() < min)) {
548       min = action->getMaxDuration();
549       XBT_DEBUG("Updating min (duration) with %p: %f", action, min);
550     }
551   }
552   XBT_DEBUG("min value : %f", min);
553
554   return min;
555 }
556
557 void Model::updateActionsState(double now, double delta)
558 {
559   if (p_updateMechanism == UM_FULL)
560         updateActionsStateFull(now, delta);
561   else if (p_updateMechanism == UM_LAZY)
562         updateActionsStateLazy(now, delta);
563   else
564         xbt_die("Invalid cpu update mechanism!");
565 }
566
567 void Model::updateActionsStateLazy(double /*now*/, double /*delta*/)
568 {
569  THROW_UNIMPLEMENTED;
570 }
571
572 void Model::updateActionsStateFull(double /*now*/, double /*delta*/)
573 {
574   THROW_UNIMPLEMENTED;
575 }
576
577 /************
578  * Resource *
579  ************/
580
581 Resource::Resource()
582 : p_name(NULL), p_properties(NULL), p_model(NULL)
583 {}
584
585 Resource::Resource(Model *model, const char *name, xbt_dict_t props)
586   : p_name(xbt_strdup(name)), p_properties(props), p_model(model)
587   , m_running(true), m_stateCurrent(SURF_RESOURCE_ON)
588 {}
589
590 Resource::Resource(Model *model, const char *name, xbt_dict_t props, lmm_constraint_t constraint)
591   : p_name(xbt_strdup(name)), p_properties(props), p_model(model)
592   , m_running(true), m_stateCurrent(SURF_RESOURCE_ON), p_constraint(constraint)
593 {}
594
595 Resource::Resource(Model *model, const char *name, xbt_dict_t props, e_surf_resource_state_t stateInit)
596   : p_name(xbt_strdup(name)), p_properties(props), p_model(model)
597   , m_running(true), m_stateCurrent(stateInit)
598 {}
599
600 Resource::~Resource() {
601   xbt_free((void*)p_name);
602   xbt_dict_free(&p_properties);
603 }
604
605 e_surf_resource_state_t Resource::getState()
606 {
607   return m_stateCurrent;
608 }
609
610 void Resource::setState(e_surf_resource_state_t state)
611 {
612   m_stateCurrent = state;
613 }
614
615 bool Resource::isOn()
616 {
617   return m_running;
618 }
619
620 void Resource::turnOn()
621 {
622   if (!m_running) {
623     m_running = true;
624   }
625 }
626
627 void Resource::turnOff()
628 {
629   if (m_running) {
630     m_running = false;
631   }
632 }
633
634 Model *Resource::getModel() {
635   return p_model;
636 }
637
638 const char *Resource::getName() {
639   return p_name;
640 }
641
642 xbt_dict_t Resource::getProperties() {
643   if (p_properties==NULL)
644     p_properties = xbt_dict_new();
645   return p_properties;
646 }
647
648 lmm_constraint_t Resource::getConstraint() {
649   return p_constraint;
650 }
651
652 /**********
653  * Action *
654  **********/
655
656 const char *surf_action_state_names[6] = {
657   "SURF_ACTION_READY",
658   "SURF_ACTION_RUNNING",
659   "SURF_ACTION_FAILED",
660   "SURF_ACTION_DONE",
661   "SURF_ACTION_TO_FREE",
662   "SURF_ACTION_NOT_IN_THE_SYSTEM"
663 };
664
665 void Action::initialize(Model *model, double cost, bool failed,
666                         lmm_variable_t var)
667 {
668   m_priority = 1.0;
669   m_refcount = 1;
670   m_remains = cost;
671   m_maxDuration = NO_MAX_DURATION;
672   m_finish = -1.0;
673   m_start = surf_get_clock();
674   m_cost = cost;
675   p_model = model;
676   p_data = NULL;
677   p_variable = var;
678   m_lastValue = 0;
679   m_lastUpdate = 0;
680   m_suspended = false;
681   m_hat = NOTSET;
682   p_category = NULL;
683   p_stateHookup.prev = 0;
684   p_stateHookup.next = 0;
685   if (failed)
686     p_stateSet = getModel()->getFailedActionSet();
687   else
688     p_stateSet = getModel()->getRunningActionSet();
689
690   p_stateSet->push_back(*this);
691 }
692
693 Action::Action(Model *model, double cost, bool failed)
694 {
695   initialize(model, cost, failed);
696 }
697
698 Action::Action(Model *model, double cost, bool failed, lmm_variable_t var)
699 {
700   initialize(model, cost, failed, var);
701 }
702
703 Action::~Action() {
704   xbt_free(p_category);
705 }
706
707 void Action::finish() {
708     m_finish = surf_get_clock();
709 }
710
711 e_surf_action_state_t Action::getState()
712 {
713   if (p_stateSet ==  getModel()->getReadyActionSet())
714     return SURF_ACTION_READY;
715   if (p_stateSet ==  getModel()->getRunningActionSet())
716     return SURF_ACTION_RUNNING;
717   if (p_stateSet ==  getModel()->getFailedActionSet())
718     return SURF_ACTION_FAILED;
719   if (p_stateSet ==  getModel()->getDoneActionSet())
720     return SURF_ACTION_DONE;
721   return SURF_ACTION_NOT_IN_THE_SYSTEM;
722 }
723
724 void Action::setState(e_surf_action_state_t state)
725 {
726   //surf_action_state_t action_state = &(action->model_type->states);
727   XBT_IN("(%p,%s)", this, surf_action_state_names[state]);
728   p_stateSet->erase(p_stateSet->iterator_to(*this));
729   if (state == SURF_ACTION_READY)
730     p_stateSet = getModel()->getReadyActionSet();
731   else if (state == SURF_ACTION_RUNNING)
732     p_stateSet = getModel()->getRunningActionSet();
733   else if (state == SURF_ACTION_FAILED)
734     p_stateSet = getModel()->getFailedActionSet();
735   else if (state == SURF_ACTION_DONE)
736     p_stateSet = getModel()->getDoneActionSet();
737   else
738     p_stateSet = NULL;
739
740   if (p_stateSet)
741     p_stateSet->push_back(*this);
742   XBT_OUT();
743 }
744
745 double Action::getBound()
746 {
747   return (p_variable) ? lmm_variable_getbound(p_variable) : 0;
748 }
749
750 void Action::setBound(double bound)
751 {
752   XBT_IN("(%p,%g)", this, bound);
753   if (p_variable)
754     lmm_update_variable_bound(getModel()->getMaxminSystem(), p_variable, bound);
755
756   if (getModel()->getUpdateMechanism() == UM_LAZY && getLastUpdate()!=surf_get_clock())
757     heapRemove(getModel()->getActionHeap());
758   XBT_OUT();
759 }
760
761 double Action::getStartTime()
762 {
763   return m_start;
764 }
765
766 double Action::getFinishTime()
767 {
768   /* keep the function behavior, some models (cpu_ti) change the finish time before the action end */
769   return m_remains == 0 ? m_finish : -1;
770 }
771
772 void Action::setData(void* data)
773 {
774   p_data = data;
775 }
776
777 void Action::setCategory(const char *category)
778 {
779   XBT_IN("(%p,%s)", this, category);
780   p_category = xbt_strdup(category);
781   XBT_OUT();
782 }
783
784 void Action::ref(){
785   m_refcount++;
786 }
787
788 void Action::setMaxDuration(double duration)
789 {
790   XBT_IN("(%p,%g)", this, duration);
791   m_maxDuration = duration;
792   if (getModel()->getUpdateMechanism() == UM_LAZY)      // remove action from the heap
793     heapRemove(getModel()->getActionHeap());
794   XBT_OUT();
795 }
796
797 void Action::gapRemove() {}
798
799 void Action::setPriority(double priority)
800 {
801   XBT_IN("(%p,%g)", this, priority);
802   m_priority = priority;
803   lmm_update_variable_weight(getModel()->getMaxminSystem(), getVariable(), priority);
804
805   if (getModel()->getUpdateMechanism() == UM_LAZY)
806         heapRemove(getModel()->getActionHeap());
807   XBT_OUT();
808 }
809
810 void Action::cancel(){
811   setState(SURF_ACTION_FAILED);
812   if (getModel()->getUpdateMechanism() == UM_LAZY) {
813     if (action_lmm_hook.is_linked())
814       getModel()->getModifiedSet()->erase(getModel()->getModifiedSet()->iterator_to(*this));
815     heapRemove(getModel()->getActionHeap());
816   }
817 }
818
819 int Action::unref(){
820   m_refcount--;
821   if (!m_refcount) {
822     if (action_hook.is_linked())
823       p_stateSet->erase(p_stateSet->iterator_to(*this));
824     if (getVariable())
825       lmm_variable_free(getModel()->getMaxminSystem(), getVariable());
826     if (getModel()->getUpdateMechanism() == UM_LAZY) {
827       /* remove from heap */
828       heapRemove(getModel()->getActionHeap());
829       if (action_lmm_hook.is_linked())
830         getModel()->getModifiedSet()->erase(getModel()->getModifiedSet()->iterator_to(*this));
831     }
832     delete this;
833     return 1;
834   }
835   return 0;
836 }
837
838 void Action::suspend()
839 {
840   XBT_IN("(%p)", this);
841   if (m_suspended != 2) {
842     lmm_update_variable_weight(getModel()->getMaxminSystem(), getVariable(), 0.0);
843     m_suspended = 1;
844     if (getModel()->getUpdateMechanism() == UM_LAZY)
845       heapRemove(getModel()->getActionHeap());
846   }
847   XBT_OUT();
848 }
849
850 void Action::resume()
851 {
852   XBT_IN("(%p)", this);
853   if (m_suspended != 2) {
854     lmm_update_variable_weight(getModel()->getMaxminSystem(), getVariable(), m_priority);
855     m_suspended = 0;
856     if (getModel()->getUpdateMechanism() == UM_LAZY)
857       heapRemove(getModel()->getActionHeap());
858   }
859   XBT_OUT();
860 }
861
862 bool Action::isSuspended()
863 {
864   return m_suspended == 1;
865 }
866 /* insert action on heap using a given key and a hat (heap_action_type)
867  * a hat can be of three types for communications:
868  *
869  * NORMAL = this is a normal heap entry stating the date to finish transmitting
870  * LATENCY = this is a heap entry to warn us when the latency is payed
871  * MAX_DURATION =this is a heap entry to warn us when the max_duration limit is reached
872  */
873 void Action::heapInsert(xbt_heap_t heap, double key, enum heap_action_type hat)
874 {
875   m_hat = hat;
876   xbt_heap_push(heap, this, key);
877 }
878
879 void Action::heapRemove(xbt_heap_t heap)
880 {
881   m_hat = NOTSET;
882   if (m_indexHeap >= 0) {
883     xbt_heap_remove(heap, m_indexHeap);
884   }
885 }
886
887 void Action::heapUpdate(xbt_heap_t heap, double key, enum heap_action_type hat)
888 {
889   m_hat = hat;
890   if (m_indexHeap >= 0) {
891     xbt_heap_update(heap, m_indexHeap, key);
892   }else{
893     xbt_heap_push(heap, this, key);
894   }
895 }
896
897 /* added to manage the communication action's heap */
898 void surf_action_lmm_update_index_heap(void *action, int i) {
899   static_cast<Action*>(action)->updateIndexHeap(i);
900 }
901
902 void Action::updateIndexHeap(int i) {
903   m_indexHeap = i;
904 }
905
906 double Action::getRemains()
907 {
908   XBT_IN("(%p)", this);
909   /* update remains before return it */
910   if (getModel()->getUpdateMechanism() == UM_LAZY)      /* update remains before return it */
911     updateRemainingLazy(surf_get_clock());
912   XBT_OUT();
913   return m_remains;
914 }
915
916 double Action::getRemainsNoUpdate()
917 {
918   return m_remains;
919 }
920
921 //FIXME split code in the right places
922 void Action::updateRemainingLazy(double now)
923 {
924   double delta = 0.0;
925
926   if(getModel() == surf_network_model)
927   {
928     if (m_suspended != 0)
929       return;
930   }
931   else
932   {
933     xbt_assert(p_stateSet == getModel()->getRunningActionSet(),
934         "You're updating an action that is not running.");
935
936       /* bogus priority, skip it */
937     xbt_assert(m_priority > 0,
938         "You're updating an action that seems suspended.");
939   }
940
941   delta = now - m_lastUpdate;
942
943   if (m_remains > 0) {
944     XBT_DEBUG("Updating action(%p): remains was %f, last_update was: %f", this, m_remains, m_lastUpdate);
945     double_update(&m_remains, m_lastValue * delta, sg_surf_precision*sg_maxmin_precision);
946
947     if (getModel() == surf_cpu_model_pm && TRACE_is_enabled()) {
948       Resource *cpu = static_cast<Resource*>(lmm_constraint_id(lmm_get_cnst_from_var(getModel()->getMaxminSystem(), getVariable(), 0)));
949       TRACE_surf_host_set_utilization(cpu->getName(), getCategory(), m_lastValue, m_lastUpdate, now - m_lastUpdate);
950     }
951     XBT_DEBUG("Updating action(%p): remains is now %f", this, m_remains);
952   }
953
954   if(getModel() == surf_network_model)
955   {
956     if (m_maxDuration != NO_MAX_DURATION)
957       double_update(&m_maxDuration, delta, sg_surf_precision);
958
959     //FIXME: duplicated code
960     if ((m_remains <= 0) &&
961         (lmm_get_variable_weight(getVariable()) > 0)) {
962       finish();
963       setState(SURF_ACTION_DONE);
964       heapRemove(getModel()->getActionHeap());
965     } else if (((m_maxDuration != NO_MAX_DURATION)
966         && (m_maxDuration <= 0))) {
967       finish();
968       setState(SURF_ACTION_DONE);
969       heapRemove(getModel()->getActionHeap());
970     }
971   }
972
973   m_lastUpdate = now;
974   m_lastValue = lmm_variable_getvalue(getVariable());
975 }