Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s4u::Disk allow chaining set_property
[simgrid.git] / src / s4u / s4u_Disk.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 "simgrid/s4u/Disk.hpp"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Host.hpp"
9 #include "simgrid/s4u/Io.hpp"
10 #include "simgrid/simix.hpp"
11 #include "src/kernel/resource/DiskImpl.hpp"
12
13 namespace simgrid {
14
15 template class xbt::Extendable<s4u::Disk>;
16
17 namespace s4u {
18
19 xbt::signal<void(Disk&)> Disk::on_creation;
20 xbt::signal<void(Disk const&)> Disk::on_destruction;
21 xbt::signal<void(Disk const&)> Disk::on_state_change;
22
23 Disk* Disk::set_name(const std::string& name)
24 {
25   name_ = name;
26   return this;
27 }
28
29 Disk* Disk::set_read_bandwidth(double read_bw)
30 {
31   kernel::actor::simcall([this, read_bw] { pimpl_->set_read_bandwidth(read_bw); });
32   return this;
33 }
34
35 Disk* Disk::set_write_bandwidth(double write_bw)
36 {
37   kernel::actor::simcall([this, write_bw] { pimpl_->set_write_bandwidth(write_bw); });
38   return this;
39 }
40
41 double Disk::get_read_bandwidth() const
42 {
43   return pimpl_->get_read_bandwidth();
44 }
45
46 double Disk::get_write_bandwidth() const
47 {
48   return pimpl_->get_write_bandwidth();
49 }
50
51 Disk* Disk::set_host(Host* host)
52 {
53   pimpl_->set_host(host);
54   return this;
55 }
56
57 Host* Disk::get_host() const
58 {
59   return pimpl_->get_host();
60 }
61
62 const std::unordered_map<std::string, std::string>* Disk::get_properties() const
63 {
64   return pimpl_->get_properties();
65 }
66
67 const char* Disk::get_property(const std::string& key) const
68 {
69   return pimpl_->get_property(key);
70 }
71
72 Disk* Disk::set_property(const std::string& key, const std::string& value)
73 {
74   kernel::actor::simcall([this, &key, &value] { this->pimpl_->set_property(key, value); });
75   return this;
76 }
77
78 IoPtr Disk::io_init(sg_size_t size, Io::OpType type) const
79 {
80   return Io::init()->set_disk(this)->set_size(size)->set_op_type(type);
81 }
82
83 IoPtr Disk::read_async(sg_size_t size) const
84 {
85   return IoPtr(io_init(size, Io::OpType::READ))->vetoable_start();
86 }
87
88 sg_size_t Disk::read(sg_size_t size) const
89 {
90   return IoPtr(io_init(size, Io::OpType::READ))->vetoable_start()->wait()->get_performed_ioops();
91 }
92
93 IoPtr Disk::write_async(sg_size_t size) const
94 {
95   return IoPtr(io_init(size, Io::OpType::WRITE)->vetoable_start());
96 }
97
98 sg_size_t Disk::write(sg_size_t size) const
99 {
100   return IoPtr(io_init(size, Io::OpType::WRITE))->vetoable_start()->wait()->get_performed_ioops();
101 }
102
103 Disk* Disk::seal()
104 {
105   kernel::actor::simcall([this]{ pimpl_->seal(); });
106   get_host()->add_disk(this);
107   Disk::on_creation(*this);
108   return this;
109 }
110 } // namespace s4u
111 } // namespace simgrid
112
113 /* **************************** Public C interface *************************** */
114
115 const char* sg_disk_get_name(const_sg_disk_t disk)
116 {
117   return disk->get_cname();
118 }
119
120 sg_host_t sg_disk_get_host(const_sg_disk_t disk)
121 {
122   return disk->get_host();
123 }
124
125 double sg_disk_read_bandwidth(const_sg_disk_t disk)
126 {
127   return disk->get_read_bandwidth();
128 }
129
130 double sg_disk_write_bandwidth(const_sg_disk_t disk)
131 {
132   return disk->get_write_bandwidth();
133 }
134
135 sg_size_t sg_disk_read(const_sg_disk_t disk, sg_size_t size)
136 {
137   return disk->read(size);
138 }
139 sg_size_t sg_disk_write(const_sg_disk_t disk, sg_size_t size)
140 {
141   return disk->write(size);
142 }
143
144 void* sg_disk_get_data(const_sg_disk_t disk)
145 {
146   return disk->get_data();
147 }
148
149 void sg_disk_set_data(sg_disk_t disk, void* data)
150 {
151   disk->set_data(data);
152 }