Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add content type to storage structure
authorsuter <frederic.suter@cc.in2p3.fr>
Wed, 10 Jul 2013 12:19:26 +0000 (14:19 +0200)
committersuter <frederic.suter@cc.in2p3.fr>
Wed, 10 Jul 2013 12:20:44 +0000 (14:20 +0200)
describe the info to bring up to MSG

src/surf/storage_private.h

index 9979e03..8f8aad9 100644 (file)
@@ -22,10 +22,18 @@ typedef struct s_mount {
   char *name;
 } s_mount_t, *mount_t;
 
   char *name;
 } s_mount_t, *mount_t;
 
+typedef struct s_file_info {
+  size_t size;
+  char* mount_point;
+  char* storageId;
+  char* content_type;
+} s_file_info_t, *surf_file_info_t;
+
 typedef struct surf_file {
   char *name;
   char *mount;
   size_t size;
 typedef struct surf_file {
   char *name;
   char *mount;
   size_t size;
+  surf_file_info_t info;
 } s_surf_file_t;
 
 typedef struct surf_storage {
 } s_surf_file_t;
 
 typedef struct surf_storage {
@@ -35,6 +43,7 @@ typedef struct surf_storage {
   lmm_constraint_t constraint_write;    /* Constraint for maximum write bandwidth*/
   lmm_constraint_t constraint_read;     /* Constraint for maximum write bandwidth*/
   xbt_dict_t content; /* char * -> s_surf_file_t */
   lmm_constraint_t constraint_write;    /* Constraint for maximum write bandwidth*/
   lmm_constraint_t constraint_read;     /* Constraint for maximum write bandwidth*/
   xbt_dict_t content; /* char * -> s_surf_file_t */
+  char* content_type;
   size_t size;
   size_t used_size;
   char *type_id;
   size_t size;
   size_t used_size;
   char *type_id;