Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sanitize surf API: s/shareResources/next_occuring_event/
[simgrid.git] / src / surf / surf_c_bindings.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 "host_interface.hpp"
8 #include "surf_interface.hpp"
9 #include "network_interface.hpp"
10 #include "surf_routing_cluster.hpp"
11 #include "src/instr/instr_private.h"
12 #include "plugins/energy.hpp"
13 #include "virtual_machine.hpp"
14
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_kernel);
16
17 /*********
18  * TOOLS *
19  *********/
20
21 static simgrid::surf::Host *get_casted_host(sg_host_t host){ //FIXME: killme
22   return host->extension<simgrid::surf::Host>();
23 }
24
25 static simgrid::surf::VirtualMachine *get_casted_vm(sg_host_t host){
26   return static_cast<simgrid::surf::VirtualMachine*>(host->extension<simgrid::surf::Host>());
27 }
28
29 extern double NOW;
30
31 void surf_presolve(void)
32 {
33   double next_event_date = -1.0;
34   tmgr_trace_iterator_t event = NULL;
35   double value = -1.0;
36   simgrid::surf::Resource *resource = NULL;
37   simgrid::surf::Model *model = NULL;
38   unsigned int iter;
39
40   XBT_DEBUG ("Consume all trace events occurring before the starting time.");
41   while ((next_event_date = future_evt_set->next_date()) != -1.0) {
42     if (next_event_date > NOW)
43       break;
44
45     while ((event = future_evt_set->pop_leq(next_event_date, &value, &resource))) {
46       if (value >= 0){
47         resource->updateState(event, value);
48       }
49     }
50   }
51
52   XBT_DEBUG ("Set every models in the right state by updating them to 0.");
53   xbt_dynar_foreach(all_existing_models, iter, model)
54       model->updateActionsState(NOW, 0.0);
55 }
56
57 double surf_solve(double max_date)
58 {
59   double time_delta = -1.0; /* duration */
60   double next_event_date = -1.0;
61   double model_next_action_end = -1.0;
62   double value = -1.0;
63   simgrid::surf::Resource *resource = NULL;
64   simgrid::surf::Model *model = NULL;
65   tmgr_trace_iterator_t event = NULL;
66   unsigned int iter;
67
68   if(!host_that_restart)
69     host_that_restart = xbt_dynar_new(sizeof(char*), NULL);
70
71   if (max_date > 0.0) {
72     xbt_assert(max_date > NOW,"You asked to simulate up to %f, but that's in the past already", max_date);
73
74     time_delta = max_date - NOW;
75   }
76
77   /* Physical models MUST be resolved first */
78   XBT_DEBUG("Looking for next event in physical models");
79   double next_event_phy = surf_host_model->next_occuring_event(NOW);
80   if ((time_delta < 0.0 || next_event_phy < time_delta) && next_event_phy >= 0.0) {
81     time_delta = next_event_phy;
82   }
83   if (surf_vm_model != NULL) {
84     XBT_DEBUG("Looking for next event in virtual models");
85     double next_event_virt = surf_vm_model->next_occuring_event(NOW);
86     if ((time_delta < 0.0 || next_event_virt < time_delta) && next_event_virt >= 0.0)
87       time_delta = next_event_virt;
88   }
89
90   XBT_DEBUG("Min for resources (remember that NS3 don't update that value): %f", time_delta);
91
92   XBT_DEBUG("Looking for next trace event");
93
94   while (1) { // Handle next occurring events until none remains
95     next_event_date = future_evt_set->next_date();
96     XBT_DEBUG("Next TRACE event: %f", next_event_date);
97
98     if(! surf_network_model->next_occuring_event_isIdempotent()){ // NS3, I see you
99       if (next_event_date!=-1.0 && time_delta!=-1.0) {
100         time_delta = MIN(next_event_date - NOW, time_delta);
101       } else {
102         time_delta = MAX(next_event_date - NOW, time_delta); // Get the positive component
103       }
104
105       XBT_DEBUG("Run the NS3 network at most %fs", time_delta);
106       // run until min or next flow
107       model_next_action_end = surf_network_model->next_occuring_event(time_delta);
108
109       XBT_DEBUG("Min for network : %f", model_next_action_end);
110       if(model_next_action_end>=0.0)
111         time_delta = model_next_action_end;
112     }
113
114     if (next_event_date < 0.0) {
115       XBT_DEBUG("no next TRACE event. Stop searching for it");
116       break;
117     }
118
119     if ((time_delta == -1.0) || (next_event_date > NOW + time_delta))
120       break; // next event occurs after the next resource change, bail out
121
122     XBT_DEBUG("Updating models (min = %g, NOW = %g, next_event_date = %g)", time_delta, NOW, next_event_date);
123
124     while ((event = future_evt_set->pop_leq(next_event_date, &value, &resource))) {
125       if (resource->isUsed() || xbt_dict_get_or_null(watched_hosts_lib, resource->getName())) {
126         time_delta = next_event_date - NOW;
127         XBT_DEBUG("This event will modify model state. Next event set to %f", time_delta);
128       }
129       // FIXME: I'm too lame to update NOW live, so I change it and restore it so that the real update with surf_min will work
130       double round_start = NOW;
131       NOW = next_event_date;
132       /* update state of the corresponding resource to the new value. Does not touch lmm.
133          It will be modified if needed when updating actions */
134       XBT_DEBUG("Calling update_resource_state for resource %s", resource->getName());
135       resource->updateState(event, value);
136       NOW = round_start;
137     }
138   }
139
140   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
141    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
142    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
143   if (time_delta == -1.0) {
144     XBT_DEBUG("No next event at all. Bail out now.");
145     return -1.0;
146   }
147
148   XBT_DEBUG("Duration set to %f", time_delta);
149
150   // Bump the time: jump into the future
151   NOW = NOW + time_delta;
152
153   // Inform the models of the date change
154   xbt_dynar_foreach(all_existing_models, iter, model) {
155     model->updateActionsState(NOW, time_delta);
156   }
157
158   TRACE_paje_dump_buffer (0);
159
160   return time_delta;
161 }
162
163 /*********
164  * MODEL *
165  *********/
166
167 surf_action_t surf_model_extract_done_action_set(surf_model_t model){
168   if (model->getDoneActionSet()->empty())
169   return NULL;
170   surf_action_t res = &model->getDoneActionSet()->front();
171   model->getDoneActionSet()->pop_front();
172   return res;
173 }
174
175 surf_action_t surf_model_extract_failed_action_set(surf_model_t model){
176   if (model->getFailedActionSet()->empty())
177   return NULL;
178   surf_action_t res = &model->getFailedActionSet()->front();
179   model->getFailedActionSet()->pop_front();
180   return res;
181 }
182
183 int surf_model_running_action_set_size(surf_model_t model){
184   return model->getRunningActionSet()->size();
185 }
186
187 xbt_dynar_t surf_host_model_get_route(surf_host_model_t /*model*/,
188                                              sg_host_t src, sg_host_t dst){
189   xbt_dynar_t route = NULL;
190   routing_platf->getRouteAndLatency(src->pimpl_netcard, dst->pimpl_netcard, &route, NULL);
191   return route;
192 }
193
194 void surf_vm_model_create(const char *name, sg_host_t ind_phys_host){
195   surf_vm_model->createVM(name, ind_phys_host);
196 }
197
198 surf_action_t surf_network_model_communicate(surf_network_model_t model, sg_host_t src, sg_host_t dst, double size, double rate){
199   return model->communicate(src->pimpl_netcard, dst->pimpl_netcard, size, rate);
200 }
201
202 const char *surf_resource_name(surf_cpp_resource_t resource){
203   return resource->getName();
204 }
205
206 surf_action_t surf_host_sleep(sg_host_t host, double duration){
207   return host->pimpl_cpu->sleep(duration);
208 }
209
210
211 double surf_host_get_available_speed(sg_host_t host){
212   return host->pimpl_cpu->getAvailableSpeed();
213 }
214
215 xbt_dynar_t surf_host_get_attached_storage_list(sg_host_t host){
216   return get_casted_host(host)->getAttachedStorageList();
217 }
218
219 surf_action_t surf_host_open(sg_host_t host, const char* fullpath){
220   return get_casted_host(host)->open(fullpath);
221 }
222
223 surf_action_t surf_host_close(sg_host_t host, surf_file_t fd){
224   return get_casted_host(host)->close(fd);
225 }
226
227 int surf_host_unlink(sg_host_t host, surf_file_t fd){
228   return get_casted_host(host)->unlink(fd);
229 }
230
231 size_t surf_host_get_size(sg_host_t host, surf_file_t fd){
232   return get_casted_host(host)->getSize(fd);
233 }
234
235 surf_action_t surf_host_read(sg_host_t host, surf_file_t fd, sg_size_t size){
236   return get_casted_host(host)->read(fd, size);
237 }
238
239 surf_action_t surf_host_write(sg_host_t host, surf_file_t fd, sg_size_t size){
240   return get_casted_host(host)->write(fd, size);
241 }
242
243 xbt_dynar_t surf_host_get_info(sg_host_t host, surf_file_t fd){
244   return get_casted_host(host)->getInfo(fd);
245 }
246
247 size_t surf_host_file_tell(sg_host_t host, surf_file_t fd){
248   return get_casted_host(host)->fileTell(fd);
249 }
250
251 int surf_host_file_seek(sg_host_t host, surf_file_t fd,
252                                sg_offset_t offset, int origin){
253   return get_casted_host(host)->fileSeek(fd, offset, origin);
254 }
255
256 int surf_host_file_move(sg_host_t host, surf_file_t fd, const char* fullpath){
257   return get_casted_host(host)->fileMove(fd, fullpath);
258 }
259
260 xbt_dynar_t surf_host_get_vms(sg_host_t host){
261   xbt_dynar_t vms = get_casted_host(host)->getVms();
262   xbt_dynar_t vms_ = xbt_dynar_new(sizeof(sg_host_t), NULL);
263   unsigned int cpt;
264   simgrid::surf::VirtualMachine *vm;
265   xbt_dynar_foreach(vms, cpt, vm) {
266     // TODO, use a backlink from simgrid::surf::Host to simgrid::s4u::Host 
267     sg_host_t vm_ = (sg_host_t) xbt_dict_get_elm_or_null(host_list, vm->getName());
268     xbt_dynar_push(vms_, &vm_);
269   }
270   xbt_dynar_free(&vms);
271   return vms_;
272 }
273
274 void surf_host_get_params(sg_host_t host, vm_params_t params){
275   get_casted_host(host)->getParams(params);
276 }
277
278 void surf_host_set_params(sg_host_t host, vm_params_t params){
279   get_casted_host(host)->setParams(params);
280 }
281
282 void surf_vm_destroy(sg_host_t vm){ // FIXME:DEADCODE
283   vm->pimpl_cpu = nullptr;
284   vm->pimpl_netcard = nullptr;
285 }
286
287 void surf_vm_suspend(sg_host_t vm){
288   get_casted_vm(vm)->suspend();
289 }
290
291 void surf_vm_resume(sg_host_t vm){
292   get_casted_vm(vm)->resume();
293 }
294
295 void surf_vm_save(sg_host_t vm){
296   get_casted_vm(vm)->save();
297 }
298
299 void surf_vm_restore(sg_host_t vm){
300   get_casted_vm(vm)->restore();
301 }
302
303 void surf_vm_migrate(sg_host_t vm, sg_host_t ind_vm_ws_dest){
304   get_casted_vm(vm)->migrate(ind_vm_ws_dest);
305 }
306
307 sg_host_t surf_vm_get_pm(sg_host_t vm){
308   return get_casted_vm(vm)->getPm();
309 }
310
311 void surf_vm_set_bound(sg_host_t vm, double bound){
312   return get_casted_vm(vm)->setBound(bound);
313 }
314
315 void surf_vm_set_affinity(sg_host_t vm, sg_host_t host, unsigned long mask){
316   return get_casted_vm(vm)->setAffinity(host->pimpl_cpu, mask);
317 }
318
319 xbt_dict_t surf_storage_get_content(surf_resource_t resource){
320   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getContent();
321 }
322
323 sg_size_t surf_storage_get_size(surf_resource_t resource){
324   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getSize();
325 }
326
327 sg_size_t surf_storage_get_free_size(surf_resource_t resource){
328   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getFreeSize();
329 }
330
331 sg_size_t surf_storage_get_used_size(surf_resource_t resource){
332   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getUsedSize();
333 }
334
335 xbt_dict_t surf_storage_get_properties(surf_resource_t resource){
336   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getProperties();
337 }
338
339 const char* surf_storage_get_host(surf_resource_t resource){
340   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->p_attach;
341 }
342
343 double surf_action_get_start_time(surf_action_t action){
344   return action->getStartTime();
345 }
346
347 double surf_action_get_finish_time(surf_action_t action){
348   return action->getFinishTime();
349 }
350
351 double surf_action_get_remains(surf_action_t action){
352   return action->getRemains();
353 }
354
355 void surf_action_set_category(surf_action_t action, const char *category){
356   action->setCategory(category);
357 }
358
359 void *surf_action_get_data(surf_action_t action){
360   return action->getData();
361 }
362
363 void surf_action_set_data(surf_action_t action, void *data){
364   action->setData(data);
365 }
366
367 e_surf_action_state_t surf_action_get_state(surf_action_t action){
368   return action->getState();
369 }
370
371 double surf_action_get_cost(surf_action_t action){
372   return action->getCost();
373 }
374
375 void surf_cpu_action_set_affinity(surf_action_t action, sg_host_t host, unsigned long mask) {
376   static_cast<simgrid::surf::CpuAction*>(action)->setAffinity(host->pimpl_cpu, mask);
377 }
378
379 void surf_cpu_action_set_bound(surf_action_t action, double bound) {
380   static_cast<simgrid::surf::CpuAction*>(action)->setBound(bound);
381 }
382
383 #ifdef HAVE_LATENCY_BOUND_TRACKING
384 double surf_network_action_get_latency_limited(surf_action_t action) {
385   return static_cast<simgrid::surf::NetworkAction*>(action)->getLatencyLimited();
386 }
387 #endif
388
389 surf_file_t surf_storage_action_get_file(surf_action_t action){
390   return static_cast<simgrid::surf::StorageAction*>(action)->p_file;
391 }