Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / src / surf / storage_n11.cpp
1 /* Copyright (c) 2013-2019. 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/kernel/routing/NetPoint.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "src/kernel/lmm/maxmin.hpp"
10 #include "src/surf/xml/platf.hpp"
11 #include "surf/surf.hpp"
12
13 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_storage);
14
15 /*************
16  * CallBacks *
17  *************/
18 extern std::map<std::string, simgrid::surf::StorageType*> storage_types;
19
20 void check_disk_attachment()
21 {
22   for (auto const& s : simgrid::s4u::Engine::get_instance()->get_all_storages()) {
23     simgrid::kernel::routing::NetPoint* host_elm = sg_netpoint_by_name_or_null(s->get_impl()->getHost().c_str());
24     if (not host_elm)
25       surf_parse_error(std::string("Unable to attach storage ") + s->get_cname() + ": host " +
26                        s->get_impl()->getHost().c_str() + " does not exist.");
27     else
28       s->set_host(sg_host_by_name(s->get_impl()->getHost().c_str()));
29   }
30 }
31
32 /*********
33  * Model *
34  *********/
35
36 void surf_storage_model_init_default()
37 {
38   surf_storage_model = new simgrid::surf::StorageN11Model();
39 }
40
41 namespace simgrid {
42 namespace surf {
43
44 StorageN11Model::StorageN11Model()
45 {
46   all_existing_models.push_back(this);
47 }
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, get_maxmin_system(), Bread, Bwrite, type_id, content_name, storage_type->size, attach);
61
62   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(),
63             Bread);
64
65   return storage;
66 }
67
68 double StorageN11Model::next_occuring_event(double now)
69 {
70   return StorageModel::next_occuring_event_full(now);
71 }
72
73 void StorageN11Model::update_actions_state(double /*now*/, double delta)
74 {
75   for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) {
76     StorageAction& action = static_cast<StorageAction&>(*it);
77     ++it; // increment iterator here since the following calls to action.finish() may invalidate it
78     action.update_remains(lrint(action.get_variable()->get_value() * delta));
79
80     if (action.get_max_duration() > NO_MAX_DURATION)
81       action.update_max_duration(delta);
82
83     if (((action.get_remains_no_update() <= 0) && (action.get_variable()->get_weight() > 0)) ||
84         ((action.get_max_duration() > NO_MAX_DURATION) && (action.get_max_duration() <= 0))) {
85       action.finish(kernel::resource::Action::State::FINISHED);
86     }
87   }
88 }
89
90 /************
91  * Resource *
92  ************/
93
94 StorageN11::StorageN11(StorageModel* model, std::string name, kernel::lmm::System* maxminSystem, double bread,
95                        double bwrite, std::string type_id, std::string content_name, sg_size_t size, std::string attach)
96     : StorageImpl(model, name, maxminSystem, bread, bwrite, type_id, content_name, size, attach)
97 {
98   XBT_DEBUG("Create resource with Bread '%f' Bwrite '%f' and Size '%llu'", bread, bwrite, size);
99   simgrid::s4u::Storage::on_creation(this->piface_);
100 }
101
102 StorageAction* StorageN11::io_start(sg_size_t size, s4u::Io::OpType type)
103 {
104   return new StorageN11Action(get_model(), size, is_off(), this, type);
105 }
106
107 StorageAction* StorageN11::read(sg_size_t size)
108 {
109   return new StorageN11Action(get_model(), size, is_off(), this, s4u::Io::OpType::READ);
110 }
111
112 StorageAction* StorageN11::write(sg_size_t size)
113 {
114   return new StorageN11Action(get_model(), size, is_off(), this, s4u::Io::OpType::WRITE);
115 }
116
117 /**********
118  * Action *
119  **********/
120
121 StorageN11Action::StorageN11Action(kernel::resource::Model* model, double cost, bool failed, StorageImpl* storage,
122                                    s4u::Io::OpType type)
123     : StorageAction(model, cost, failed, model->get_maxmin_system()->variable_new(this, 1.0, -1.0, 3), storage, type)
124 {
125   XBT_IN("(%s,%g", storage->get_cname(), cost);
126
127   // Must be less than the max bandwidth for all actions
128   model->get_maxmin_system()->expand(storage->get_constraint(), get_variable(), 1.0);
129   switch(type) {
130     case s4u::Io::OpType::READ:
131       model->get_maxmin_system()->expand(storage->constraintRead_, get_variable(), 1.0);
132       break;
133     case s4u::Io::OpType::WRITE:
134       model->get_maxmin_system()->expand(storage->constraintWrite_, get_variable(), 1.0);
135       break;
136     default:
137       THROW_UNIMPLEMENTED;
138   }
139   XBT_OUT();
140 }
141
142 void StorageN11Action::cancel()
143 {
144   set_state(Action::State::FAILED);
145 }
146
147 void StorageN11Action::suspend()
148 {
149   XBT_IN("(%p)", this);
150   if (suspended_ != Action::SuspendStates::sleeping) {
151     get_model()->get_maxmin_system()->update_variable_weight(get_variable(), 0.0);
152     suspended_ = Action::SuspendStates::suspended;
153   }
154   XBT_OUT();
155 }
156
157 void StorageN11Action::resume()
158 {
159   THROW_UNIMPLEMENTED;
160 }
161
162 void StorageN11Action::set_max_duration(double /*duration*/)
163 {
164   THROW_UNIMPLEMENTED;
165 }
166
167 void StorageN11Action::set_priority(double /*priority*/)
168 {
169   THROW_UNIMPLEMENTED;
170 }
171 void StorageN11Action::update_remains_lazy(double /*now*/)
172 {
173   THROW_IMPOSSIBLE;
174 }
175 }
176 }