Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
31aa2f6c71d1ba1f07ee70c21751d348e1b9888c
[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)
19 {
20   smx_action_t action = SIMIX_file_read(simcall->issuer,
21       simcall->file_read.ptr,
22       simcall->file_read.size,
23       simcall->file_read.nmemb,
24       simcall->file_read.stream);
25   xbt_fifo_push(action->simcalls, simcall);
26   simcall->issuer->waiting_action = action;
27 }
28
29 smx_action_t SIMIX_file_read(smx_process_t process, void* ptr, size_t size, size_t nmemb, smx_file_t stream)
30 {
31   smx_action_t action;
32   smx_host_t host = process->smx_host;
33
34   /* check if the host is active */
35   if (surf_workstation_model->extension.
36       workstation.get_state(host->host) != SURF_RESOURCE_ON) {
37     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
38            host->name);
39   }
40
41   action = xbt_mallocator_get(simix_global->action_mallocator);
42   action->type = SIMIX_ACTION_IO;
43   action->name = NULL;
44 #ifdef HAVE_TRACING
45   action->category = NULL;
46 #endif
47
48   action->io.host = host;
49   action->io.surf_io = surf_workstation_model->extension.workstation.read(host->host, ptr, size, nmemb, stream->surf_file),
50
51   surf_workstation_model->action_data_set(action->io.surf_io, action);
52   XBT_DEBUG("Create io action %p", action);
53
54   return action;
55 }
56
57 //SIMIX FILE WRITE
58 void SIMIX_pre_file_write(smx_simcall_t simcall)
59 {
60   smx_action_t action = SIMIX_file_write(simcall->issuer,
61       simcall->file_write.ptr,
62       simcall->file_write.size,
63       simcall->file_write.nmemb,
64       simcall->file_write.stream);
65   xbt_fifo_push(action->simcalls, simcall);
66   simcall->issuer->waiting_action = action;
67 }
68
69 smx_action_t SIMIX_file_write(smx_process_t process, const void* ptr, size_t size, size_t nmemb, smx_file_t stream)
70 {
71   smx_action_t action;
72   smx_host_t host = process->smx_host;
73
74   /* check if the host is active */
75   if (surf_workstation_model->extension.
76       workstation.get_state(host->host) != SURF_RESOURCE_ON) {
77     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
78            host->name);
79   }
80
81   action = xbt_mallocator_get(simix_global->action_mallocator);
82   action->type = SIMIX_ACTION_IO;
83   action->name = NULL;
84 #ifdef HAVE_TRACING
85   action->category = NULL;
86 #endif
87
88   action->io.host = host;
89   action->io.surf_io = surf_workstation_model->extension.workstation.write(host->host, ptr, size, nmemb, stream->surf_file);
90
91   surf_workstation_model->action_data_set(action->io.surf_io, action);
92   XBT_DEBUG("Create io action %p", action);
93
94   return action;
95 }
96
97 //SIMIX FILE OPEN
98 void SIMIX_pre_file_open(smx_simcall_t simcall)
99 {
100   smx_action_t action = SIMIX_file_open(simcall->issuer,
101       simcall->file_open.mount,
102       simcall->file_open.path,
103       simcall->file_open.mode);
104   xbt_fifo_push(action->simcalls, simcall);
105   simcall->issuer->waiting_action = action;
106 }
107
108 smx_action_t SIMIX_file_open(smx_process_t process ,const char* mount, const char* path, const char* mode)
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->host) != SURF_RESOURCE_ON) {
116     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
117            host->name);
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 = surf_workstation_model->extension.workstation.open(host->host, mount, path, mode);
129
130   surf_workstation_model->action_data_set(action->io.surf_io, action);
131   XBT_DEBUG("Create io action %p", action);
132
133   return action;
134 }
135
136 //SIMIX FILE CLOSE
137 void SIMIX_pre_file_close(smx_simcall_t simcall)
138 {
139   smx_action_t action = SIMIX_file_close(simcall->issuer,
140       simcall->file_close.fp);
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 fp)
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->host) != SURF_RESOURCE_ON) {
153     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
154            host->name);
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->host, fp->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 //SIMIX FILE STAT
174 void SIMIX_pre_file_stat(smx_simcall_t simcall)
175 {
176   smx_action_t action = SIMIX_file_stat(simcall->issuer,
177       simcall->file_stat.fd,
178       simcall->file_stat.buf);
179   xbt_fifo_push(action->simcalls, simcall);
180   simcall->issuer->waiting_action = action;
181 }
182
183 smx_action_t SIMIX_file_stat(smx_process_t process, smx_file_t fd, s_file_stat_t buf)
184 {
185   smx_action_t action;
186   smx_host_t host = process->smx_host;
187   /* check if the host is active */
188   if (surf_workstation_model->extension.
189       workstation.get_state(host->host) != SURF_RESOURCE_ON) {
190     THROWF(host_error, 0, "Host %s failed, you cannot call this function",
191            host->name);
192   }
193
194   action = xbt_mallocator_get(simix_global->action_mallocator);
195   action->type = SIMIX_ACTION_IO;
196   action->name = NULL;
197 #ifdef HAVE_TRACING
198   action->category = NULL;
199 #endif
200
201   action->io.host = host;
202   action->io.surf_io = surf_workstation_model->extension.workstation.stat(host->host, fd->surf_file);
203
204   surf_workstation_model->action_data_set(action->io.surf_io, action);
205   XBT_DEBUG("Create io action %p", action);
206
207   return action;
208 }
209
210 void SIMIX_post_io(smx_action_t action)
211 {
212   xbt_fifo_item_t i;
213   smx_simcall_t simcall;
214
215   xbt_fifo_foreach(action->simcalls,i,simcall,smx_simcall_t) {
216     switch (simcall->call) {
217     case SIMCALL_FILE_OPEN:
218       simcall->file_open.result = xbt_new(s_smx_file_t,1);
219       simcall->file_open.result->surf_file = (action->io.surf_io)->file;
220       break;
221     case SIMCALL_FILE_CLOSE:
222       xbt_free(simcall->file_close.fp);
223       simcall->file_close.result = 0;
224       break;
225     case SIMCALL_FILE_WRITE:
226       simcall->file_write.result = (action->io.surf_io)->cost;
227       break;
228     case SIMCALL_FILE_READ:
229       simcall->file_read.result = (action->io.surf_io)->cost;
230       break;
231     case SIMCALL_FILE_STAT:
232       simcall->file_stat.result = 0;
233       s_file_stat_t *dst = &(simcall->file_stat.buf);
234       s_file_stat_t *src = &((action->io.surf_io)->stat);
235       file_stat_copy(src,dst);
236       break;
237     default:
238       break;
239     }
240   }
241
242   switch (surf_workstation_model->action_state_get(action->io.surf_io)) {
243
244     case SURF_ACTION_FAILED:
245       action->state = SIMIX_FAILED;
246       break;
247
248     case SURF_ACTION_DONE:
249       action->state = SIMIX_DONE;
250       break;
251
252     default:
253       THROW_IMPOSSIBLE;
254       break;
255   }
256
257   SIMIX_io_finish(action);
258 }
259
260 void SIMIX_io_destroy(smx_action_t action)
261 {
262   XBT_DEBUG("Destroy action %p", action);
263   if (action->io.surf_io)
264     action->io.surf_io->model_type->action_unref(action->io.surf_io);
265   xbt_mallocator_release(simix_global->action_mallocator, action);
266 }
267
268 void SIMIX_io_finish(smx_action_t action)
269 {
270   xbt_fifo_item_t item;
271   smx_simcall_t simcall;
272
273   xbt_fifo_foreach(action->simcalls, item, simcall, smx_simcall_t) {
274
275     switch (action->state) {
276
277       case SIMIX_DONE:
278         /* do nothing, action done */
279         break;
280
281       case SIMIX_FAILED:
282         SMX_EXCEPTION(simcall->issuer, io_error, 0, "IO failed");
283         break;
284
285       case SIMIX_CANCELED:
286         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
287         break;
288
289       default:
290         xbt_die("Internal error in SIMIX_io_finish: unexpected action state %d",
291             (int)action->state);
292     }
293
294     if (surf_workstation_model->extension.
295         workstation.get_state(simcall->issuer->smx_host->host) != SURF_RESOURCE_ON) {
296       simcall->issuer->context->iwannadie = 1;
297     }
298
299     simcall->issuer->waiting_action = NULL;
300     SIMIX_simcall_answer(simcall);
301   }
302
303   /* We no longer need it */
304   SIMIX_io_destroy(action);
305 }