X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7ef49c428ab0209965a09a36ab28b59789aaa4b5..12ad1e7c01058fada33cecf2d4c4cb8bf9874f9e:/src/s4u/s4u_storage.cpp diff --git a/src/s4u/s4u_storage.cpp b/src/s4u/s4u_storage.cpp index 694466c9a4..d8f004ac63 100644 --- a/src/s4u/s4u_storage.cpp +++ b/src/s4u/s4u_storage.cpp @@ -3,26 +3,27 @@ /* 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/Host.hpp" #include "simgrid/s4u/Storage.hpp" #include "simgrid/simix.hpp" +#include "src/plugins/file_system/FileSystem.hpp" +#include "src/surf/StorageImpl.hpp" #include namespace simgrid { +namespace xbt { +template class Extendable; +} + namespace s4u { -std::map* allStorages() +void getStorageList(std::map* whereTo) { - std::unordered_map* map = surf::StorageImpl::storagesMap(); - std::map* res = new std::map; - for (auto s : *map) - res->insert({s.first, &(s.second->piface_)}); // Convert each entry into its interface - - return res; + for (auto const& s : *surf::StorageImpl::storagesMap()) + whereTo->insert({s.first, &(s.second->piface_)}); // Convert each entry into its interface } -Storage* Storage::byName(const char* name) +Storage* Storage::byName(std::string name) { surf::StorageImpl* res = surf::StorageImpl::byName(name); if (res == nullptr) @@ -30,9 +31,14 @@ Storage* Storage::byName(const char* name) return &res->piface_; } -const char* Storage::getName() +const std::string& Storage::getName() const { - return pimpl_->cname(); + return pimpl_->getName(); +} + +const char* Storage::getCname() const +{ + return pimpl_->getCname(); } const char* Storage::getType() @@ -45,39 +51,30 @@ Host* Storage::getHost() return attached_to_; } -sg_size_t Storage::getSizeFree() -{ - return simgrid::simix::kernelImmediate([this] { return pimpl_->getFreeSize(); }); -} - -sg_size_t Storage::getSizeUsed() -{ - return simgrid::simix::kernelImmediate([this] { return pimpl_->getUsedSize(); }); -} -sg_size_t Storage::getSize() +std::map* Storage::getProperties() { - return pimpl_->size_; + return simgrid::simix::kernelImmediate([this] { return pimpl_->getProperties(); }); } -xbt_dict_t Storage::getProperties() +const char* Storage::getProperty(std::string key) { - return simgrid::simix::kernelImmediate([this] { return pimpl_->getProperties(); }); + return this->pimpl_->getProperty(key); } -const char* Storage::getProperty(const char* key) +void Storage::setProperty(std::string key, std::string value) { - return static_cast(xbt_dict_get_or_null(this->getProperties(), key)); + simgrid::simix::kernelImmediate([this, key, value] { this->pimpl_->setProperty(key, value); }); } -void Storage::setProperty(const char* key, char* value) +sg_size_t Storage::read(sg_size_t size) { - xbt_dict_set(this->getProperties(), key, value, nullptr); + 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); } /*************