Logo AND Algorithmique Numérique Distribuée

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