Logo AND Algorithmique Numérique Distribuée

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