zhangzengfei
2023-01-12 f03bf31433d44206d0d44a2f7621d70e0fb67d39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <assert.h>
#include <stdio.h>
#include <string.h>
 
#include "json.h"
#include "printbuf.h"
 
struct myinfo
{
    int value;
};
 
static int freeit_was_called = 0;
static void freeit(json_object *jso, void *userdata)
{
    struct myinfo *info = userdata;
    printf("freeit, value=%d\n", info->value);
    // Don't actually free anything here, the userdata is stack allocated.
    freeit_was_called = 1;
}
static int custom_serializer(struct json_object *o, struct printbuf *pb, int level, int flags)
{
    sprintbuf(pb, "Custom Output");
    return 0;
}
 
int main(int argc, char **argv)
{
    json_object *my_object, *my_sub_object;
 
    MC_SET_DEBUG(1);
 
    printf("Test setting, then resetting a custom serializer:\n");
    my_object = json_object_new_object();
    json_object_object_add(my_object, "abc", json_object_new_int(12));
    json_object_object_add(my_object, "foo", json_object_new_string("bar"));
 
    printf("my_object.to_string(standard)=%s\n", json_object_to_json_string(my_object));
 
    struct myinfo userdata = {.value = 123};
    json_object_set_serializer(my_object, custom_serializer, &userdata, freeit);
 
    printf("my_object.to_string(custom serializer)=%s\n",
           json_object_to_json_string(my_object));
 
    printf("Next line of output should be from the custom freeit function:\n");
    freeit_was_called = 0;
    json_object_set_serializer(my_object, NULL, NULL, NULL);
    assert(freeit_was_called);
 
    printf("my_object.to_string(standard)=%s\n", json_object_to_json_string(my_object));
 
    json_object_put(my_object);
 
    // ============================================
 
    my_object = json_object_new_object();
    printf("Check that the custom serializer isn't free'd until the last json_object_put:\n");
    json_object_set_serializer(my_object, custom_serializer, &userdata, freeit);
    json_object_get(my_object);
    json_object_put(my_object);
    printf("my_object.to_string(custom serializer)=%s\n",
           json_object_to_json_string(my_object));
    printf("Next line of output should be from the custom freeit function:\n");
 
    freeit_was_called = 0;
    json_object_put(my_object);
    assert(freeit_was_called);
 
    // ============================================
 
    my_object = json_object_new_object();
    my_sub_object = json_object_new_double(1.0);
    json_object_object_add(my_object, "double", my_sub_object);
    printf("Check that the custom serializer does not include nul byte:\n");
    json_object_set_serializer(my_sub_object, json_object_double_to_json_string, "%125.0f,", NULL);
    printf("my_object.to_string(custom serializer)=%s\n",
           json_object_to_json_string_ext(my_object, JSON_C_TO_STRING_NOZERO));
 
    json_object_put(my_object);
 
    return 0;
}