Logo AND Algorithmique Numérique Distribuée

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