-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfig_file_parser.hpp
296 lines (274 loc) · 7.79 KB
/
config_file_parser.hpp
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/**
* Copyright © 2024 IBM Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "rail.hpp"
#include <nlohmann/json.hpp>
#include <cstdint>
#include <filesystem>
#include <memory>
#include <stdexcept>
#include <string>
#include <vector>
namespace phosphor::power::sequencer::config_file_parser
{
/**
* Standard JSON configuration file directory on the BMC.
*/
extern const std::filesystem::path standardConfigFileDirectory;
/**
* Finds the JSON configuration file for the current system based on the
* specified compatible system types.
*
* This is required when a single BMC firmware image supports multiple system
* types and some system types require different configuration files.
*
* The compatible system types must be ordered from most to least specific.
* Example:
* - com.acme.Hardware.Chassis.Model.MegaServer4CPU
* - com.acme.Hardware.Chassis.Model.MegaServer
* - com.acme.Hardware.Chassis.Model.Server
*
* Throws an exception if an error occurs.
*
* @param compatibleSystemTypes compatible system types for the current system
* ordered from most to least specific
* @param configFileDir directory containing configuration files
* @return path to the JSON configuration file, or an empty path if none was
* found
*/
std::filesystem::path find(
const std::vector<std::string>& compatibleSystemTypes,
const std::filesystem::path& configFileDir = standardConfigFileDirectory);
/**
* Parses the specified JSON configuration file.
*
* Returns the corresponding C++ Rail objects.
*
* Throws a ConfigFileParserError if an error occurs.
*
* @param pathName configuration file path name
* @return vector of Rail objects
*/
std::vector<std::unique_ptr<Rail>> parse(const std::filesystem::path& pathName);
/*
* Internal implementation details for parse()
*/
namespace internal
{
/**
* Returns the specified property of the specified JSON element.
*
* Throws an invalid_argument exception if the property does not exist.
*
* @param element JSON element
* @param property property name
*/
#pragma GCC diagnostic push
#if __GNUC__ >= 13
#pragma GCC diagnostic ignored "-Wdangling-reference"
#endif
inline const nlohmann::json& getRequiredProperty(const nlohmann::json& element,
const std::string& property)
{
auto it = element.find(property);
if (it == element.end())
{
throw std::invalid_argument{"Required property missing: " + property};
}
return *it;
}
#pragma GCC diagnostic pop
/**
* Parses a JSON element containing a boolean.
*
* Returns the corresponding C++ boolean value.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @return boolean value
*/
inline bool parseBoolean(const nlohmann::json& element)
{
// Verify element contains a boolean
if (!element.is_boolean())
{
throw std::invalid_argument{"Element is not a boolean"};
}
return element.get<bool>();
}
/**
* Parses a JSON element containing a GPIO.
*
* Returns the corresponding C++ GPIO object.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @return GPIO object
*/
GPIO parseGPIO(const nlohmann::json& element);
/**
* Parses a JSON element containing a rail.
*
* Returns the corresponding C++ Rail object.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @return Rail object
*/
std::unique_ptr<Rail> parseRail(const nlohmann::json& element);
/**
* Parses a JSON element containing an array of rails.
*
* Returns the corresponding C++ Rail objects.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @return vector of Rail objects
*/
std::vector<std::unique_ptr<Rail>> parseRailArray(
const nlohmann::json& element);
/**
* Parses the JSON root element of the entire configuration file.
*
* Returns the corresponding C++ Rail objects.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @return vector of Rail objects
*/
std::vector<std::unique_ptr<Rail>> parseRoot(const nlohmann::json& element);
/**
* Parses a JSON element containing a string.
*
* Returns the corresponding C++ string.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @param isEmptyValid indicates whether an empty string value is valid
* @return string value
*/
inline std::string parseString(const nlohmann::json& element,
bool isEmptyValid = false)
{
if (!element.is_string())
{
throw std::invalid_argument{"Element is not a string"};
}
std::string value = element.get<std::string>();
if (value.empty() && !isEmptyValid)
{
throw std::invalid_argument{"Element contains an empty string"};
}
return value;
}
/**
* Parses a JSON element containing an 8-bit unsigned integer.
*
* Returns the corresponding C++ uint8_t value.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @return uint8_t value
*/
inline uint8_t parseUint8(const nlohmann::json& element)
{
// Verify element contains an integer
if (!element.is_number_integer())
{
throw std::invalid_argument{"Element is not an integer"};
}
int value = element.get<int>();
if ((value < 0) || (value > UINT8_MAX))
{
throw std::invalid_argument{"Element is not an 8-bit unsigned integer"};
}
return static_cast<uint8_t>(value);
}
/**
* Parses a JSON element containing an unsigned integer.
*
* Returns the corresponding C++ unsigned int value.
*
* Throws an exception if parsing fails.
*
* @param element JSON element
* @return unsigned int value
*/
inline unsigned int parseUnsignedInteger(const nlohmann::json& element)
{
// Verify element contains an unsigned integer
if (!element.is_number_unsigned())
{
throw std::invalid_argument{"Element is not an unsigned integer"};
}
return element.get<unsigned int>();
}
/**
* Verifies that the specified JSON element is a JSON array.
*
* Throws an invalid_argument exception if the element is not an array.
*
* @param element JSON element
*/
inline void verifyIsArray(const nlohmann::json& element)
{
if (!element.is_array())
{
throw std::invalid_argument{"Element is not an array"};
}
}
/**
* Verifies that the specified JSON element is a JSON object.
*
* Throws an invalid_argument exception if the element is not an object.
*
* @param element JSON element
*/
inline void verifyIsObject(const nlohmann::json& element)
{
if (!element.is_object())
{
throw std::invalid_argument{"Element is not an object"};
}
}
/**
* Verifies that the specified JSON element contains the expected number of
* properties.
*
* Throws an invalid_argument exception if the element contains a different
* number of properties. This indicates the element contains an invalid
* property.
*
* @param element JSON element
* @param expectedCount expected number of properties in element
*/
inline void verifyPropertyCount(const nlohmann::json& element,
unsigned int expectedCount)
{
if (element.size() != expectedCount)
{
throw std::invalid_argument{"Element contains an invalid property"};
}
}
} // namespace internal
} // namespace phosphor::power::sequencer::config_file_parser