Logo AND Algorithmique Numérique Distribuée

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