Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Use '=default'.
[simgrid.git] / src / surf / disk_s19.cpp
1 /* Copyright (c) 2013-2021. 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/EngineImpl.hpp"
11 #include "src/kernel/lmm/maxmin.hpp"
12 #include "src/surf/xml/platf.hpp"
13 #include "surf/surf.hpp"
14
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_disk);
16
17 /*********
18  * Model *
19  *********/
20
21 void surf_disk_model_init_default()
22 {
23   auto disk_model = std::make_shared<simgrid::kernel::resource::DiskS19Model>();
24   simgrid::kernel::EngineImpl::get_instance()->add_model(simgrid::kernel::resource::Model::Type::DISK,
25                                                          std::move(disk_model), true);
26 }
27
28 namespace simgrid {
29 namespace kernel {
30 namespace resource {
31
32 DiskImpl* DiskS19Model::create_disk(const std::string& name, double read_bandwidth, double write_bandwidth)
33 {
34   return (new DiskS19(name, read_bandwidth, write_bandwidth))->set_model(this);
35 }
36
37 double DiskS19Model::next_occurring_event(double now)
38 {
39   return DiskModel::next_occurring_event_full(now);
40 }
41
42 void DiskS19Model::update_actions_state(double /*now*/, double delta)
43 {
44   for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) {
45     auto& action = *it;
46     ++it; // increment iterator here since the following calls to action.finish() may invalidate it
47     action.update_remains(rint(action.get_variable()->get_value() * delta));
48     action.update_max_duration(delta);
49
50     if (((action.get_remains_no_update() <= 0) && (action.get_variable()->get_penalty() > 0)) ||
51         ((action.get_max_duration() != NO_MAX_DURATION) && (action.get_max_duration() <= 0))) {
52       action.finish(Action::State::FINISHED);
53     }
54   }
55 }
56
57 /************
58  * Resource *
59  ************/
60 DiskAction* DiskS19::io_start(sg_size_t size, s4u::Io::OpType type)
61 {
62   return new DiskS19Action(get_model(), static_cast<double>(size), not is_on(), this, type);
63 }
64
65 DiskAction* DiskS19::read(sg_size_t size)
66 {
67   return new DiskS19Action(get_model(), static_cast<double>(size), not is_on(), this, s4u::Io::OpType::READ);
68 }
69
70 DiskAction* DiskS19::write(sg_size_t size)
71 {
72   return new DiskS19Action(get_model(), static_cast<double>(size), not is_on(), this, s4u::Io::OpType::WRITE);
73 }
74
75 /**********
76  * Action *
77  **********/
78
79 DiskS19Action::DiskS19Action(Model* model, double cost, bool failed, DiskImpl* disk, s4u::Io::OpType type)
80     : DiskAction(model, cost, failed, model->get_maxmin_system()->variable_new(this, 1.0, -1.0, 3), disk, type)
81 {
82   XBT_IN("(%s,%g", disk->get_cname(), cost);
83
84   // Must be less than the max bandwidth for all actions
85   model->get_maxmin_system()->expand(disk->get_constraint(), get_variable(), 1.0);
86   switch (type) {
87     case s4u::Io::OpType::READ:
88       model->get_maxmin_system()->expand(disk->get_read_constraint(), get_variable(), 1.0);
89       break;
90     case s4u::Io::OpType::WRITE:
91       model->get_maxmin_system()->expand(disk->get_write_constraint(), get_variable(), 1.0);
92       break;
93     default:
94       THROW_UNIMPLEMENTED;
95   }
96   XBT_OUT();
97 }
98
99 void DiskS19Action::cancel()
100 {
101   set_state(Action::State::FAILED);
102 }
103
104 void DiskS19Action::suspend()
105 {
106   XBT_IN("(%p)", this);
107   if (is_running()) {
108     get_model()->get_maxmin_system()->update_variable_penalty(get_variable(), 0.0);
109     set_suspend_state(Action::SuspendStates::SUSPENDED);
110   }
111   XBT_OUT();
112 }
113
114 void DiskS19Action::resume()
115 {
116   THROW_UNIMPLEMENTED;
117 }
118
119 void DiskS19Action::set_max_duration(double /*duration*/)
120 {
121   THROW_UNIMPLEMENTED;
122 }
123
124 void DiskS19Action::set_sharing_penalty(double)
125 {
126   THROW_UNIMPLEMENTED;
127 }
128 void DiskS19Action::update_remains_lazy(double /*now*/)
129 {
130   THROW_IMPOSSIBLE;
131 }
132 } // namespace resource
133 } // namespace kernel
134 } // namespace simgrid