mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
55d7810fab
We only need an open FD while establishing the mapping, and can close it immediately after mmap() call.
32 lines
618 B
C++
32 lines
618 B
C++
#pragma once
|
|
|
|
#include <AK/Noncopyable.h>
|
|
#include <AK/StringView.h>
|
|
|
|
namespace AK {
|
|
|
|
class MappedFile {
|
|
AK_MAKE_NONCOPYABLE(MappedFile);
|
|
public:
|
|
MappedFile() {}
|
|
explicit MappedFile(const StringView& file_name);
|
|
MappedFile(MappedFile&&);
|
|
~MappedFile();
|
|
|
|
MappedFile& operator=(MappedFile&&);
|
|
|
|
bool is_valid() const { return m_map != (void*)-1; }
|
|
void unmap();
|
|
|
|
void* pointer() { return m_map; }
|
|
const void* pointer() const { return m_map; }
|
|
size_t size() const { return m_size; }
|
|
|
|
private:
|
|
size_t m_size { 0 };
|
|
void* m_map { (void*)-1 };
|
|
};
|
|
|
|
}
|
|
|
|
using AK::MappedFile;
|