Telodendria/src/include/Json.h

73 lines
1.1 KiB
C
Raw Normal View History

2022-07-23 00:19:12 +00:00
#ifndef TELODENDRIA_JSON_H
#define TELODENDRIA_JSON_H
#include <HashMap.h>
#include <Array.h>
typedef enum JsonType
{
2022-07-23 00:19:12 +00:00
JSON_OBJECT,
JSON_ARRAY,
JSON_STRING,
JSON_INTEGER,
JSON_FLOAT,
JSON_BOOLEAN,
JSON_NULL
} JsonType;
typedef struct JsonValue
{
2022-07-23 00:19:12 +00:00
JsonType type;
union as
{
2022-07-23 00:19:12 +00:00
HashMap *object;
Array *array;
char *string;
int64_t integer;
double floating;
int boolean:1;
2022-07-23 00:19:12 +00:00
};
} JsonValue;
extern JsonType
JsonValueType(JsonValue * value);
2022-07-23 00:19:12 +00:00
extern JsonValue *
JsonValueObject(HashMap * object);
2022-07-23 00:19:12 +00:00
extern HashMap *
JsonValueAsObject(JsonValue * value);
2022-07-23 00:19:12 +00:00
extern JsonValue *
JsonValueArray(Array * array);
2022-07-23 00:19:12 +00:00
extern Array *
JsonValueAsArray(JsonValue * value);
2022-07-23 00:19:12 +00:00
extern JsonValue *
JsonValueString(char *string);
2022-07-23 00:19:12 +00:00
extern JsonValue *
JsonValueInteger(int64_t integer);
2022-07-23 00:19:12 +00:00
extern JsonValue *
JsonValueFloat(double floating);
2022-07-23 00:19:12 +00:00
extern JsonValue *
JsonValueBoolean(int boolean);
2022-07-23 00:19:12 +00:00
extern JsonValue *
JsonValueNull(void);
2022-07-23 00:19:12 +00:00
extern void *
JsonValueFree(JsonValue * value);
2022-07-23 00:19:12 +00:00
extern char *
JsonEncode(HashMap * object);
2022-07-23 00:19:12 +00:00
extern HashMap *
JsonDecode(char *string);
2022-07-23 00:19:12 +00:00
#endif