X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/582b6f00f1f41d334dbc865dd0b993a7e501f3ba..9603bfd3cc9171236c3f77a23e40b62036ea4f06:/src/surf/storage_private.h diff --git a/src/surf/storage_private.h b/src/surf/storage_private.h index 63e9d2c8e4..1d896f5bac 100644 --- a/src/surf/storage_private.h +++ b/src/surf/storage_private.h @@ -1,18 +1,18 @@ -/* - * storage_private.h - * - * Created on: 2 mars 2012 - * Author: navarro - */ +/* Copyright (c) 2009, 2013. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef STORAGE_PRIVATE_H_ #define STORAGE_PRIVATE_H_ typedef struct s_storage_type { char *model; - xbt_dict_t content; + char *content; char *type_id; xbt_dict_t properties; + size_t size; } s_storage_type_t, *storage_type_t; typedef struct s_mount { @@ -20,32 +20,32 @@ typedef struct s_mount { char *name; } s_mount_t, *mount_t; -typedef struct s_content { - char *user_rights; - char *user; - char *group; - char *date; - char *time; - size_t size; -} s_content_t, *content_t; - - typedef struct surf_file { char *name; - content_t content; + char *storage; + size_t size; } s_surf_file_t; typedef struct storage { - s_surf_resource_t generic_resource; /*< Structure with generic data. Needed at begin to interate with SURF */ + s_surf_resource_t generic_resource; /*< Structure with generic data. Needed at begin to interact with SURF */ e_surf_resource_state_t state_current; /*< STORAGE current state (ON or OFF) */ - lmm_constraint_t constraint; /* Constraint for maximum bandwidth from connexion */ + lmm_constraint_t constraint; /* Constraint for maximum bandwidth from connection */ lmm_constraint_t constraint_write; /* Constraint for maximum write bandwidth*/ - lmm_constraint_t constraint_read; /* Constraint for maximum write bandwidth*/ + lmm_constraint_t constraint_read; /* Constraint for maximum write bandwidth*/ + xbt_dict_t content; /* char * -> s_surf_file_t */ + size_t size; + size_t used_size; + xbt_dynar_t write_actions; } s_storage_t, *storage_t; +typedef enum { + READ=0, WRITE, STAT, OPEN, CLOSE, LS +} e_surf_action_storage_type_t; + typedef struct surf_action_storage { s_surf_action_lmm_t generic_lmm_action; - int index_heap; + e_surf_action_storage_type_t type; + void *storage; } s_surf_action_storage_t, *surf_action_storage_t; #endif /* STORAGE_PRIVATE_H_ */