blob: 60cc215993eeaf4516a939486d7bc123c9f13d23 (
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
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef LIB_EXTRAS_MMAP_H_
#define LIB_EXTRAS_MMAP_H_
#include <memory>
#include "lib/jxl/base/status.h"
namespace jxl {
struct MemoryMappedFileImpl;
class MemoryMappedFile {
public:
static StatusOr<MemoryMappedFile> Init(const char* path);
const uint8_t* data() const;
size_t size() const;
MemoryMappedFile(); // NOLINT
~MemoryMappedFile(); // NOLINT
MemoryMappedFile(MemoryMappedFile&&) noexcept; // NOLINT
MemoryMappedFile& operator=(MemoryMappedFile&&) noexcept; // NOLINT
private:
std::unique_ptr<MemoryMappedFileImpl> impl_;
};
} // namespace jxl
#endif
|