Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2fc18eab3510ee67c9df13849d327964f4dc38a9
[simgrid.git] / src / mc / AddressSpace.hpp
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_MC_ADDRESS_SPACE_H
8 #define SIMGRID_MC_ADDRESS_SPACE_H
9
10 #include <cassert>
11 #include <cstddef>
12 #include <cstdint>
13 #include <cstring>
14 #include <type_traits>
15
16 #include <string>
17 #include <vector>
18
19 #include "src/mc/mc_forward.hpp"
20 #include "src/mc/RemotePtr.hpp"
21
22 namespace simgrid {
23 namespace mc {
24
25 /** Process index used when no process is available
26  *
27  *  The expected behavior is that if a process index is needed it will fail.
28  * */
29 const int ProcessIndexMissing = -1;
30
31 /** Process index used when we don't care about the process index
32  * */
33 const int ProcessIndexDisabled = -2;
34
35 /** Constant used when any process will do.
36  *
37  *  This is is index of the first process.
38  */
39 const int ProcessIndexAny = 0;
40
41 /** Options for read operations
42  *
43  *  This is a set of flags managed with bitwise operators. Only the
44  *  meaningful operations are defined: addition, conversions to/from
45  *  integers are not allowed.
46  */
47 class ReadOptions {
48   std::uint32_t value_;
49   constexpr explicit ReadOptions(std::uint32_t value) : value_(value) {}
50 public:
51   constexpr ReadOptions() : value_(0) {}
52
53   constexpr operator bool() const { return value_ != 0; }
54   constexpr bool operator!() const { return value_ == 0; }
55
56   constexpr ReadOptions operator|(ReadOptions const& that) const
57   {
58     return ReadOptions(value_ | that.value_);
59   }
60   constexpr ReadOptions operator&(ReadOptions const& that) const
61   {
62     return ReadOptions(value_ & that.value_);
63   }
64   constexpr ReadOptions operator^(ReadOptions const& that) const
65   {
66     return ReadOptions(value_ ^ that.value_);
67   }
68   constexpr ReadOptions operator~() const
69   {
70     return ReadOptions(~value_);
71   }
72
73   ReadOptions& operator|=(ReadOptions const& that)
74   {
75     value_ |= that.value_;
76     return *this;
77   }
78   ReadOptions& operator&=(ReadOptions const& that)
79   {
80     value_ &= that.value_;
81     return *this;
82   }
83   ReadOptions& operator^=(ReadOptions const& that)
84   {
85     value_ &= that.value_;
86     return *this;
87   }
88
89   /** Copy the data to the given buffer */
90   static constexpr ReadOptions none() { return ReadOptions(0); }
91
92   /** Allows to return a pointer to another buffer where the data is
93    *  available instead of copying the data into the buffer
94    */
95   static constexpr ReadOptions lazy() { return ReadOptions(1); }
96 };
97
98 /** A given state of a given process (abstract base class)
99  *
100  *  Currently, this might either be:
101  *
102  *  * the current state of an existing process;
103  *
104  *  * a snapshot.
105  */
106 class AddressSpace {
107 private:
108   Process* process_;
109 public:
110   AddressSpace(Process* process) : process_(process) {}
111   virtual ~AddressSpace();
112
113   simgrid::mc::Process* process() const { return process_; }
114
115   /** Read data from the address space
116    *
117    *  @param buffer        target buffer for the data
118    *  @param size          number of bytes
119    *  @param address       remote source address of the data
120    *  @param process_index which process (used for SMPI privatization)
121    *  @param options
122    */
123   virtual const void* read_bytes(void* buffer, std::size_t size,
124     RemotePtr<void> address, int process_index = ProcessIndexAny,
125     ReadOptions options = ReadOptions::none()) const = 0;
126
127   /** Read a given data structure from the address space */
128   template<class T> inline
129   void read(T *buffer, RemotePtr<T> ptr, int process_index = ProcessIndexAny) const
130   {
131     this->read_bytes(buffer, sizeof(T), ptr, process_index);
132   }
133
134   template<class T> inline
135   void read(Remote<T>& buffer, RemotePtr<T> ptr, int process_index = ProcessIndexAny) const
136   {
137     this->read_bytes(buffer.getBuffer(), sizeof(T), ptr, process_index);
138   }
139
140   /** Read a given data structure from the address space */
141   template<class T> inline
142   Remote<T> read(RemotePtr<T> ptr, int process_index = ProcessIndexMissing) const
143   {
144     Remote<T> res;
145     this->read_bytes(&res, sizeof(T), ptr, process_index);
146     return res;
147   }
148
149   std::string read_string(RemotePtr<char> address, std::size_t len) const
150   {
151     // TODO, use std::vector with .data() in C++17 to avoid useless copies
152     std::vector<char> buffer(len);
153     buffer[len] = '\0';
154     this->read_bytes(buffer.data(), len, address);
155     return std::string(buffer.data(), buffer.size());
156   }
157
158 };
159
160 }
161 }
162
163 #endif