X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/290296c62f5642c1d74a9c902a57ab72ac230f1e..eadce057a2c8e09df65641e77935bd9ffc905440:/include/simgrid/s4u/Storage.hpp diff --git a/include/simgrid/s4u/Storage.hpp b/include/simgrid/s4u/Storage.hpp index efad7b826d..9bfa5add00 100644 --- a/include/simgrid/s4u/Storage.hpp +++ b/include/simgrid/s4u/Storage.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2006-2015, 2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-2019. 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. */ @@ -7,61 +6,80 @@ #ifndef INCLUDE_SIMGRID_S4U_STORAGE_HPP_ #define INCLUDE_SIMGRID_S4U_STORAGE_HPP_ +#include +#include +#include +#include +#include + #include -#include -#include #include #include -#include namespace simgrid { namespace s4u { -XBT_ATTRIB_PUBLIC std::map* allStorages(); +/** Storage represent the disk resources, usually associated to a given host + * + * By default, SimGrid does not keep track of the actual data being written but + * only computes the time taken by the corresponding data movement. + */ -XBT_PUBLIC_CLASS Storage -{ - friend s4u::Engine; - friend simgrid::surf::StorageImpl; +class XBT_PUBLIC Storage : public xbt::Extendable { + friend Engine; + friend Io; + friend kernel::resource::StorageImpl; public: - explicit Storage(surf::StorageImpl * pimpl) : pimpl_(pimpl) {} + explicit Storage(const std::string& name, kernel::resource::StorageImpl* pimpl); + +protected: virtual ~Storage() = default; +public: + /** @brief Callback signal fired when a new Storage is created */ + static xbt::signal on_creation; + /** @brief Callback signal fired when a Storage is destroyed */ + static xbt::signal on_destruction; + /** @brief Callback signal fired when a Storage's state changes */ + static xbt::signal on_state_change; + /** Retrieve a Storage by its name. It must exist in the platform file */ - static Storage* byName(std::string name); - const char* getName(); - const char* getType(); - Host* getHost(); - sg_size_t getSize(); /** Retrieve the total amount of space of this storage element */ - sg_size_t getSizeFree(); - sg_size_t getSizeUsed(); + static Storage* by_name(const std::string& name); + static Storage* by_name_or_null(const std::string& name); + + /** @brief Retrieves the name of that storage as a C++ string */ + std::string const& get_name() const { return name_; } + /** @brief Retrieves the name of that storage as a C string */ + const char* get_cname() const { return name_.c_str(); } - std::map* getProperties(); - const char* getProperty(const char* key); - void setProperty(const char* key, const char* value); - std::map* getContent(); + const char* get_type(); + Host* get_host() { return attached_to_; }; + void set_host(Host* host) { attached_to_ = host; } - void setUserdata(void* data) { userdata_ = data; } - void* getUserdata() { return userdata_; } + const std::unordered_map* get_properties() const; + const char* get_property(const std::string& key) const; + void set_property(const std::string&, const std::string& value); - surf::StorageImpl* getImpl() { return pimpl_; } + void set_data(void* data) { userdata_ = data; } + void* get_data() { return userdata_; } - /* The signals */ - /** @brief Callback signal fired when a new Link is created */ - static simgrid::xbt::signal onCreation; + IoPtr io_init(sg_size_t size, s4u::Io::OpType type); - /** @brief Callback signal fired when a Link is destroyed */ - static simgrid::xbt::signal onDestruction; + IoPtr read_async(sg_size_t size); + sg_size_t read(sg_size_t size); - Host* attached_to_ = nullptr; + IoPtr write_async(sg_size_t size); + sg_size_t write(sg_size_t size); + kernel::resource::StorageImpl* get_impl() const { return pimpl_; } private: - surf::StorageImpl* const pimpl_ = nullptr; + Host* attached_to_ = nullptr; + kernel::resource::StorageImpl* const pimpl_; std::string name_; void* userdata_ = nullptr; }; -} /* namespace s4u */ -} /* namespace simgrid */ +} // namespace s4u +} // namespace simgrid #endif /* INCLUDE_SIMGRID_S4U_STORAGE_HPP_ */