Logo AND Algorithmique Numérique Distribuée

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