blob: 75ea8ee444fd67e06fad9fb63ad554135e9044f7 (
plain) (
blame)
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
|
#pragma once
#include <optional>
#include <openvic-dataloader/ParseError.hpp>
#include <openvic-dataloader/detail/OptionalConstexpr.hpp>
#include <lexy/encoding.hpp>
#include <lexy/input/buffer.hpp>
#include <lexy/input/file.hpp>
#include "detail/Errors.hpp"
namespace ovdl::detail {
template<typename Encoding = lexy::default_encoding, typename MemoryResource = void>
class BasicBufferHandler {
public:
OVDL_OPTIONAL_CONSTEXPR bool is_valid() const {
return _buffer.size() != 0;
}
OVDL_OPTIONAL_CONSTEXPR std::optional<ovdl::ParseError> load_buffer_size(const char* data, std::size_t size) {
_buffer = lexy::buffer<Encoding, MemoryResource>(data, size);
return std::nullopt;
}
OVDL_OPTIONAL_CONSTEXPR std::optional<ovdl::ParseError> load_buffer(const char* start, const char* end) {
_buffer = lexy::buffer<Encoding, MemoryResource>(start, end);
return std::nullopt;
}
std::optional<ovdl::ParseError> load_file(const char* path) {
auto file = lexy::read_file<Encoding, lexy::encoding_endianness::bom, MemoryResource>(path);
if (!file) {
return ovdl::errors::make_no_file_error(path);
}
_buffer = file.buffer();
return std::nullopt;
}
protected:
lexy::buffer<Encoding, MemoryResource> _buffer;
};
}
|