X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fa900b346af7c55195fd90c3345cc4107c2afc6d..acd052f4e734a5580577a6462a6e08c0ea3b5509:/src/s4u/s4u_storage.cpp diff --git a/src/s4u/s4u_storage.cpp b/src/s4u/s4u_storage.cpp index e816d0d286..e1aabf1839 100644 --- a/src/s4u/s4u_storage.cpp +++ b/src/s4u/s4u_storage.cpp @@ -1,101 +1,199 @@ -/* Copyright (c) 2006-2015, 2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved. */ /* 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 "simgrid/s4u/storage.hpp" +#include "simgrid/msg.h" +#include "simgrid/s4u/Host.hpp" +#include "simgrid/s4u/Storage.hpp" #include "simgrid/simix.hpp" -#include "src/surf/storage_interface.hpp" -#include "xbt/lib.h" +#include "src/plugins/file_system/FileSystem.hpp" +#include "src/surf/StorageImpl.hpp" #include -extern xbt_lib_t storage_lib; - namespace simgrid { +namespace xbt { +template class Extendable; +} + namespace s4u { -std::unordered_map* Storage::storages_ = new std::unordered_map(); +void getStorageList(std::map* whereTo) +{ + for (auto const& s : *surf::StorageImpl::storagesMap()) + whereTo->insert({s.first, &(s.second->piface_)}); // Convert each entry into its interface +} -Storage::Storage(std::string name, smx_storage_t inferior) : - name_(name), pimpl_(inferior) +Storage* Storage::byName(std::string name) { - hostname_ = surf_storage_get_host(pimpl_); - size_ = surf_storage_get_size(pimpl_); - storages_->insert({name, this}); + surf::StorageImpl* res = surf::StorageImpl::byName(name); + if (res == nullptr) + return nullptr; + return &res->piface_; } -Storage::~Storage() = default; +const std::string& Storage::getName() const +{ + return pimpl_->getName(); +} -smx_storage_t Storage::inferior() +const char* Storage::getCname() const { - return pimpl_; + return pimpl_->getCname(); } -Storage& Storage::byName(const char* name) +const char* Storage::getType() { - s4u::Storage* res = nullptr; - try { - res = storages_->at(name); - } catch (std::out_of_range& e) { - smx_storage_t inferior = xbt_lib_get_elm_or_null(storage_lib,name); - if (inferior == nullptr) - xbt_die("Storage %s does not exist. Please only use the storages that are defined in your platform.", name); + return pimpl_->typeId_.c_str(); +} - res = new Storage(name,inferior); - } - return *res; +Host* Storage::getHost() +{ + return attached_to_; } -const char* Storage::name() +std::map* Storage::getProperties() { - return name_.c_str(); + return simgrid::simix::kernelImmediate([this] { return pimpl_->getProperties(); }); } -const char* Storage::host() +const char* Storage::getProperty(std::string key) { - return hostname_.c_str(); + return this->pimpl_->getProperty(key); } -sg_size_t Storage::sizeFree() +void Storage::setProperty(std::string key, std::string value) { - return simcall_storage_get_free_size(pimpl_); + simgrid::simix::kernelImmediate([this, key, value] { this->pimpl_->setProperty(key, value); }); } -sg_size_t Storage::sizeUsed() +sg_size_t Storage::read(sg_size_t size) { - return simcall_storage_get_used_size(pimpl_); + return simcall_storage_read(pimpl_, size); } -sg_size_t Storage::size() { - return size_; +sg_size_t Storage::write(sg_size_t size) +{ + return simcall_storage_write(pimpl_, size); } -xbt_dict_t Storage::properties() +/************* + * Callbacks * + *************/ +simgrid::xbt::signal Storage::onCreation; +simgrid::xbt::signal Storage::onDestruction; + +} /* namespace s4u */ +} /* namespace simgrid */ + +/* **************************** Public C interface *************************** */ +SG_BEGIN_DECL() +/** @addtogroup sg_storage_management + * (#sg_storage_t) and the functions for managing it. + */ + +/** \ingroup sg_storage_management + * + * \brief Returns the name of the #sg_storage_t. + * + * This functions checks whether a storage is a valid pointer or not and return its name. + */ +const char* sg_storage_get_name(sg_storage_t storage) { - return simcall_storage_get_properties(pimpl_); + xbt_assert((storage != nullptr), "Invalid parameters"); + return storage->getCname(); } -const char* Storage::property(const char* key) +const char* sg_storage_get_host(sg_storage_t storage) { - return static_cast(xbt_dict_get_or_null(this->properties(), key)); + xbt_assert((storage != nullptr), "Invalid parameters"); + return storage->getHost()->getCname(); } -void Storage::setProperty(const char* key, char* value) +/** \ingroup sg_storage_management + * \brief Returns a xbt_dict_t consisting of the list of properties assigned to this storage + * \param storage a storage + * \return a dict containing the properties + */ +xbt_dict_t sg_storage_get_properties(sg_storage_t storage) { - xbt_dict_set(this->properties(), key, value, nullptr); + xbt_assert((storage != nullptr), "Invalid parameters (storage is nullptr)"); + xbt_dict_t as_dict = xbt_dict_new_homogeneous(xbt_free_f); + std::map* props = storage->getProperties(); + if (props == nullptr) + return nullptr; + for (auto const& elm : *props) { + xbt_dict_set(as_dict, elm.first.c_str(), xbt_strdup(elm.second.c_str()), nullptr); + } + return as_dict; } -std::map* Storage::content() +/** \ingroup sg_storage_management + * \brief Change the value of a given storage property + * + * \param storage a storage + * \param name a property name + * \param value what to change the property to + */ +void sg_storage_set_property_value(sg_storage_t storage, const char* name, char* value) { - return simgrid::simix::kernelImmediate( - [this] { return static_cast(surf_storage_resource_priv(this->pimpl_))->getContent(); }); + storage->setProperty(name, value); } -std::unordered_map* Storage::allStorages() +/** \ingroup sg_storage_management + * \brief Returns the value of a given storage property + * + * \param storage a storage + * \param name a property name + * \return value of a property (or nullptr if property not set) + */ +const char* sg_storage_get_property_value(sg_storage_t storage, const char* name) { - return storages_; + return storage->getProperty(name); } -} /* namespace s4u */ -} /* namespace simgrid */ +/** \ingroup sg_storage_management + * \brief Finds a sg_storage_t using its name. + * \param name the name of a storage + * \return the corresponding storage + */ +sg_storage_t sg_storage_get_by_name(const char* name) +{ + return simgrid::s4u::Storage::byName(name); +} + +/** \ingroup sg_storage_management + * \brief Returns a dynar containing all the storage elements declared at a given point of time + */ +xbt_dynar_t sg_storages_as_dynar() +{ + std::map* storage_list = new std::map; + simgrid::s4u::getStorageList(storage_list); + xbt_dynar_t res = xbt_dynar_new(sizeof(sg_storage_t), nullptr); + for (auto const& s : *storage_list) + xbt_dynar_push(res, &(s.second)); + delete storage_list; + return res; +} + +void* sg_storage_get_data(sg_storage_t storage) +{ + xbt_assert((storage != nullptr), "Invalid parameters"); + return storage->getUserdata(); +} + +void sg_storage_set_data(sg_storage_t storage, void* data) +{ + storage->setUserdata(data); +} + +sg_size_t sg_storage_read(sg_storage_t storage, sg_size_t size) +{ + return storage->read(size); +} + +sg_size_t sg_storage_write(sg_storage_t storage, sg_size_t size) +{ + return storage->write(size); +} +SG_END_DECL()