X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/befbbbe1fbb31663a8f91e24ce12df271cf4ae79..b9d2f7277242a82702b73e4ccdf63aec98855b5e:/include/simgrid/s4u/Storage.hpp diff --git a/include/simgrid/s4u/Storage.hpp b/include/simgrid/s4u/Storage.hpp index 12bfe853a3..571c3b1d92 100644 --- a/include/simgrid/s4u/Storage.hpp +++ b/include/simgrid/s4u/Storage.hpp @@ -7,6 +7,7 @@ #ifndef INCLUDE_SIMGRID_S4U_STORAGE_HPP_ #define INCLUDE_SIMGRID_S4U_STORAGE_HPP_ +#include "xbt/Extendable.hpp" #include #include #include @@ -15,11 +16,14 @@ #include namespace simgrid { +namespace xbt { +extern template class XBT_PUBLIC() Extendable; +} namespace s4u { -std::map* allStorages(); +XBT_ATTRIB_PUBLIC void getStorageList(std::map* whereTo); -XBT_PUBLIC_CLASS Storage +XBT_PUBLIC_CLASS Storage : public simgrid::xbt::Extendable { friend s4u::Engine; friend simgrid::surf::StorageImpl; @@ -28,21 +32,24 @@ public: explicit Storage(surf::StorageImpl * pimpl) : pimpl_(pimpl) {} virtual ~Storage() = default; /** Retrieve a Storage by its name. It must exist in the platform file */ - static Storage* byName(const char* name); - const char* name(); - const char* host(); - sg_size_t sizeFree(); - sg_size_t sizeUsed(); - /** Retrieve the total amount of space of this storage element */ - sg_size_t size(); - xbt_dict_t properties(); - const char* property(const char* key); - void setProperty(const char* key, char* value); - std::map* content(); + static Storage* byName(std::string name); + /** @brief Retrieves the name of that storage as a C++ string */ + std::string const& getName() const; + /** @brief Retrieves the name of that storage as a C string */ + const char* getCname() const; + const char* getType(); + Host* getHost(); + + std::map* getProperties(); + const char* getProperty(std::string key); + void setProperty(std::string, std::string value); -public: void setUserdata(void* data) { userdata_ = data; } - void* userdata() { return userdata_; } + void* getUserdata() { return userdata_; } + + sg_size_t read(sg_size_t size); + sg_size_t write(sg_size_t size); + surf::StorageImpl* getImpl() { return pimpl_; } /* The signals */ /** @brief Callback signal fired when a new Link is created */ @@ -51,10 +58,12 @@ public: /** @brief Callback signal fired when a Link is destroyed */ static simgrid::xbt::signal onDestruction; + Host* attached_to_ = nullptr; + private: - std::string name_; surf::StorageImpl* const pimpl_ = nullptr; - void* userdata_ = nullptr; + std::string name_; + void* userdata_ = nullptr; }; } /* namespace s4u */