summaryrefslogtreecommitdiff
path: root/src/mmo/config_parse.cpp
blob: b47ee7916786d5eb34a204ccf57d58dddedb12df (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
156
157
158
159
160
161
#include "config_parse.hpp"
//    config_parse.cpp - Framework for per-server config parsers.
//
//    Copyright © 2014 Ben Longbons <b.r.longbons@gmail.com>
//
//    This file is part of The Mana World (Athena server)
//
//    This program is free software: you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation, either version 3 of the License, or
//    (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//    GNU General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program.  If not, see <http://www.gnu.org/licenses/>.

#include <algorithm>

#include "../strings/xstring.hpp"
#include "../strings/zstring.hpp"

#include "../io/cxxstdio.hpp"
#include "../io/extract.hpp"
#include "../io/line.hpp"

#include "version.hpp"

#include "../poison.hpp"


namespace tmwa
{
bool is_comment(XString line)
{
    return not line or line.startswith("//"_s);
}

template<class ZS>
inline
bool config_split_impl(ZS line, XString *key, ZS *value)
{
    // unconditionally fail if line contains control characters
    if (std::find_if(line.begin(), line.end(),
                [](unsigned char c) { return c < ' '; }
                ) != line.end())
        return false;
    // try to find a colon, fail if not found
    typename ZS::iterator colon = std::find(line.begin(), line.end(), ':');
    if (colon == line.end())
        return false;

    *key = line.xislice_h(colon).strip();
    // move past the colon and any spaces
    ++colon;
    *value = line.xislice_t(colon).lstrip();
    return true;
}

// eventually this should go away
bool config_split(ZString line, XString *key, ZString *value)
{
    return config_split_impl(line, key, value);
}
// and use this instead
bool config_split(XString line, XString *key, XString *value)
{
    return config_split_impl(line, key, value);
}

/// Master config parser. This handles 'import' and 'version-ge' etc.
/// Then it defers to the inferior parser for a line it does not understand.
bool load_config_file(ZString filename, ConfigItemParser slave)
{
    io::LineReader in(filename);
    if (!in.is_open())
    {
        PRINTF("Unable to open file: %s\n"_fmt, filename);
        return false;
    }
    io::Line line;
    bool rv = true;
    while (in.read_line(line))
    {
        if (is_comment(line.text))
            continue;
        XString key;
        ZString value;
        if (!config_split(line.text, &key, &value))
        {
            line.error("Bad config line"_s);
            rv = false;
            continue;
        }
        if (key == "import"_s)
        {
            rv &= load_config_file(value, slave);
            continue;
        }
        else if (key == "version-lt"_s)
        {
            Version vers;
            if (!extract(value, &vers))
            {
                rv = false;
                continue;
            }
            if (CURRENT_VERSION < vers)
                continue;
            break;
        }
        else if (key == "version-le"_s)
        {
            Version vers;
            if (!extract(value, &vers))
            {
                rv = false;
                continue;
            }
            if (CURRENT_VERSION <= vers)
                continue;
            break;
        }
        else if (key == "version-gt"_s)
        {
            Version vers;
            if (!extract(value, &vers))
            {
                rv = false;
                continue;
            }
            if (CURRENT_VERSION > vers)
                continue;
            break;
        }
        else if (key == "version-ge"_s)
        {
            Version vers;
            if (!extract(value, &vers))
            {
                rv = false;
                continue;
            }
            if (CURRENT_VERSION >= vers)
                continue;
            break;
        }
        else if (!slave(key, value))
        {
            line.error("Bad config key or value"_s);
            rv = false;
            continue;
        }
        // nothing to see here, move along
    }
    return rv;
}
} // namespace tmwa