Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7ebb6f1f2165cb407047f0e68bcf80a5de8fc891
[simgrid.git] / src / simix / smx_io.c
1 /* Copyright (c) 2007, 2008, 2009, 2010. 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 "smx_private.h"
8 #include "surf/storage_private.h"
9 #include "xbt/sysdep.h"
10 #include "xbt/log.h"
11 #include "xbt/dict.h"
12 #include "mc/mc.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_io, simix,
15                                 "Logging specific to SIMIX (io)");
16
17
18 //SIMIX FILE READ
19 void SIMIX_pre_file_read(smx_simcall_t simcall, size_t size,
20                         smx_file_t fd)
21 {
22   smx_action_t action = SIMIX_file_read(simcall->issuer, size, fd);
23   xbt_fifo_push(action->simcalls, simcall);
24   simcall->issuer->waiting_action = action;
25 }
26
27 smx_action_t SIMIX_file_read(smx_process_t process, size_t size,
28                              smx_file_t fd)
29 {
30   smx_action_t action;
31   smx_host_t host = process->smx_host;
32
33   /* check if the host is active */
34   if (surf_workstation_model->extension.
35       workstation.get_state(host) != SURF_RESOURCE_ON) {
36     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
37            sg_host_name(host));
38   }
39
40   action = xbt_mallocator_get(simix_global->action_mallocator);
41   action->type = SIMIX_ACTION_IO;
42   action->name = NULL;
43 #ifdef HAVE_TRACING
44   action->category = NULL;
45 #endif
46
47   action->io.host = host;
48   action->io.surf_io =
49       surf_workstation_model->extension.workstation.read(host, size,
50                                                          fd->surf_file);
51
52   surf_workstation_model->action_data_set(action->io.surf_io, action);
53   XBT_DEBUG("Create io action %p", action);
54
55   return action;
56 }
57
58 //SIMIX FILE WRITE
59 void SIMIX_pre_file_write(smx_simcall_t simcall, size_t size,
60                           smx_file_t fd)
61 {
62   smx_action_t action = SIMIX_file_write(simcall->issuer, size, fd);
63   xbt_fifo_push(action->simcalls, simcall);
64   simcall->issuer->waiting_action = action;
65 }
66
67 smx_action_t SIMIX_file_write(smx_process_t process,
68                               size_t size, smx_file_t fd)
69 {
70   smx_action_t action;
71   smx_host_t host = process->smx_host;
72
73   /* check if the host is active */
74   if (surf_workstation_model->extension.
75       workstation.get_state(host) != SURF_RESOURCE_ON) {
76     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
77            sg_host_name(host));
78   }
79
80   action = xbt_mallocator_get(simix_global->action_mallocator);
81   action->type = SIMIX_ACTION_IO;
82   action->name = NULL;
83 #ifdef HAVE_TRACING
84   action->category = NULL;
85 #endif
86
87   action->io.host = host;
88   action->io.surf_io =
89       surf_workstation_model->extension.workstation.write(host, size,
90                                                           fd->surf_file);
91
92   surf_workstation_model->action_data_set(action->io.surf_io, action);
93   XBT_DEBUG("Create io action %p", action);
94
95   return action;
96 }
97
98 //SIMIX FILE OPEN
99 void SIMIX_pre_file_open(smx_simcall_t simcall, const char* mount,
100                          const char* path)
101 {
102   smx_action_t action = SIMIX_file_open(simcall->issuer, mount, path);
103   xbt_fifo_push(action->simcalls, simcall);
104   simcall->issuer->waiting_action = action;
105 }
106
107 smx_action_t SIMIX_file_open(smx_process_t process ,const char* mount,
108                              const char* path)
109 {
110   smx_action_t action;
111   smx_host_t host = process->smx_host;
112
113   /* check if the host is active */
114   if (surf_workstation_model->extension.
115       workstation.get_state(host) != SURF_RESOURCE_ON) {
116     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
117            sg_host_name(host));
118   }
119
120   action = xbt_mallocator_get(simix_global->action_mallocator);
121   action->type = SIMIX_ACTION_IO;
122   action->name = NULL;
123 #ifdef HAVE_TRACING
124   action->category = NULL;
125 #endif
126
127   action->io.host = host;
128   action->io.surf_io =
129       surf_workstation_model->extension.workstation.open(host, mount, path);
130
131   surf_workstation_model->action_data_set(action->io.surf_io, action);
132   XBT_DEBUG("Create io action %p", action);
133
134   return action;
135 }
136
137 //SIMIX FILE CLOSE
138 void SIMIX_pre_file_close(smx_simcall_t simcall, smx_file_t fd)
139 {
140   smx_action_t action = SIMIX_file_close(simcall->issuer, fd);
141   xbt_fifo_push(action->simcalls, simcall);
142   simcall->issuer->waiting_action = action;
143 }
144
145 smx_action_t SIMIX_file_close(smx_process_t process, smx_file_t fd)
146 {
147   smx_action_t action;
148   smx_host_t host = process->smx_host;
149
150   /* check if the host is active */
151   if (surf_workstation_model->extension.
152       workstation.get_state(host) != SURF_RESOURCE_ON) {
153     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
154            sg_host_name(host));
155   }
156
157   action = xbt_mallocator_get(simix_global->action_mallocator);
158   action->type = SIMIX_ACTION_IO;
159   action->name = NULL;
160 #ifdef HAVE_TRACING
161   action->category = NULL;
162 #endif
163
164   action->io.host = host;
165   action->io.surf_io = surf_workstation_model->extension.workstation.close(host, fd->surf_file);
166
167   surf_workstation_model->action_data_set(action->io.surf_io, action);
168   XBT_DEBUG("Create io action %p", action);
169
170   return action;
171 }
172
173
174 //SIMIX FILE UNLINK
175 int SIMIX_pre_file_unlink(smx_simcall_t simcall, smx_file_t fd)
176 {
177   return SIMIX_file_unlink(simcall->issuer, fd);
178 }
179
180 int SIMIX_file_unlink(smx_process_t process, smx_file_t fd)
181 {
182   smx_host_t host = process->smx_host;
183   /* check if the host is active */
184   if (surf_workstation_model->extension.
185       workstation.get_state(host) != SURF_RESOURCE_ON) {
186     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
187            sg_host_name(host));
188   }
189
190   if (surf_workstation_model->extension.workstation.unlink(host, fd->surf_file)){
191     fd->surf_file = NULL;
192     return 1;
193   } else
194     return 0;
195 }
196
197 //SIMIX FILE LS
198 void SIMIX_pre_file_ls(smx_simcall_t simcall,
199                        const char* mount, const char* path)
200 {
201   smx_action_t action = SIMIX_file_ls(simcall->issuer, mount, path);
202   xbt_fifo_push(action->simcalls, simcall);
203   simcall->issuer->waiting_action = action;
204 }
205 smx_action_t SIMIX_file_ls(smx_process_t process, const char* mount, const char *path)
206 {
207   smx_action_t action;
208   smx_host_t host = process->smx_host;
209   /* check if the host is active */
210   if (surf_workstation_model->extension.workstation.get_state(host) != SURF_RESOURCE_ON) {
211     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
212            sg_host_name(host));
213   }
214
215   action = xbt_mallocator_get(simix_global->action_mallocator);
216   action->type = SIMIX_ACTION_IO;
217   action->name = NULL;
218 #ifdef HAVE_TRACING
219   action->category = NULL;
220 #endif
221
222   action->io.host = host;
223   action->io.surf_io = surf_workstation_model->extension.workstation.ls(host,mount,path);
224
225   surf_workstation_model->action_data_set(action->io.surf_io, action);
226   XBT_DEBUG("Create io action %p", action);
227   return action;
228 }
229
230 size_t SIMIX_pre_file_get_size(smx_simcall_t simcall, smx_file_t fd)
231 {
232   return SIMIX_file_get_size(simcall->issuer, fd);
233 }
234
235 size_t SIMIX_file_get_size(smx_process_t process, smx_file_t fd)
236 {
237   smx_host_t host = process->smx_host;
238   return  surf_workstation_model->extension.workstation.get_size(host,
239       fd->surf_file);
240 }
241
242 size_t SIMIX_pre_storage_get_free_size(smx_simcall_t simcall, smx_storage_t storage)
243 {
244   return SIMIX_storage_get_free_size(simcall->issuer, storage);
245 }
246
247 size_t SIMIX_storage_get_free_size(smx_process_t process, smx_storage_t storage)
248 {
249   smx_host_t host = process->smx_host;
250   return  surf_workstation_model->extension.workstation.get_free_size(host,
251       storage->surf_storage);
252 }
253
254
255 void SIMIX_post_io(smx_action_t action)
256 {
257   xbt_fifo_item_t i;
258   smx_simcall_t simcall;
259 //  char* key;
260 //  xbt_dict_cursor_t cursor = NULL;
261 //  s_file_stat_t *dst = NULL;
262 //  s_file_stat_t *src = NULL;
263
264   xbt_fifo_foreach(action->simcalls,i,simcall,smx_simcall_t) {
265     switch (simcall->call) {
266     case SIMCALL_FILE_OPEN:;
267       smx_file_t tmp = xbt_new(s_smx_file_t,1);
268       tmp->surf_file = (action->io.surf_io)->file;
269       simcall_file_open__set__result(simcall, tmp);
270       break;
271
272     case SIMCALL_FILE_CLOSE:
273       xbt_free(simcall_file_close__get__fd(simcall));
274       simcall_file_close__set__result(simcall, 0);
275       break;
276
277     case SIMCALL_FILE_WRITE:
278       simcall_file_write__set__result(simcall, (action->io.surf_io)->cost);
279       break;
280
281     case SIMCALL_FILE_READ:
282       simcall_file_read__set__result(simcall, (action->io.surf_io)->cost);
283       break;
284
285     case SIMCALL_FILE_LS:
286 //      xbt_dict_foreach((action->io.surf_io)->ls_dict,cursor,key, src){
287 //        // if there is a stat we have to duplicate it
288 //        if(src){
289 //          dst = xbt_new0(s_file_stat_t,1);
290 //          file_stat_copy(src, dst);
291 //          xbt_dict_set((action->io.surf_io)->ls_dict,key,dst,xbt_free);
292 //        }
293 //      }
294       simcall_file_ls__set__result(simcall, (action->io.surf_io)->ls_dict);
295       break;
296     default:
297       break;
298     }
299   }
300
301   switch (surf_workstation_model->action_state_get(action->io.surf_io)) {
302
303     case SURF_ACTION_FAILED:
304       action->state = SIMIX_FAILED;
305       break;
306
307     case SURF_ACTION_DONE:
308       action->state = SIMIX_DONE;
309       break;
310
311     default:
312       THROW_IMPOSSIBLE;
313       break;
314   }
315
316   SIMIX_io_finish(action);
317 }
318
319 void SIMIX_io_destroy(smx_action_t action)
320 {
321   XBT_DEBUG("Destroy action %p", action);
322   if (action->io.surf_io)
323     action->io.surf_io->model_type->action_unref(action->io.surf_io);
324   xbt_mallocator_release(simix_global->action_mallocator, action);
325 }
326
327 void SIMIX_io_finish(smx_action_t action)
328 {
329   xbt_fifo_item_t item;
330   smx_simcall_t simcall;
331
332   xbt_fifo_foreach(action->simcalls, item, simcall, smx_simcall_t) {
333
334     switch (action->state) {
335
336       case SIMIX_DONE:
337         /* do nothing, action done */
338         break;
339
340       case SIMIX_FAILED:
341         SMX_EXCEPTION(simcall->issuer, io_error, 0, "IO failed");
342         break;
343
344       case SIMIX_CANCELED:
345         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
346         break;
347
348       default:
349         xbt_die("Internal error in SIMIX_io_finish: unexpected action state %d",
350             (int)action->state);
351     }
352
353     if (surf_workstation_model->extension.
354         workstation.get_state(simcall->issuer->smx_host) != SURF_RESOURCE_ON) {
355       simcall->issuer->context->iwannadie = 1;
356     }
357
358     simcall->issuer->waiting_action = NULL;
359     SIMIX_simcall_answer(simcall);
360   }
361
362   /* We no longer need it */
363   SIMIX_io_destroy(action);
364 }