Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'Adrien.Gougeon/simgrid-master'
[simgrid.git] / src / plugins / file_system / s4u_FileSystem.cpp
1 /* Copyright (c) 2015-2020. 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/plugins/file_system.h"
7 #include "simgrid/s4u/Actor.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "src/surf/HostImpl.hpp"
10 #include "src/surf/xml/platf_private.hpp"
11 #include "xbt/config.hpp"
12 #include "xbt/parse_units.hpp"
13
14 #include <algorithm>
15 #include <boost/algorithm/string.hpp>
16 #include <boost/algorithm/string/join.hpp>
17 #include <boost/algorithm/string/split.hpp>
18 #include <fstream>
19 #include <memory>
20 #include <numeric>
21
22 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_file, s4u, "S4U files");
23 int sg_storage_max_file_descriptors = 1024;
24
25 /** @defgroup plugin_filesystem Plugin FileSystem
26  *
27  * This adds the notion of Files on top of the storage notion that provided by the core of SimGrid.
28  * Activate this plugin at will.
29  */
30
31 namespace simgrid {
32
33 template class xbt::Extendable<s4u::File>;
34
35 namespace s4u {
36 simgrid::xbt::Extension<Disk, FileSystemDiskExt> FileSystemDiskExt::EXTENSION_ID;
37 simgrid::xbt::Extension<Storage, FileSystemStorageExt> FileSystemStorageExt::EXTENSION_ID;
38 simgrid::xbt::Extension<Host, FileDescriptorHostExt> FileDescriptorHostExt::EXTENSION_ID;
39
40 Storage* File::find_local_storage_on(Host* host)
41 {
42   Storage* st                  = nullptr;
43   size_t longest_prefix_length = 0;
44   XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath_.c_str(), host->get_cname());
45
46   for (auto const& mnt : host->get_mounted_storages()) {
47     XBT_DEBUG("See '%s'", mnt.first.c_str());
48     mount_point_ = fullpath_.substr(0, mnt.first.length());
49
50     if (mount_point_ == mnt.first && mnt.first.length() > longest_prefix_length) {
51       /* The current mount name is found in the full path and is bigger than the previous*/
52       longest_prefix_length = mnt.first.length();
53       st                    = mnt.second;
54     }
55   }
56   if (longest_prefix_length > 0) { /* Mount point found, split fullpath_ into mount_name and path+filename*/
57     mount_point_ = fullpath_.substr(0, longest_prefix_length);
58     path_        = fullpath_.substr(longest_prefix_length, fullpath_.length());
59   } else
60     xbt_die("Can't find mount point for '%s' on '%s'", fullpath_.c_str(), host->get_cname());
61
62   return st;
63 }
64
65 Disk* File::find_local_disk_on(const Host* host)
66 {
67   Disk* d                      = nullptr;
68   size_t longest_prefix_length = 0;
69   for (auto const& disk : host->get_disks()) {
70     std::string current_mount;
71     if (disk->get_host() != host)
72       current_mount = disk->extension<FileSystemDiskExt>()->get_mount_point(disk->get_host());
73     else
74       current_mount = disk->extension<FileSystemDiskExt>()->get_mount_point();
75     mount_point_ = fullpath_.substr(0, current_mount.length());
76     if (mount_point_ == current_mount && current_mount.length() > longest_prefix_length) {
77       /* The current mount name is found in the full path and is bigger than the previous*/
78       longest_prefix_length = current_mount.length();
79       d                     = disk;
80     }
81     if (longest_prefix_length > 0) { /* Mount point found, split fullpath_ into mount_name and path+filename*/
82       mount_point_ = fullpath_.substr(0, longest_prefix_length);
83       if (mount_point_ == std::string("/"))
84         path_ = fullpath_;
85       else
86         path_ = fullpath_.substr(longest_prefix_length, fullpath_.length());
87       XBT_DEBUG("%s + %s", mount_point_.c_str(), path_.c_str());
88     } else
89       xbt_die("Can't find mount point for '%s' on '%s'", fullpath_.c_str(), host->get_cname());
90   }
91   return d;
92 }
93
94 File::File(const std::string& fullpath, void* userdata) : File(fullpath, Host::current(), userdata) {}
95
96 File::File(const std::string& fullpath, sg_host_t host, void* userdata) : fullpath_(fullpath)
97 {
98   kernel::actor::simcall([this, &host, userdata] {
99     this->set_data(userdata);
100     // this cannot fail because we get a xbt_die if the mountpoint does not exist
101     if (not host->get_mounted_storages().empty()) {
102       local_storage_ = find_local_storage_on(host);
103     }
104     if (not host->get_disks().empty()) {
105       local_disk_ = find_local_disk_on(host);
106     }
107
108     // assign a file descriptor id to the newly opened File
109     auto* ext = host->extension<simgrid::s4u::FileDescriptorHostExt>();
110     if (ext->file_descriptor_table == nullptr) {
111       ext->file_descriptor_table = std::make_unique<std::vector<int>>(sg_storage_max_file_descriptors);
112       std::iota(ext->file_descriptor_table->rbegin(), ext->file_descriptor_table->rend(), 0); // Fill with ..., 1, 0.
113     }
114     xbt_assert(not ext->file_descriptor_table->empty(), "Too much files are opened! Some have to be closed.");
115     desc_id = ext->file_descriptor_table->back();
116     ext->file_descriptor_table->pop_back();
117
118     XBT_DEBUG("\tOpen file '%s'", path_.c_str());
119     std::map<std::string, sg_size_t>* content = nullptr;
120     if (local_storage_)
121       content = local_storage_->extension<FileSystemStorageExt>()->get_content();
122
123     if (local_disk_)
124       content = local_disk_->extension<FileSystemDiskExt>()->get_content();
125
126     // if file does not exist create an empty file
127     if (content) {
128       auto sz = content->find(path_);
129       if (sz != content->end()) {
130         size_ = sz->second;
131       } else {
132         size_ = 0;
133         content->insert({path_, size_});
134         XBT_DEBUG("File '%s' was not found, file created.", path_.c_str());
135       }
136     }
137   });
138 }
139
140 File::~File()
141 {
142   std::vector<int>* desc_table =
143       Host::current()->extension<simgrid::s4u::FileDescriptorHostExt>()->file_descriptor_table.get();
144   kernel::actor::simcall([this, desc_table] { desc_table->push_back(this->desc_id); });
145 }
146
147 void File::dump() const
148 {
149   if (local_storage_)
150     XBT_INFO("File Descriptor information:\n"
151              "\t\tFull path: '%s'\n"
152              "\t\tSize: %llu\n"
153              "\t\tMount point: '%s'\n"
154              "\t\tStorage Id: '%s'\n"
155              "\t\tStorage Type: '%s'\n"
156              "\t\tFile Descriptor Id: %d",
157              get_path(), size_, mount_point_.c_str(), local_storage_->get_cname(), local_storage_->get_type(), desc_id);
158   if (local_disk_)
159     XBT_INFO("File Descriptor information:\n"
160              "\t\tFull path: '%s'\n"
161              "\t\tSize: %llu\n"
162              "\t\tMount point: '%s'\n"
163              "\t\tDisk Id: '%s'\n"
164              "\t\tHost Id: '%s'\n"
165              "\t\tFile Descriptor Id: %d",
166              get_path(), size_, mount_point_.c_str(), local_disk_->get_cname(), local_disk_->get_host()->get_cname(),
167              desc_id);
168 }
169
170 sg_size_t File::read(sg_size_t size)
171 {
172   if (size_ == 0) /* Nothing to read, return */
173     return 0;
174   sg_size_t read_size = 0;
175   Host* host          = nullptr;
176   if (local_storage_) {
177     /* Find the host where the file is physically located and read it */
178     host = local_storage_->get_host();
179     XBT_DEBUG("READ %s on disk '%s'", get_path(), local_storage_->get_cname());
180     // if the current position is close to the end of the file, we may not be able to read the requested size
181     read_size = local_storage_->read(std::min(size, size_ - current_position_));
182     current_position_ += read_size;
183   }
184
185   if (local_disk_) {
186     /* Find the host where the file is physically located and read it */
187     host = local_disk_->get_host();
188     XBT_DEBUG("READ %s on disk '%s'", get_path(), local_disk_->get_cname());
189     // if the current position is close to the end of the file, we may not be able to read the requested size
190     read_size = local_disk_->read(std::min(size, size_ - current_position_));
191     current_position_ += read_size;
192   }
193
194   if (host && host->get_name() != Host::current()->get_name() && read_size > 0) {
195     /* the file is hosted on a remote host, initiate a communication between src and dest hosts for data transfer */
196     XBT_DEBUG("File is on %s remote host, initiate data transfer of %llu bytes.", host->get_cname(), read_size);
197     host->sendto(Host::current(), read_size);
198   }
199
200   return read_size;
201 }
202
203 /** @brief Write into a file (local or remote)
204  * @ingroup plugin_filesystem
205  *
206  * @param size of the file to write
207  * @return the number of bytes successfully write or -1 if an error occurred
208  */
209 sg_size_t File::write_on_disk(sg_size_t size, bool write_inside)
210 {
211   sg_size_t write_size = 0;
212   /* Find the host where the file is physically located (remote or local)*/
213   Host* host = local_disk_->get_host();
214
215   if (host && host->get_name() != Host::current()->get_name()) {
216     /* the file is hosted on a remote host, initiate a communication between src and dest hosts for data transfer */
217     XBT_DEBUG("File is on %s remote host, initiate data transfer of %llu bytes.", host->get_cname(), size);
218     Host::current()->sendto(host, size);
219   }
220   XBT_DEBUG("WRITE %s on disk '%s'. size '%llu/%llu' '%llu:%llu'", get_path(), local_disk_->get_cname(), size, size_,
221             sg_disk_get_size_used(local_disk_), sg_disk_get_size(local_disk_));
222   // If the storage is full before even starting to write
223   if (sg_disk_get_size_used(local_disk_) >= sg_disk_get_size(local_disk_))
224     return 0;
225   if (not write_inside) {
226     /* Subtract the part of the file that might disappear from the used sized on the storage element */
227     local_disk_->extension<FileSystemDiskExt>()->decr_used_size(size_ - current_position_);
228     write_size = local_disk_->write(size);
229     local_disk_->extension<FileSystemDiskExt>()->incr_used_size(write_size);
230     current_position_ += write_size;
231     size_ = current_position_;
232   } else {
233     write_size = local_disk_->write(size);
234     current_position_ += write_size;
235     if (current_position_ > size_)
236       size_ = current_position_;
237   }
238   kernel::actor::simcall([this] {
239     std::map<std::string, sg_size_t>* content = local_disk_->extension<FileSystemDiskExt>()->get_content();
240
241     content->erase(path_);
242     content->insert({path_, size_});
243   });
244
245   return write_size;
246 }
247
248 sg_size_t File::write_on_storage(sg_size_t size, bool write_inside)
249 {
250   sg_size_t write_size = 0;
251   /* Find the host where the file is physically located (remote or local)*/
252   Host* host = local_storage_->get_host();
253
254   if (host && host->get_name() != Host::current()->get_name()) {
255     /* the file is hosted on a remote host, initiate a communication between src and dest hosts for data transfer */
256     XBT_DEBUG("File is on %s remote host, initiate data transfer of %llu bytes.", host->get_cname(), size);
257     Host::current()->sendto(host, size);
258   }
259
260   XBT_DEBUG("WRITE %s on disk '%s'. size '%llu/%llu' '%llu:%llu'", get_path(), local_storage_->get_cname(), size, size_,
261             sg_storage_get_size_used(local_storage_), sg_storage_get_size(local_storage_));
262   // If the storage is full before even starting to write
263   if (sg_storage_get_size_used(local_storage_) >= sg_storage_get_size(local_storage_))
264     return 0;
265   if (not write_inside) {
266     /* Subtract the part of the file that might disappear from the used sized on the storage element */
267     local_storage_->extension<FileSystemStorageExt>()->decr_used_size(size_ - current_position_);
268     write_size = local_storage_->write(size);
269     local_storage_->extension<FileSystemStorageExt>()->incr_used_size(write_size);
270     current_position_ += write_size;
271     size_ = current_position_;
272   } else {
273     write_size = local_storage_->write(size);
274     current_position_ += write_size;
275     if (current_position_ > size_)
276       size_ = current_position_;
277   }
278   kernel::actor::simcall([this] {
279     std::map<std::string, sg_size_t>* content = local_storage_->extension<FileSystemStorageExt>()->get_content();
280
281     content->erase(path_);
282     content->insert({path_, size_});
283   });
284
285   return write_size;
286 }
287
288 sg_size_t File::write(sg_size_t size, bool write_inside)
289 {
290   if (size == 0) /* Nothing to write, return */
291     return 0;
292
293   if (local_disk_)
294     return write_on_disk(size, write_inside);
295   if (local_storage_)
296     return write_on_storage(size, write_inside);
297
298   return 0;
299 }
300
301 sg_size_t File::size() const
302 {
303   return size_;
304 }
305
306 void File::seek(sg_offset_t offset)
307 {
308   current_position_ = offset;
309 }
310
311 void File::seek(sg_offset_t offset, int origin)
312 {
313   switch (origin) {
314     case SEEK_SET:
315       current_position_ = offset;
316       break;
317     case SEEK_CUR:
318       current_position_ += offset;
319       break;
320     case SEEK_END:
321       current_position_ = size_ + offset;
322       break;
323     default:
324       break;
325   }
326 }
327
328 sg_size_t File::tell() const
329 {
330   return current_position_;
331 }
332
333 void File::move(const std::string& fullpath) const
334 {
335   /* Check if the new full path is on the same mount point */
336   if (fullpath.compare(0, mount_point_.length(), mount_point_) == 0) {
337     std::map<std::string, sg_size_t>* content = nullptr;
338     if (local_storage_)
339       content = local_storage_->extension<FileSystemStorageExt>()->get_content();
340     if (local_disk_)
341       content = local_disk_->extension<FileSystemDiskExt>()->get_content();
342     if (content) {
343       auto sz = content->find(path_);
344       if (sz != content->end()) { // src file exists
345         sg_size_t new_size = sz->second;
346         content->erase(path_);
347         std::string path = fullpath.substr(mount_point_.length(), fullpath.length());
348         content->insert({path.c_str(), new_size});
349         XBT_DEBUG("Move file from %s to %s, size '%llu'", path_.c_str(), fullpath.c_str(), new_size);
350       } else {
351         XBT_WARN("File %s doesn't exist", path_.c_str());
352       }
353     }
354   } else {
355     XBT_WARN("New full path %s is not on the same mount point: %s.", fullpath.c_str(), mount_point_.c_str());
356   }
357 }
358
359 int File::unlink() const
360 {
361   /* Check if the file is on local storage */
362   std::map<std::string, sg_size_t>* content = nullptr;
363   const char* name = "";
364   if (local_storage_) {
365     content = local_storage_->extension<FileSystemStorageExt>()->get_content();
366     name    = local_storage_->get_cname();
367   }
368   if (local_disk_) {
369     content = local_disk_->extension<FileSystemDiskExt>()->get_content();
370     name    = local_disk_->get_cname();
371   }
372
373   if (not content || content->find(path_) == content->end()) {
374     XBT_WARN("File %s is not on disk %s. Impossible to unlink", path_.c_str(), name);
375     return -1;
376   } else {
377     XBT_DEBUG("UNLINK %s on disk '%s'", path_.c_str(), name);
378
379     if (local_storage_)
380       local_storage_->extension<FileSystemStorageExt>()->decr_used_size(size_);
381
382     if (local_disk_)
383       local_disk_->extension<FileSystemDiskExt>()->decr_used_size(size_);
384
385     // Remove the file from storage
386     content->erase(path_);
387
388     return 0;
389   }
390 }
391
392 int File::remote_copy(sg_host_t host, const std::string& fullpath)
393 {
394   /* Find the host where the file is physically located and read it */
395   Host* src_host = nullptr;
396   if (local_storage_) {
397     src_host = local_storage_->get_host();
398     XBT_DEBUG("READ %s on disk '%s'", get_path(), local_storage_->get_cname());
399   }
400
401   if (local_disk_) {
402     src_host = local_disk_->get_host();
403     XBT_DEBUG("READ %s on disk '%s'", get_path(), local_disk_->get_cname());
404   }
405
406   seek(0, SEEK_SET);
407   // if the current position is close to the end of the file, we may not be able to read the requested size
408   sg_size_t read_size = 0;
409   if (local_storage_)
410     read_size = local_storage_->read(size_);
411   if (local_disk_)
412     read_size = local_disk_->read(size_);
413
414   current_position_ += read_size;
415
416   Host* dst_host = host;
417   size_t longest_prefix_length = 0;
418   if (local_storage_) {
419     /* Find the host that owns the storage where the file has to be copied */
420     const Storage* storage_dest = nullptr;
421
422     for (auto const& elm : host->get_mounted_storages()) {
423       std::string mount_point = std::string(fullpath).substr(0, elm.first.size());
424       if (mount_point == elm.first && elm.first.length() > longest_prefix_length) {
425         /* The current mount name is found in the full path and is bigger than the previous*/
426         longest_prefix_length = elm.first.length();
427         storage_dest          = elm.second;
428       }
429     }
430
431     if (storage_dest != nullptr) {
432       /* Mount point found, retrieve the host the storage is attached to */
433       dst_host = storage_dest->get_host();
434     } else {
435       XBT_WARN("Can't find mount point for '%s' on destination host '%s'", fullpath.c_str(), host->get_cname());
436       return -1;
437     }
438   }
439
440   if (local_disk_) {
441     const Disk* dst_disk = nullptr;
442
443     for (auto const& disk : host->get_disks()) {
444       std::string current_mount = disk->extension<FileSystemDiskExt>()->get_mount_point();
445       std::string mount_point   = std::string(fullpath).substr(0, current_mount.length());
446       if (mount_point == current_mount && current_mount.length() > longest_prefix_length) {
447         /* The current mount name is found in the full path and is bigger than the previous*/
448         longest_prefix_length = current_mount.length();
449         dst_disk              = disk;
450       }
451     }
452
453     if (dst_disk == nullptr) {
454       XBT_WARN("Can't find mount point for '%s' on destination host '%s'", fullpath.c_str(), host->get_cname());
455       return -1;
456     }
457   }
458
459   if (src_host) {
460     XBT_DEBUG("Initiate data transfer of %llu bytes between %s and %s.", read_size, src_host->get_cname(),
461               dst_host->get_cname());
462     src_host->sendto(dst_host, read_size);
463   }
464
465   /* Create file on remote host, write it and close it */
466   File fd(fullpath, dst_host, nullptr);
467   if (local_storage_) {
468     sg_size_t write_size = fd.local_storage_->write(read_size);
469     fd.local_storage_->extension<FileSystemStorageExt>()->incr_used_size(write_size);
470     (*(fd.local_storage_->extension<FileSystemStorageExt>()->get_content()))[path_] = size_;
471   }
472   if (local_disk_)
473     fd.write(read_size);
474   return 0;
475 }
476
477 int File::remote_move(sg_host_t host, const std::string& fullpath)
478 {
479   int res = remote_copy(host, fullpath);
480   unlink();
481   return res;
482 }
483
484 FileSystemDiskExt::FileSystemDiskExt(const Disk* ptr)
485 {
486   const char* size_str    = ptr->get_property("size");
487   std::string dummyfile;
488   if (size_str)
489     size_ = surf_parse_get_size(dummyfile, -1, size_str, "disk size", ptr->get_name());
490
491   const char* current_mount_str = ptr->get_property("mount");
492   if (current_mount_str)
493     mount_point_ = std::string(current_mount_str);
494   else
495     mount_point_ = std::string("/");
496
497   const char* content_str = ptr->get_property("content");
498   if (content_str)
499     content_.reset(parse_content(content_str));
500 }
501
502 FileSystemStorageExt::FileSystemStorageExt(const Storage* ptr) : size_(ptr->get_impl()->size_)
503 {
504   content_.reset(parse_content(ptr->get_impl()->content_name_));
505 }
506
507 std::map<std::string, sg_size_t>* FileSystemDiskExt::parse_content(const std::string& filename)
508 {
509   if (filename.empty())
510     return nullptr;
511
512   auto* parse_content = new std::map<std::string, sg_size_t>();
513
514   auto fs = std::unique_ptr<std::ifstream>(surf_ifsopen(filename));
515   xbt_assert(not fs->fail(), "Cannot open file '%s' (path=%s)", filename.c_str(),
516              (boost::join(surf_path, ":")).c_str());
517
518   std::string line;
519   std::vector<std::string> tokens;
520   do {
521     std::getline(*fs, line);
522     boost::trim(line);
523     if (line.length() > 0) {
524       boost::split(tokens, line, boost::is_any_of(" \t"), boost::token_compress_on);
525       xbt_assert(tokens.size() == 2, "Parse error in %s: %s", filename.c_str(), line.c_str());
526       sg_size_t size = std::stoull(tokens.at(1));
527
528       used_size_ += size;
529       parse_content->insert({tokens.front(), size});
530     }
531   } while (not fs->eof());
532   return parse_content;
533 }
534
535 std::map<std::string, sg_size_t>* FileSystemStorageExt::parse_content(const std::string& filename)
536 {
537   if (filename.empty())
538     return nullptr;
539
540   auto* parse_content = new std::map<std::string, sg_size_t>();
541
542   auto fs = std::unique_ptr<std::ifstream>(surf_ifsopen(filename));
543   xbt_assert(not fs->fail(), "Cannot open file '%s' (path=%s)", filename.c_str(),
544              (boost::join(surf_path, ":")).c_str());
545
546   std::string line;
547   std::vector<std::string> tokens;
548   do {
549     std::getline(*fs, line);
550     boost::trim(line);
551     if (line.length() > 0) {
552       boost::split(tokens, line, boost::is_any_of(" \t"), boost::token_compress_on);
553       xbt_assert(tokens.size() == 2, "Parse error in %s: %s", filename.c_str(), line.c_str());
554       sg_size_t size = std::stoull(tokens.at(1));
555
556       used_size_ += size;
557       parse_content->insert({tokens.front(), size});
558     }
559   } while (not fs->eof());
560   return parse_content;
561 }
562
563 void FileSystemStorageExt::decr_used_size(sg_size_t size)
564 {
565   simgrid::kernel::actor::simcall([this, size] { used_size_ -= size; });
566 }
567
568 void FileSystemStorageExt::incr_used_size(sg_size_t size)
569 {
570   simgrid::kernel::actor::simcall([this, size] { used_size_ += size; });
571 }
572
573 void FileSystemDiskExt::decr_used_size(sg_size_t size)
574 {
575   simgrid::kernel::actor::simcall([this, size] { used_size_ -= size; });
576 }
577
578 void FileSystemDiskExt::incr_used_size(sg_size_t size)
579 {
580   simgrid::kernel::actor::simcall([this, size] { used_size_ += size; });
581 }
582 }
583 }
584
585 using simgrid::s4u::FileDescriptorHostExt;
586 using simgrid::s4u::FileSystemDiskExt;
587 using simgrid::s4u::FileSystemStorageExt;
588
589 static void on_disk_creation(simgrid::s4u::Disk& d)
590 {
591   d.extension_set(new FileSystemDiskExt(&d));
592 }
593 static void on_storage_creation(simgrid::s4u::Storage& st)
594 {
595   st.extension_set(new FileSystemStorageExt(&st));
596 }
597
598 static void on_host_creation(simgrid::s4u::Host& host)
599 {
600   host.extension_set<FileDescriptorHostExt>(new FileDescriptorHostExt());
601 }
602
603 static void on_platform_created()
604 {
605   for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts()) {
606     const char* remote_disk_str = host->get_property("remote_disk");
607     if (remote_disk_str) {
608       std::vector<std::string> tokens;
609       boost::split(tokens, remote_disk_str, boost::is_any_of(":"));
610       std::string mount_point         = tokens[0];
611       simgrid::s4u::Host* remote_host = simgrid::s4u::Host::by_name_or_null(tokens[2]);
612       xbt_assert(remote_host, "You're trying to access a host that does not exist. Please check your platform file");
613
614       const simgrid::s4u::Disk* disk = nullptr;
615       for (auto const& d : remote_host->get_disks())
616         if (d->get_name() == tokens[1]) {
617           disk = d;
618           break;
619         }
620
621       xbt_assert(disk, "You're trying to mount a disk that does not exist. Please check your platform file");
622       disk->extension<FileSystemDiskExt>()->add_remote_mount(remote_host, mount_point);
623       host->add_disk(disk);
624
625       XBT_DEBUG("Host '%s' wants to mount a remote disk: %s of %s mounted on %s", host->get_cname(), disk->get_cname(),
626                 remote_host->get_cname(), mount_point.c_str());
627       XBT_DEBUG("Host '%s' now has %zu disks", host->get_cname(), host->get_disks().size());
628     }
629   }
630 }
631
632 static void on_simulation_end()
633 {
634   XBT_DEBUG("Simulation is over, time to unregister remote disks if any");
635   for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts()) {
636     const char* remote_disk_str = host->get_property("remote_disk");
637     if (remote_disk_str) {
638       std::vector<std::string> tokens;
639       boost::split(tokens, remote_disk_str, boost::is_any_of(":"));
640       XBT_DEBUG("Host '%s' wants to unmount a remote disk: %s of %s mounted on %s", host->get_cname(),
641                 tokens[1].c_str(), tokens[2].c_str(), tokens[0].c_str());
642       host->remove_disk(tokens[1]);
643       XBT_DEBUG("Host '%s' now has %zu disks", host->get_cname(), host->get_disks().size());
644     }
645   }
646 }
647
648 /* **************************** Public interface *************************** */
649 /** @brief Initialize the file system plugin.
650     @ingroup plugin_filesystem
651
652     @beginrst
653     See the examples in :ref:`s4u_ex_disk_io`.
654     @endrst
655  */
656 void sg_storage_file_system_init()
657 {
658   sg_storage_max_file_descriptors = 1024;
659   simgrid::config::bind_flag(sg_storage_max_file_descriptors, "storage/max_file_descriptors",
660                              "Maximum number of concurrently opened files per host. Default is 1024");
661
662   if (not FileSystemStorageExt::EXTENSION_ID.valid()) {
663     FileSystemStorageExt::EXTENSION_ID = simgrid::s4u::Storage::extension_create<FileSystemStorageExt>();
664     simgrid::s4u::Storage::on_creation.connect(&on_storage_creation);
665   }
666
667   if (not FileSystemDiskExt::EXTENSION_ID.valid()) {
668     FileSystemDiskExt::EXTENSION_ID = simgrid::s4u::Disk::extension_create<FileSystemDiskExt>();
669     simgrid::s4u::Disk::on_creation.connect(&on_disk_creation);
670   }
671
672   if (not FileDescriptorHostExt::EXTENSION_ID.valid()) {
673     FileDescriptorHostExt::EXTENSION_ID = simgrid::s4u::Host::extension_create<FileDescriptorHostExt>();
674     simgrid::s4u::Host::on_creation.connect(&on_host_creation);
675   }
676   simgrid::s4u::Engine::on_platform_created.connect(&on_platform_created);
677   simgrid::s4u::Engine::on_simulation_end.connect(&on_simulation_end);
678 }
679
680 sg_file_t sg_file_open(const char* fullpath, void* data)
681 {
682   return new simgrid::s4u::File(fullpath, data);
683 }
684
685 sg_size_t sg_file_read(sg_file_t fd, sg_size_t size)
686 {
687   return fd->read(size);
688 }
689
690 sg_size_t sg_file_write(sg_file_t fd, sg_size_t size)
691 {
692   return fd->write(size);
693 }
694
695 void sg_file_close(const_sg_file_t fd)
696 {
697   delete fd;
698 }
699
700 /** Retrieves the path to the file
701  * @ingroup plugin_filesystem
702  */
703 const char* sg_file_get_name(const_sg_file_t fd)
704 {
705   xbt_assert((fd != nullptr), "Invalid file descriptor");
706   return fd->get_path();
707 }
708
709 /** Retrieves the size of the file
710  * @ingroup plugin_filesystem
711  */
712 sg_size_t sg_file_get_size(const_sg_file_t fd)
713 {
714   return fd->size();
715 }
716
717 void sg_file_dump(const_sg_file_t fd)
718 {
719   fd->dump();
720 }
721
722 /** Retrieves the user data associated with the file
723  * @ingroup plugin_filesystem
724  */
725 void* sg_file_get_data(const_sg_file_t fd)
726 {
727   return fd->get_data();
728 }
729
730 /** Changes the user data associated with the file
731  * @ingroup plugin_filesystem
732  */
733 void sg_file_set_data(sg_file_t fd, void* data)
734 {
735   fd->set_data(data);
736 }
737
738 /**
739  * @brief Set the file position indicator in the sg_file_t by adding offset bytes to the position specified by origin (either SEEK_SET, SEEK_CUR, or SEEK_END).
740  * @ingroup plugin_filesystem
741  *
742  * @param fd : file object that identifies the stream
743  * @param offset : number of bytes to offset from origin
744  * @param origin : Position used as reference for the offset. It is specified by one of the following constants defined
745  *                 in \<stdio.h\> exclusively to be used as arguments for this function (SEEK_SET = beginning of file,
746  *                 SEEK_CUR = current position of the file pointer, SEEK_END = end of file)
747  */
748 void sg_file_seek(sg_file_t fd, sg_offset_t offset, int origin)
749 {
750   fd->seek(offset, origin);
751 }
752
753 sg_size_t sg_file_tell(const_sg_file_t fd)
754 {
755   return fd->tell();
756 }
757
758 void sg_file_move(const_sg_file_t fd, const char* fullpath)
759 {
760   fd->move(fullpath);
761 }
762
763 void sg_file_unlink(sg_file_t fd)
764 {
765   fd->unlink();
766   delete fd;
767 }
768
769 /**
770  * @brief Copy a file to another location on a remote host.
771  * @ingroup plugin_filesystem
772  *
773  * @param file : the file to move
774  * @param host : the remote host where the file has to be copied
775  * @param fullpath : the complete path destination on the remote host
776  * @return If successful, the function returns 0. Otherwise, it returns -1.
777  */
778 int sg_file_rcopy(sg_file_t file, sg_host_t host, const char* fullpath)
779 {
780   return file->remote_copy(host, fullpath);
781 }
782
783 /**
784  * @brief Move a file to another location on a remote host.
785  * @ingroup plugin_filesystem
786  *
787  * @param file : the file to move
788  * @param host : the remote host where the file has to be moved
789  * @param fullpath : the complete path destination on the remote host
790  * @return If successful, the function returns 0. Otherwise, it returns -1.
791  */
792 int sg_file_rmove(sg_file_t file, sg_host_t host, const char* fullpath)
793 {
794   return file->remote_move(host, fullpath);
795 }
796
797 sg_size_t sg_disk_get_size_free(const_sg_disk_t d)
798 {
799   return d->extension<FileSystemDiskExt>()->get_size() - d->extension<FileSystemDiskExt>()->get_used_size();
800 }
801
802 sg_size_t sg_disk_get_size_used(const_sg_disk_t d)
803 {
804   return d->extension<FileSystemDiskExt>()->get_used_size();
805 }
806
807 sg_size_t sg_disk_get_size(const_sg_disk_t d)
808 {
809   return d->extension<FileSystemDiskExt>()->get_size();
810 }
811
812 const char* sg_disk_get_mount_point(const_sg_disk_t d)
813 {
814   return d->extension<FileSystemDiskExt>()->get_mount_point();
815 }
816
817 sg_size_t sg_storage_get_size_free(const_sg_storage_t st)
818 {
819   return st->extension<FileSystemStorageExt>()->get_size() - st->extension<FileSystemStorageExt>()->get_used_size();
820 }
821
822 sg_size_t sg_storage_get_size_used(const_sg_storage_t st)
823 {
824   return st->extension<FileSystemStorageExt>()->get_used_size();
825 }
826
827 sg_size_t sg_storage_get_size(const_sg_storage_t st)
828 {
829   return st->extension<FileSystemStorageExt>()->get_size();
830 }
831
832 xbt_dict_t sg_storage_get_content(const_sg_storage_t storage)
833 {
834   const std::map<std::string, sg_size_t>* content =
835       storage->extension<simgrid::s4u::FileSystemStorageExt>()->get_content();
836   // Note: ::operator delete is ok here (no destructor called) since the dict elements are of POD type sg_size_t.
837   xbt_dict_t content_as_dict = xbt_dict_new_homogeneous(::operator delete);
838
839   for (auto const& entry : *content) {
840     auto* psize = new sg_size_t(entry.second);
841     xbt_dict_set(content_as_dict, entry.first.c_str(), psize);
842   }
843   return content_as_dict;
844 }
845
846 xbt_dict_t sg_host_get_storage_content(sg_host_t host)
847 {
848   xbt_assert((host != nullptr), "Invalid parameters");
849   xbt_dict_t contents = xbt_dict_new_homogeneous(nullptr);
850   for (auto const& elm : host->get_mounted_storages())
851     xbt_dict_set(contents, elm.first.c_str(), sg_storage_get_content(elm.second));
852
853   return contents;
854 }