Logo AND Algorithmique Numérique Distribuée

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