mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-04 05:19:58 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
42 lines
839 B
C++
42 lines
839 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Noncopyable.h>
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <AK/OSError.h>
|
|
#include <AK/RefCounted.h>
|
|
#include <AK/Result.h>
|
|
|
|
namespace AK {
|
|
|
|
class MappedFile : public RefCounted<MappedFile> {
|
|
AK_MAKE_NONCOPYABLE(MappedFile);
|
|
AK_MAKE_NONMOVABLE(MappedFile);
|
|
|
|
public:
|
|
static Result<NonnullRefPtr<MappedFile>, OSError> map(const String& path);
|
|
~MappedFile();
|
|
|
|
void* data() { return m_data; }
|
|
const void* data() const { return m_data; }
|
|
|
|
size_t size() const { return m_size; }
|
|
|
|
ReadonlyBytes bytes() const { return { m_data, m_size }; }
|
|
|
|
private:
|
|
explicit MappedFile(void*, size_t);
|
|
|
|
void* m_data { nullptr };
|
|
size_t m_size { 0 };
|
|
};
|
|
|
|
}
|
|
|
|
using AK::MappedFile;
|