Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
allow for programmatic creation of a disk
[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   pimpl_->set_read_bandwidth(read_bw);
32   return this;
33 }
34
35 Disk* Disk::set_write_bandwidth(double write_bw)
36 {
37   pimpl_->set_write_bandwidth(write_bw);
38   return this;
39 }
40
41 double Disk::get_read_bandwidth() const
42 {
43   return this->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 this->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)
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)
83 {
84   return IoPtr(io_init(size, Io::OpType::READ))->vetoable_start();
85 }
86
87 sg_size_t Disk::read(sg_size_t size)
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)
93 {
94   return IoPtr(io_init(size, Io::OpType::WRITE)->vetoable_start());
95 }
96
97 sg_size_t Disk::write(sg_size_t size)
98 {
99   return IoPtr(io_init(size, Io::OpType::WRITE))->vetoable_start()->wait()->get_performed_ioops();
100 }
101
102 void Disk::seal()
103 {
104   kernel::actor::simcall([this]{ pimpl_->seal(); });
105   get_host()->add_disk(this);
106   Disk::on_creation(*this);
107 }
108 } // namespace s4u
109 } // namespace simgrid
110
111 /* **************************** Public C interface *************************** */
112
113 const char* sg_disk_get_name(const_sg_disk_t disk)
114 {
115   return disk->get_cname();
116 }
117
118 sg_host_t sg_disk_get_host(const_sg_disk_t disk)
119 {
120   return disk->get_host();
121 }
122
123 double sg_disk_read_bandwidth(const_sg_disk_t disk)
124 {
125   return disk->get_read_bandwidth();
126 }
127
128 double sg_disk_write_bandwidth(const_sg_disk_t disk)
129 {
130   return disk->get_write_bandwidth();
131 }
132
133 sg_size_t sg_disk_read(sg_disk_t disk, sg_size_t size)
134 {
135   return disk->read(size);
136 }
137 sg_size_t sg_disk_write(sg_disk_t disk, sg_size_t size)
138 {
139   return disk->write(size);
140 }
141
142 void* sg_disk_get_data(const_sg_disk_t disk)
143 {
144   return disk->get_data();
145 }
146
147 void sg_disk_set_data(sg_disk_t disk, void* data)
148 {
149   disk->set_data(data);
150 }