Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
490ca6eb957401a8fc72506f07eb9e5857146a67
[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 Host *get_casted_host(surf_resource_t resource){
22   return static_cast<Host*>(surf_host_resource_priv(resource));
23 }
24
25 static VirtualMachine *get_casted_vm(surf_resource_t resource){
26   return static_cast<VirtualMachine*>(surf_host_resource_priv(resource));
27 }
28
29 extern double NOW;
30
31 void surf_presolve(void)
32 {
33   double next_event_date = -1.0;
34   tmgr_trace_event_t event = NULL;
35   double value = -1.0;
36   Resource *resource = NULL;
37   Model *model = NULL;
38   unsigned int iter;
39
40   XBT_DEBUG ("First Run! Let's \"purge\" events and put models in the right state");
41
42   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
43     if (next_event_date > NOW)
44       break;
45     while ((event =
46             tmgr_history_get_next_event_leq(history, next_event_date,
47                                             &value,
48                                             (void **) &resource))) {
49       if (value >= 0){
50         resource->updateState(event, value, NOW);
51       }
52     }
53   }
54   xbt_dynar_foreach(model_list, iter, model)
55       model->updateActionsState(NOW, 0.0);
56 }
57
58 double surf_solve(double max_date)
59 {
60   double surf_min = -1.0; /* duration */
61   double next_event_date = -1.0;
62   double model_next_action_end = -1.0;
63   double value = -1.0;
64   Resource *resource = NULL;
65   Model *model = NULL;
66   tmgr_trace_event_t event = NULL;
67   unsigned int iter;
68
69   if(!host_that_restart)
70     host_that_restart = xbt_dynar_new(sizeof(char*), NULL);
71
72   if (max_date != -1.0 && max_date != NOW) {
73     surf_min = max_date - NOW;
74   }
75
76   XBT_DEBUG("Looking for next action end for all models except NS3");
77   xbt_dynar_foreach(model_list_invoke, iter, model) {
78           double next_action_end = -1.0;
79           if (model->shareResourcesIsIdempotent()) {
80             XBT_DEBUG("Running for Resource [%s]", typeid(model).name());
81             next_action_end = model->shareResources(NOW);
82             XBT_DEBUG("Resource [%s] : next action end = %f",
83                 typeid(model).name(), next_action_end);
84           }
85           if ((surf_min < 0.0 || next_action_end < surf_min)
86                           && next_action_end >= 0.0) {
87                   surf_min = next_action_end;
88           }
89   }
90
91   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", surf_min);
92
93   XBT_DEBUG("Looking for next trace event");
94
95   do {
96     XBT_DEBUG("Next TRACE event : %f", next_event_date);
97
98     next_event_date = tmgr_history_next_date(history);
99
100     if(! surf_network_model->shareResourcesIsIdempotent()){ // NS3, I see you
101       if(next_event_date!=-1.0 && surf_min!=-1.0) {
102         surf_min = MIN(next_event_date - NOW, surf_min);
103       } else{
104         surf_min = MAX(next_event_date - NOW, surf_min);
105       }
106
107       XBT_DEBUG("Run for network at most %f", surf_min);
108       // run until min or next flow
109       model_next_action_end = surf_network_model->shareResources(surf_min);
110
111       XBT_DEBUG("Min for network : %f", model_next_action_end);
112       if(model_next_action_end>=0.0)
113         surf_min = model_next_action_end;
114     }
115
116     if (next_event_date < 0.0) {
117       XBT_DEBUG("no next TRACE event. Stop searching for it");
118       break;
119     }
120
121     if ((surf_min == -1.0) || (next_event_date > NOW + surf_min)) break;
122
123     XBT_DEBUG("Updating models (min = %g, NOW = %g, next_event_date = %g)", surf_min, NOW, next_event_date);
124     while ((event =
125             tmgr_history_get_next_event_leq(history, next_event_date,
126                                             &value,
127                                             (void **) &resource))) {
128       if (resource->isUsed() || xbt_dict_get_or_null(watched_hosts_lib, resource->getName())) {
129         surf_min = next_event_date - NOW;
130         XBT_DEBUG
131             ("This event will modify model state. Next event set to %f",
132              surf_min);
133       }
134       /* update state of model_obj according to new value. Does not touch lmm.
135          It will be modified if needed when updating actions */
136       XBT_DEBUG("Calling update_resource_state for resource %s with min %f",
137              resource->getName(), surf_min);
138       resource->updateState(event, value, next_event_date);
139     }
140   } while (1);
141
142   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
143    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
144    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
145   if (surf_min == -1.0) {
146   XBT_DEBUG("No next event at all. Bail out now.");
147     return -1.0;
148   }
149
150   XBT_DEBUG("Duration set to %f", surf_min);
151
152   NOW = NOW + surf_min;
153   /* FIXME: model_list or model_list_invoke? revisit here later */
154   /* sequential version */
155   xbt_dynar_foreach(model_list, iter, model) {
156           model->updateActionsState(NOW, surf_min);
157   }
158
159   TRACE_paje_dump_buffer (0);
160
161   return surf_min;
162 }
163
164 void routing_get_route_and_latency(sg_routing_edge_t src, sg_routing_edge_t dst,
165                               xbt_dynar_t * route, double *latency){
166   routing_platf->getRouteAndLatency(src, dst, route, latency);
167 }
168
169 /*********
170  * MODEL *
171  *********/
172
173 surf_model_t surf_resource_model(const void *host, int level) {
174   /* If level is SURF_WKS_LEVEL, ws is a host_CLM03 object. It has
175    * surf_resource at the generic_resource field. */
176   Resource *ws = static_cast<Resource*>(xbt_lib_get_level((xbt_dictelm_t) host, level));
177   return ws->getModel();
178 }
179
180 surf_action_t surf_model_extract_done_action_set(surf_model_t model){
181   if (model->getDoneActionSet()->empty())
182         return NULL;
183   surf_action_t res = &model->getDoneActionSet()->front();
184   model->getDoneActionSet()->pop_front();
185   return res;
186 }
187
188 surf_action_t surf_model_extract_failed_action_set(surf_model_t model){
189   if (model->getFailedActionSet()->empty())
190         return NULL;
191   surf_action_t res = &model->getFailedActionSet()->front();
192   model->getFailedActionSet()->pop_front();
193   return res;
194 }
195
196 surf_action_t surf_model_extract_ready_action_set(surf_model_t model){
197   if (model->getReadyActionSet()->empty())
198         return NULL;
199   surf_action_t res = &model->getReadyActionSet()->front();
200   model->getReadyActionSet()->pop_front();
201   return res;
202 }
203
204 surf_action_t surf_model_extract_running_action_set(surf_model_t model){
205   if (model->getRunningActionSet()->empty())
206         return NULL;
207   surf_action_t res = &model->getRunningActionSet()->front();
208   model->getRunningActionSet()->pop_front();
209   return res;
210 }
211
212 int surf_model_running_action_set_size(surf_model_t model){
213   return model->getRunningActionSet()->size();
214 }
215
216 surf_action_t surf_host_model_execute_parallel_task(surf_host_model_t model,
217                                                     int host_nb,
218                                             sg_host_t *host_list,
219                                             double *flops_amount,
220                                             double *bytes_amount,
221                                             double rate){
222   return static_cast<Action*>(model->executeParallelTask(host_nb, host_list, flops_amount, bytes_amount, rate));
223 }
224
225 xbt_dynar_t surf_host_model_get_route(surf_host_model_t /*model*/,
226                                              surf_resource_t src, surf_resource_t dst){
227   xbt_dynar_t route = NULL;
228   routing_platf->getRouteAndLatency(get_casted_host(src)->p_netElm,
229                                             get_casted_host(dst)->p_netElm, &route, NULL);
230   return route;
231 }
232
233 void surf_vm_model_create(const char *name, surf_resource_t ind_phys_host){
234   surf_vm_model->createVM(name, ind_phys_host);
235 }
236
237 surf_action_t surf_network_model_communicate(surf_network_model_t model, sg_host_t src, sg_host_t dst, double size, double rate){
238   return model->communicate(sg_host_edge(src), sg_host_edge(dst), size, rate);
239 }
240
241 const char *surf_resource_name(surf_cpp_resource_t resource){
242   return resource->getName();
243 }
244
245 xbt_dict_t surf_resource_get_properties(surf_cpp_resource_t resource){
246   return resource->getProperties();
247 }
248
249 e_surf_resource_state_t surf_resource_get_state(surf_cpp_resource_t resource){
250   return resource->getState();
251 }
252
253 void surf_resource_set_state(surf_cpp_resource_t resource, e_surf_resource_state_t state){
254   resource->setState(state);
255 }
256
257 surf_action_t surf_host_sleep(surf_resource_t host, double duration){
258   return get_casted_host(host)->sleep(duration);
259 }
260
261 double surf_host_get_speed(surf_resource_t host, double load){
262   return sg_host_surfcpu(host)->getSpeed(load);
263 }
264
265 double surf_host_get_available_speed(surf_resource_t host){
266   return sg_host_surfcpu(host)->getAvailableSpeed();
267 }
268
269 int surf_host_get_core(surf_resource_t host){
270   return sg_host_surfcpu(host)->getCore();
271 }
272
273 surf_action_t surf_host_execute(surf_resource_t host, double size){
274   return get_casted_host(host)->execute(size);
275 }
276
277 double surf_host_get_current_power_peak(surf_resource_t host){
278   return sg_host_surfcpu(host)->getCurrentPowerPeak();
279 }
280
281 double surf_host_get_power_peak_at(surf_resource_t host, int pstate_index){
282   return sg_host_surfcpu(host)->getPowerPeakAt(pstate_index);
283 }
284
285 int surf_host_get_nb_pstates(surf_resource_t host){
286   return sg_host_surfcpu(host)->getNbPstates();
287 }
288
289 void surf_host_set_pstate(surf_resource_t host, int pstate_index){
290         sg_host_surfcpu(host)->setPstate(pstate_index);
291 }
292 int surf_host_get_pstate(surf_resource_t host){
293   return sg_host_surfcpu(host)->getPstate();
294 }
295 double surf_host_get_wattmin_at(surf_resource_t resource, int pstate){
296   xbt_assert(surf_energy!=NULL, "The Energy plugin is not active. Please call sg_energy_plugin_init() during initialization.");
297   std::map<Cpu*, CpuEnergy*>::iterator cpuIt = surf_energy->find(get_casted_host(resource)->p_cpu);
298   return cpuIt->second->getWattMinAt(pstate);
299 }
300 double surf_host_get_wattmax_at(surf_resource_t resource, int pstate){
301   xbt_assert(surf_energy!=NULL, "The Energy plugin is not active. Please call sg_energy_plugin_init() during initialization.");
302   std::map<Cpu*, CpuEnergy*>::iterator cpuIt = surf_energy->find(get_casted_host(resource)->p_cpu);
303   return cpuIt->second->getWattMaxAt(pstate);
304 }
305
306 double surf_host_get_consumed_energy(surf_resource_t resource){
307   xbt_assert(surf_energy!=NULL, "The Energy plugin is not active. Please call sg_energy_plugin_init() during initialization.");
308   std::map<Cpu*, CpuEnergy*>::iterator cpuIt = surf_energy->find(get_casted_host(resource)->p_cpu);
309   return cpuIt->second->getConsumedEnergy();
310 }
311
312 xbt_dict_t surf_host_get_mounted_storage_list(surf_resource_t host){
313   return get_casted_host(host)->getMountedStorageList();
314 }
315
316 xbt_dynar_t surf_host_get_attached_storage_list(surf_resource_t host){
317   return get_casted_host(host)->getAttachedStorageList();
318 }
319
320 surf_action_t surf_host_open(surf_resource_t host, const char* fullpath){
321   return get_casted_host(host)->open(fullpath);
322 }
323
324 surf_action_t surf_host_close(surf_resource_t host, surf_file_t fd){
325   return get_casted_host(host)->close(fd);
326 }
327
328 int surf_host_unlink(surf_resource_t host, surf_file_t fd){
329   return get_casted_host(host)->unlink(fd);
330 }
331
332 size_t surf_host_get_size(surf_resource_t host, surf_file_t fd){
333   return get_casted_host(host)->getSize(fd);
334 }
335
336 surf_action_t surf_host_read(surf_resource_t host, surf_file_t fd, sg_size_t size){
337   return get_casted_host(host)->read(fd, size);
338 }
339
340 surf_action_t surf_host_write(surf_resource_t host, surf_file_t fd, sg_size_t size){
341   return get_casted_host(host)->write(fd, size);
342 }
343
344 xbt_dynar_t surf_host_get_info(surf_resource_t host, surf_file_t fd){
345   return get_casted_host(host)->getInfo(fd);
346 }
347
348 size_t surf_host_file_tell(surf_resource_t host, surf_file_t fd){
349   return get_casted_host(host)->fileTell(fd);
350 }
351
352 int surf_host_file_seek(surf_resource_t host, surf_file_t fd,
353                                sg_offset_t offset, int origin){
354   return get_casted_host(host)->fileSeek(fd, offset, origin);
355 }
356
357 int surf_host_file_move(surf_resource_t host, surf_file_t fd, const char* fullpath){
358   return get_casted_host(host)->fileMove(fd, fullpath);
359 }
360
361 xbt_dynar_t surf_host_get_vms(surf_resource_t host){
362   xbt_dynar_t vms = get_casted_host(host)->getVms();
363   xbt_dynar_t vms_ = xbt_dynar_new(sizeof(sg_host_t), NULL);
364   unsigned int cpt;
365   VirtualMachine *vm;
366   xbt_dynar_foreach(vms, cpt, vm) {
367     sg_host_t vm_ = xbt_lib_get_elm_or_null(host_lib, vm->getName());
368     xbt_dynar_push(vms_, &vm_);
369   }
370   xbt_dynar_free(&vms);
371   return vms_;
372 }
373
374 void surf_host_get_params(surf_resource_t host, vm_params_t params){
375   get_casted_host(host)->getParams(params);
376 }
377
378 void surf_host_set_params(surf_resource_t host, vm_params_t params){
379   get_casted_host(host)->setParams(params);
380 }
381
382 void surf_vm_destroy(surf_resource_t resource){
383   /* Before clearing the entries in host_lib, we have to pick up resources. */
384   VirtualMachine *vm = get_casted_vm(resource);
385   char* name = xbt_dict_get_elm_key(resource);
386   /* We deregister objects from host_lib, without invoking the freeing callback
387    * of each level.
388    *
389    * Do not call xbt_lib_remove() here. It deletes all levels of the key,
390    * including MSG_HOST_LEVEL and others. We should unregister only what we know.
391    */
392   sg_host_surfcpu_destroy((sg_host_t)resource);
393   sg_host_edge_destroy((sg_host_t)resource,1);
394   xbt_lib_unset(host_lib, name, SURF_HOST_LEVEL, 0);
395
396   /* TODO: comment out when VM storage is implemented. */
397   // xbt_lib_unset(host_lib, name, SURF_STORAGE_LEVEL, 0);
398
399   delete vm;
400 }
401
402 void surf_vm_suspend(surf_resource_t vm){
403   get_casted_vm(vm)->suspend();
404 }
405
406 void surf_vm_resume(surf_resource_t vm){
407   get_casted_vm(vm)->resume();
408 }
409
410 void surf_vm_save(surf_resource_t vm){
411   get_casted_vm(vm)->save();
412 }
413
414 void surf_vm_restore(surf_resource_t vm){
415   get_casted_vm(vm)->restore();
416 }
417
418 void surf_vm_migrate(surf_resource_t vm, surf_resource_t ind_vm_ws_dest){
419   get_casted_vm(vm)->migrate(ind_vm_ws_dest);
420 }
421
422 surf_resource_t surf_vm_get_pm(surf_resource_t vm){
423   return get_casted_vm(vm)->getPm();
424 }
425
426 void surf_vm_set_bound(surf_resource_t vm, double bound){
427   return get_casted_vm(vm)->setBound(bound);
428 }
429
430 void surf_vm_set_affinity(surf_resource_t vm, surf_resource_t cpu, unsigned long mask){
431   return get_casted_vm(vm)->setAffinity(sg_host_surfcpu(cpu), mask);
432 }
433
434 xbt_dict_t surf_storage_get_content(surf_resource_t resource){
435   return static_cast<Storage*>(surf_storage_resource_priv(resource))->getContent();
436 }
437
438 sg_size_t surf_storage_get_size(surf_resource_t resource){
439   return static_cast<Storage*>(surf_storage_resource_priv(resource))->getSize();
440 }
441
442 sg_size_t surf_storage_get_free_size(surf_resource_t resource){
443   return static_cast<Storage*>(surf_storage_resource_priv(resource))->getFreeSize();
444 }
445
446 sg_size_t surf_storage_get_used_size(surf_resource_t resource){
447   return static_cast<Storage*>(surf_storage_resource_priv(resource))->getUsedSize();
448 }
449
450 const char* surf_storage_get_host(surf_resource_t resource){
451   return static_cast<Storage*>(surf_storage_resource_priv(resource))->p_attach;
452 }
453
454 surf_action_t surf_cpu_execute(surf_resource_t cpu, double size){
455   return sg_host_surfcpu(cpu)->execute(size);
456 }
457
458 surf_action_t surf_cpu_sleep(surf_resource_t cpu, double duration){
459   return sg_host_surfcpu(cpu)->sleep(duration);
460 }
461
462 double surf_action_get_start_time(surf_action_t action){
463   return action->getStartTime();
464 }
465
466 double surf_action_get_finish_time(surf_action_t action){
467   return action->getFinishTime();
468 }
469
470 double surf_action_get_remains(surf_action_t action){
471   return action->getRemains();
472 }
473
474 void surf_action_unref(surf_action_t action){
475   action->unref();
476 }
477
478 void surf_action_suspend(surf_action_t action){
479   action->suspend();
480 }
481
482 void surf_action_resume(surf_action_t action){
483   action->resume();
484 }
485
486 void surf_action_cancel(surf_action_t action){
487   action->cancel();
488 }
489
490 void surf_action_set_priority(surf_action_t action, double priority){
491   action->setPriority(priority);
492 }
493
494 void surf_action_set_category(surf_action_t action, const char *category){
495   action->setCategory(category);
496 }
497
498 void *surf_action_get_data(surf_action_t action){
499   return action->getData();
500 }
501
502 void surf_action_set_data(surf_action_t action, void *data){
503   action->setData(data);
504 }
505
506 e_surf_action_state_t surf_action_get_state(surf_action_t action){
507   return action->getState();
508 }
509
510 double surf_action_get_cost(surf_action_t action){
511   return action->getCost();
512 }
513
514 void surf_cpu_action_set_affinity(surf_action_t action, surf_resource_t cpu, unsigned long mask) {
515   static_cast<CpuAction*>(action)->setAffinity(sg_host_surfcpu(cpu), mask);
516 }
517
518 void surf_cpu_action_set_bound(surf_action_t action, double bound) {
519   static_cast<CpuAction*>(action)->setBound(bound);
520 }
521
522 #ifdef HAVE_LATENCY_BOUND_TRACKING
523 double surf_network_action_get_latency_limited(surf_action_t action) {
524   return static_cast<NetworkActionPtr>(action)->getLatencyLimited();
525 }
526 #endif
527
528 surf_file_t surf_storage_action_get_file(surf_action_t action){
529   return static_cast<StorageAction*>(action)->p_file;
530 }