Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not allocate/free properties
[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 Disk* Disk::set_properties(const std::unordered_map<std::string, std::string>& properties)
79 {
80   kernel::actor::simcall([this, properties] { this->pimpl_->set_properties(properties); });
81   return this;
82 }
83
84 IoPtr Disk::io_init(sg_size_t size, Io::OpType type) const
85 {
86   return Io::init()->set_disk(this)->set_size(size)->set_op_type(type);
87 }
88
89 IoPtr Disk::read_async(sg_size_t size) const
90 {
91   return IoPtr(io_init(size, Io::OpType::READ))->vetoable_start();
92 }
93
94 sg_size_t Disk::read(sg_size_t size) const
95 {
96   return IoPtr(io_init(size, Io::OpType::READ))->vetoable_start()->wait()->get_performed_ioops();
97 }
98
99 IoPtr Disk::write_async(sg_size_t size) const
100 {
101   return IoPtr(io_init(size, Io::OpType::WRITE)->vetoable_start());
102 }
103
104 sg_size_t Disk::write(sg_size_t size) const
105 {
106   return IoPtr(io_init(size, Io::OpType::WRITE))->vetoable_start()->wait()->get_performed_ioops();
107 }
108
109 Disk* Disk::seal()
110 {
111   kernel::actor::simcall([this]{ pimpl_->seal(); });
112   get_host()->add_disk(this);
113   Disk::on_creation(*this);
114   return this;
115 }
116 } // namespace s4u
117 } // namespace simgrid
118
119 /* **************************** Public C interface *************************** */
120
121 const char* sg_disk_get_name(const_sg_disk_t disk)
122 {
123   return disk->get_cname();
124 }
125
126 sg_host_t sg_disk_get_host(const_sg_disk_t disk)
127 {
128   return disk->get_host();
129 }
130
131 double sg_disk_read_bandwidth(const_sg_disk_t disk)
132 {
133   return disk->get_read_bandwidth();
134 }
135
136 double sg_disk_write_bandwidth(const_sg_disk_t disk)
137 {
138   return disk->get_write_bandwidth();
139 }
140
141 sg_size_t sg_disk_read(const_sg_disk_t disk, sg_size_t size)
142 {
143   return disk->read(size);
144 }
145 sg_size_t sg_disk_write(const_sg_disk_t disk, sg_size_t size)
146 {
147   return disk->write(size);
148 }
149
150 void* sg_disk_get_data(const_sg_disk_t disk)
151 {
152   return disk->get_data();
153 }
154
155 void sg_disk_set_data(sg_disk_t disk, void* data)
156 {
157   disk->set_data(data);
158 }