020962a9b873ccda9629ce3a8523b28d894cbde4
[trust_router.git] / common / tr_rp_client_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 <talloc.h>
36 #include <jansson.h>
37
38 #include <tr_gss_names.h>
39 #include <tr_rp_client.h>
40 #include <tr_json_util.h>
41
42 static json_t *tr_rp_client_to_json(TR_RP_CLIENT *rp_client)
43 {
44   json_t *client_json = NULL;
45   json_t *retval = NULL;
46
47   client_json = json_object();
48   if (client_json == NULL)
49     goto cleanup;
50
51   OBJECT_SET_OR_FAIL(client_json, "gss_names", tr_gss_names_to_json_array(rp_client->gss_names));
52   OBJECT_SET_OR_FAIL(client_json, "filters", tr_filter_set_to_json(rp_client->filters));
53   
54   /* succeeded - set the return value and increment the reference count */
55   retval = client_json;
56   json_incref(retval);
57
58 cleanup:
59   if (client_json)
60     json_decref(client_json);
61   return retval;
62 }
63
64 json_t *tr_rp_clients_to_json(TR_RP_CLIENT *rp_clients)
65 {
66   json_t *jarray = json_array();
67   json_t *retval = NULL;
68   TR_RP_CLIENT_ITER *iter = tr_rp_client_iter_new(NULL);
69   TR_RP_CLIENT *rp_client = NULL;
70
71   if ((jarray == NULL) || (iter == NULL))
72     goto cleanup;
73
74   for (rp_client = tr_rp_client_iter_first(iter, rp_clients);
75        rp_client != NULL;
76        rp_client = tr_rp_client_iter_next(iter)) {
77     ARRAY_APPEND_OR_FAIL(jarray, tr_rp_client_to_json(rp_client));
78   }
79
80   /* succeeded - set the return value and increment the reference count */
81   retval = jarray;
82   json_incref(retval);
83
84 cleanup:
85   if (jarray)
86     json_decref(jarray);
87
88   if (iter)
89     tr_rp_client_iter_free(iter);
90
91   return retval;
92 }