Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
refactor: be explicit on what an action's priority is
[simgrid.git] / src / surf / surf_interface.cpp
1 /* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "surf_interface.hpp"
7 #include "mc/mc.h"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/sg_config.h"
10 #include "src/instr/instr_private.h" // TRACE_is_enabled(). FIXME: remove by subscribing tracing to the surf signals
11 #include "src/kernel/routing/NetPoint.hpp"
12 #include "src/surf/HostImpl.hpp"
13
14 #include <fstream>
15 #include <vector>
16
17 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf, "Logging specific to SURF (kernel)");
19
20 /*********
21  * Utils *
22  *********/
23
24 std::vector<surf_model_t> * all_existing_models = nullptr; /* to destroy models correctly */
25
26 simgrid::trace_mgr::future_evt_set *future_evt_set = nullptr;
27 std::vector<std::string> surf_path;
28 std::vector<simgrid::s4u::Host*> host_that_restart;
29 xbt_dict_t watched_hosts_lib;
30 extern std::map<std::string, storage_type_t> storage_types;
31
32 namespace simgrid {
33 namespace surf {
34
35 simgrid::xbt::signal<void()> surfExitCallbacks;
36 }
37 }
38
39 #include <simgrid/plugins/energy.h> // FIXME: this plugin should not be linked to the core
40 #include <simgrid/plugins/load.h>   // FIXME: this plugin should not be linked to the core
41
42 s_surf_model_description_t surf_plugin_description[] = {
43     {"Energy", "Cpu energy consumption.", &sg_host_energy_plugin_init},
44     {"Load", "Cpu load.", &sg_host_load_plugin_init},
45     {nullptr, nullptr, nullptr} /* this array must be nullptr terminated */
46 };
47
48 /* Don't forget to update the option description in smx_config when you change this */
49 s_surf_model_description_t surf_network_model_description[] = {
50   {"LV08", "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). ",
51    &surf_network_model_init_LegrandVelho},
52   {"Constant",
53    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
54    &surf_network_model_init_Constant},
55   {"SMPI", "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", "Realistic network model specifically tailored for HPC settings, with Infiniband contention model",
58    &surf_network_model_init_IB},
59   {"CM02", "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
60    &surf_network_model_init_CM02},
61   {"NS3", "Network pseudo-model using the NS3 tcp model instead of an analytic model", &surf_network_model_init_NS3},
62   {"Reno",  "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
63    &surf_network_model_init_Reno},
64   {"Reno2", "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
65    &surf_network_model_init_Reno2},
66   {"Vegas", "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
67    &surf_network_model_init_Vegas},
68   {nullptr, nullptr, nullptr}      /* this array must be nullptr terminated */
69 };
70
71 #if ! HAVE_SMPI
72 void surf_network_model_init_SMPI() {
73   xbt_die("Please activate SMPI support in cmake to use the SMPI network model.");
74 }
75 void surf_network_model_init_IB() {
76   xbt_die("Please activate SMPI support in cmake to use the IB network model.");
77 }
78 #endif
79 #if !SIMGRID_HAVE_NS3
80 void surf_network_model_init_NS3() {
81   xbt_die("Please activate NS3 support in cmake and install the dependencies to use the NS3 network model.");
82 }
83 #endif
84
85 s_surf_model_description_t surf_cpu_model_description[] = {
86   {"Cas01", "Simplistic CPU model (time=size/power).", &surf_cpu_model_init_Cas01},
87   {nullptr, nullptr,  nullptr}      /* this array must be nullptr terminated */
88 };
89
90 s_surf_model_description_t surf_host_model_description[] = {
91   {"default",   "Default host model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)", &surf_host_model_init_current_default},
92   {"compound",  "Host model that is automatically chosen if you change the network and CPU models", &surf_host_model_init_compound},
93   {"ptask_L07", "Host model somehow similar to Cas01+CM02 but allowing parallel tasks", &surf_host_model_init_ptask_L07},
94   {nullptr, nullptr, nullptr}      /* this array must be nullptr terminated */
95 };
96
97 s_surf_model_description_t surf_optimization_mode_description[] = {
98   {"Lazy", "Lazy action management (partial invalidation in lmm + heap in action remaining).", nullptr},
99   {"TI",   "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).", nullptr},
100   {"Full", "Full update of remaining and variables. Slow but may be useful when debugging.", nullptr},
101   {nullptr, nullptr, nullptr}      /* this array must be nullptr terminated */
102 };
103
104 s_surf_model_description_t surf_storage_model_description[] = {
105   {"default", "Simplistic storage model.", &surf_storage_model_init_default},
106   {nullptr, nullptr,  nullptr}      /* this array must be nullptr terminated */
107 };
108
109 #if HAVE_THREAD_CONTEXTS
110 static xbt_parmap_t surf_parmap = nullptr; /* parallel map on models */
111 #endif
112
113 double NOW = 0;
114
115 double surf_get_clock()
116 {
117   return NOW;
118 }
119
120 #ifdef _WIN32
121 # define FILE_DELIM "\\"
122 #else
123 # define FILE_DELIM "/"         /* FIXME: move to better location */
124 #endif
125
126 std::ifstream* surf_ifsopen(const char* name)
127 {
128   std::ifstream* fs = new std::ifstream();
129   xbt_assert(name);
130   if (__surf_is_absolute_file_path(name)) { /* don't mess with absolute file names */
131     fs->open(name, std::ifstream::in);
132   }
133
134   /* search relative files in the path */
135   for (auto path_elm : surf_path) {
136     std::string buff = path_elm + FILE_DELIM + name;
137     fs->open(buff.c_str(), std::ifstream::in);
138
139     if (not fs->fail()) {
140       XBT_DEBUG("Found file at %s", buff.c_str());
141       return fs;
142     }
143   }
144
145   return fs;
146 }
147 FILE *surf_fopen(const char *name, const char *mode)
148 {
149   FILE *file = nullptr;
150
151   xbt_assert(name);
152
153   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
154     return fopen(name, mode);
155
156   /* search relative files in the path */
157   for (auto path_elm : surf_path) {
158     char* buff = bprintf("%s" FILE_DELIM "%s", path_elm.c_str(), name);
159     file = fopen(buff, mode);
160     free(buff);
161
162     if (file)
163       return file;
164   }
165   return nullptr;
166 }
167
168 #ifdef _WIN32
169 #include <windows.h>
170 #define MAX_DRIVE 26
171 static const char *disk_drives_letter_table[MAX_DRIVE] = {
172   "A:\\","B:\\","C:\\","D:\\","E:\\","F:\\","G:\\","H:\\","I:\\","J:\\","K:\\","L:\\","M:\\",
173   "N:\\","O:\\","P:\\","Q:\\","R:\\","S:\\","T:\\","U:\\","V:\\","W:\\","X:\\","Y:\\","Z:\\"
174 };
175 #endif
176
177 /*
178  * Returns the initial path. On Windows the initial path is
179  * the current directory for the current process in the other
180  * case the function returns "./" that represents the current
181  * directory on Unix/Linux platforms.
182  */
183
184 const char *__surf_get_initial_path()
185 {
186
187 #ifdef _WIN32
188   unsigned i;
189   char current_directory[MAX_PATH + 1] = { 0 };
190   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
191   char root[4] = { 0 };
192
193   if (not len)
194     return nullptr;
195
196   strncpy(root, current_directory, 3);
197
198   for (i = 0; i < MAX_DRIVE; i++) {
199     if (toupper(root[0]) == disk_drives_letter_table[i][0])
200       return disk_drives_letter_table[i];
201   }
202
203   return nullptr;
204 #else
205   return "./";
206 #endif
207 }
208
209 /* The __surf_is_absolute_file_path() returns 1 if
210  * file_path is a absolute file path, in the other
211  * case the function returns 0.
212  */
213 int __surf_is_absolute_file_path(const char *file_path)
214 {
215 #ifdef _WIN32
216   WIN32_FIND_DATA wfd = { 0 };
217   HANDLE hFile = FindFirstFile(file_path, &wfd);
218
219   if (INVALID_HANDLE_VALUE == hFile)
220     return 0;
221
222   FindClose(hFile);
223   return 1;
224 #else
225   return (file_path[0] == '/');
226 #endif
227 }
228
229 /** Displays the long description of all registered models, and quit */
230 void model_help(const char *category, s_surf_model_description_t * table)
231 {
232   printf("Long description of the %s models accepted by this simulator:\n", category);
233   for (int i = 0; table[i].name; i++)
234     printf("  %s: %s\n", table[i].name, table[i].description);
235 }
236
237 int find_model_description(s_surf_model_description_t * table,
238                            const char *name)
239 {
240   int i;
241   char *name_list = nullptr;
242
243   for (i = 0; table[i].name; i++)
244     if (not strcmp(name, table[i].name)) {
245       return i;
246     }
247   if (not table[0].name)
248     xbt_die("No model is valid! This is a bug.");
249   name_list = xbt_strdup(table[0].name);
250   for (i = 1; table[i].name; i++) {
251     name_list = (char *) xbt_realloc(name_list, strlen(name_list) + strlen(table[i].name) + 3);
252     strncat(name_list, ", ", 2);
253     strncat(name_list, table[i].name, strlen(table[i].name));
254   }
255   xbt_die("Model '%s' is invalid! Valid models are: %s.", name, name_list);
256   return -1;
257 }
258
259 void sg_version_check(int lib_version_major, int lib_version_minor, int lib_version_patch)
260 {
261   if ((lib_version_major != SIMGRID_VERSION_MAJOR) || (lib_version_minor != SIMGRID_VERSION_MINOR)) {
262     fprintf(stderr, "FATAL ERROR: Your program was compiled with SimGrid version %d.%d.%d, "
263                     "and then linked against SimGrid %d.%d.%d. Please fix this.\n",
264             lib_version_major, lib_version_minor, lib_version_patch, SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR,
265             SIMGRID_VERSION_PATCH);
266     abort();
267   }
268   if (lib_version_patch != SIMGRID_VERSION_PATCH) {
269     if (SIMGRID_VERSION_PATCH >= 90 || lib_version_patch >= 90) {
270       fprintf(
271           stderr,
272           "FATAL ERROR: Your program was compiled with SimGrid version %d.%d.%d, "
273           "and then linked against SimGrid %d.%d.%d. \n"
274           "One of them is a development version, and should not be mixed with the stable release. Please fix this.\n",
275           lib_version_major, lib_version_minor, lib_version_patch, SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR,
276           SIMGRID_VERSION_PATCH);
277       abort();
278     }
279     fprintf(stderr, "Warning: Your program was compiled with SimGrid version %d.%d.%d, "
280                     "and then linked against SimGrid %d.%d.%d. Proceeding anyway.\n",
281             lib_version_major, lib_version_minor, lib_version_patch, SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR,
282             SIMGRID_VERSION_PATCH);
283   }
284 }
285
286 void sg_version_get(int* ver_major, int* ver_minor, int* ver_patch)
287 {
288   *ver_major = SIMGRID_VERSION_MAJOR;
289   *ver_minor = SIMGRID_VERSION_MINOR;
290   *ver_patch = SIMGRID_VERSION_PATCH;
291 }
292
293 void sg_version()
294 {
295   std::printf("This program was linked against %s (git: %s), found in %s.\n",
296               SIMGRID_VERSION_STRING, SIMGRID_GIT_VERSION, SIMGRID_INSTALL_PREFIX);
297
298 #if SIMGRID_HAVE_MC
299   std::printf("   Model-checking support compiled in.\n");
300 #else
301   std::printf("   Model-checking support disabled at compilation.\n");
302 #endif
303
304 #if SIMGRID_HAVE_NS3
305   std::printf("   NS3 support compiled in.\n");
306 #else
307   std::printf("   NS3 support disabled at compilation.\n");
308 #endif
309
310 #if SIMGRID_HAVE_JEDULE
311   std::printf("   Jedule support compiled in.\n");
312 #else
313   std::printf("   Jedule support disabled at compilation.\n");
314 #endif
315
316 #if SIMGRID_HAVE_LUA
317   std::printf("   Lua support compiled in.\n");
318 #else
319   std::printf("   Lua support disabled at compilation.\n");
320 #endif
321
322 #if SIMGRID_HAVE_MALLOCATOR
323   std::printf("   Mallocator support compiled in.\n");
324 #else
325   std::printf("   Mallocator support disabled at compilation.\n");
326 #endif
327
328   std::printf("\nTo cite SimGrid in a publication, please use:\n"
329               "   Henri Casanova, Arnaud Giersch, Arnaud Legrand, Martin Quinson, Frédéric Suter. \n"
330               "   Versatile, Scalable, and Accurate Simulation of Distributed Applications and Platforms. \n"
331               "   Journal of Parallel and Distributed Computing, Elsevier, 2014, 74 (10), pp.2899-2917.\n");
332   std::printf("The pdf file and a BibTeX entry for LaTeX users can be found at http://hal.inria.fr/hal-01017319\n");
333 }
334
335 void surf_init(int *argc, char **argv)
336 {
337   if (USER_HOST_LEVEL != -1) // Already initialized
338     return;
339
340   XBT_DEBUG("Create all Libs");
341   USER_HOST_LEVEL = simgrid::s4u::Host::extension_create(nullptr);
342
343   watched_hosts_lib = xbt_dict_new_homogeneous(nullptr);
344
345   xbt_init(argc, argv);
346   if (not all_existing_models)
347     all_existing_models = new std::vector<simgrid::surf::Model*>();
348   if (not future_evt_set)
349     future_evt_set = new simgrid::trace_mgr::future_evt_set();
350
351   TRACE_surf_alloc();
352   simgrid::surf::surfExitCallbacks.connect(TRACE_surf_release);
353
354   sg_config_init(argc, argv);
355
356   if (MC_is_active())
357     MC_memory_init();
358 }
359
360 void surf_exit()
361 {
362   TRACE_end();                  /* Just in case it was not called by the upper layer (or there is no upper layer) */
363
364   sg_host_exit();
365   sg_link_exit();
366   xbt_dict_free(&watched_hosts_lib);
367   for (auto e : storage_types) {
368     storage_type_t stype = e.second;
369     free(stype->model);
370     free(stype->type_id);
371     free(stype->content);
372     xbt_dict_free(&(stype->properties));
373     delete stype->model_properties;
374     free(stype);
375   }
376   for (auto s : *simgrid::surf::StorageImpl::storages)
377     delete s.second;
378   delete simgrid::surf::StorageImpl::storages;
379
380   for (auto model : *all_existing_models)
381     delete model;
382   delete all_existing_models;
383
384   simgrid::surf::surfExitCallbacks();
385
386   if (future_evt_set) {
387     delete future_evt_set;
388     future_evt_set = nullptr;
389   }
390
391 #if HAVE_THREAD_CONTEXTS
392   xbt_parmap_destroy(surf_parmap);
393 #endif
394
395   tmgr_finalize();
396   sg_platf_exit();
397   simgrid::s4u::Engine::shutdown();
398
399   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
400 }
401
402 /*********
403  * Model *
404  *********/
405
406 namespace simgrid {
407 namespace surf {
408
409 Model::Model()
410   : maxminSystem_(nullptr)
411 {
412   readyActionSet_ = new ActionList();
413   runningActionSet_ = new ActionList();
414   failedActionSet_ = new ActionList();
415   doneActionSet_ = new ActionList();
416
417   modifiedSet_ = nullptr;
418   actionHeap_ = nullptr;
419   updateMechanism_ = UM_UNDEFINED;
420   selectiveUpdate_ = 0;
421 }
422
423 Model::~Model(){
424   delete readyActionSet_;
425   delete runningActionSet_;
426   delete failedActionSet_;
427   delete doneActionSet_;
428 }
429
430 double Model::nextOccuringEvent(double now)
431 {
432   //FIXME: set the good function once and for all
433   if (updateMechanism_ == UM_LAZY)
434     return nextOccuringEventLazy(now);
435   else if (updateMechanism_ == UM_FULL)
436     return nextOccuringEventFull(now);
437   else
438     xbt_die("Invalid cpu update mechanism!");
439 }
440
441 double Model::nextOccuringEventLazy(double now)
442 {
443   XBT_DEBUG("Before share resources, the size of modified actions set is %zd", modifiedSet_->size());
444   lmm_solve(maxminSystem_);
445   XBT_DEBUG("After share resources, The size of modified actions set is %zd", modifiedSet_->size());
446
447   while (not modifiedSet_->empty()) {
448     Action *action = &(modifiedSet_->front());
449     modifiedSet_->pop_front();
450     bool max_dur_flag = false;
451
452     if (action->getStateSet() != runningActionSet_)
453       continue;
454
455     /* bogus priority, skip it */
456     if (action->getPriority() <= 0 || action->getHat()==LATENCY)
457       continue;
458
459     action->updateRemainingLazy(now);
460
461     double min = -1;
462     double share = lmm_variable_getvalue(action->getVariable());
463
464     if (share > 0) {
465       double time_to_completion;
466       if (action->getRemains() > 0) {
467         time_to_completion = action->getRemainsNoUpdate() / share;
468       } else {
469         time_to_completion = 0.0;
470       }
471       min = now + time_to_completion; // when the task will complete if nothing changes
472     }
473
474     if ((action->getMaxDuration() > NO_MAX_DURATION) &&
475         (min <= -1 || action->getStartTime() + action->getMaxDuration() < min)) {
476       // when the task will complete anyway because of the deadline if any
477       min          = action->getStartTime() + action->getMaxDuration();
478       max_dur_flag = true;
479     }
480
481     XBT_DEBUG("Action(%p) corresponds to variable %d", action, action->getVariable()->id_int);
482
483     XBT_DEBUG("Action(%p) Start %f. May finish at %f (got a share of %f). Max_duration %f", action,
484         action->getStartTime(), min, share,
485         action->getMaxDuration());
486
487     if (min > -1) {
488       action->heapUpdate(actionHeap_, min, max_dur_flag ? MAX_DURATION : NORMAL);
489       XBT_DEBUG("Insert at heap action(%p) min %f now %f", action, min, now);
490     } else
491       DIE_IMPOSSIBLE;
492   }
493
494   //hereafter must have already the min value for this resource model
495   if (xbt_heap_size(actionHeap_) > 0) {
496     double min = xbt_heap_maxkey(actionHeap_) - now;
497     XBT_DEBUG("minimum with the HEAP %f", min);
498     return min;
499   } else {
500     XBT_DEBUG("The HEAP is empty, thus returning -1");
501     return -1;
502   }
503 }
504
505 double Model::nextOccuringEventFull(double /*now*/) {
506   maxminSystem_->solve_fun(maxminSystem_);
507
508   double min = -1;
509   for (auto it(getRunningActionSet()->begin()), itend(getRunningActionSet()->end()); it != itend ; ++it) {
510     Action *action = &*it;
511     double value = lmm_variable_getvalue(action->getVariable());
512     if (value > 0) {
513       if (action->getRemains() > 0)
514         value = action->getRemainsNoUpdate() / value;
515       else
516         value = 0.0;
517       if (min < 0 || value < min) {
518         min = value;
519         XBT_DEBUG("Updating min (value) with %p: %f", action, min);
520       }
521     }
522     if ((action->getMaxDuration() >= 0) && (min<0 || action->getMaxDuration() < min)) {
523       min = action->getMaxDuration();
524       XBT_DEBUG("Updating min (duration) with %p: %f", action, min);
525     }
526   }
527   XBT_DEBUG("min value : %f", min);
528
529   return min;
530 }
531
532 void Model::updateActionsState(double now, double delta)
533 {
534   if (updateMechanism_ == UM_FULL)
535     updateActionsStateFull(now, delta);
536   else if (updateMechanism_ == UM_LAZY)
537     updateActionsStateLazy(now, delta);
538   else
539     xbt_die("Invalid cpu update mechanism!");
540 }
541
542 void Model::updateActionsStateLazy(double /*now*/, double /*delta*/)
543 {
544   THROW_UNIMPLEMENTED;
545 }
546
547 void Model::updateActionsStateFull(double /*now*/, double /*delta*/)
548 {
549   THROW_UNIMPLEMENTED;
550 }
551
552 }
553 }
554
555 /************
556  * Resource *
557  ************/
558
559 namespace simgrid {
560 namespace surf {
561
562 Resource::Resource(Model* model, const char* name, lmm_constraint_t constraint)
563     : name_(name), model_(model), constraint_(constraint)
564 {}
565
566 Resource::~Resource() = default;
567
568 bool Resource::isOn() const {
569   return isOn_;
570 }
571 bool Resource::isOff() const {
572   return not isOn_;
573 }
574
575 void Resource::turnOn()
576 {
577   isOn_ = true;
578 }
579
580 void Resource::turnOff()
581 {
582   isOn_ = false;
583 }
584
585 Model* Resource::model() const
586 {
587   return model_;
588 }
589
590 const char* Resource::cname() const
591 {
592   return name_.c_str();
593 }
594
595 bool Resource::operator==(const Resource &other) const {
596   return name_ == other.name_;
597 }
598
599 lmm_constraint_t Resource::constraint() const
600 {
601   return constraint_;
602 }
603
604 }
605 }
606
607 /**********
608  * Action *
609  **********/
610
611 const char *surf_action_state_names[6] = {
612   "SURF_ACTION_READY",
613   "SURF_ACTION_RUNNING",
614   "SURF_ACTION_FAILED",
615   "SURF_ACTION_DONE",
616   "SURF_ACTION_TO_FREE",
617   "SURF_ACTION_NOT_IN_THE_SYSTEM"
618 };
619
620 /* added to manage the communication action's heap */
621 void surf_action_lmm_update_index_heap(void *action, int i) {
622   static_cast<simgrid::surf::Action*>(action)->updateIndexHeap(i);
623 }
624
625 namespace simgrid {
626 namespace surf {
627
628 Action::Action(simgrid::surf::Model* model, double cost, bool failed) : Action(model, cost, failed, nullptr)
629 {
630 }
631
632 Action::Action(simgrid::surf::Model* model, double cost, bool failed, lmm_variable_t var)
633     : remains_(cost), start_(surf_get_clock()), cost_(cost), model_(model), variable_(var)
634 {
635   if (failed)
636     stateSet_ = getModel()->getFailedActionSet();
637   else
638     stateSet_ = getModel()->getRunningActionSet();
639
640   stateSet_->push_back(*this);
641 }
642
643 Action::~Action() {
644   xbt_free(category_);
645 }
646
647 void Action::finish() {
648     finishTime_ = surf_get_clock();
649 }
650
651 Action::State Action::getState()
652 {
653   if (stateSet_ == model_->getReadyActionSet())
654     return Action::State::ready;
655   if (stateSet_ == model_->getRunningActionSet())
656     return Action::State::running;
657   if (stateSet_ == model_->getFailedActionSet())
658     return Action::State::failed;
659   if (stateSet_ == model_->getDoneActionSet())
660     return Action::State::done;
661   return Action::State::not_in_the_system;
662 }
663
664 void Action::setState(Action::State state)
665 {
666   stateSet_->erase(stateSet_->iterator_to(*this));
667   switch (state) {
668   case Action::State::ready:
669     stateSet_ = model_->getReadyActionSet();
670     break;
671   case Action::State::running:
672     stateSet_ = model_->getRunningActionSet();
673     break;
674   case Action::State::failed:
675     stateSet_ = model_->getFailedActionSet();
676     break;
677   case Action::State::done:
678     stateSet_ = model_->getDoneActionSet();
679     break;
680   default:
681     stateSet_ = nullptr;
682     break;
683   }
684   if (stateSet_)
685     stateSet_->push_back(*this);
686 }
687
688 double Action::getBound()
689 {
690   return (variable_) ? lmm_variable_getbound(variable_) : 0;
691 }
692
693 void Action::setBound(double bound)
694 {
695   XBT_IN("(%p,%g)", this, bound);
696   if (variable_)
697     lmm_update_variable_bound(getModel()->getMaxminSystem(), variable_, bound);
698
699   if (getModel()->getUpdateMechanism() == UM_LAZY && getLastUpdate() != surf_get_clock())
700     heapRemove(getModel()->getActionHeap());
701   XBT_OUT();
702 }
703
704 double Action::getStartTime()
705 {
706   return start_;
707 }
708
709 double Action::getFinishTime()
710 {
711   /* keep the function behavior, some models (cpu_ti) change the finish time before the action end */
712   return remains_ <= 0 ? finishTime_ : -1;
713 }
714
715 void Action::setData(void* data)
716 {
717   data_ = data;
718 }
719
720 void Action::setCategory(const char *category)
721 {
722   category_ = xbt_strdup(category);
723 }
724
725 void Action::ref(){
726   refcount_++;
727 }
728
729 void Action::setMaxDuration(double duration)
730 {
731   maxDuration_ = duration;
732   if (getModel()->getUpdateMechanism() == UM_LAZY)      // remove action from the heap
733     heapRemove(getModel()->getActionHeap());
734 }
735
736 void Action::gapRemove() {}
737
738 void Action::setSharingWeight(double weight)
739 {
740   XBT_IN("(%p,%g)", this, weight);
741   sharingWeight_ = weight;
742   lmm_update_variable_weight(getModel()->getMaxminSystem(), getVariable(), weight);
743
744   if (getModel()->getUpdateMechanism() == UM_LAZY)
745     heapRemove(getModel()->getActionHeap());
746   XBT_OUT();
747 }
748
749 void Action::cancel(){
750   setState(Action::State::failed);
751   if (getModel()->getUpdateMechanism() == UM_LAZY) {
752     if (action_lmm_hook.is_linked())
753       getModel()->getModifiedSet()->erase(getModel()->getModifiedSet()->iterator_to(*this));
754     heapRemove(getModel()->getActionHeap());
755   }
756 }
757
758 int Action::unref(){
759   refcount_--;
760   if (not refcount_) {
761     if (action_hook.is_linked())
762       stateSet_->erase(stateSet_->iterator_to(*this));
763     if (getVariable())
764       lmm_variable_free(getModel()->getMaxminSystem(), getVariable());
765     if (getModel()->getUpdateMechanism() == UM_LAZY) {
766       /* remove from heap */
767       heapRemove(getModel()->getActionHeap());
768       if (action_lmm_hook.is_linked())
769         getModel()->getModifiedSet()->erase(getModel()->getModifiedSet()->iterator_to(*this));
770     }
771     delete this;
772     return 1;
773   }
774   return 0;
775 }
776
777 void Action::suspend()
778 {
779   XBT_IN("(%p)", this);
780   if (suspended_ != 2) {
781     lmm_update_variable_weight(getModel()->getMaxminSystem(), getVariable(), 0.0);
782     if (getModel()->getUpdateMechanism() == UM_LAZY){
783       heapRemove(getModel()->getActionHeap());
784       if (getModel()->getUpdateMechanism() == UM_LAZY && stateSet_ == getModel()->getRunningActionSet() &&
785           sharingWeight_ > 0) {
786         //If we have a lazy model, we need to update the remaining value accordingly
787         updateRemainingLazy(surf_get_clock());
788       }
789     }
790     suspended_ = 1;
791   }
792   XBT_OUT();
793 }
794
795 void Action::resume()
796 {
797   XBT_IN("(%p)", this);
798   if (suspended_ != 2) {
799     lmm_update_variable_weight(getModel()->getMaxminSystem(), getVariable(), sharingWeight_);
800     suspended_ = 0;
801     if (getModel()->getUpdateMechanism() == UM_LAZY)
802       heapRemove(getModel()->getActionHeap());
803   }
804   XBT_OUT();
805 }
806
807 bool Action::isSuspended()
808 {
809   return suspended_ == 1;
810 }
811 /* insert action on heap using a given key and a hat (heap_action_type)
812  * a hat can be of three types for communications:
813  *
814  * NORMAL = this is a normal heap entry stating the date to finish transmitting
815  * LATENCY = this is a heap entry to warn us when the latency is payed
816  * MAX_DURATION =this is a heap entry to warn us when the max_duration limit is reached
817  */
818 void Action::heapInsert(xbt_heap_t heap, double key, enum heap_action_type hat)
819 {
820   hat_ = hat;
821   xbt_heap_push(heap, this, key);
822 }
823
824 void Action::heapRemove(xbt_heap_t heap)
825 {
826   hat_ = NOTSET;
827   if (indexHeap_ >= 0) {
828     xbt_heap_remove(heap, indexHeap_);
829   }
830 }
831
832 void Action::heapUpdate(xbt_heap_t heap, double key, enum heap_action_type hat)
833 {
834   hat_ = hat;
835   if (indexHeap_ >= 0) {
836     xbt_heap_update(heap, indexHeap_, key);
837   }else{
838     xbt_heap_push(heap, this, key);
839   }
840 }
841
842 void Action::updateIndexHeap(int i) {
843   indexHeap_ = i;
844 }
845
846 double Action::getRemains()
847 {
848   XBT_IN("(%p)", this);
849   /* update remains before return it */
850   if (getModel()->getUpdateMechanism() == UM_LAZY)      /* update remains before return it */
851     updateRemainingLazy(surf_get_clock());
852   XBT_OUT();
853   return remains_;
854 }
855
856 double Action::getRemainsNoUpdate()
857 {
858   return remains_;
859 }
860
861 //FIXME split code in the right places
862 void Action::updateRemainingLazy(double now)
863 {
864   double delta = 0.0;
865
866   if(getModel() == surf_network_model)
867   {
868     if (suspended_ != 0)
869       return;
870   }
871   else
872   {
873     xbt_assert(stateSet_ == getModel()->getRunningActionSet(), "You're updating an action that is not running.");
874     xbt_assert(sharingWeight_ > 0, "You're updating an action that seems suspended.");
875   }
876
877   delta = now - lastUpdate_;
878
879   if (remains_ > 0) {
880     XBT_DEBUG("Updating action(%p): remains was %f, last_update was: %f", this, remains_, lastUpdate_);
881     double_update(&remains_, lastValue_ * delta, sg_surf_precision*sg_maxmin_precision);
882
883     if (getModel() == surf_cpu_model_pm && TRACE_is_enabled()) {
884       simgrid::surf::Resource *cpu = static_cast<simgrid::surf::Resource*>(
885         lmm_constraint_id(lmm_get_cnst_from_var(getModel()->getMaxminSystem(), getVariable(), 0)));
886       TRACE_surf_host_set_utilization(cpu->cname(), getCategory(), lastValue_, lastUpdate_, now - lastUpdate_);
887     }
888     XBT_DEBUG("Updating action(%p): remains is now %f", this, remains_);
889   }
890
891   if(getModel() == surf_network_model)
892   {
893     if (maxDuration_ != NO_MAX_DURATION)
894       double_update(&maxDuration_, delta, sg_surf_precision);
895
896     //FIXME: duplicated code
897     if ((remains_ <= 0) &&
898         (lmm_get_variable_weight(getVariable()) > 0)) {
899       finish();
900       setState(Action::State::done);
901       heapRemove(getModel()->getActionHeap());
902     } else if (((maxDuration_ != NO_MAX_DURATION)
903         && (maxDuration_ <= 0))) {
904       finish();
905       setState(Action::State::done);
906       heapRemove(getModel()->getActionHeap());
907     }
908   }
909
910   lastUpdate_ = now;
911   lastValue_ = lmm_variable_getvalue(getVariable());
912 }
913
914 }
915 }