Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Engine*::add_model: from unique to shared_ptr
[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 DiskS19Model::DiskS19Model()
33 {
34 }
35
36 DiskImpl* DiskS19Model::create_disk(const std::string& name, double read_bandwidth, double write_bandwidth)
37 {
38   return (new DiskS19(name, read_bandwidth, write_bandwidth))->set_model(this);
39 }
40
41 double DiskS19Model::next_occurring_event(double now)
42 {
43   return DiskModel::next_occurring_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(rint(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 DiskAction* DiskS19::io_start(sg_size_t size, s4u::Io::OpType type)
65 {
66   return new DiskS19Action(get_model(), static_cast<double>(size), not is_on(), this, type);
67 }
68
69 DiskAction* DiskS19::read(sg_size_t size)
70 {
71   return new DiskS19Action(get_model(), static_cast<double>(size), not is_on(), this, s4u::Io::OpType::READ);
72 }
73
74 DiskAction* DiskS19::write(sg_size_t size)
75 {
76   return new DiskS19Action(get_model(), static_cast<double>(size), not is_on(), this, s4u::Io::OpType::WRITE);
77 }
78
79 /**********
80  * Action *
81  **********/
82
83 DiskS19Action::DiskS19Action(Model* model, double cost, bool failed, DiskImpl* disk, s4u::Io::OpType type)
84     : DiskAction(model, cost, failed, model->get_maxmin_system()->variable_new(this, 1.0, -1.0, 3), disk, type)
85 {
86   XBT_IN("(%s,%g", disk->get_cname(), cost);
87
88   // Must be less than the max bandwidth for all actions
89   model->get_maxmin_system()->expand(disk->get_constraint(), get_variable(), 1.0);
90   switch (type) {
91     case s4u::Io::OpType::READ:
92       model->get_maxmin_system()->expand(disk->get_read_constraint(), get_variable(), 1.0);
93       break;
94     case s4u::Io::OpType::WRITE:
95       model->get_maxmin_system()->expand(disk->get_write_constraint(), get_variable(), 1.0);
96       break;
97     default:
98       THROW_UNIMPLEMENTED;
99   }
100   XBT_OUT();
101 }
102
103 void DiskS19Action::cancel()
104 {
105   set_state(Action::State::FAILED);
106 }
107
108 void DiskS19Action::suspend()
109 {
110   XBT_IN("(%p)", this);
111   if (is_running()) {
112     get_model()->get_maxmin_system()->update_variable_penalty(get_variable(), 0.0);
113     set_suspend_state(Action::SuspendStates::SUSPENDED);
114   }
115   XBT_OUT();
116 }
117
118 void DiskS19Action::resume()
119 {
120   THROW_UNIMPLEMENTED;
121 }
122
123 void DiskS19Action::set_max_duration(double /*duration*/)
124 {
125   THROW_UNIMPLEMENTED;
126 }
127
128 void DiskS19Action::set_sharing_penalty(double)
129 {
130   THROW_UNIMPLEMENTED;
131 }
132 void DiskS19Action::update_remains_lazy(double /*now*/)
133 {
134   THROW_IMPOSSIBLE;
135 }
136 } // namespace resource
137 } // namespace kernel
138 } // namespace simgrid