47331d959ad72c1e80484fe0cf2888e8b6ce833b
[trust_router.git] / common / tr_config_encoders.c
1 /*
2  * Copyright (c) 2012, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <jansson.h>
36 #include <tr_config.h>
37
38 /* helper for below */
39 #define OBJECT_SET_OR_FAIL(jobj, key, val)     \
40 do {                                           \
41   if (val)                                     \
42     json_object_set_new((jobj),(key),(val));   \
43   else                                         \
44     goto cleanup;                              \
45 } while (0)
46
47 #define ARRAY_APPEND_OR_FAIL(jary, val)        \
48 do {                                           \
49   if (val)                                     \
50     json_array_append_new((jary),(val));       \
51   else                                         \
52     goto cleanup;                              \
53 } while (0)
54
55 static json_t *tr_cfg_file_to_json(TR_CFG_FILE *cfg_file)
56 {
57   json_t *file_json = NULL;
58   json_t *retval = NULL;
59
60   file_json = json_object();
61   if (file_json == NULL)
62     goto cleanup;
63
64   OBJECT_SET_OR_FAIL(file_json, "name", json_string(cfg_file->name));
65   if (cfg_file->serial != TR_CFG_INVALID_SERIAL)
66     OBJECT_SET_OR_FAIL(file_json, "serial", json_integer(cfg_file->serial));
67
68   /* succeeded - set the return value and increment the reference count */
69   retval = file_json;
70   json_incref(retval);
71
72 cleanup:
73   if (file_json)
74     json_decref(file_json);
75
76   return retval;
77 }
78
79 json_t *tr_cfg_files_to_json_array(TR_CFG *cfg)
80 {
81   guint ii;
82   json_t *jarray = json_array();
83   json_t *retval = NULL;
84
85   if (jarray == NULL)
86     goto cleanup;
87
88   for (ii=0; ii<cfg->files->len; ii++) {
89     ARRAY_APPEND_OR_FAIL(jarray,
90                          tr_cfg_file_to_json(
91                              &g_array_index(cfg->files, TR_CFG_FILE, ii)));
92   }
93
94   /* success */
95   retval = jarray;
96   json_incref(retval);
97
98 cleanup:
99   if (jarray)
100     json_decref(jarray);
101
102   return retval;
103 }