libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Mapping.hxx
1#pragma once
2
3// libcosmos
4#include <cosmos/proc/mman.hxx>
5
6namespace cosmos {
7
9
13class COSMOS_API Mapping {
14public: // functions
15
17 Mapping() = default;
18
20
23 Mapping(const size_t size, const mem::MapSettings &settings) {
24 m_addr = mem::map(size, settings);
25 m_size = size;
26 }
27
28 ~Mapping() {
29 unmap();
30 }
31
32 // non-copyable type
33 Mapping(const Mapping&) = delete;
34 Mapping& operator=(const Mapping&) = delete;
35
36 // move semantics
37
38 Mapping(Mapping &&other) noexcept {
39 *this = std::move(other);
40 }
41
42 Mapping& operator=(Mapping &&other) noexcept {
43 m_addr = other.m_addr;
44 m_size = other.m_size;
45 other.invalidate();
46 return *this;
47 }
48
49 bool valid() const {
50 return m_addr != nullptr;
51 }
52
53 void unmap() {
54 if (!valid())
55 return;
56
57 try {
58 mem::unmap(m_addr, m_size);
59 invalidate();
60 } catch (...) {
61 // prevent unrecoverable situations
62 invalidate();
63 throw;
64 }
65 }
66
68
71 void remap(const size_t new_size, const mem::RemapFlags &flags = {}, std::optional<void*> new_addr = {}) {
72 m_addr = mem::remap(m_addr, m_size, new_size, flags, new_addr);
73 m_size = new_size;
74 }
75
77 void* addr() {
78 return m_addr;
79 }
80
81 const void* addr() const {
82 return m_addr;
83 }
84
86 size_t size() const {
87 return m_size;
88 }
89
91
94 void sync(const mem::SyncFlags flags) {
95 mem::sync(m_addr, m_size, flags);
96 }
97
99
102 void lock(const mem::LockFlags flags = {}) {
103 mem::lock(m_addr, m_size, flags);
104 }
105
107
110 void unlock() {
111 mem::unlock(m_addr, m_size);
112 }
113
115
118 void setProtection(const mem::AccessFlags flags) {
119 mem::protect(m_addr, m_size, flags);
120 }
121
122protected: // functions
123
124 void invalidate() {
125 m_addr = nullptr;
126 m_size = 0;
127 }
128
129protected: // data
130
131 void *m_addr = nullptr;
132 size_t m_size = 0;
133};
134
135} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Memory mapping type with move-only ownership semantics.
Definition Mapping.hxx:13
void setProtection(const mem::AccessFlags flags)
Change memory protection settings.
Definition Mapping.hxx:118
Mapping(const size_t size, const mem::MapSettings &settings)
Create a new memory mapping based on the given settings.
Definition Mapping.hxx:23
void sync(const mem::SyncFlags flags)
Synchronize changes in the mapping with the file backing it.
Definition Mapping.hxx:94
size_t size() const
Returns the size of the mapped memory in bytes.
Definition Mapping.hxx:86
void lock(const mem::LockFlags flags={})
Lock pages in memory, preventing memory from being paged to the swap area.
Definition Mapping.hxx:102
void remap(const size_t new_size, const mem::RemapFlags &flags={}, std::optional< void * > new_addr={})
Adjust the memory mappings using new settings.
Definition Mapping.hxx:71
void unlock()
Unlock previously locked pages.
Definition Mapping.hxx:110
Mapping()=default
Creates an invalid memory mapping.
void * addr()
Returns the base address of the mapped memory.
Definition Mapping.hxx:77
Collection of settings used in cosmos::mem::map().
Definition mman.hxx:121