X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..4a69abcc786d029bd2962537f767d12a0f808d11:/src/s4u/s4u_storage.cpp diff --git a/src/s4u/s4u_storage.cpp b/src/s4u/s4u_storage.cpp index 04c1ee4fbd..48c58d71da 100644 --- a/src/s4u/s4u_storage.cpp +++ b/src/s4u/s4u_storage.cpp @@ -5,6 +5,8 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "simgrid/s4u/storage.hpp" +#include "simgrid/simix.hpp" +#include "src/surf/storage_interface.hpp" #include "xbt/lib.h" extern xbt_lib_t storage_lib; @@ -13,16 +15,14 @@ namespace simgrid { namespace s4u { boost::unordered_map *Storage::storages_ = new boost::unordered_map (); -Storage::Storage(std::string name, smx_storage_t inferior) { - name_ = name; - pimpl_ = inferior; - +Storage::Storage(std::string name, smx_storage_t inferior) : + name_(name), pimpl_(inferior) +{ + size_ = SIMIX_storage_get_size(pimpl_); storages_->insert({name, this}); } -Storage::~Storage() { - // TODO Auto-generated destructor stub -} +Storage::~Storage() = default; smx_storage_t Storage::inferior() { return pimpl_; @@ -41,18 +41,34 @@ Storage &Storage::byName(const char*name) { return *res; } -const char*Storage::name() { +const char* Storage::name() +{ return name_.c_str(); } -sg_size_t Storage::sizeFree() { +sg_size_t Storage::sizeFree() +{ return simcall_storage_get_free_size(pimpl_); } -sg_size_t Storage::sizeUsed() { + +sg_size_t Storage::sizeUsed() +{ return simcall_storage_get_used_size(pimpl_); } + sg_size_t Storage::size() { - return SIMIX_storage_get_size(pimpl_); + return size_; +} + +xbt_dict_t Storage::properties() +{ + return simcall_storage_get_properties(pimpl_); +} + +std::map* Storage::content() +{ + return simgrid::simix::kernelImmediate( + [this] { return static_cast(surf_storage_resource_priv(this->pimpl_))->getContent(); }); } } /* namespace s4u */