X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b87fc0829538ec066fd077e6c30ee6270b8abd78..b5384472c9da0b343dccfbbdcf18c49f1e798b3f:/src/s4u/s4u_storage.cpp diff --git a/src/s4u/s4u_storage.cpp b/src/s4u/s4u_storage.cpp index 3890ce3c90..96f9733a83 100644 --- a/src/s4u/s4u_storage.cpp +++ b/src/s4u/s4u_storage.cpp @@ -3,20 +3,25 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "../surf/StorageImpl.hpp" +#include "simgrid/s4u/File.hpp" #include "simgrid/s4u/Host.hpp" #include "simgrid/s4u/Storage.hpp" #include "simgrid/simix.hpp" +#include "src/surf/StorageImpl.hpp" #include namespace simgrid { +namespace xbt { +template class Extendable; +} + namespace s4u { std::map* allStorages() { std::unordered_map* map = surf::StorageImpl::storagesMap(); std::map* res = new std::map; - for (auto s : *map) + for (auto const& s : *map) res->insert({s.first, &(s.second->piface_)}); // Convert each entry into its interface return res; @@ -30,9 +35,14 @@ Storage* Storage::byName(std::string name) return &res->piface_; } -const char* Storage::getName() +const std::string& Storage::getName() const +{ + return pimpl_->getName(); +} + +const char* Storage::getCname() const { - return pimpl_->cname(); + return pimpl_->getCname(); } const char* Storage::getType() @@ -45,39 +55,36 @@ Host* Storage::getHost() return attached_to_; } -sg_size_t Storage::getSizeFree() -{ - return simgrid::simix::kernelImmediate([this] { return pimpl_->getFreeSize(); }); -} -sg_size_t Storage::getSizeUsed() +std::map* Storage::getProperties() { - return simgrid::simix::kernelImmediate([this] { return pimpl_->getUsedSize(); }); + return simgrid::simix::kernelImmediate([this] { return pimpl_->getProperties(); }); } -sg_size_t Storage::getSize() +const char* Storage::getProperty(std::string key) { - return pimpl_->getSize(); + return this->pimpl_->getProperty(key); } -std::map* Storage::getProperties() +void Storage::setProperty(std::string key, std::string value) { - return simgrid::simix::kernelImmediate([this] { return pimpl_->getProperties(); }); + simgrid::simix::kernelImmediate([this, key, value] { this->pimpl_->setProperty(key, value); }); } -const char* Storage::getProperty(const char* key) +std::map* Storage::getContent() { - return this->pimpl_->getProperty(key); + FileSystemStorageExt* file_system = extension(); + return file_system->getContent(); } -void Storage::setProperty(const char* key, const char* value) +sg_size_t Storage::read(sg_size_t size) { - simgrid::simix::kernelImmediate([this, key, value] { this->pimpl_->setProperty(key, value); }); + return simcall_storage_read(pimpl_, size); } -std::map* Storage::getContent() +sg_size_t Storage::write(sg_size_t size) { - return simgrid::simix::kernelImmediate([this] { return pimpl_->getContent(); }); + return simcall_storage_write(pimpl_, size); } /*************