]>
Commit | Line | Data |
---|---|---|
f1aa5d8a DS |
1 | /* json-c wrapper |
2 | * Copyright (C) 2015 Cumulus Networks, Inc. | |
3 | * | |
4 | * This file is part of GNU Zebra. | |
5 | * | |
6 | * GNU Zebra is free software; you can redistribute it and/or modify it | |
7 | * under the terms of the GNU General Public License as published by the | |
8 | * Free Software Foundation; either version 2, or (at your option) any | |
9 | * later version. | |
10 | * | |
11 | * GNU Zebra is distributed in the hope that it will be useful, but | |
12 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * General Public License for more details. | |
15 | * | |
896014f4 DL |
16 | * You should have received a copy of the GNU General Public License along |
17 | * with this program; see the file COPYING; if not, write to the Free Software | |
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
f1aa5d8a DS |
19 | */ |
20 | ||
4b25d72d DS |
21 | #include <zebra.h> |
22 | ||
8a2d6083 | 23 | #include "command.h" |
f1aa5d8a DS |
24 | #include "lib/json.h" |
25 | ||
db7c8528 DS |
26 | /* |
27 | * This function assumes that the json keyword | |
28 | * is the *last* keyword on the line no matter | |
29 | * what. | |
30 | */ | |
d62a17ae | 31 | int use_json(const int argc, struct cmd_token *argv[]) |
db7c8528 | 32 | { |
d62a17ae | 33 | if (argc == 0) |
34 | return 0; | |
db7c8528 | 35 | |
d62a17ae | 36 | if (argv[argc - 1]->arg && strmatch(argv[argc - 1]->text, "json")) |
37 | return 1; | |
db7c8528 | 38 | |
d62a17ae | 39 | return 0; |
db7c8528 DS |
40 | } |
41 | ||
d62a17ae | 42 | void json_object_string_add(struct json_object *obj, const char *key, |
43 | const char *s) | |
f1aa5d8a | 44 | { |
d62a17ae | 45 | json_object_object_add(obj, key, json_object_new_string(s)); |
f1aa5d8a DS |
46 | } |
47 | ||
d62a17ae | 48 | void json_object_int_add(struct json_object *obj, const char *key, int64_t i) |
c6a7d59c | 49 | { |
873d76e7 | 50 | #if defined(HAVE_JSON_C_JSON_H) |
d62a17ae | 51 | json_object_object_add(obj, key, json_object_new_int64(i)); |
873d76e7 | 52 | #else |
d62a17ae | 53 | json_object_object_add(obj, key, json_object_new_int((int)i)); |
873d76e7 | 54 | #endif |
c6a7d59c DW |
55 | } |
56 | ||
d62a17ae | 57 | void json_object_boolean_false_add(struct json_object *obj, const char *key) |
f1aa5d8a | 58 | { |
d62a17ae | 59 | json_object_object_add(obj, key, json_object_new_boolean(0)); |
f1aa5d8a DS |
60 | } |
61 | ||
d62a17ae | 62 | void json_object_boolean_true_add(struct json_object *obj, const char *key) |
f1aa5d8a | 63 | { |
d62a17ae | 64 | json_object_object_add(obj, key, json_object_new_boolean(1)); |
f1aa5d8a DS |
65 | } |
66 | ||
d62a17ae | 67 | struct json_object *json_object_lock(struct json_object *obj) |
f1aa5d8a | 68 | { |
d62a17ae | 69 | return json_object_get(obj); |
f1aa5d8a DS |
70 | } |
71 | ||
d62a17ae | 72 | void json_object_free(struct json_object *obj) |
f1aa5d8a | 73 | { |
d62a17ae | 74 | json_object_put(obj); |
f1aa5d8a | 75 | } |
2047fdb5 DS |
76 | |
77 | #if !defined(HAVE_JSON_C_JSON_H) | |
d62a17ae | 78 | int json_object_object_get_ex(struct json_object *obj, const char *key, |
79 | struct json_object **value) | |
2047fdb5 | 80 | { |
d62a17ae | 81 | *value = json_object_object_get(obj, key); |
2047fdb5 | 82 | |
d62a17ae | 83 | if (*value) |
84 | return 1; | |
2047fdb5 | 85 | |
d62a17ae | 86 | return 0; |
2047fdb5 DS |
87 | } |
88 | #endif |