forked from voodooattack/ADWIF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonutils.cpp
232 lines (221 loc) · 9.87 KB
/
jsonutils.cpp
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/* Copyright (c) 2013, Abdullah A. Hassan <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "jsonutils.hpp"
#include <boost/regex.hpp>
#include <algorithm>
#include <utf8.h>
namespace ADWIF
{
void validateJsonSchema(const Json::Value & schema, const std::string & key,
const Json::Value & value) throw(ParsingException)
{
auto stringToType = [](const std::string & str) -> Json::ValueType {
if (str == "array") return Json::ValueType::arrayValue;
else if (str == "boolean") return Json::ValueType::booleanValue;
else if (str == "integer") return Json::ValueType::intValue;
else if (str == "uinteger") return Json::ValueType::uintValue;
else if (str == "number") return Json::ValueType::realValue;
else if (str == "null") return Json::ValueType::nullValue;
else if (str == "string") return Json::ValueType::stringValue;
else if (str == "object") return Json::ValueType::objectValue;
else return Json::ValueType::nullValue;
};
auto typeToString = [](Json::ValueType type) -> std::string {
switch(type)
{
case Json::ValueType::nullValue: return "null";
case Json::ValueType::intValue: return "integer";
case Json::ValueType::uintValue: return "uinteger";
case Json::ValueType::realValue: return "number";
case Json::ValueType::stringValue: return "string";
case Json::ValueType::booleanValue: return "boolean";
case Json::ValueType::arrayValue: return "array";
case Json::ValueType::objectValue: return "object";
default: return "invalid";
}
};
if (value.isNull() && schema["nullable"].asBool())
return;
const std::string & sctype = schema["type"].asString();
if (stringToType(sctype) != value.type())
throw ParsingException("value type mismatch for '" + key +
"', expected '" + sctype + "' and got '" +
typeToString(value.type()) + "'\n" + value.toStyledString());
switch(stringToType(sctype))
{
case Json::ValueType::nullValue:
case Json::ValueType::intValue:
case Json::ValueType::uintValue:
case Json::ValueType::realValue:
case Json::ValueType::booleanValue: return;
case Json::ValueType::stringValue:
{
if (!schema["minSize"].empty() || !schema["maxSize"].empty())
{
std::string v = value.asString();
size_t len = utf8::distance(v.begin(), v.end());
if (!schema["minSize"].empty())
if (len < schema["minSize"].asUInt())
throw ParsingException("string '" + key + "' must have a minimum length of " +
Json::valueToString(schema["minSize"].asUInt()));
if (!schema["maxSize"].empty())
if (len > schema["maxSize"].asUInt())
throw ParsingException("string '" + key + "' must have a maximum length of " +
Json::valueToString(schema["maxSize"].asUInt()));
}
if (!schema["oneOf"].empty() && schema["oneOf"].isArray())
{
std::vector<std::string> oneOf;
std::transform(schema["oneOf"].begin(), schema["oneOf"].end(), std::back_inserter(oneOf),
[&](const Json::Value & v) {
std::string val = v.asString();
if (!schema["caseSensetive"].empty() && !schema["caseSensetive"].asBool())
std::transform(val.begin(), val.end(), val.begin(), &tolower);
return val;
});
std::string val = value.asString();
if (!schema["caseSensetive"].empty() && !schema["caseSensetive"].asBool())
std::transform(val.begin(), val.end(), val.begin(), &tolower);
if (std::find(oneOf.begin(), oneOf.end(), val) == oneOf.end())
{
throw ParsingException("string '" + key + "' does not match one of \n" +
schema["oneOf"].toStyledString());
}
}
if (!schema["pattern"].empty())
{
try
{
boost::regex r(schema["pattern"].asString());
if (!boost::regex_match(value.asString(), r))
throw ParsingException("string '" + key + "' does not match pattern \"" +
schema["pattern"].asString() + "\"");
}
catch (boost::regex_error & e)
{
throw ParsingException("error matching pattern \"" + schema["pattern"].asString() +
"\" to string '" + key + "': " + e.what() + " (" + Json::valueToString(e.code()) + ")");
}
}
break;
}
case Json::ValueType::arrayValue:
{
for (unsigned i = 0; i < value.size(); i++)
{
if (!schema["items"]["minItems"].empty() && value.size() < schema["items"]["minItems"].asUInt())
{
throw ParsingException("array '" + key + "', requires a minimum size of " +
Json::valueToString(schema["items"]["minItems"].asUInt()) + "\n" + value.toStyledString());
}
if (!schema["items"]["maxItems"].empty() && value.size() < schema["items"]["maxItems"].asUInt())
{
throw ParsingException("array '" + key + "', requires a maximum size of " +
Json::valueToString(schema["items"]["maxItems"].asUInt()) + "\n" + value.toStyledString());
}
validateJsonSchema(schema["items"], key + "[" + Json::valueToString(i) + "]", value[i]);
}
break;
}
case Json::ValueType::objectValue:
{
if (!schema["pattern"].empty())
{
if (!schema["required"].empty() && schema["required"].isArray())
for (auto const & reqMember : schema["required"])
if (value[reqMember.asString()].empty())
throw ParsingException("required property '" + reqMember.asString() + "' in object '" + key + "' is undefined " +
+ "\n" + value.toStyledString());
for (auto const & member : value.getMemberNames())
{
try
{
boost::regex r(schema["pattern"].asString());
if (!boost::regex_match(member, r))
throw ParsingException("property name for '" + key + "/" + member + "' does not match pattern \"" +
schema["pattern"].asString() + "\"");
}
catch (boost::regex_error & e)
{
throw ParsingException("error matching pattern \"" + schema["pattern"].asString() +
"\" to property name '" + key + "/" + member + "': " + e.what() + " (" + Json::valueToString(e.code()) + ")");
}
validateJsonSchema(schema["property"], key + "/" + member, value[member]);
}
}
else
for (auto const & member : schema["properties"].getMemberNames())
{
if (value[member].empty() && schema["required"].isArray())
for (auto const & reqMember : schema["required"])
if (reqMember.asString() == member)
throw ParsingException("required property '" + member + "' in object '" + key + "' is undefined " +
+ "\n" + value.toStyledString());
if (!value[member].empty())
validateJsonSchema(schema["properties"][member], key + "/" + member, value[member]);
}
break;
}
}
}
Json::Value palEntryToJson(const palEntry & entry)
{
Json::Value value;
value["fgcolour"] = ADWIF::colourStr(entry.fg);
value["bgcolour"] = ADWIF::colourStr(entry.bg);
std::vector<std::string> styles = ADWIF::styleStrs(entry.style);
for (auto const & s : styles)
value["attributes"].append(s);
return value;
}
Json::Value paletteToJson(const std::vector<palEntry> & palette)
{
Json::Value pal;
for (auto & i : palette)
{
Json::Value entry = palEntryToJson(i);
pal.append(entry);
}
return pal;
}
palEntry jsonToPalEntry(const Json::Value & value, const palEntry & def)
{
palEntry entry;
if(!value["fgcolour"].empty())
entry.fg = ADWIF::strColour(value["fgcolour"].asString());
else
entry.fg = def.fg;
if(!value["bgcolour"].empty())
entry.bg = ADWIF::strColour(value["bgcolour"].asString());
else
entry.bg = def.bg;
if(!value["attributes"].empty())
{
std::vector<std::string> attrs;
std::transform(value["attributes"].begin(), value["attributes"].end(),
std::back_inserter(attrs), [](const Json::Value & v) {
return v.asString();
});
entry.style = strsStyle(attrs);
}
else
entry.style = def.style;
return entry;
}
}