Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use access modifier to disallow direct deletion. Remove superfluous boolean.
[simgrid.git] / src / kernel / resource / DiskImpl.cpp
1 /* Copyright (c) 2019-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 "DiskImpl.hpp"
7
8 #include "simgrid/s4u/Engine.hpp"
9 #include "src/kernel/EngineImpl.hpp"
10 #include "src/kernel/lmm/maxmin.hpp"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(res_disk, ker_resource, "Disk resources, fuelling I/O activities");
13
14 simgrid::kernel::resource::DiskModel* surf_disk_model = nullptr;
15
16 namespace simgrid {
17 namespace kernel {
18 namespace resource {
19
20 /*********
21  * Model *
22  *********/
23
24 DiskModel::DiskModel() : Model(Model::UpdateAlgo::FULL)
25 {
26   set_maxmin_system(new simgrid::kernel::lmm::System(true /* selective update */));
27 }
28
29 DiskModel::~DiskModel()
30 {
31   surf_disk_model = nullptr;
32 }
33
34 /************
35  * Resource *
36  ************/
37
38 DiskImpl::DiskImpl(kernel::resource::Model* model, const std::string& name, kernel::lmm::System* maxminSystem,
39                    double read_bw, double write_bw)
40     : Resource(model, name, maxminSystem->constraint_new(this, std::max(read_bw, write_bw)))
41     , piface_(name, this)
42     , read_bw_(read_bw)
43     , write_bw_(write_bw)
44 {
45   DiskImpl::turn_on();
46   XBT_DEBUG("Create resource with read_bw '%f' write_bw '%f'", read_bw_, write_bw_);
47   constraint_read_  = maxminSystem->constraint_new(this, read_bw);
48   constraint_write_ = maxminSystem->constraint_new(this, write_bw);
49 }
50
51 /** @brief Fire the required callbacks and destroy the object
52  *
53  * Don't delete directly a Disk, call d->destroy() instead.
54  */
55 void DiskImpl::destroy()
56 {
57   s4u::Disk::on_destruction(this->piface_);
58   delete this;
59 }
60
61 bool DiskImpl::is_used() const
62 {
63   THROW_UNIMPLEMENTED;
64 }
65
66 void DiskImpl::apply_event(kernel::profile::Event* /*event*/, double /*value*/)
67 {
68   THROW_UNIMPLEMENTED;
69 }
70
71 void DiskImpl::turn_on()
72 {
73   if (not is_on()) {
74     Resource::turn_on();
75     s4u::Disk::on_state_change(this->piface_);
76   }
77 }
78 void DiskImpl::turn_off()
79 {
80   if (is_on()) {
81     Resource::turn_off();
82     s4u::Disk::on_state_change(this->piface_);
83   }
84 }
85
86 xbt::signal<void(DiskAction const&, Action::State, Action::State)> DiskAction::on_state_change;
87
88 /**********
89  * Action *
90  **********/
91 void DiskAction::set_state(Action::State state)
92 {
93   Action::State old = get_state();
94   Action::set_state(state);
95   on_state_change(*this, old, state);
96 }
97 } // namespace resource
98 } // namespace kernel
99 } // namespace simgrid