Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use unordered_maps to store properties
[simgrid.git] / include / simgrid / s4u / Storage.hpp
1 /* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef INCLUDE_SIMGRID_S4U_STORAGE_HPP_
7 #define INCLUDE_SIMGRID_S4U_STORAGE_HPP_
8
9 #include <simgrid/forward.h>
10 #include <xbt/Extendable.hpp>
11 #include <xbt/base.h>
12
13 #include <map>
14 #include <string>
15 #include <unordered_map>
16
17 namespace simgrid {
18 namespace xbt {
19 extern template class XBT_PUBLIC Extendable<simgrid::s4u::Storage>;
20 }
21 namespace s4u {
22
23 XBT_ATTRIB_DEPRECATED_v322(
24     "simgrid::s4u::getStorageList() is deprecated in favor of Engine::get_all_storages(). Please switch before v3.22")
25     XBT_PUBLIC void getStorageList(std::map<std::string, Storage*>* whereTo);
26
27 class XBT_PUBLIC Storage : public simgrid::xbt::Extendable<Storage> {
28   friend s4u::Engine;
29   friend simgrid::surf::StorageImpl;
30
31 public:
32   explicit Storage(std::string name, surf::StorageImpl * pimpl);
33
34 protected:
35   virtual ~Storage() = default;
36
37 public:
38   /** @brief Callback signal fired when a new Storage is created */
39   static simgrid::xbt::signal<void(s4u::Storage&)> on_creation;
40   /** @brief Callback signal fired when a Storage is destroyed */
41   static simgrid::xbt::signal<void(s4u::Storage&)> on_destruction;
42   /** @brief Callback signal fired when a Storage's state changes */
43   static simgrid::xbt::signal<void(s4u::Storage&)> on_state_change;
44
45   /** Retrieve a Storage by its name. It must exist in the platform file */
46   static Storage* by_name(std::string name);
47   static Storage* by_name_or_null(std::string name);
48
49   /** @brief Retrieves the name of that storage as a C++ string */
50   std::string const& get_name() const { return name_; }
51   /** @brief Retrieves the name of that storage as a C string */
52   const char* get_cname() const { return name_.c_str(); }
53
54   const char* get_type();
55   Host* get_host() { return attached_to_; };
56   void set_host(Host* host) { attached_to_ = host; }
57
58   std::unordered_map<std::string, std::string>* get_properties();
59   const char* get_property(std::string key);
60   void set_property(std::string, std::string value);
61
62   void set_data(void* data) { userdata_ = data; }
63   void* get_data() { return userdata_; }
64
65   sg_size_t read(sg_size_t size);
66   sg_size_t write(sg_size_t size);
67   surf::StorageImpl* get_impl() { return pimpl_; }
68
69   // Deprecated functions
70   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::by_name()") Storage* byName(std::string name)
71   {
72     return by_name(name);
73   }
74   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_name()") std::string const& getName() const { return get_name(); }
75   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_cname()") const char* getCname() const { return get_cname(); }
76   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_type()") const char* getType() { return get_type(); }
77   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_host()") Host* getHost() { return get_host(); }
78   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_properties()") std::map<std::string, std::string>* getProperties()
79   {
80     std::map<std::string, std::string>* res             = new std::map<std::string, std::string>();
81     std::unordered_map<std::string, std::string>* props = get_properties();
82     for (auto const& kv : *props)
83       res->insert(kv);
84     return res;
85   }
86   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_property()") const char* getProperty(const char* key)
87   {
88     return get_property(key);
89   }
90   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::set_property()") void setProperty(std::string key, std::string value)
91   {
92     set_property(key, value);
93   }
94   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::set_data()") void setUserdata(void* data) { set_data(data); }
95   XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_data()") void* getUserdata() { return get_data(); }
96
97 private:
98   Host* attached_to_              = nullptr;
99   surf::StorageImpl* const pimpl_ = nullptr;
100   std::string name_;
101   void* userdata_ = nullptr;
102 };
103
104 } /* namespace s4u */
105 } /* namespace simgrid */
106
107 #endif /* INCLUDE_SIMGRID_S4U_STORAGE_HPP_ */