summaryrefslogtreecommitdiff
path: root/AK/MappedFile.cpp
blob: b234fa19c67c49406609b8e668835d5fb6f8dcd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <AK/MappedFile.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <unistd.h>

//#define DEBUG_MAPPED_FILE

namespace AK {

MappedFile::MappedFile(const String& file_name)
    : m_file_name(file_name)
{
    m_size = PAGE_SIZE;
    m_fd = open(m_file_name.characters(), O_RDONLY | O_CLOEXEC);

    if (m_fd != -1) {
        struct stat st;
        fstat(m_fd, &st);
        m_size = st.st_size;
        m_map = mmap(nullptr, m_size, PROT_READ, MAP_SHARED, m_fd, 0);

        if (m_map == MAP_FAILED)
            perror("");
    }

#ifdef DEBUG_MAPPED_FILE
    dbgprintf("MappedFile{%s} := { m_fd=%d, m_size=%u, m_map=%p }\n", m_file_name.characters(), m_fd, m_size, m_map);
#endif
}

MappedFile::~MappedFile()
{
    unmap();
}

void MappedFile::unmap()
{
    if (!is_valid())
        return;
    ASSERT(m_fd != -1);
    int rc = munmap(m_map, m_size);
    ASSERT(rc == 0);
    rc = close(m_fd);
    ASSERT(rc == 0);
    m_file_name = {};
    m_size = 0;
    m_fd = -1;
    m_map = (void*)-1;
}

MappedFile::MappedFile(MappedFile&& other)
    : m_file_name(move(other.m_file_name))
    , m_size(other.m_size)
    , m_fd(other.m_fd)
    , m_map(other.m_map)
{
    other.m_size = 0;
    other.m_fd = -1;
    other.m_map = (void*)-1;
}

MappedFile& MappedFile::operator=(MappedFile&& other)
{
    if (this == &other)
        return *this;
    unmap();
    swap(m_file_name, other.m_file_name);
    swap(m_size, other.m_size);
    swap(m_fd, other.m_fd);
    swap(m_map, other.m_map);
    return *this;
}

}