-
Notifications
You must be signed in to change notification settings - Fork 6
/
ResultsBase.hpp
426 lines (385 loc) · 16.3 KB
/
ResultsBase.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/* *********************************************************************
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
* Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
* Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
*
* This Original Work is licensed under the European Union Public Licence
* (EUPL) v.1.2 and is subject to its terms as set out below.
*
* If a copy of the EUPL was not distributed with this file, You can obtain
* one at https://opensource.org/licenses/EUPL-1.2.
*
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
* amended by the European Commission) shall be deemed incompatible for
* the purposes of the Work and the provisions of the compatibility
* clause in Article 5 of the EUPL shall not apply.
*
* If using the Work as, or as part of, a network application, by
* including the attribution notice(s) required under Article 5 of the EUPL
* in the end user terms of the application under an appropriate heading,
* such notice(s) shall fulfill the requirements of that article.
* ********************************************************************* */
#ifndef FIFTYONE_DEGREES_RESULTS_BASE_HPP
#define FIFTYONE_DEGREES_RESULTS_BASE_HPP
#include <string>
#include <vector>
#include <memory>
#include <sstream>
#include "Exceptions.hpp"
#include "Value.hpp"
#include "RequiredPropertiesConfig.hpp"
#include "results.h"
#include "resource.h"
using std::shared_ptr;
using std::stringstream;
namespace FiftyoneDegrees {
namespace Common {
/**
* Encapsulates the results of an engine's processing. The class is
* constructed using an instance of a C #fiftyoneDegreesResultsBase
* structure which is then referenced to return associated values and
* metrics. Any memory used by the results is freed by the extending
* class.
*
* Values contained in a results instance can be returned as a string,
* or as a type specified by the method used to fetch the value. For
* example, the #getValueAsBool(int) method returns a value as a bool
* instead of a string representation.
*
* The key used to get the value for a property can be either the name
* of the property, or the index of the property in the required
* properties structure.
*
* Results instances should only be created by a Engine.
*
* ## Usage Example
*
* ```
* using namespace FiftyoneDegrees::Common;
* ResultsBase *results;
*
* // Iterate over all property indexes
* for (int i = 0; i < results->getAvailableProperties(); i++) {
*
* // Get the value for the property as a string
* string value = *results->getValueAsString(i);
*
* // Do something with the value
* // ...
* }
*
* // Or get a value using the name of the property
* string value = *results->getValueAsString("name of a property");
*
* // Delete the results
* delete results;
* ```
*/
class ResultsBase {
public:
/**
* @name Constructors and Destructors
* @{
*/
/**
* Create a new instance of Results from the results structure
* provided.
*
* This method should only be called from inside an engine's
* process method.
* @param results pointer to the underlying results structure
* @param manager shared pointer to the manager which manages the
* data set used to create the results. This is needed for
* thread-safe operation, see local variable description for more
* info.
*/
ResultsBase(
fiftyoneDegreesResultsBase *results,
shared_ptr<fiftyoneDegreesResourceManager> manager);
/**
* Free any memory associated with the results and release any
* resource handles.
*/
virtual ~ResultsBase();
/**
* @}
* @name Available Properties
* @{
*/
/**
* Get the number of available properties contained in the Results
* instance.
* @return the number of available properties
*/
int getAvailableProperties() const;
/**
* Get whether or not this results instance contains a value for
* the requested property.
* @param propertyName name of the property to check for
* @return true if there is a value for the requested property
*/
bool containsProperty(const string &propertyName) const;
/**
* Get the names of the properties which are available in the
* Results instance. The index of the property in the vector
* indicates its index in the Results instance, so a name's index
* can be used to fetch its corresponding value via a get method.
* @return vector containing the names of all available properties
*/
vector<string> getProperties() const;
/**
* Get the name of the property at the require property index, or
* an empty string if the required property index is invalid.
* @param requiredPropertyIndex of the property name required
* @return the name of the property, or an empty string if not
* valid
*/
string getPropertyName(int requiredPropertyIndex) const;
/**
* @}
* @name Value Getters
* @{
*/
/**
* Get a vector with all values associated with the required
* property name. If the name is not valid an empty vector is
* returned.
* @param propertyName pointer to a string containing the property
* name
* @return a vector of values for the property
*/
Value<vector<string>> getValues(const char *propertyName);
/**
* Get a vector with all values associated with the required
* property name. If the name is not valid an empty vector is
* returned.
* @param propertyName pointer to a string containing the property
* name
* @return a vector of values for the property
*/
Value<vector<string>> getValues(const string &propertyName);
/**
* Get a vector with all values associated with the required
* property name. If the name is not valid an empty vector is
* returned.
* @param propertyName pointer to a string containing the property
* name
* @return a vector of values for the property
*/
Value<vector<string>> getValues(const string *propertyName);
/**
* Get a vector with all values associated with the required
* property index. If the index is not valid an empty vector is
* returned.
* @param requiredPropertyIndex of the property required
* @return a vector of values for the property
*/
Value<vector<string>> getValues(int requiredPropertyIndex);
/**
* Get a string representation of the value associated with the
* required property name. If the property name is not valid an
* empty string is returned. If the property relates to a list with
* more than one value then values are separated by '|' characters.
* @param propertyName string containing the property name
* @return a string representation of the value for the property
*/
Value<string> getValueAsString(const char *propertyName);
/**
* Get a string representation of the value associated with the
* required property name. If the property name is not valid an
* empty string is returned. If the property relates to a list with
* more than one value then values are separated by '|' characters.
* @param propertyName string containing the property name
* @return a string representation of the value for the property
*/
Value<string> getValueAsString(const string &propertyName);
/**
* Get a string representation of the value associated with the
* required property name. If the property name is not valid an
* empty string is returned. If the property relates to a list with
* more than one value then values are separated by '|' characters.
* @param propertyName string containing the property name
* @return a string representation of the value for the property
*/
Value<string> getValueAsString(const string *propertyName);
/**
* Get a string representation of the value associated with the
* required property index. If the index is not valid an empty
* string is returned. If the property relates to a list with more
* than one value then values are separated by '|' characters.
* @param requiredPropertyIndex of the property required
* @return a string representation of the value for the property or
* an empty string
*/
virtual Value<string> getValueAsString(int requiredPropertyIndex);
/**
* Get a boolean representation of the value associated with the
* required property name. If the property name is not valid then
* false is returned.
* @param propertyName string containing the property name
* @return a boolean representation of the value for the property
*/
Value<bool> getValueAsBool(const char *propertyName);
/**
* Get a boolean representation of the value associated with the
* required property name. If the property name is not valid then
* false is returned.
* @param propertyName string containing the property name
* @return a boolean representation of the value for the property
*/
Value<bool> getValueAsBool(const string &propertyName);
/**
* Get a boolean representation of the value associated with the
* required property name. If the property name is not valid then
* false is returned.
* @param propertyName string containing the property name
* @return a boolean representation of the value for the property
*/
Value<bool> getValueAsBool(const string *propertyName);
/**
* Get a boolean representation of the value associated with the
* required property index. If the property index is not valid then
* false is returned.
* @param requiredPropertyIndex in the required properties
* @return a boolean representation of the value for the property
*/
virtual Value<bool> getValueAsBool(int requiredPropertyIndex);
/**
* Get an integer representation of the value associated with the
* required property name. If the property name is not valid then 0
* is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param propertyName string containing the property name
* @return an integer representation of the value for the property
*/
Value<int> getValueAsInteger(const char *propertyName);
/**
* Get an integer representation of the value associated with the
* required property name. If the property name is not valid then 0
* is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param propertyName string containing the property name
* @return an integer representation of the value for the property
*/
Value<int> getValueAsInteger(const string &propertyName);
/**
* Get an integer representation of the value associated with the
* required property name. If the property name is not valid then 0
* is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param propertyName string containing the property name
* @return an integer representation of the value for the property
*/
Value<int> getValueAsInteger(const string *propertyName);
/**
* Get an integer representation of the value associated with the
* required property index. If the property index is not valid then
* 0 is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param requiredPropertyIndex in the required properties
* @return an integer representation of the value for the property
*/
virtual Value<int> getValueAsInteger(int requiredPropertyIndex);
/**
* Get a double representation of the value associated with the
* required property name. If the property name is not valid then 0
* is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param propertyName string containing the property name
* @return a double representation of the value for the property
*/
Value<double> getValueAsDouble(const char *propertyName);
/**
* Get a double representation of the value associated with the
* required property name. If the property name is not valid then 0
* is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param propertyName string containing the property name
* @return a double representation of the value for the property
*/
Value<double> getValueAsDouble(const string &propertyName);
/**
* Get a double representation of the value associated with the
* required property name. If the property name is not valid then 0
* is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param propertyName string containing the property name
* @return a double representation of the value for the property
*/
Value<double> getValueAsDouble(const string *propertyName);
/**
* Get a double representation of the value associated with the
* required property index. If the property index is not valid then
* 0 is returned. Using a property which returns non-numeric
* characters will result in unexpected behavior.
* @param requiredPropertyIndex in the required properties
* @return a double representation of the value for the property
*/
virtual Value<double> getValueAsDouble(int requiredPropertyIndex);
/**
* @}
*/
protected:
/** Pointer to the underlying available properties structure. */
fiftyoneDegreesPropertiesAvailable *available;
/**
* Get the index in the available properties for the property name
* provided.
* @return 0 based index or -1 if not found
*/
int getRequiredPropertyIndex(const char *propertyName);
/**
* Get the values for the index in required properties and add them
* to the values vector supplied. This is implemented by extending
* classes.
* @param requiredPropertyIndex index in the available properties
* @param values vector to populate with the values for the
* property
*/
virtual void getValuesInternal(
int requiredPropertyIndex,
vector<string> &values) = 0;
/**
* Get whether or not there are valid values available for the
* property identified by its index in the required properties.
* This is implemented by extending classes, and used when
* populating a Value instance to return.
* @param requiredPropertyIndex index in the available properties
* @return true if there are values available for the property
*/
virtual bool hasValuesInternal(int requiredPropertyIndex) = 0;
/**
* Get the message explaining the reason for missing values. This
* can differ slightly between APIs, so the implementation of this
* is left up to the extending class. This is used when populating
* a Value instance to return.
* @param reason the enum indicating the reason no values are
* available
* @return string explaining the reason in more detail
*/
virtual const char* getNoValueMessageInternal(
fiftyoneDegreesResultsNoValueReason reason) = 0;
/**
* Get the reason for values not being available. This is
* implemented by the extending class and is called when the
* hasValuesInternal method returns false.
* @param requiredPropertyIndex index in the available properties
* @return enum indicating the reason for values not being
* available
*/
virtual fiftyoneDegreesResultsNoValueReason getNoValueReasonInternal(
int requiredPropertyIndex) = 0;
private:
/** A shared pointer to the manager is passed around and referenced
by all instances that hold open a resource handle. This acts as a
counter to ensure that the pointer to the manager remains valid
until the last handle is freed. The shared pointer also handles
freeing the pointer once no references remain.
**IMPORTANT** : Although this pointer is not used, the shared
pointer reference is required by the resource manager logic. See
resource.h for more information. */
shared_ptr<fiftyoneDegreesResourceManager> manager;
};
}
}
#endif