2009-07-28 16:01:52 +08:00
|
|
|
/*
|
2010-02-03 03:26:11 +08:00
|
|
|
* Copyright (c) 2009, 2010 Petri Lehtinen <petri@digip.org>
|
2009-07-28 16:01:52 +08:00
|
|
|
*
|
|
|
|
* Jansson is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
|
|
*/
|
|
|
|
|
2009-07-14 02:03:09 +08:00
|
|
|
#ifndef JANSSON_PRIVATE_H
|
|
|
|
#define JANSSON_PRIVATE_H
|
|
|
|
|
2009-10-16 02:02:27 +08:00
|
|
|
#include "jansson.h"
|
|
|
|
#include "hashtable.h"
|
|
|
|
|
|
|
|
#define container_of(ptr_, type_, member_) \
|
|
|
|
((type_ *)((char *)ptr_ - (size_t)&((type_ *)0)->member_))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
json_t json;
|
|
|
|
hashtable_t hashtable;
|
|
|
|
int visited;
|
|
|
|
} json_object_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
json_t json;
|
|
|
|
unsigned int size;
|
|
|
|
unsigned int entries;
|
|
|
|
json_t **table;
|
|
|
|
int visited;
|
|
|
|
} json_array_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
json_t json;
|
|
|
|
char *value;
|
|
|
|
} json_string_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
json_t json;
|
|
|
|
double value;
|
|
|
|
} json_real_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
json_t json;
|
|
|
|
int value;
|
|
|
|
} json_integer_t;
|
|
|
|
|
|
|
|
#define json_to_object(json_) container_of(json_, json_object_t, json)
|
|
|
|
#define json_to_array(json_) container_of(json_, json_array_t, json)
|
|
|
|
#define json_to_string(json_) container_of(json_, json_string_t, json)
|
|
|
|
#define json_to_real(json_) container_of(json_, json_real_t, json)
|
|
|
|
#define json_to_integer(json_) container_of(json_, json_integer_t, json)
|
|
|
|
|
2009-07-14 02:03:09 +08:00
|
|
|
#endif
|