Browse Source

The split of json_object into type-specific sub-structures is now functionally complete.

Remove all of the temporary defines, structures, old compat fuctions, extra fields, etc... that were needed during the conversion to a split set of json_object_* structures.
tags/json-c-0.15-20200726
Eric Haszlakiewicz 5 years ago
parent
commit
66d91fdf86
5 changed files with 89 additions and 433 deletions
  1. +75
    -399
      json_object.c
  2. +1
    -2
      json_object.h
  3. +8
    -27
      json_object_private.h
  4. +1
    -1
      tests/test_double_serializer.c
  5. +4
    -4
      tests/test_set_value.c

+ 75
- 399
json_object.c
File diff suppressed because it is too large
View File


+ 1
- 2
json_object.h View File

@@ -490,9 +490,8 @@ JSON_EXPORT void json_object_object_del(struct json_object *obj, const char *key
* @param obj the json_object instance
* @param iter the object iterator, use type json_object_iter
*/
// XAX temporary workaround during code conversion:
#define json_object_object_foreachC(obj, iter) \
for (iter.entry = json_object_get_object(PUBLIC(obj))->head; \
for (iter.entry = json_object_get_object(obj)->head; \
(iter.entry ? (iter.key = (char *)lh_entry_k(iter.entry), \
iter.val = (struct json_object *)lh_entry_v(iter.entry), iter.entry) \
: 0); \


+ 8
- 27
json_object_private.h View File

@@ -20,14 +20,11 @@
extern "C" {
#endif

/**< how many bytes are directly stored in json_object for strings? */
#define LEN_DIRECT_STRING_DATA 32

struct json_object;
#include "json_inttypes.h"
#include "json_types.h"

typedef void(json_object_private_delete_fn)(struct json_object *o);
typedef void (json_object_private_delete_fn)(struct json_object *o);

/* json object int type, support extension*/
typedef enum json_object_int_type
@@ -36,9 +33,8 @@ typedef enum json_object_int_type
json_object_int_type_uint64
} json_object_int_type;

struct json_object_base // XAX rename to json_object after conversion
struct json_object
{
int newold; // XAX temporary, remove after code conversion
enum json_type o_type;
uint32_t _ref_count;
json_object_private_delete_fn *_delete;
@@ -51,28 +47,28 @@ struct json_object_base // XAX rename to json_object after conversion

struct json_object_object
{
struct json_object_base base;
struct json_object base;
struct lh_table *c_object;
};
struct json_object_array
{
struct json_object_base base;
struct json_object base;
struct array_list *c_array;
};

struct json_object_boolean
{
struct json_object_base base;
struct json_object base;
json_bool c_boolean;
};
struct json_object_double
{
struct json_object_base base;
struct json_object base;
double c_double;
};
struct json_object_int
{
struct json_object_base base;
struct json_object base;
enum json_object_int_type cint_type;
union
{
@@ -82,7 +78,7 @@ struct json_object_int
};
struct json_object_string
{
struct json_object_base base;
struct json_object base;
ssize_t len; // Signed b/c negative lengths indicate data is a pointer
// Consider adding an "alloc" field here, if json_object_set_string calls
// to expand the length of a string are common operations to perform.
@@ -93,21 +89,6 @@ struct json_object_string
} c_string;
};

struct json_object
{
int newold;
enum json_type o_type;
uint32_t _ref_count;
json_object_private_delete_fn *_delete;
json_object_to_json_string_fn *_to_json_string;
struct printbuf *_pb;
int dummyval; // XAX temp spacer to catch casting errors
int du1mmyval; // XAX spacer
int d2ummyval; // XAX spacer
json_object_delete_fn *_user_delete;
void *_userdata;
};

void _json_c_set_last_err(const char *err_fmt, ...);

extern const char *json_number_chars;


+ 1
- 1
tests/test_double_serializer.c View File

@@ -20,7 +20,7 @@ int main()
printf("obj.to_string(standard)=%s\n", json_object_to_json_string(obj));

printf("Test default serializer with custom userdata:\n");
((struct json_object_base *)obj)->_userdata = udata;
((struct json_object *)obj)->_userdata = udata;
printf("obj.to_string(userdata)=%s\n", json_object_to_json_string(obj));

printf("Test explicit serializer with custom userdata:\n");


+ 4
- 4
tests/test_set_value.c View File

@@ -56,12 +56,12 @@ int main(int argc, char **argv)
#define MID "A MID STRING"
// 12345678901234567890123456789012....
#define HUGE "A string longer than 32 chars as to check non local buf codepath"
tmp = json_object_new_string(SHORT);
assert(strcmp(json_object_get_string(tmp), SHORT) == 0);
assert(strcmp(json_object_to_json_string(tmp), "\"" SHORT "\"") == 0);
json_object_set_string(tmp, MID);
tmp = json_object_new_string(MID);
assert(strcmp(json_object_get_string(tmp), MID) == 0);
assert(strcmp(json_object_to_json_string(tmp), "\"" MID "\"") == 0);
json_object_set_string(tmp, SHORT);
assert(strcmp(json_object_get_string(tmp), SHORT) == 0);
assert(strcmp(json_object_to_json_string(tmp), "\"" SHORT "\"") == 0);
json_object_set_string(tmp, HUGE);
assert(strcmp(json_object_get_string(tmp), HUGE) == 0);
assert(strcmp(json_object_to_json_string(tmp), "\"" HUGE "\"") == 0);


Loading…
Cancel
Save