blob: afd569f6ed67f45f51cdb44368b2eb4ff183e034 (
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
|
#include <cstdio>
#include <iostream>
#include <string>
#include <vector>
#include <openvic-dataloader/v2script/Parser.hpp>
int main(int argc, char** argv) {
if (argc < 2) {
std::fprintf(stderr, "usage: %s <filename>", argv[0]);
return 1;
}
auto parser = ovdl::v2script::Parser::from_file(argv[1]);
if (parser.has_error()) {
return 1;
}
parser.simple_parse();
if (parser.has_error()) {
return 2;
}
if (parser.has_warning()) {
for (auto& warning : parser.get_warnings()) {
std::cerr << "Warning: " << warning.message << std::endl;
}
}
#ifdef OPENVIC_DATALOADER_PRINT_NODES
parser.get_file_node()->print(std::cout);
#endif
return 0;
}
|