1#ifndef PDJSON_H
2#define PDJSON_H
3
4#include <stdio.h>
5
6enum json_type {
7 JSON_ERROR = 1, JSON_DONE,
8 JSON_OBJECT, JSON_OBJECT_END, JSON_ARRAY, JSON_ARRAY_END,
9 JSON_STRING, JSON_NUMBER, JSON_TRUE, JSON_FALSE, JSON_NULL
10};
11
12struct json_allocator {
13 void *(*malloc)(size_t);
14 void *(*realloc)(void *, size_t);
15 void (*free)(void *);
16};
17
18#include "pd_json_private.h"
19
20typedef struct json_stream json_stream;
21typedef struct json_allocator json_allocator;
22
23void json_open_buffer(json_stream *json, const void *buffer, size_t size);
24void json_open_string(json_stream *json, const char *string);
25void json_open_stream(json_stream *json, FILE *stream);
26void json_close(json_stream *json);
27
28void json_set_allocator(json_stream *json, json_allocator *a);
29void json_set_streaming(json_stream *json, bool strict);
30
31enum json_type json_next(json_stream *json);
32enum json_type json_peek(json_stream *json);
33void json_reset(json_stream *json);
34const char *json_get_string(json_stream *json, size_t *length);
35double json_get_number(json_stream *json);
36
37size_t json_get_lineno(json_stream *json);
38size_t json_get_position(json_stream *json);
39size_t json_get_depth(json_stream *json);
40const char *json_get_error(json_stream *json);
41
42#endif
43