dbe9760ccb1d2bc1d69f6ea5632decd0f8df834f
[jansson.git] / src / jansson_private.h
1 /*
2  * Copyright (c) 2009-2011 Petri Lehtinen <petri@digip.org>
3  *
4  * Jansson is free software; you can redistribute it and/or modify
5  * it under the terms of the MIT license. See LICENSE for details.
6  */
7
8 #ifndef JANSSON_PRIVATE_H
9 #define JANSSON_PRIVATE_H
10
11 #include <stddef.h>
12 #include "jansson.h"
13 #include "hashtable.h"
14 #include "strbuffer.h"
15
16 #define container_of(ptr_, type_, member_)  \
17     ((type_ *)((char *)ptr_ - offsetof(type_, member_)))
18
19 /* On some platforms, max() may already be defined */
20 #ifndef max
21 #define max(a, b)  ((a) > (b) ? (a) : (b))
22 #endif
23
24 /* va_copy is a C99 feature. In C89 implementations, it's sometimes
25    available as __va_copy. If not, memcpy() should do the trick. */
26 #ifndef va_copy
27 #ifdef __va_copy
28 #define va_copy __va_copy
29 #else
30 #define va_copy(a, b)  memcpy(&(a), &(b), sizeof(va_list))
31 #endif
32 #endif
33
34 typedef struct {
35     json_t json;
36     hashtable_t hashtable;
37     size_t serial;
38     int visited;
39 } json_object_t;
40
41 typedef struct {
42     json_t json;
43     size_t size;
44     size_t entries;
45     json_t **table;
46     int visited;
47 } json_array_t;
48
49 typedef struct {
50     json_t json;
51     char *value;
52 } json_string_t;
53
54 typedef struct {
55     json_t json;
56     double value;
57 } json_real_t;
58
59 typedef struct {
60     json_t json;
61     json_int_t value;
62 } json_integer_t;
63
64 #define json_to_object(json_)  container_of(json_, json_object_t, json)
65 #define json_to_array(json_)   container_of(json_, json_array_t, json)
66 #define json_to_string(json_)  container_of(json_, json_string_t, json)
67 #define json_to_real(json_)   container_of(json_, json_real_t, json)
68 #define json_to_integer(json_) container_of(json_, json_integer_t, json)
69
70 size_t jsonp_hash_str(const void *ptr);
71 int jsonp_str_equal(const void *ptr1, const void *ptr2);
72
73 typedef struct {
74     size_t serial;
75     char key[1];
76 } object_key_t;
77
78 const object_key_t *jsonp_object_iter_fullkey(void *iter);
79
80 void jsonp_error_init(json_error_t *error, const char *source);
81 void jsonp_error_set_source(json_error_t *error, const char *source);
82 void jsonp_error_set(json_error_t *error, int line, int column,
83                      size_t position, const char *msg, ...);
84 void jsonp_error_vset(json_error_t *error, int line, int column,
85                       size_t position, const char *msg, va_list ap);
86
87 /* Locale independent string<->double conversions */
88 int jsonp_strtod(strbuffer_t *strbuffer, double *out);
89 int jsonp_dtostr(char *buffer, size_t size, double value);
90
91 /* Wrappers for custom memory functions */
92 void* jsonp_malloc(size_t size);
93 void jsonp_free(void *ptr);
94 char *jsonp_strdup(const char *str);
95
96 #endif