Move repeated #defines into tr_json_util.h and add documentation
[trust_router.git] / common / tr_config_encoders.c
1 /*
2  * Copyright (c) 2018, 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 #include <tr_json_util.h>
38
39 static json_t *tr_cfg_file_to_json(TR_CFG_FILE *cfg_file)
40 {
41   json_t *file_json = NULL;
42   json_t *retval = NULL;
43
44   file_json = json_object();
45   if (file_json == NULL)
46     goto cleanup;
47
48   OBJECT_SET_OR_FAIL(file_json, "name", json_string(cfg_file->name));
49   if (cfg_file->serial != TR_CFG_INVALID_SERIAL)
50     OBJECT_SET_OR_FAIL(file_json, "serial", json_integer(cfg_file->serial));
51
52   /* succeeded - set the return value and increment the reference count */
53   retval = file_json;
54   json_incref(retval);
55
56 cleanup:
57   if (file_json)
58     json_decref(file_json);
59
60   return retval;
61 }
62
63 json_t *tr_cfg_files_to_json_array(TR_CFG *cfg)
64 {
65   guint ii;
66   json_t *jarray = json_array();
67   json_t *retval = NULL;
68
69   if (jarray == NULL)
70     goto cleanup;
71
72   for (ii=0; ii<cfg->files->len; ii++) {
73     ARRAY_APPEND_OR_FAIL(jarray,
74                          tr_cfg_file_to_json(
75                              &g_array_index(cfg->files, TR_CFG_FILE, ii)));
76   }
77
78   /* success */
79   retval = jarray;
80   json_incref(retval);
81
82 cleanup:
83   if (jarray)
84     json_decref(jarray);
85
86   return retval;
87 }