X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=src%2Fjansson_private.h;h=b4743f3b0f44acb55d6f9547e8c9c9ae9db352ca;hb=50dc64a7af3664ca55ac74b393459a6d54e6958f;hp=317f05aba43a69a72ad80b4029d220151aa00b10;hpb=4cd777712b1e4ec17dc9efcced80a90f83ec1915;p=jansson.git diff --git a/src/jansson_private.h b/src/jansson_private.h index 317f05a..b4743f3 100644 --- a/src/jansson_private.h +++ b/src/jansson_private.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009 Petri Lehtinen + * Copyright (c) 2009-2011 Petri Lehtinen * * Jansson is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -8,22 +8,30 @@ #ifndef JANSSON_PRIVATE_H #define JANSSON_PRIVATE_H +#include +#include #include "jansson.h" #include "hashtable.h" #define container_of(ptr_, type_, member_) \ - ((type_ *)((char *)ptr_ - (size_t)&((type_ *)0)->member_)) + ((type_ *)((char *)ptr_ - offsetof(type_, member_))) + +/* On some platforms, max() may already be defined */ +#ifndef max +#define max(a, b) ((a) > (b) ? (a) : (b)) +#endif typedef struct { json_t json; hashtable_t hashtable; + size_t serial; int visited; } json_object_t; typedef struct { json_t json; - unsigned int size; - unsigned int entries; + size_t size; + size_t entries; json_t **table; int visited; } json_array_t; @@ -40,7 +48,7 @@ typedef struct { typedef struct { json_t json; - int value; + json_int_t value; } json_integer_t; #define json_to_object(json_) container_of(json_, json_object_t, json) @@ -49,7 +57,25 @@ typedef struct { #define json_to_real(json_) container_of(json_, json_real_t, json) #define json_to_integer(json_) container_of(json_, json_integer_t, json) -int json_object_set_nocheck(json_t *json, const char *key, json_t *value); -json_t *json_string_nocheck(const char *value); +size_t jsonp_hash_key(const void *ptr); +int jsonp_key_equal(const void *ptr1, const void *ptr2); + +typedef struct { + size_t serial; + char key[1]; +} object_key_t; + +const object_key_t *jsonp_object_iter_fullkey(void *iter); + +void jsonp_error_init(json_error_t *error, const char *source); +void jsonp_error_set(json_error_t *error, int line, int column, + size_t position, const char *msg, ...); +void jsonp_error_vset(json_error_t *error, int line, int column, + size_t position, const char *msg, va_list ap); + +/* Wrappers for custom memory functions */ +void* jsonp_malloc(size_t size); +void jsonp_free(void *ptr); +char *jsonp_strdup(const char *str); #endif