blob: 8bc023dec0f35e32c956247d1e87a3e25e777db3 (
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();
~MemoryMappedFile();
MemoryMappedFile(MemoryMappedFile&&) noexcept;
MemoryMappedFile& operator=(MemoryMappedFile&&) noexcept;
private:
std::unique_ptr<MemoryMappedFileImpl> impl_;
};
} // namespace jxl
#endif
|