blob: bb5c612d29a9f9ac1ff6dd3d2605c232131b17c1 (
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
|
#include <filesystem>
#include <iostream>
#include <ostream>
#include <openvic-dataloader/Parser.hpp>
#include "detail/NullBuff.hpp"
using namespace ovdl;
using namespace ovdl::detail;
BasicParser::BasicParser() : _error_stream(detail::cnull) {}
void BasicParser::set_error_log_to_null() {
set_error_log_to(detail::cnull);
}
void BasicParser::set_error_log_to_stderr() {
set_error_log_to(std::cerr);
}
void BasicParser::set_error_log_to_stdout() {
set_error_log_to(std::cout);
}
void BasicParser::set_error_log_to(std::basic_ostream<char>& stream) {
_error_stream = stream;
}
bool BasicParser::has_error() const {
return _has_error;
}
bool BasicParser::has_fatal_error() const {
return _has_fatal_error;
}
bool BasicParser::has_warning() const {
return _has_warning;
}
std::string_view BasicParser::get_file_path() const {
return _file_path;
}
void BasicParser::set_file_path(std::string_view path) {
std::error_code error;
std::filesystem::path file_path = std::filesystem::weakly_canonical(path, error);
_file_path = file_path.string();
}
|