libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
MemFile.cxx
1// cosmos
2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/formatting.hxx>
4#include <cosmos/io/MemFile.hxx>
5#include <cosmos/private/cosmos.hxx>
6#include <cosmos/utils.hxx>
7
8namespace cosmos {
9
10void MemFile::create(const SysString name, const OpenFlags flags, const HugePageSize tlb_ps) {
11
12 close();
13
14 // see `man mmap` for an explanation about this.
15 const auto page_size = to_integral(tlb_ps) << MAP_HUGE_SHIFT;
16 auto fd = ::memfd_create(name.raw(), flags.raw() | page_size);
17
18 if (fd == -1) {
19 cosmos_throw (ApiError("memfd_create()"));
20 }
21
22 m_fd.setFD(FileNum{fd});
23}
24
25} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
virtual void close()
Close the current file object.
Definition FileBase.hxx:63
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
void create(const SysString name, const OpenFlags flags=OpenFlags{OpenFlag::CLOEXEC}, const HugePageSize tlb_ps=HugePageSize::DEFAULT)
Create a new MemFile using the given settings.
Definition MemFile.cxx:10
HugePageSize
PageSize specification if OpenFlag::HUGETLB is set.
Definition MemFile.hxx:37
FileNum
Primitive file descriptor.
Definition types.hxx:32
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33