siplasplas
A library for C++ reflection and introspection
memory_manip.hpp
1 #ifndef SIPLASPLAS_UTILITY_MEMORY_MANIP_HPP
2 #define SIPLASPLAS_UTILITY_MEMORY_MANIP_HPP
3 
4 #include <memory>
5 #include <siplasplas/utility/export.hpp>
6 
7 namespace cpp
8 {
9  namespace detail
10  {
11  SIPLASPLAS_UTILITY_EXPORT char* aligned_ptr(char* pointer, std::size_t alignment);
12  SIPLASPLAS_UTILITY_EXPORT void* aligned_ptr(void* pointer, std::size_t alignment);
13 
14  template<typename T>
15  void write_at(char* pointer, const T& value, std::intptr_t offset = 0)
16  {
17  *(reinterpret_cast<T*>(pointer) + offset) = value;
18  }
19 
20  template<typename T>
21  void write_at(void* pointer, const T& value, std::intptr_t offset = 0)
22  {
23  write_at(reinterpret_cast<char*>(pointer), value, offset);
24  }
25 
26  template<typename T>
27  T read_at(const char* pointer, std::intptr_t offset = 0)
28  {
29  return *(reinterpret_cast<const T*>(pointer + offset));
30  }
31 
32  template<typename T>
33  T read_at(const void* pointer, std::intptr_t offset = 0)
34  {
35  return read_at<T>(reinterpret_cast<const char*>(pointer), offset);
36  }
37 
38  template<typename T>
39  void write_before(char* pointer, const T& value)
40  {
41  write_at(pointer, value, -sizeof(T));
42  }
43 
44  template<typename T>
45  void write_before(void* pointer, const T& value)
46  {
47  write_before(reinterpret_cast<char*>(pointer), value);
48  }
49 
50  template<typename T>
51  T read_before(const char* pointer)
52  {
53  return read_at<T>(pointer, - sizeof(T));
54  }
55 
56  template<typename T>
57  T read_before(const void* pointer)
58  {
59  return read_before<T>(reinterpret_cast<const char*>(pointer));
60  }
61 
62  template<typename T>
63  class RawReaderWriter
64  {
65  public:
66  RawReaderWriter(void* at) :
67  _at{reinterpret_cast<char*>(at)}
68  {}
69 
70  T get() const
71  {
72  return detail::read_at<T>(_at);
73  }
74 
75  operator T() const
76  {
77  return get();
78  }
79 
80  T operator=(T value)
81  {
82  detail::write_at(_at, value);
83  return value;
84  }
85  private:
86  char* _at;
87  };
88  }
89 }
90 
91 #endif // SIPLASPLAS_UTILITY_MEMORY_MANIP_HPP
92 
Definition: canary_allocator.hpp:7