Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further split File and Storage
[simgrid.git] / src / surf / storage_n11.cpp
1 /* Copyright (c) 2013-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "storage_n11.hpp"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "src/kernel/routing/NetPoint.hpp"
9 #include <cmath> /*ceil*/
10
11 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_storage);
12
13 /*************
14  * CallBacks *
15  *************/
16 extern std::map<std::string, simgrid::surf::StorageType*> storage_types;
17
18 static void check_disk_attachment()
19 {
20   for (auto const& s : *simgrid::surf::StorageImpl::storagesMap()) {
21     simgrid::kernel::routing::NetPoint* host_elm = sg_netpoint_by_name_or_null(s.second->getHost().c_str());
22     if (not host_elm)
23       surf_parse_error(std::string("Unable to attach storage ") + s.second->getCname() + ": host " +
24                        s.second->getHost() + " does not exist.");
25     else
26       s.second->piface_.attached_to_ = sg_host_by_name(s.second->getHost().c_str());
27   }
28 }
29
30 void storage_register_callbacks()
31 {
32   simgrid::s4u::onPlatformCreated.connect(check_disk_attachment);
33   instr_routing_define_callbacks();
34 }
35
36 /*********
37  * Model *
38  *********/
39
40 void surf_storage_model_init_default()
41 {
42   surf_storage_model = new simgrid::surf::StorageN11Model();
43   all_existing_models->push_back(surf_storage_model);
44 }
45
46 namespace simgrid {
47 namespace surf {
48
49 StorageImpl* StorageN11Model::createStorage(std::string id, std::string type_id, std::string content_name,
50                                             std::string attach)
51 {
52   StorageType* storage_type = storage_types.at(type_id);
53
54   double Bread = surf_parse_get_bandwidth(storage_type->model_properties->at("Bread").c_str(),
55                                           "property Bread, storage", type_id.c_str());
56   double Bwrite = surf_parse_get_bandwidth(storage_type->model_properties->at("Bwrite").c_str(),
57                                            "property Bwrite, storage", type_id.c_str());
58
59   StorageImpl* storage =
60       new StorageN11(this, id, maxminSystem_, Bread, Bwrite, type_id, content_name, storage_type->size, attach);
61   storageCreatedCallbacks(storage);
62
63   XBT_DEBUG("SURF storage create resource\n\t\tid '%s'\n\t\ttype '%s'\n\t\tBread '%f'\n", id.c_str(), type_id.c_str(),
64             Bread);
65
66   p_storageList.push_back(storage);
67
68   return storage;
69 }
70
71 double StorageN11Model::nextOccuringEvent(double now)
72 {
73   return StorageModel::nextOccuringEventFull(now);
74 }
75
76 void StorageN11Model::updateActionsState(double /*now*/, double delta)
77 {
78   ActionList *actionSet = getRunningActionSet();
79   ActionList::iterator it(actionSet->begin());
80   ActionList::iterator itend(actionSet->end());
81   while (it != itend) {
82     StorageAction *action = static_cast<StorageAction*>(&*it);
83     ++it;
84     double current_progress = lrint(lmm_variable_getvalue(action->getVariable()) * delta);
85
86     action->updateRemains(current_progress);
87     if (action->type_ == WRITE) {
88       action->storage_->usedSize_ += current_progress;
89     }
90
91     if (action->getMaxDuration() > NO_MAX_DURATION)
92       action->updateMaxDuration(delta);
93
94     if (action->getRemainsNoUpdate() > 0 && lmm_get_variable_weight(action->getVariable()) > 0 &&
95         action->storage_->usedSize_ == action->storage_->getSize()) {
96       action->finish(Action::State::failed);
97     } else if (((action->getRemainsNoUpdate() <= 0) && (lmm_get_variable_weight(action->getVariable()) > 0)) ||
98                ((action->getMaxDuration() > NO_MAX_DURATION) && (action->getMaxDuration() <= 0))) {
99       action->finish(Action::State::done);
100     }
101   }
102 }
103
104 /************
105  * Resource *
106  ************/
107
108 StorageN11::StorageN11(StorageModel* model, std::string name, lmm_system_t maxminSystem, double bread, double bwrite,
109                        std::string type_id, std::string content_name, sg_size_t size, std::string attach)
110     : StorageImpl(model, name, maxminSystem, bread, bwrite, type_id, content_name, size, attach)
111 {
112   XBT_DEBUG("Create resource with Bread '%f' Bwrite '%f' and Size '%llu'", bread, bwrite, size);
113   simgrid::s4u::Storage::onCreation(this->piface_);
114 }
115
116 StorageAction* StorageN11::read(sg_size_t size)
117 {
118   return new StorageN11Action(model(), size, isOff(), this, READ);
119 }
120
121 StorageAction* StorageN11::write(sg_size_t size)
122 {
123   return new StorageN11Action(model(), size, isOff(), this, WRITE);
124 }
125
126 /**********
127  * Action *
128  **********/
129
130 StorageN11Action::StorageN11Action(Model* model, double cost, bool failed, StorageImpl* storage,
131                                    e_surf_action_storage_type_t type)
132     : StorageAction(model, cost, failed, lmm_variable_new(model->getMaxminSystem(), this, 1.0, -1.0, 3), storage, type)
133 {
134   XBT_IN("(%s,%g", storage->getCname(), cost);
135
136   // Must be less than the max bandwidth for all actions
137   lmm_expand(model->getMaxminSystem(), storage->constraint(), getVariable(), 1.0);
138   switch(type) {
139   case READ:
140     lmm_expand(model->getMaxminSystem(), storage->constraintRead_, getVariable(), 1.0);
141     break;
142   case WRITE:
143     lmm_expand(model->getMaxminSystem(), storage->constraintWrite_, getVariable(), 1.0);
144     break;
145   default:
146     THROW_UNIMPLEMENTED;
147   }
148   XBT_OUT();
149 }
150
151 int StorageN11Action::unref()
152 {
153   refcount_--;
154   if (not refcount_) {
155     if (action_hook.is_linked())
156       stateSet_->erase(stateSet_->iterator_to(*this));
157     if (getVariable())
158       lmm_variable_free(getModel()->getMaxminSystem(), getVariable());
159     xbt_free(getCategory());
160     delete this;
161     return 1;
162   }
163   return 0;
164 }
165
166 void StorageN11Action::cancel()
167 {
168   setState(Action::State::failed);
169 }
170
171 void StorageN11Action::suspend()
172 {
173   XBT_IN("(%p)", this);
174   if (suspended_ != 2) {
175     lmm_update_variable_weight(getModel()->getMaxminSystem(), getVariable(), 0.0);
176     suspended_ = 1;
177   }
178   XBT_OUT();
179 }
180
181 void StorageN11Action::resume()
182 {
183   THROW_UNIMPLEMENTED;
184 }
185
186 bool StorageN11Action::isSuspended()
187 {
188   return suspended_ == 1;
189 }
190
191 void StorageN11Action::setMaxDuration(double /*duration*/)
192 {
193   THROW_UNIMPLEMENTED;
194 }
195
196 void StorageN11Action::setSharingWeight(double /*priority*/)
197 {
198   THROW_UNIMPLEMENTED;
199 }
200
201 }
202 }