Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use a deque instead of an intrusive hook for all VMs
[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 "src/surf/HostImpl.hpp"
8 #include "surf_interface.hpp"
9 #include "network_interface.hpp"
10 #include "src/instr/instr_private.h"
11 #include "plugins/energy.hpp"
12 #include "virtual_machine.hpp"
13
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_kernel);
15
16 /*********
17  * TOOLS *
18  *********/
19
20 static simgrid::surf::HostImpl *get_casted_host(sg_host_t host){ //FIXME: killme
21   return host->extension<simgrid::surf::HostImpl>();
22 }
23
24 static simgrid::surf::VirtualMachine *get_casted_vm(sg_host_t host){
25   return static_cast<simgrid::surf::VirtualMachine*>(host->extension<simgrid::surf::HostImpl>());
26 }
27
28 extern double NOW;
29
30 void surf_presolve()
31 {
32   double next_event_date = -1.0;
33   tmgr_trace_iterator_t event = nullptr;
34   double value = -1.0;
35   simgrid::surf::Resource *resource = nullptr;
36
37   XBT_DEBUG ("Consume all trace events occurring before the starting time.");
38   while ((next_event_date = future_evt_set->next_date()) != -1.0) {
39     if (next_event_date > NOW)
40       break;
41
42     while ((event = future_evt_set->pop_leq(next_event_date, &value, &resource))) {
43       if (value >= 0){
44         resource->apply_event(event, value);
45       }
46     }
47   }
48
49   XBT_DEBUG ("Set every models in the right state by updating them to 0.");
50   for (auto model : *all_existing_models)
51       model->updateActionsState(NOW, 0.0);
52 }
53
54 double surf_solve(double max_date)
55 {
56   double time_delta = -1.0; /* duration */
57   double next_event_date = -1.0;
58   double model_next_action_end = -1.0;
59   double value = -1.0;
60   simgrid::surf::Resource *resource = nullptr;
61   tmgr_trace_iterator_t event = nullptr;
62
63   if (max_date > 0.0) {
64     xbt_assert(max_date > NOW,"You asked to simulate up to %f, but that's in the past already", max_date);
65
66     time_delta = max_date - NOW;
67   }
68
69   /* Physical models MUST be resolved first */
70   XBT_DEBUG("Looking for next event in physical models");
71   double next_event_phy = surf_host_model->next_occuring_event(NOW);
72   if ((time_delta < 0.0 || next_event_phy < time_delta) && next_event_phy >= 0.0) {
73     time_delta = next_event_phy;
74   }
75   if (surf_vm_model != nullptr) {
76     XBT_DEBUG("Looking for next event in virtual models");
77     double next_event_virt = surf_vm_model->next_occuring_event(NOW);
78     if ((time_delta < 0.0 || next_event_virt < time_delta) && next_event_virt >= 0.0)
79       time_delta = next_event_virt;
80   }
81
82   XBT_DEBUG("Min for resources (remember that NS3 don't update that value): %f", time_delta);
83
84   XBT_DEBUG("Looking for next trace event");
85
86   while (1) { // Handle next occurring events until none remains
87     next_event_date = future_evt_set->next_date();
88     XBT_DEBUG("Next TRACE event: %f", next_event_date);
89
90     if(! surf_network_model->next_occuring_event_isIdempotent()){ // NS3, I see you
91       if (next_event_date!=-1.0 && time_delta!=-1.0) {
92         time_delta = MIN(next_event_date - NOW, time_delta);
93       } else {
94         time_delta = MAX(next_event_date - NOW, time_delta); // Get the positive component
95       }
96
97       XBT_DEBUG("Run the NS3 network at most %fs", time_delta);
98       // run until min or next flow
99       model_next_action_end = surf_network_model->next_occuring_event(time_delta);
100
101       XBT_DEBUG("Min for network : %f", model_next_action_end);
102       if(model_next_action_end>=0.0)
103         time_delta = model_next_action_end;
104     }
105
106     if (next_event_date < 0.0) {
107       XBT_DEBUG("no next TRACE event. Stop searching for it");
108       break;
109     }
110
111     if ((time_delta == -1.0) || (next_event_date > NOW + time_delta))
112       break; // next event occurs after the next resource change, bail out
113
114     XBT_DEBUG("Updating models (min = %g, NOW = %g, next_event_date = %g)", time_delta, NOW, next_event_date);
115
116     while ((event = future_evt_set->pop_leq(next_event_date, &value, &resource))) {
117       if (resource->isUsed() || xbt_dict_get_or_null(watched_hosts_lib, resource->getName())) {
118         time_delta = next_event_date - NOW;
119         XBT_DEBUG("This event invalidates the next_occuring_event() computation of models. Next event set to %f", time_delta);
120       }
121       // 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
122       double round_start = NOW;
123       NOW = next_event_date;
124       /* update state of the corresponding resource to the new value. Does not touch lmm.
125          It will be modified if needed when updating actions */
126       XBT_DEBUG("Calling update_resource_state for resource %s", resource->getName());
127       resource->apply_event(event, value);
128       NOW = round_start;
129     }
130   }
131
132   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
133    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
134    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
135   if (time_delta == -1.0) {
136     XBT_DEBUG("No next event at all. Bail out now.");
137     return -1.0;
138   }
139
140   XBT_DEBUG("Duration set to %f", time_delta);
141
142   // Bump the time: jump into the future
143   NOW = NOW + time_delta;
144
145   // Inform the models of the date change
146   for (auto model : *all_existing_models) {
147     model->updateActionsState(NOW, time_delta);
148   }
149
150   TRACE_paje_dump_buffer (0);
151
152   return time_delta;
153 }
154
155 /*********
156  * MODEL *
157  *********/
158
159 surf_action_t surf_model_extract_done_action_set(surf_model_t model){
160   if (model->getDoneActionSet()->empty())
161     return nullptr;
162   surf_action_t res = &model->getDoneActionSet()->front();
163   model->getDoneActionSet()->pop_front();
164   return res;
165 }
166
167 surf_action_t surf_model_extract_failed_action_set(surf_model_t model){
168   if (model->getFailedActionSet()->empty())
169     return nullptr;
170   surf_action_t res = &model->getFailedActionSet()->front();
171   model->getFailedActionSet()->pop_front();
172   return res;
173 }
174
175 int surf_model_running_action_set_size(surf_model_t model){
176   return model->getRunningActionSet()->size();
177 }
178
179 surf_action_t surf_network_model_communicate(surf_network_model_t model, sg_host_t src, sg_host_t dst, double size, double rate){
180   return model->communicate(src->pimpl_netcard, dst->pimpl_netcard, size, rate);
181 }
182
183 surf_action_t surf_host_sleep(sg_host_t host, double duration){
184   return host->pimpl_cpu->sleep(duration);
185 }
186
187 surf_action_t surf_host_open(sg_host_t host, const char* fullpath){
188   return get_casted_host(host)->open(fullpath);
189 }
190
191 surf_action_t surf_host_close(sg_host_t host, surf_file_t fd){
192   return get_casted_host(host)->close(fd);
193 }
194
195 int surf_host_unlink(sg_host_t host, surf_file_t fd){
196   return get_casted_host(host)->unlink(fd);
197 }
198
199 size_t surf_host_get_size(sg_host_t host, surf_file_t fd){
200   return get_casted_host(host)->getSize(fd);
201 }
202
203 surf_action_t surf_host_read(sg_host_t host, surf_file_t fd, sg_size_t size){
204   return get_casted_host(host)->read(fd, size);
205 }
206
207 surf_action_t surf_host_write(sg_host_t host, surf_file_t fd, sg_size_t size){
208   return get_casted_host(host)->write(fd, size);
209 }
210
211 xbt_dynar_t surf_host_get_info(sg_host_t host, surf_file_t fd){
212   return get_casted_host(host)->getInfo(fd);
213 }
214
215 size_t surf_host_file_tell(sg_host_t host, surf_file_t fd){
216   return get_casted_host(host)->fileTell(fd);
217 }
218
219 int surf_host_file_seek(sg_host_t host, surf_file_t fd,
220                                sg_offset_t offset, int origin){
221   return get_casted_host(host)->fileSeek(fd, offset, origin);
222 }
223
224 int surf_host_file_move(sg_host_t host, surf_file_t fd, const char* fullpath){
225   return get_casted_host(host)->fileMove(fd, fullpath);
226 }
227
228 void surf_vm_suspend(sg_host_t vm){
229   get_casted_vm(vm)->suspend();
230 }
231
232 void surf_vm_resume(sg_host_t vm){
233   get_casted_vm(vm)->resume();
234 }
235
236 void surf_vm_save(sg_host_t vm){
237   get_casted_vm(vm)->save();
238 }
239
240 void surf_vm_restore(sg_host_t vm){
241   get_casted_vm(vm)->restore();
242 }
243
244 void surf_vm_migrate(sg_host_t vm, sg_host_t ind_vm_ws_dest){
245   get_casted_vm(vm)->migrate(ind_vm_ws_dest);
246 }
247
248 sg_host_t surf_vm_get_pm(sg_host_t vm){
249   return get_casted_vm(vm)->getPm();
250 }
251
252 void surf_vm_set_bound(sg_host_t vm, double bound){
253   get_casted_vm(vm)->setBound(bound);
254 }
255
256 xbt_dict_t surf_storage_get_content(surf_resource_t resource){
257   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getContent();
258 }
259
260 sg_size_t surf_storage_get_size(surf_resource_t resource){
261   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getSize();
262 }
263
264 sg_size_t surf_storage_get_free_size(surf_resource_t resource){
265   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getFreeSize();
266 }
267
268 sg_size_t surf_storage_get_used_size(surf_resource_t resource){
269   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getUsedSize();
270 }
271
272 xbt_dict_t surf_storage_get_properties(surf_resource_t resource){
273   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->getProperties();
274 }
275
276 const char* surf_storage_get_host(surf_resource_t resource){
277   return static_cast<simgrid::surf::Storage*>(surf_storage_resource_priv(resource))->attach_;
278 }
279
280 void surf_cpu_action_set_bound(surf_action_t action, double bound) {
281   static_cast<simgrid::surf::CpuAction*>(action)->setBound(bound);
282 }
283
284 surf_file_t surf_storage_action_get_file(surf_action_t action){
285   return static_cast<simgrid::surf::StorageAction*>(action)->p_file;
286 }