Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused function.
[simgrid.git] / src / surf / storage.cpp
1 #include "storage.hpp"
2 #include "surf_private.h"
3
4 #define __STDC_FORMAT_MACROS
5
6 extern "C" {
7 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_storage, surf,
8                                 "Logging specific to the SURF storage module");
9 }
10
11 xbt_lib_t storage_lib;
12 int ROUTING_STORAGE_LEVEL;      //Routing for storagelevel
13 int ROUTING_STORAGE_HOST_LEVEL;
14 int SURF_STORAGE_LEVEL;
15 xbt_lib_t storage_type_lib;
16 int ROUTING_STORAGE_TYPE_LEVEL; //Routing for storage_type level
17
18 static xbt_dynar_t storage_list;
19
20 xbt_dynar_t mount_list = NULL;  /* temporary store of current mount storage */
21 StorageModelPtr surf_storage_model = NULL;
22
23 static int storage_selective_update = 0;
24 static xbt_swag_t storage_running_action_set_that_does_not_need_being_checked = NULL;
25
26 /*************
27  * CallBacks *
28  *************/
29
30 static XBT_INLINE void routing_storage_type_free(void *r)
31 {
32   storage_type_t stype = (storage_type_t) r;
33   free(stype->model);
34   free(stype->type_id);
35   free(stype->content);
36   xbt_dict_free(&(stype->properties));
37   xbt_dict_free(&(stype->properties));
38   free(stype);
39 }
40
41 static XBT_INLINE void surf_storage_resource_free(void *r)
42 {
43   // specific to storage
44   StoragePtr storage = dynamic_cast<StoragePtr>(static_cast<ResourcePtr>(r));
45   xbt_dict_free(&storage->p_content);
46   xbt_dynar_free(&storage->p_writeActions);
47   free(storage->p_typeId);
48   free(storage->p_contentType);
49   // generic resource
50   delete storage;
51 }
52
53 static XBT_INLINE void routing_storage_host_free(void *r)
54 {
55   xbt_dynar_t dyn = (xbt_dynar_t) r;
56   xbt_dynar_free(&dyn);
57 }
58
59 static void parse_storage_init(sg_platf_storage_cbarg_t storage)
60 {
61   void* stype = xbt_lib_get_or_null(storage_type_lib,
62                                     storage->type_id,
63                                     ROUTING_STORAGE_TYPE_LEVEL);
64   if(!stype) xbt_die("No storage type '%s'",storage->type_id);
65
66   // if storage content is not specified use the content of storage_type if exist
67   if(!strcmp(storage->content,"") && strcmp(((storage_type_t) stype)->content,"")){
68     storage->content = ((storage_type_t) stype)->content;
69     storage->content_type = ((storage_type_t) stype)->content_type;
70     XBT_DEBUG("For disk '%s' content is empty, inherit the content (of type %s) from storage type '%s' ",
71         storage->id,((storage_type_t) stype)->content_type,
72         ((storage_type_t) stype)->type_id);
73   }
74
75   XBT_DEBUG("SURF storage create resource\n\t\tid '%s'\n\t\ttype '%s' "
76       "\n\t\tmodel '%s' \n\t\tcontent '%s'\n\t\tcontent_type '%s' "
77       "\n\t\tproperties '%p'\n",
78       storage->id,
79       ((storage_type_t) stype)->model,
80       ((storage_type_t) stype)->type_id,
81       storage->content,
82       storage->content_type,
83       ((storage_type_t) stype)->properties);
84
85   surf_storage_model->createResource(storage->id, ((storage_type_t) stype)->model,
86                                      ((storage_type_t) stype)->type_id,
87                                      storage->content,
88                                      storage->content_type,
89                                      storage->properties);
90 }
91
92 static void parse_mstorage_init(sg_platf_mstorage_cbarg_t /*mstorage*/)
93 {
94   XBT_DEBUG("parse_mstorage_init");
95 }
96
97 static void parse_storage_type_init(sg_platf_storage_type_cbarg_t /*storagetype_*/)
98 {
99   XBT_DEBUG("parse_storage_type_init");
100 }
101
102 static void parse_mount_init(sg_platf_mount_cbarg_t /*mount*/)
103 {
104   XBT_DEBUG("parse_mount_init");
105 }
106
107 static void storage_parse_storage(sg_platf_storage_cbarg_t storage)
108 {
109   xbt_assert(!xbt_lib_get_or_null(storage_lib, storage->id,ROUTING_STORAGE_LEVEL),
110                "Reading a storage, processing unit \"%s\" already exists", storage->id);
111
112   // Verification of an existing type_id
113 #ifndef NDEBUG
114   void* storage_type = xbt_lib_get_or_null(storage_type_lib, storage->type_id,ROUTING_STORAGE_TYPE_LEVEL);
115 #endif
116   xbt_assert(storage_type,"Reading a storage, type id \"%s\" does not exists", storage->type_id);
117
118   XBT_DEBUG("ROUTING Create a storage name '%s' with type_id '%s' and content '%s'",
119       storage->id,
120       storage->type_id,
121       storage->content);
122
123   xbt_lib_set(storage_lib,
124       storage->id,
125       ROUTING_STORAGE_LEVEL,
126       (void *) xbt_strdup(storage->type_id));
127 }
128
129 static void storage_parse_storage_type(sg_platf_storage_type_cbarg_t storage_type)
130 {
131   xbt_assert(!xbt_lib_get_or_null(storage_type_lib, storage_type->id,ROUTING_STORAGE_TYPE_LEVEL),
132                "Reading a storage type, processing unit \"%s\" already exists", storage_type->id);
133
134   storage_type_t stype = xbt_new0(s_storage_type_t, 1);
135   stype->model = xbt_strdup(storage_type->model);
136   stype->properties = storage_type->properties;
137   stype->content = xbt_strdup(storage_type->content);
138   stype->content_type = xbt_strdup(storage_type->content_type);
139   stype->type_id = xbt_strdup(storage_type->id);
140   stype->size = storage_type->size;
141
142   XBT_DEBUG("ROUTING Create a storage type id '%s' with model '%s', "
143       "content '%s', and content_type '%s'",
144       stype->type_id,
145       stype->model,
146       storage_type->content,
147       storage_type->content_type);
148
149   xbt_lib_set(storage_type_lib,
150       stype->type_id,
151       ROUTING_STORAGE_TYPE_LEVEL,
152       (void *) stype);
153 }
154 static void storage_parse_mstorage(sg_platf_mstorage_cbarg_t /*mstorage*/)
155 {
156   THROW_UNIMPLEMENTED;
157 //  mount_t mnt = xbt_new0(s_mount_t, 1);
158 //  mnt->id = xbt_strdup(mstorage->type_id);
159 //  mnt->name = xbt_strdup(mstorage->name);
160 //
161 //  if(!mount_list){
162 //    XBT_DEBUG("Creata a Mount list for %s",A_surfxml_host_id);
163 //    mount_list = xbt_dynar_new(sizeof(char *), NULL);
164 //  }
165 //  xbt_dynar_push(mount_list,(void *) mnt);
166 //  free(mnt->id);
167 //  free(mnt->name);
168 //  xbt_free(mnt);
169 //  XBT_DEBUG("ROUTING Mount a storage name '%s' with type_id '%s'",mstorage->name, mstorage->id);
170 }
171
172 static void mount_free(void *p)
173 {
174   mount_t mnt = (mount_t) p;
175   xbt_free(mnt->name);
176 }
177
178 static void storage_parse_mount(sg_platf_mount_cbarg_t mount)
179 {
180   // Verification of an existing storage
181 #ifndef NDEBUG
182   void* storage = xbt_lib_get_or_null(storage_lib, mount->storageId, ROUTING_STORAGE_LEVEL);
183 #endif
184   xbt_assert(storage,"Disk id \"%s\" does not exists", mount->storageId);
185
186   XBT_DEBUG("ROUTING Mount '%s' on '%s'",mount->storageId, mount->name);
187
188   s_mount_t mnt;
189   mnt.storage = surf_storage_resource_priv(surf_storage_resource_by_name(mount->storageId));
190   mnt.name = xbt_strdup(mount->name);
191
192   if(!mount_list){
193     //FIXME:XBT_DEBUG("Create a Mount list for %s",A_surfxml_host_id);
194     mount_list = xbt_dynar_new(sizeof(s_mount_t), mount_free);
195   }
196   xbt_dynar_push(mount_list,&mnt);
197 }
198
199 static void storage_define_callbacks()
200 {
201   sg_platf_storage_add_cb(parse_storage_init);
202   sg_platf_storage_type_add_cb(parse_storage_type_init);
203   sg_platf_mstorage_add_cb(parse_mstorage_init);
204   sg_platf_mount_add_cb(parse_mount_init);
205 }
206
207 void storage_register_callbacks() {
208
209   ROUTING_STORAGE_LEVEL = xbt_lib_add_level(storage_lib,xbt_free);
210   ROUTING_STORAGE_HOST_LEVEL = xbt_lib_add_level(storage_lib, routing_storage_host_free);
211   ROUTING_STORAGE_TYPE_LEVEL = xbt_lib_add_level(storage_type_lib, routing_storage_type_free);
212   SURF_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, surf_storage_resource_free);
213
214   sg_platf_storage_add_cb(storage_parse_storage);
215   sg_platf_mstorage_add_cb(storage_parse_mstorage);
216   sg_platf_storage_type_add_cb(storage_parse_storage_type);
217   sg_platf_mount_add_cb(storage_parse_mount);
218 }
219
220 /*********
221  * Model *
222  *********/
223
224 void surf_storage_model_init_default(void)
225 {
226   surf_storage_model = new StorageModel();
227   storage_define_callbacks();
228   xbt_dynar_push(model_list, &surf_storage_model);
229 }
230
231 StorageModel::StorageModel() : Model("Storage") {
232   StorageActionLmm action;
233
234   XBT_DEBUG("surf_storage_model_init_internal");
235
236   storage_running_action_set_that_does_not_need_being_checked =
237       xbt_swag_new(xbt_swag_offset(action, p_stateHookup));
238
239   if (!p_maxminSystem) {
240     p_maxminSystem = lmm_system_new(storage_selective_update);
241   }
242 }
243
244
245 StorageModel::~StorageModel(){
246   lmm_system_free(p_maxminSystem);
247
248   surf_storage_model = NULL;
249
250   xbt_dynar_free(&storage_list);
251
252   xbt_swag_free(storage_running_action_set_that_does_not_need_being_checked);
253   storage_running_action_set_that_does_not_need_being_checked = NULL;
254 }
255
256 StoragePtr StorageModel::createResource(const char* id, const char* model, const char* type_id,
257                 const char* content_name, const char* content_type, xbt_dict_t properties)
258 {
259
260   xbt_assert(!surf_storage_resource_priv(surf_storage_resource_by_name(id)),
261               "Storage '%s' declared several times in the platform file",
262               id);
263
264   storage_type_t storage_type = (storage_type_t) xbt_lib_get_or_null(storage_type_lib, type_id,ROUTING_STORAGE_TYPE_LEVEL);
265
266   double Bread  = surf_parse_get_bandwidth((char*)xbt_dict_get(storage_type->properties, "Bread"));
267   double Bwrite = surf_parse_get_bandwidth((char*)xbt_dict_get(storage_type->properties, "Bwrite"));
268   double Bconnection   = surf_parse_get_bandwidth((char*)xbt_dict_get(storage_type->properties, "Bconnection"));
269
270   StoragePtr storage = new StorageLmm(this, id, properties, p_maxminSystem,
271                   Bread, Bwrite, Bconnection,
272                   type_id, (char *)content_name, xbt_strdup(content_type), storage_type->size);
273
274   xbt_lib_set(storage_lib, id, SURF_STORAGE_LEVEL, static_cast<ResourcePtr>(storage));
275
276   XBT_DEBUG("SURF storage create resource\n\t\tid '%s'\n\t\ttype '%s' \n\t\tmodel '%s' \n\t\tproperties '%p'\n\t\tBread '%f'\n",
277       id,
278       model,
279       type_id,
280       storage_type->properties,
281       Bread);
282
283   if(!storage_list)
284         storage_list = xbt_dynar_new(sizeof(char *),NULL);
285   xbt_dynar_push(storage_list, &storage);
286
287   return storage;
288 }
289
290 double StorageModel::shareResources(double now)
291 {
292   XBT_DEBUG("storage_share_resources %f", now);
293   unsigned int i, j;
294   StoragePtr storage;
295   StorageActionLmmPtr write_action;
296
297   double min_completion = shareResourcesMaxMin(p_runningActionSet,
298       p_maxminSystem, lmm_solve);
299
300   double rate;
301   // Foreach disk
302   xbt_dynar_foreach(storage_list,i,storage)
303   {
304     rate = 0;
305     // Foreach write action on disk
306     xbt_dynar_foreach(storage->p_writeActions, j, write_action)
307     {
308       rate += lmm_variable_getvalue(write_action->p_variable);
309     }
310     if(rate > 0)
311       min_completion = MIN(min_completion, (storage->m_size-storage->m_usedSize)/rate);
312   }
313
314   return min_completion;
315 }
316
317 void StorageModel::updateActionsState(double /*now*/, double delta)
318 {
319   void *_action, *_next_action;
320   StorageActionLmmPtr action = NULL;
321
322   xbt_swag_foreach_safe(_action, _next_action, p_runningActionSet) {
323         action = dynamic_cast<StorageActionLmmPtr>(static_cast<ActionPtr>(_action));
324     if(action->m_type == WRITE)
325     {
326       // Update the disk usage
327      // Update the file size
328      // For each action of type write
329       double rate = lmm_variable_getvalue(action->p_variable);
330       /* Hack to avoid rounding differences between x86 and x86_64
331        * (note that the next sizes are of type sg_size_t). */
332       long incr = delta * rate + MAXMIN_PRECISION;
333       action->p_storage->m_usedSize += incr; // disk usage
334       action->p_file->size += incr; // file size
335
336       sg_size_t *psize = xbt_new(sg_size_t,1);
337       *psize = action->p_file->size;
338
339       xbt_dict_t content_dict = action->p_storage->p_content;
340       xbt_dict_set(content_dict, action->p_file->name, psize, NULL);
341     }
342
343     double_update(&action->m_remains,
344                   lmm_variable_getvalue(action->p_variable) * delta);
345
346     if (action->m_maxDuration != NO_MAX_DURATION)
347       double_update(&action->m_maxDuration, delta);
348
349     if(action->m_remains > 0 &&
350         lmm_get_variable_weight(action->p_variable) > 0 &&
351         action->p_storage->m_usedSize == action->p_storage->m_size)
352     {
353       action->m_finish = surf_get_clock();
354       action->setState(SURF_ACTION_FAILED);
355     } else if ((action->m_remains <= 0) &&
356         (lmm_get_variable_weight(action->p_variable) > 0))
357     {
358       action->m_finish = surf_get_clock();
359       action->setState(SURF_ACTION_DONE);
360     } else if ((action->m_maxDuration != NO_MAX_DURATION) &&
361                (action->m_maxDuration <= 0))
362     {
363       action->m_finish = surf_get_clock();
364       action->setState(SURF_ACTION_DONE);
365     }
366   }
367
368   return;
369 }
370
371 xbt_dict_t Storage::parseContent(char *filename)
372 {
373   m_usedSize = 0;
374   if ((!filename) || (strcmp(filename, "") == 0))
375     return NULL;
376
377   xbt_dict_t parse_content = xbt_dict_new_homogeneous(xbt_free);
378   FILE *file = NULL;
379
380   file = surf_fopen(filename, "r");
381   xbt_assert(file != NULL, "Cannot open file '%s' (path=%s)", filename,
382               xbt_str_join(surf_path, ":"));
383
384   char *line = NULL;
385   size_t len = 0;
386   ssize_t read;
387   char path[1024];
388   sg_size_t size;
389
390
391   while ((read = xbt_getline(&line, &len, file)) != -1) {
392     if (read){
393     if(sscanf(line,"%s %llu", path, &size) == 2) {
394         m_usedSize += size;
395         sg_size_t *psize = xbt_new(sg_size_t, 1);
396         *psize = size;
397         xbt_dict_set(parse_content,path,psize,NULL);
398       } else {
399         xbt_die("Be sure of passing a good format for content file.\n");
400       }
401     }
402   }
403   free(line);
404   fclose(file);
405   return parse_content;
406 }
407
408 /************
409  * Resource *
410  ************/
411
412 Storage::Storage(StorageModelPtr model, const char* name, xbt_dict_t properties)
413 :  Resource(model, name, properties)
414 {
415   p_writeActions = xbt_dynar_new(sizeof(char *),NULL);
416 }
417
418 StorageLmm::StorageLmm(StorageModelPtr model, const char* name, xbt_dict_t properties,
419              lmm_system_t maxminSystem, double bread, double bwrite, double bconnection,
420              const char* type_id, char *content_name, char *content_type, size_t size)
421  :  Resource(model, name, properties), ResourceLmm(), Storage(model, name, properties) {
422   XBT_DEBUG("Create resource with Bconnection '%f' Bread '%f' Bwrite '%f' and Size '%lu'", bconnection, bread, bwrite, ((unsigned long)size));
423
424   p_stateCurrent = SURF_RESOURCE_ON;
425   m_usedSize = 0;
426   m_size = 0;
427
428   p_content = parseContent(content_name);
429   p_contentType = content_type;
430   p_constraint = lmm_constraint_new(maxminSystem, this, bconnection);
431   p_constraintRead  = lmm_constraint_new(maxminSystem, this, bread);
432   p_constraintWrite = lmm_constraint_new(maxminSystem, this, bwrite);
433   m_size = size;
434   p_typeId = xbt_strdup(type_id);
435 }
436
437 bool Storage::isUsed()
438 {
439   THROW_UNIMPLEMENTED;
440   return false;
441 }
442
443 void Storage::updateState(tmgr_trace_event_t /*event_type*/, double /*value*/, double /*date*/)
444 {
445   THROW_UNIMPLEMENTED;
446 }
447
448 StorageActionPtr StorageLmm::ls(const char* path)
449 {
450   StorageActionLmmPtr action = new StorageActionLmm(p_model, 0, p_stateCurrent != SURF_RESOURCE_ON, this, LS);
451
452   action->p_lsDict = NULL;
453   xbt_dict_t ls_dict = xbt_dict_new_homogeneous(xbt_free);
454
455   char* key;
456   sg_size_t size = 0;
457   xbt_dict_cursor_t cursor = NULL;
458
459   xbt_dynar_t dyn = NULL;
460   char* file = NULL;
461
462   // for each file in the storage content
463   xbt_dict_foreach(p_content,cursor,key,size){
464     // Search if file start with the prefix 'path'
465     if(xbt_str_start_with(key,path)){
466       file = &key[strlen(path)];
467
468       // Split file with '/'
469       dyn = xbt_str_split(file,"/");
470       file = xbt_dynar_get_as(dyn,0,char*);
471
472       // file
473       if(xbt_dynar_length(dyn) == 1){
474         sg_size_t *psize = xbt_new(sg_size_t, 1);
475         *psize=size;
476         xbt_dict_set(ls_dict, file, psize, NULL);
477       }
478       // Directory
479       else
480       {
481         // if directory does not exist yet in the dictionary
482         if(!xbt_dict_get_or_null(ls_dict,file))
483           xbt_dict_set(ls_dict,file,NULL,NULL);
484       }
485       xbt_dynar_free(&dyn);
486     }
487   }
488
489   action->p_lsDict = ls_dict;
490   return action;
491 }
492
493 StorageActionPtr StorageLmm::open(const char* mount, const char* path)
494 {
495   XBT_DEBUG("\tOpen file '%s'",path);
496   sg_size_t size, *psize;
497   psize = (sg_size_t*) xbt_dict_get_or_null(p_content, path);
498   // if file does not exist create an empty file
499   if(psize)
500     size = *psize;
501   else {
502         psize = xbt_new(sg_size_t,1);
503     size = 0;
504     *psize = size;
505     xbt_dict_set(p_content, path, psize, NULL);
506     XBT_DEBUG("File '%s' was not found, file created.",path);
507   }
508   surf_file_t file = xbt_new0(s_surf_file_t,1);
509   file->name = xbt_strdup(path);
510   file->size = size;
511   file->mount = xbt_strdup(mount);
512
513   StorageActionLmmPtr action = new StorageActionLmm(p_model, 0, p_stateCurrent != SURF_RESOURCE_ON, this, OPEN);
514   action->p_file = file;
515   return action;
516 }
517
518 StorageActionPtr StorageLmm::close(surf_file_t fd)
519 {
520   char *filename = fd->name;
521   XBT_DEBUG("\tClose file '%s' size '%llu'", filename, fd->size);
522   // unref write actions from storage
523   StorageActionLmmPtr write_action;
524   unsigned int i;
525   xbt_dynar_foreach(p_writeActions, i, write_action) {
526     if ((write_action->p_file) == fd) {
527       xbt_dynar_cursor_rm(p_writeActions, &i);
528       write_action->unref();
529     }
530   }
531   free(fd->name);
532   free(fd->mount);
533   xbt_free(fd);
534   StorageActionLmmPtr action = new StorageActionLmm(p_model, 0, p_stateCurrent != SURF_RESOURCE_ON, this, CLOSE);
535   return action;
536 }
537
538 StorageActionPtr StorageLmm::read(surf_file_t fd, sg_size_t size)
539 {
540   if(size > fd->size)
541     size = fd->size;
542   StorageActionLmmPtr action = new StorageActionLmm(p_model, size, p_stateCurrent != SURF_RESOURCE_ON, this, READ);
543   return action;
544 }
545
546 StorageActionPtr StorageLmm::write(surf_file_t fd, sg_size_t size)
547 {
548   char *filename = fd->name;
549   XBT_DEBUG("\tWrite file '%s' size '%llu/%llu'",filename,size,fd->size);
550
551   StorageActionLmmPtr action = new StorageActionLmm(p_model, size, p_stateCurrent != SURF_RESOURCE_ON, this, WRITE);
552   action->p_file = fd;
553
554   // If the storage is full
555   if(m_usedSize==m_size) {
556     action->setState(SURF_ACTION_FAILED);
557   }
558   return action;
559 }
560
561 void StorageLmm::rename(const char *src, const char *dest)
562 {
563   sg_size_t *psize, *new_psize;
564   psize = (sg_size_t*) xbt_dict_get_or_null(p_content,src);
565   new_psize = xbt_new(sg_size_t, 1);
566   *new_psize = *psize;
567   if (psize){// src file exists
568     xbt_dict_remove(p_content, src);
569     xbt_dict_set(p_content, dest, new_psize,NULL);
570     XBT_DEBUG("Change file name from %s to %s, size '%llu'",src, dest, *psize);
571   }
572   else
573     XBT_DEBUG("File %s doesn't exist",src);
574 }
575
576 xbt_dict_t StorageLmm::getContent()
577 {
578   /* For the moment this action has no cost, but in the future we could take in account access latency of the disk */
579   /*surf_action_t action = storage_action_execute(storage,0, LS);*/
580
581   xbt_dict_t content_dict = xbt_dict_new_homogeneous(NULL);
582   xbt_dict_cursor_t cursor = NULL;
583   char *file;
584   sg_size_t *psize;
585
586   xbt_dict_foreach(p_content, cursor, file, psize){
587     xbt_dict_set(content_dict,file,psize,NULL);
588   }
589   return content_dict;
590 }
591
592 sg_size_t StorageLmm::getSize(){
593   return m_size;
594 }
595
596 /**********
597  * Action *
598  **********/
599
600 StorageActionLmm::StorageActionLmm(ModelPtr model, double cost, bool failed, StorageLmmPtr storage, e_surf_action_storage_type_t type)
601   : Action(model, cost, failed), ActionLmm(model, cost, failed), StorageAction(model, cost, failed, storage, type) {
602   XBT_IN("(%s,%g", storage->m_name, cost);
603   p_variable = lmm_variable_new(p_model->p_maxminSystem, this, 1.0, -1.0 , 3);
604
605   // Must be less than the max bandwidth for all actions
606   lmm_expand(p_model->p_maxminSystem, storage->p_constraint, p_variable, 1.0);
607   switch(type) {
608   case OPEN:
609   case CLOSE:
610   case STAT:
611   case LS:
612     break;
613   case READ:
614     lmm_expand(p_model->p_maxminSystem, storage->p_constraintRead,
615                p_variable, 1.0);
616     break;
617   case WRITE:
618     lmm_expand(p_model->p_maxminSystem, storage->p_constraintWrite,
619                p_variable, 1.0);
620     xbt_dynar_push(storage->p_writeActions, static_cast<ActionPtr>(this));
621     break;
622   }
623   XBT_OUT();
624 }
625
626 int StorageActionLmm::unref()
627 {
628   m_refcount--;
629   if (!m_refcount) {
630     xbt_swag_remove(static_cast<ActionPtr>(this), p_stateSet);
631     if (p_variable)
632       lmm_variable_free(p_model->p_maxminSystem, p_variable);
633 #ifdef HAVE_TRACING
634     xbt_free(p_category);
635 #endif
636     delete this;
637     return 1;
638   }
639   return 0;
640 }
641
642 void StorageActionLmm::cancel()
643 {
644   setState(SURF_ACTION_FAILED);
645   return;
646 }
647
648 void StorageActionLmm::suspend()
649 {
650   XBT_IN("(%p)", this);
651   if (m_suspended != 2) {
652     lmm_update_variable_weight(p_model->p_maxminSystem,
653                                p_variable,
654                                0.0);
655     m_suspended = 1;
656   }
657   XBT_OUT();
658 }
659
660 void StorageActionLmm::resume()
661 {
662   THROW_UNIMPLEMENTED;
663 }
664
665 bool StorageActionLmm::isSuspended()
666 {
667   return m_suspended == 1;
668 }
669
670 void StorageActionLmm::setMaxDuration(double /*duration*/)
671 {
672   THROW_UNIMPLEMENTED;
673 }
674
675 void StorageActionLmm::setPriority(double /*priority*/)
676 {
677   THROW_UNIMPLEMENTED;
678 }
679