blob: da06941599e8eeccd6e4b0854e2e81bd98b52d68 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 *------------------------------------------------------------------
3 * json_test.c
4 *
5 * Copyright (c) 2015 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19#include <vppinfra/clib.h>
20#include <vppinfra/vec.h>
21#include <vat/vat.h>
22#include <vat/json_format.h>
23
24static void print_json_test(void)
25{
26 vat_json_node_t node;
27
28 vat_json_init_object(&node);
29 vat_json_object_add_string_copy(&node, "str", (u8*)"string-value");
30 vat_json_object_add_uint(&node, "ab", 127);
31 vat_json_object_add_real(&node, "pi", 3.14159f);
32 vat_json_print(stdout, &node);
33 vat_json_free(&node);
34
35 vat_json_init_object(&node);
36 vat_json_node_t *a1 = vat_json_object_add(&node, "a1");
37 vat_json_init_object(a1);
38 vat_json_object_add_uint(a1, "b1", 512);
39 vat_json_object_add_string_copy(a1, "b2", (u8*)"string");
40
41 vat_json_object_add_int(&node, "a2", 2);
42
43 vat_json_node_t *a3 = vat_json_object_add_list(&node, "a3");
44 vat_json_init_array(a3);
45 vat_json_array_add_uint(a3, 1);
46 vat_json_array_add_int(a3, -2);
47 vat_json_array_add_uint(a3, 3);
48
49 vat_json_init_object(vat_json_object_add(&node, "a4"));
50
51 struct in_addr ipv4 = {0};
52 struct in6_addr ipv6 = {{{0}}};
53
54 vat_json_object_add_ip4(&node, "ipv4", ipv4);
55 vat_json_object_add_ip6(&node, "ipv6", ipv6);
56
57 vat_json_print(stdout, &node);
58 vat_json_free(&node);
59}
60
61int main(void)
62{
63 print_json_test();
64 return 0;
65}