\r\n

51Degrees Device Detection C/C++  4.5

A device detection library that is used natively or by 51Degrees products

json.h

1 /* *********************************************************************
2  * This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3  * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
4  * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
5  *
6  * This Original Work is licensed under the European Union Public Licence
7  * (EUPL) v.1.2 and is subject to its terms as set out below.
8  *
9  * If a copy of the EUPL was not distributed with this file, You can obtain
10  * one at https://opensource.org/licenses/EUPL-1.2.
11  *
12  * The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
13  * amended by the European Commission) shall be deemed incompatible for
14  * the purposes of the Work and the provisions of the compatibility
15  * clause in Article 5 of the EUPL shall not apply.
16  *
17  * If using the Work as, or as part of, a network application, by
18  * including the attribution notice(s) required under Article 5 of the EUPL
19  * in the end user terms of the application under an appropriate heading,
20  * such notice(s) shall fulfill the requirements of that article.
21  * ********************************************************************* */
22 
23 #ifndef FIFTYONE_DEGREES_JSON_H_INCLUDED
24 #define FIFTYONE_DEGREES_JSON_H_INCLUDED
25 
55 #include <stdint.h>
56 #ifdef _MSC_VER
57 #pragma warning (push)
58 #pragma warning (disable: 5105)
59 #include <windows.h>
60 #pragma warning (default: 5105)
61 #pragma warning (pop)
62 #endif
63 #include "property.h"
64 #include "string.h"
65 #include "list.h"
66 #include "data.h"
67 #include "collection.h"
68 #include "common.h"
69 #include "exceptions.h"
70 
79 typedef struct fiftyone_degrees_json {
85  fiftyoneDegreesPropertyValueType storedPropertyType;
87 
93 
99 
105 
111 
117 
123 
128 #endif
String buffer for building strings with memory checks.
Definition: stringBuilder.h:82
void fiftyoneDegreesJsonPropertyValues(fiftyoneDegreesJson *json)
Writes the values in the json->values list to the buffer in json.
fiftyoneDegreesCollection * strings
Collection of strings.
Definition: json.h:81
void fiftyoneDegreesJsonPropertyEnd(fiftyoneDegreesJson *json)
Writes the end of the property in json->property to the buffer in json.
void fiftyoneDegreesJsonPropertySeparator(fiftyoneDegreesJson *json)
Writes the a property separator to the buffer in json.
fiftyoneDegreesList * values
The values for the property.
Definition: json.h:83
fiftyoneDegreesProperty * property
The property being added.
Definition: json.h:82
Property structure containing all the meta data relating to a property.
Definition: property.h:71
fiftyoneDegreesException * exception
Exception.
Definition: json.h:84
fiftyoneDegreesPropertyValueType storedPropertyType
Stored type of the values for the property.
Definition: json.h:85
List structure which contains a list of collection items.
Definition: list.h:112
void fiftyoneDegreesJsonDocumentEnd(fiftyoneDegreesJson *json)
Writes the end of the JSON document characters to the buffer in json.
Structure used to represent a 51Degrees exception and passed into methods that might generate excepti...
Definition: exceptions.h:111
fiftyoneDegreesStringBuilder builder
Output buffer.
Definition: json.h:80
void fiftyoneDegreesJsonPropertyStart(fiftyoneDegreesJson *json)
Writes the start of the property in json->property to the buffer in json.
All the shared methods and fields required by file, memory and cached collections.
Definition: collection.h:402
Structure used to populated a JSON string for all required properties and values.
Definition: json.h:79
void fiftyoneDegreesJsonDocumentStart(fiftyoneDegreesJson *json)
Writes the start of the JSON document characters to the buffer in json.