Logo AND Algorithmique Numérique Distribuée

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