mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 04:18:01 +00:00
75 lines
1.4 KiB
C
75 lines
1.4 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
typedef enum json_type {
|
|
JSON_STRING, JSON_NUMBER, JSON_ARRAY, JSON_HASH, JSON_NULL, JSON_TRUE, JSON_FALSE,
|
|
} json_type;
|
|
|
|
typedef struct json_array {
|
|
struct json_object *object;
|
|
struct json_array *next;
|
|
} json_array;
|
|
|
|
typedef struct json_hash {
|
|
struct json_object *key;
|
|
struct json_object *value;
|
|
struct json_hash *next;
|
|
} json_hash;
|
|
|
|
typedef struct json_object {
|
|
json_type type;
|
|
struct json_object *parent;
|
|
|
|
char *string;
|
|
double number;
|
|
json_array *array;
|
|
json_hash *object;
|
|
} json_object;
|
|
|
|
json_object *new_object(json_type type, json_object *parent) {
|
|
json_object *o = malloc(sizeof(struct json_object));
|
|
o->type = type;
|
|
o->parent = parent;
|
|
return o;
|
|
}
|
|
|
|
static void json_error(char *s) {
|
|
fprintf(stderr, "%s\n", s);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
json_object *parse(FILE *f, json_object *current) {
|
|
int c = getc(f);
|
|
if (c == EOF) {
|
|
return NULL;
|
|
}
|
|
|
|
while (isspace(c)) {
|
|
c = getc(f);
|
|
if (c == EOF) {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
if (c == '[') {
|
|
return parse(f, new_object(JSON_ARRAY, current));
|
|
} else if (c == ']') {
|
|
if (current->parent == NULL || current->parent->type != JSON_ARRAY) {
|
|
json_error("] without [");
|
|
}
|
|
|
|
return current->parent;
|
|
}
|
|
|
|
if (c == '{') {
|
|
return parse(f, new_object(JSON_HASH, current));
|
|
} else if (c == '}') {
|
|
if (current->parent == NULL || current->parent->type != JSON_HASH) {
|
|
json_error("} without {");
|
|
}
|
|
|
|
return current->parent;
|
|
}
|
|
}
|