blob: 3634f4c90869f6fe3bf335982ff9bcb9be646ae2 (
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
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
|
#ifndef SIBS_CONF_HPP
#define SIBS_CONF_HPP
#include "Result.hpp"
#include "StringView.hpp"
#include "utils.hpp"
#include "Dependency.hpp"
#include <vector>
#include <cassert>
#include <stdexcept>
namespace sibs
{
class ConfigValue
{
public:
enum class Type
{
NONE,
SINGLE,
LIST
};
ConfigValue() : type(Type::NONE) {}
ConfigValue(StringView value) :
type(Type::SINGLE)
{
values.push_back(value);
}
ConfigValue(const std::vector<StringView> &_values) :
type(Type::LIST),
values(_values)
{
}
bool isSingle() const { return type == Type::SINGLE; }
bool isList() const { return type == Type::LIST; }
StringView asSingle() const
{
assert(isSingle());
return values[0];
}
const std::vector<StringView> asList() const
{
assert(isList());
return values;
}
private:
Type type;
std::vector<StringView> values;
};
class Parser;
class ParserException : public std::runtime_error
{
public:
ParserException(const std::string &errMsg) : runtime_error(errMsg)
{
}
};
class ConfigCallback
{
friend class Parser;
protected:
virtual void processObject(StringView name) = 0;
virtual void processField(StringView name, const ConfigValue &value) = 0;
virtual void finished() = 0;
};
class Config
{
public:
static Result<bool> readFromFile(const char *filepath, const ConfigCallback &callback);
};
class SibsConfig : public ConfigCallback
{
public:
SibsConfig() : finishedProcessing(false) {}
const std::string& getPackageName() const
{
assert(finishedProcessing);
return packageName;
}
const std::vector<Dependency>& getDependencies() const
{
return dependencies;
}
protected:
void processObject(StringView name) override;
void processField(StringView name, const ConfigValue &value) override;
void finished() override
{
finishedProcessing = true;
}
private:
StringView currentObject;
std::string packageName;
std::vector<Dependency> dependencies;
bool finishedProcessing;
};
}
#endif //SIBS_CONF_HPP
|