libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
MemFile.hxx
1#pragma once
2
3// Linux
4#include <sys/mman.h>
5
6// cosmos
7#include <cosmos/BitMask.hxx>
8#include <cosmos/dso_export.h>
9#include <cosmos/fs/FileBase.hxx>
10#include <cosmos/SysString.hxx>
11
12namespace cosmos {
13
15
22class COSMOS_API MemFile :
23 public FileBase {
24public: // types
25
27 enum class OpenFlag : unsigned int {
28 CLOEXEC = MFD_CLOEXEC,
29 ALLOW_SEALING = MFD_ALLOW_SEALING,
30 HUGETLB = MFD_HUGETLB
31 };
32
35
37 enum class HugePageSize : unsigned int {
38 // the values are the log-2 bit positions of the corresponding page sizes
39 DEFAULT = 0,
40 HUGE_2MB = 21,
41 HUGE_8MB = 23,
42 HUGE_16MB = 24,
43 HUGE_32MB = 25,
44 HUGE_256MB = 28,
45 HUGE_512MB = 29,
46 HUGE_1GB = 30,
47 HUGE_2GB = 31,
48 HUGE_16GB = 34
49 };
50
51public: // functions
52
53 MemFile() = default;
54
56 explicit MemFile(const SysString name,
57 const OpenFlags flags = OpenFlags{OpenFlag::CLOEXEC},
58 const HugePageSize tlb_ps = HugePageSize::DEFAULT) {
59 create(name, flags, tlb_ps);
60 }
61
63
68 void create(const SysString name,
69 const OpenFlags flags = OpenFlags{OpenFlag::CLOEXEC},
70 const HugePageSize tlb_ps = HugePageSize::DEFAULT);
71};
72
73} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Base class for File types with ownership of a FileDescriptor.
Definition FileBase.hxx:23
A file only backed by memory, not by an actual file system.
Definition MemFile.hxx:23
MemFile(const SysString name, const OpenFlags flags=OpenFlags{OpenFlag::CLOEXEC}, const HugePageSize tlb_ps=HugePageSize::DEFAULT)
Definition MemFile.hxx:56
OpenFlag
Available open settings for the MemFile type.
Definition MemFile.hxx:27
HugePageSize
PageSize specification if OpenFlag::HUGETLB is set.
Definition MemFile.hxx:37
@ DEFAULT
if used on a packet socket then no packets will be received (until bind).
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33