Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into disk
[simgrid.git] / src / surf / disk_s19.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 "disk_s19.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(disk_kernel);
15
16 /*********
17  * Model *
18  *********/
19
20 void surf_disk_model_init_default()
21 {
22   surf_disk_model = new simgrid::kernel::resource::DiskS19Model();
23 }
24
25 namespace simgrid {
26 namespace kernel {
27 namespace resource {
28
29 DiskS19Model::DiskS19Model()
30 {
31   all_existing_models.push_back(this);
32 }
33
34 DiskImpl* DiskS19Model::createDisk(const std::string& id, double read_bw, double write_bw)
35 {
36   XBT_DEBUG("SURF disk create resource\n\t\tid '%s'\n\t\tread_bw '%f'\n", id.c_str(), read_bw);
37
38   return new DiskS19(this, id, get_maxmin_system(), read_bw, write_bw);
39 }
40
41 double DiskS19Model::next_occuring_event(double now)
42 {
43   return DiskModel::next_occuring_event_full(now);
44 }
45
46 void DiskS19Model::update_actions_state(double /*now*/, double delta)
47 {
48   for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) {
49     auto& action = *it;
50     ++it; // increment iterator here since the following calls to action.finish() may invalidate it
51     action.update_remains(lrint(action.get_variable()->get_value() * delta));
52     action.update_max_duration(delta);
53
54     if (((action.get_remains_no_update() <= 0) && (action.get_variable()->get_penalty() > 0)) ||
55         ((action.get_max_duration() != NO_MAX_DURATION) && (action.get_max_duration() <= 0))) {
56       action.finish(Action::State::FINISHED);
57     }
58   }
59 }
60
61 /************
62  * Resource *
63  ************/
64
65 DiskS19::DiskS19(DiskModel* model, const std::string& name, lmm::System* maxminSystem, double read_bw, double write_bw)
66     : DiskImpl(model, name, maxminSystem, read_bw, write_bw)
67 {
68   XBT_DEBUG("Create resource with read_bw '%f' write_bw '%f'", read_bw, write_bw);
69 }
70
71 DiskAction* DiskS19::io_start(sg_size_t size, s4u::Io::OpType type)
72 {
73   return new DiskS19Action(get_model(), size, not is_on(), this, type);
74 }
75
76 DiskAction* DiskS19::read(sg_size_t size)
77 {
78   return new DiskS19Action(get_model(), size, not is_on(), this, s4u::Io::OpType::READ);
79 }
80
81 DiskAction* DiskS19::write(sg_size_t size)
82 {
83   return new DiskS19Action(get_model(), size, not is_on(), this, s4u::Io::OpType::WRITE);
84 }
85
86 /**********
87  * Action *
88  **********/
89
90 DiskS19Action::DiskS19Action(Model* model, double cost, bool failed, DiskImpl* disk, s4u::Io::OpType type)
91     : DiskAction(model, cost, failed, model->get_maxmin_system()->variable_new(this, 1.0, -1.0, 3), disk, type)
92 {
93   XBT_IN("(%s,%g", disk->get_cname(), cost);
94
95   // Must be less than the max bandwidth for all actions
96   model->get_maxmin_system()->expand(disk->get_constraint(), get_variable(), 1.0);
97   switch (type) {
98     case s4u::Io::OpType::READ:
99       model->get_maxmin_system()->expand(disk->constraint_read_, get_variable(), 1.0);
100       break;
101     case s4u::Io::OpType::WRITE:
102       model->get_maxmin_system()->expand(disk->constraint_write_, get_variable(), 1.0);
103       break;
104     default:
105       THROW_UNIMPLEMENTED;
106   }
107   XBT_OUT();
108 }
109
110 void DiskS19Action::cancel()
111 {
112   set_state(Action::State::FAILED);
113 }
114
115 void DiskS19Action::suspend()
116 {
117   XBT_IN("(%p)", this);
118   if (is_running()) {
119     get_model()->get_maxmin_system()->update_variable_penalty(get_variable(), 0.0);
120     set_suspend_state(Action::SuspendStates::SUSPENDED);
121   }
122   XBT_OUT();
123 }
124
125 void DiskS19Action::resume()
126 {
127   THROW_UNIMPLEMENTED;
128 }
129
130 void DiskS19Action::set_max_duration(double /*duration*/)
131 {
132   THROW_UNIMPLEMENTED;
133 }
134
135 void DiskS19Action::set_sharing_penalty(double)
136 {
137   THROW_UNIMPLEMENTED;
138 }
139 void DiskS19Action::update_remains_lazy(double /*now*/)
140 {
141   THROW_IMPOSSIBLE;
142 }
143 } // namespace resource
144 } // namespace kernel
145 } // namespace simgrid