Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
public headers should include simgrid in a system-wide way, not a project-wide one
[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/s4u/forward.hpp>
10 #include <simgrid/simix.h>
11 #include <xbt/Extendable.hpp>
12 #include <xbt/base.h>
13
14 #include <map>
15 #include <string>
16 #include <unordered_map>
17
18 namespace simgrid {
19 namespace xbt {
20 extern template class XBT_PUBLIC Extendable<simgrid::s4u::Storage>;
21 }
22 namespace s4u {
23
24 XBT_PUBLIC void getStorageList(std::map<std::string, Storage*>* whereTo);
25
26 class XBT_PUBLIC Storage : public simgrid::xbt::Extendable<Storage> {
27   friend s4u::Engine;
28   friend simgrid::surf::StorageImpl;
29
30 public:
31   explicit Storage(std::string name, surf::StorageImpl * pimpl);
32   virtual ~Storage() = default;
33   /** Retrieve a Storage by its name. It must exist in the platform file */
34   static Storage* byName(std::string name);
35   /** @brief Retrieves the name of that storage as a C++ string */
36   std::string const& getName() const;
37   /** @brief Retrieves the name of that storage as a C string */
38   const char* getCname() const;
39   const char* getType();
40   Host* getHost();
41
42   std::map<std::string, std::string>* getProperties();
43   const char* getProperty(std::string key);
44   void setProperty(std::string, std::string value);
45
46   void setUserdata(void* data) { userdata_ = data; }
47   void* getUserdata() { return userdata_; }
48
49   sg_size_t read(sg_size_t size);
50   sg_size_t write(sg_size_t size);
51   surf::StorageImpl* getImpl() { return pimpl_; }
52
53   /* The signals */
54   /** @brief Callback signal fired when a new Link is created */
55   static simgrid::xbt::signal<void(s4u::Storage&)> onCreation;
56
57   /** @brief Callback signal fired when a Link is destroyed */
58   static simgrid::xbt::signal<void(s4u::Storage&)> onDestruction;
59
60   Host* attached_to_              = nullptr;
61
62 private:
63   surf::StorageImpl* const pimpl_ = nullptr;
64   std::string name_;
65   void* userdata_ = nullptr;
66 };
67
68 } /* namespace s4u */
69 } /* namespace simgrid */
70
71 #endif /* INCLUDE_SIMGRID_S4U_STORAGE_HPP_ */