Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill another bunch of globals.
[simgrid.git] / src / surf / disk_s19.cpp
1 /* Copyright (c) 2013-2023. 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 "simgrid/sg_config.hpp"
7 #include <simgrid/kernel/routing/NetPoint.hpp>
8 #include <simgrid/kernel/routing/NetZoneImpl.hpp>
9 #include <simgrid/s4u/Engine.hpp>
10 #include <simgrid/s4u/Host.hpp>
11
12 #include "src/kernel/EngineImpl.hpp"
13 #include "src/kernel/lmm/maxmin.hpp"
14 #include "src/kernel/resource/profile/Event.hpp"
15 #include "src/surf/disk_s19.hpp"
16
17 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_disk);
18 /***********
19  * Options *
20  ***********/
21 static simgrid::config::Flag<std::string> cfg_disk_solver("disk/solver",
22                                                           "Set linear equations solver used by disk model", "maxmin",
23                                                           &simgrid::kernel::lmm::System::validate_solver);
24
25 /*********
26  * Model *
27  *********/
28
29 void surf_disk_model_init_S19()
30 {
31   auto disk_model = std::make_shared<simgrid::kernel::resource::DiskS19Model>("Disk");
32   auto* engine    = simgrid::kernel::EngineImpl::get_instance();
33   engine->add_model(disk_model);
34   engine->get_netzone_root()->set_disk_model(disk_model);
35 }
36
37 namespace simgrid::kernel::resource {
38 /*********
39  * Model *
40  *********/
41
42 DiskS19Model::DiskS19Model(const std::string& name) : DiskModel(name)
43 {
44   set_maxmin_system(lmm::System::build(cfg_disk_solver.get(), true /* selective update */));
45 }
46
47
48 DiskImpl* DiskS19Model::create_disk(const std::string& name, double read_bandwidth, double write_bandwidth)
49 {
50   return (new DiskS19(name, read_bandwidth, write_bandwidth))->set_model(this);
51 }
52
53 void DiskS19Model::update_actions_state(double /*now*/, double delta)
54 {
55   for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) {
56     auto& action = *it;
57     ++it; // increment iterator here since the following calls to action.finish() may invalidate it
58     action.update_remains(rint(action.get_rate() * delta));
59     action.update_max_duration(delta);
60
61     if (((action.get_remains_no_update() <= 0) && (action.get_variable()->get_penalty() > 0)) ||
62         ((action.get_max_duration() != NO_MAX_DURATION) && (action.get_max_duration() <= 0))) {
63       action.finish(Action::State::FINISHED);
64     }
65   }
66 }
67
68 /************
69  * Resource *
70  ************/
71
72 void DiskS19::apply_event(kernel::profile::Event* triggered, double value)
73 {
74   /* Find out which of my iterators was triggered, and react accordingly */
75   if (triggered == get_read_event()) {
76     set_read_bandwidth(value);
77     unref_read_event();
78   } else if (triggered == get_write_event()) {
79     set_write_bandwidth(value);
80     unref_write_event();
81   } else if (triggered == get_state_event()) {
82     if (value > 0)
83       turn_on();
84     else
85       turn_off();
86     unref_state_event();
87   } else {
88     xbt_die("Unknown event!\n");
89   }
90
91   XBT_DEBUG("There was a resource state event, need to update actions related to the constraint (%p)",
92             get_constraint());
93 }
94
95 /**********
96  * Action *
97  **********/
98
99 DiskS19Action::DiskS19Action(Model* model, double cost, bool failed)
100     : DiskAction(model, cost, failed, model->get_maxmin_system()->variable_new(this, 1.0, -1.0, 3))
101 {
102 }
103
104 DiskAction* DiskS19::io_start(sg_size_t size, s4u::Io::OpType type)
105 {
106   auto* action = new DiskS19Action(get_model(), static_cast<double>(size), not is_on());
107   get_model()->get_maxmin_system()->expand(get_constraint(), action->get_variable(), 1.0);
108   switch (type) {
109     case s4u::Io::OpType::READ:
110       get_model()->get_maxmin_system()->expand(get_read_constraint(), action->get_variable(), 1.0);
111       break;
112     case s4u::Io::OpType::WRITE:
113       get_model()->get_maxmin_system()->expand(get_write_constraint(), action->get_variable(), 1.0);
114       break;
115     default:
116       THROW_UNIMPLEMENTED;
117   }
118   if (const auto& factor_cb = get_factor_cb()) { // handling disk variability
119     action->set_rate_factor(factor_cb(size, type));
120   }
121   return action;
122 }
123
124 } // namespace simgrid::kernel::resource