Logo AND Algorithmique Numérique Distribuée

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