aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-dataloader/csv/Parser.cpp
blob: 45f3142d3b93dd44b78e2acff85bc68debeed12d (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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#include <memory>
#include <vector>

#include <openvic-dataloader/csv/LineObject.hpp>
#include <openvic-dataloader/csv/Parser.hpp>

#include <lexy/action/parse.hpp>
#include <lexy/encoding.hpp>
#include <lexy/input/buffer.hpp>
#include <lexy/input/file.hpp>

#include "csv/CsvGrammar.hpp"
#include "detail/BasicBufferHandler.hpp"
#include "detail/Errors.hpp"
#include "detail/LexyReportError.hpp"
#include "detail/OStreamOutputIterator.hpp"

using namespace ovdl;
using namespace ovdl::csv;

///   BufferHandler ///

class Parser::BufferHandler final : public detail::BasicBufferHandler<lexy::utf8_char_encoding> {
public:
   template<typename Node, typename ErrorCallback>
   std::optional<std::vector<ParseError>> parse(const ErrorCallback& callback) {
      auto result = lexy::parse<Node>(_buffer, callback);
      if (!result) {
         return result.errors();
      }
      _lines = std::move(result.value());
      return std::nullopt;
   }

   std::vector<csv::LineObject>& get_lines() {
      return _lines;
   }

private:
   std::vector<csv::LineObject> _lines;
};

/// BufferHandler ///

Parser::Parser()
   : _buffer_handler(std::make_unique<BufferHandler>()) {
   set_error_log_to_stderr();
}

Parser::Parser(Parser&&) = default;
Parser& Parser::operator=(Parser&&) = default;
Parser::~Parser() = default;

Parser Parser::from_buffer(const char* data, std::size_t size) {
   Parser result;
   return std::move(result.load_from_buffer(data, size));
}

Parser Parser::from_buffer(const char* start, const char* end) {
   Parser result;
   return std::move(result.load_from_buffer(start, end));
}

Parser Parser::from_string(const std::string_view string) {
   Parser result;
   return std::move(result.load_from_string(string));
}

Parser Parser::from_file(const char* path) {
   Parser result;
   return std::move(result.load_from_file(path));
}

Parser Parser::from_file(const std::filesystem::path& path) {
   Parser result;
   return std::move(result.load_from_file(path));
}

///
/// @brief Executes a function on _buffer_handler that is expected to load a buffer
///
/// Expected Use:
/// @code {.cpp}
///   _run_load_func(&BufferHandler::<load_function>, <arguments>);
/// @endcode
///
/// @tparam Type
/// @tparam Args
/// @param func
/// @param args
///
template<typename... Args>
constexpr void Parser::_run_load_func(detail::LoadCallback<BufferHandler, Args...> auto func, Args... args) {
   _warnings.clear();
   _errors.clear();
   _has_fatal_error = false;
   if (auto error = func(_buffer_handler.get(), std::forward<Args>(args)...); error) {
      _has_fatal_error = error.value().type == ParseError::Type::Fatal;
      _errors.push_back(error.value());
      _error_stream.get() << "Error: " << _errors.back().message << '\n';
   }
}

constexpr Parser& Parser::load_from_buffer(const char* data, std::size_t size) {
   // Type can't be deduced?
   _run_load_func(std::mem_fn(&BufferHandler::load_buffer_size), data, size);
   return *this;
}

constexpr Parser& Parser::load_from_buffer(const char* start, const char* end) {
   // Type can't be deduced?
   _run_load_func(std::mem_fn(&BufferHandler::load_buffer), start, end);
   return *this;
}

constexpr Parser& Parser::load_from_string(const std::string_view string) {
   return load_from_buffer(string.data(), string.size());
}

constexpr Parser& Parser::load_from_file(const char* path) {
   _file_path = path;
   // Type can be deduced??
   _run_load_func(std::mem_fn(&BufferHandler::load_file), path);
   return *this;
}

Parser& Parser::load_from_file(const std::filesystem::path& path) {
   return load_from_file(path.string().c_str());
}

constexpr Parser& Parser::load_from_file(const detail::Has_c_str auto& path) {
   return load_from_file(path.c_str());
}

bool Parser::parse_csv() {
   if (!_buffer_handler->is_valid()) {
      return false;
   }

   auto errors = _buffer_handler->parse<csv::grammar::SemiColonFile>(ovdl::detail::ReporError.path(_file_path).to(detail::OStreamOutputIterator { _error_stream }));
   if (errors) {
      _errors.reserve(errors->size());
      for (auto& err : errors.value()) {
         _has_fatal_error |= err.type == ParseError::Type::Fatal;
         _errors.push_back(err);
      }
      return false;
   }
   _lines = std::move(_buffer_handler->get_lines());
   return true;
}

const std::vector<csv::LineObject>& Parser::get_lines() const {
   return _lines;
}