Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ns3: no need for 2 postparse callbacks
[simgrid.git] / src / surf / storage_interface.cpp
1 /* Copyright (c) 2013-2015. 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 "storage_interface.hpp"
8 #include "surf_private.h"
9 #include "xbt/file.h" /* xbt_getline */
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_storage, surf,
12                                 "Logging specific to the SURF storage module");
13
14 xbt_lib_t file_lib;
15 xbt_lib_t storage_lib;
16 int ROUTING_STORAGE_LEVEL;      //Routing for storagelevel
17 int ROUTING_STORAGE_HOST_LEVEL;
18 int SURF_STORAGE_LEVEL;
19 xbt_lib_t storage_type_lib;
20 int ROUTING_STORAGE_TYPE_LEVEL; //Routing for storage_type level
21 simgrid::surf::StorageModel *surf_storage_model = NULL;
22
23 namespace simgrid {
24 namespace surf {
25
26 /*************
27  * Callbacks *
28  *************/
29
30 simgrid::xbt::signal<void(Storage*)> storageCreatedCallbacks;
31 simgrid::xbt::signal<void(Storage*)> storageDestructedCallbacks;
32 simgrid::xbt::signal<void(Storage*, int, int)> storageStateChangedCallbacks; // signature: wasOn, isOn
33 simgrid::xbt::signal<void(StorageAction*, Action::State, Action::State)> storageActionStateChangedCallbacks;
34
35 /*********
36  * Model *
37  *********/
38
39 StorageModel::StorageModel()
40   : Model()
41 {
42   p_storageList = NULL;
43 }
44
45 StorageModel::~StorageModel(){
46   lmm_system_free(maxminSystem_);
47
48   surf_storage_model = NULL;
49
50   xbt_dynar_free(&p_storageList);
51 }
52
53 /************
54  * Resource *
55  ************/
56
57 Storage::Storage(Model *model, const char *name, xbt_dict_t props,
58                  const char* type_id, const char *content_name, const char *content_type,
59                  sg_size_t size)
60  : Resource(model, name)
61  , PropertyHolder(props)
62  , p_contentType(xbt_strdup(content_type))
63  , m_size(size), m_usedSize(0)
64  , p_typeId(xbt_strdup(type_id))
65  , p_writeActions(xbt_dynar_new(sizeof(Action*),NULL))
66 {
67   p_content = parseContent(content_name);
68   turnOn();
69 }
70
71 Storage::Storage(Model *model, const char *name, xbt_dict_t props,
72                  lmm_system_t maxminSystem, double bread, double bwrite,
73                  double bconnection, const char* type_id, const char *content_name,
74                  const char *content_type, sg_size_t size, const char *attach)
75  : Resource(model, name, lmm_constraint_new(maxminSystem, this, bconnection))
76  , PropertyHolder(props)
77  , p_contentType(xbt_strdup(content_type))
78  , m_size(size), m_usedSize(0)
79  , p_typeId(xbt_strdup(type_id))
80  , p_writeActions(xbt_dynar_new(sizeof(Action*),NULL))
81 {
82   p_content = parseContent(content_name);
83   p_attach = xbt_strdup(attach);
84   turnOn();
85   XBT_DEBUG("Create resource with Bconnection '%f' Bread '%f' Bwrite '%f' and Size '%llu'", bconnection, bread, bwrite, size);
86   p_constraintRead  = lmm_constraint_new(maxminSystem, this, bread);
87   p_constraintWrite = lmm_constraint_new(maxminSystem, this, bwrite);
88 }
89
90 Storage::~Storage(){
91   storageDestructedCallbacks(this);
92   xbt_dict_free(&p_content);
93   xbt_dynar_free(&p_writeActions);
94   free(p_typeId);
95   free(p_contentType);
96   free(p_attach);
97 }
98
99 xbt_dict_t Storage::parseContent(const char *filename)
100 {
101   m_usedSize = 0;
102   if ((!filename) || (strcmp(filename, "") == 0))
103     return NULL;
104
105   xbt_dict_t parse_content = xbt_dict_new_homogeneous(xbt_free_f);
106
107   FILE *file =  surf_fopen(filename, "r");
108   xbt_assert(file, "Cannot open file '%s' (path=%s)", filename, xbt_str_join(surf_path, ":"));
109
110   char *line = NULL;
111   size_t len = 0;
112   ssize_t read;
113   char path[1024];
114   sg_size_t size;
115
116   while ((read = xbt_getline(&line, &len, file)) != -1) {
117     if (read){
118       xbt_assert(sscanf(line,"%s %llu", path, &size) == 2, "Parse error in %s: %s",filename,line);
119
120       m_usedSize += size;
121       sg_size_t *psize = xbt_new(sg_size_t, 1);
122       *psize = size;
123       xbt_dict_set(parse_content,path,psize,NULL);
124     }
125   }
126   free(line);
127   fclose(file);
128   return parse_content;
129 }
130
131 bool Storage::isUsed()
132 {
133   THROW_UNIMPLEMENTED;
134   return false;
135 }
136
137 void Storage::apply_event(tmgr_trace_iterator_t /*event*/, double /*value*/)
138 {
139   THROW_UNIMPLEMENTED;
140 }
141
142 void Storage::turnOn() {
143   if (isOff()) {
144     Resource::turnOn();
145     storageStateChangedCallbacks(this, 0, 1);
146   }
147 }
148 void Storage::turnOff() {
149   if (isOn()) {
150     Resource::turnOff();
151     storageStateChangedCallbacks(this, 1, 0);
152   }
153 }
154
155 xbt_dict_t Storage::getContent()
156 {
157   /* For the moment this action has no cost, but in the future we could take in account access latency of the disk */
158
159   xbt_dict_t content_dict = xbt_dict_new_homogeneous(NULL);
160   xbt_dict_cursor_t cursor = NULL;
161   char *file;
162   sg_size_t *psize;
163
164   xbt_dict_foreach(p_content, cursor, file, psize){
165     xbt_dict_set(content_dict,file,psize,NULL);
166   }
167   return content_dict;
168 }
169
170 sg_size_t Storage::getSize(){
171   return m_size;
172 }
173
174 sg_size_t Storage::getFreeSize(){
175   return m_size - m_usedSize;
176 }
177
178 sg_size_t Storage::getUsedSize(){
179   return m_usedSize;
180 }
181
182 /**********
183  * Action *
184  **********/
185 StorageAction::StorageAction(Model *model, double cost, bool failed,
186                              Storage *storage, e_surf_action_storage_type_t type)
187 : Action(model, cost, failed)
188 , m_type(type), p_storage(storage), p_file(NULL){
189   progress = 0;
190 };
191
192 StorageAction::StorageAction(Model *model, double cost, bool failed, lmm_variable_t var,
193                              Storage *storage, e_surf_action_storage_type_t type)
194   : Action(model, cost, failed, var)
195   , m_type(type), p_storage(storage), p_file(NULL){
196   progress = 0;
197 }
198
199 void StorageAction::setState(Action::State state){
200   Action::State old = getState();
201   Action::setState(state);
202   storageActionStateChangedCallbacks(this, old, state);
203 }
204
205 }
206 }