-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson-handler.c
217 lines (186 loc) · 7.52 KB
/
json-handler.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/*
* Copyright (c) 2019, Philippe Mertes <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <json-c/json.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "json-handler.h"
char **json_handler_parse_string_array(const char *json_str) {
json_object *jobj = json_tokener_parse(json_str);
if (jobj == NULL) {
fprintf(stderr, "json-handler error: unable to parse the string: %s\n", json_str);
json_object_put(jobj);
return NULL;
}
// check if the object really corresponds to an array
if (!json_object_is_type(jobj, json_type_array)) {
fprintf(stderr, "json_handler_parse_string_array error: the input string doesn't represent an array: %s\n",
json_str);
json_object_put(jobj);
return NULL;
}
// create and allocate return array
int arr_len = json_object_array_length(jobj);
char **elems = calloc(arr_len+1, sizeof(char*));
if (elems == NULL) {
fprintf(stderr, "json_handler_parse_string_array error: "
"unable to allocate memory for return array\n");
json_object_put(jobj);
return NULL;
}
// walk through the elements of the array
json_object *jelem;
enum json_type type = json_type_null;
for (int i = 0; i < arr_len; ++i) {
jelem = json_object_array_get_idx(jobj, i);
type = json_object_get_type(jelem);
// check if array only contains strings
if (type != json_type_string) {
fprintf(stderr, "json_handler_parse_string_array error: "
"element \"%s\" of array \"%s\" doesn't correspond to a string\n",
json_object_to_json_string(jelem), json_object_to_json_string(jobj));
for (int j = 0; j < i; ++j)
free(elems[j]);
free(elems);
json_object_put(jobj);
return NULL;
} else {
elems[i] = strdup(json_object_get_string(jelem));
}
}
json_object_put(jobj);
return elems;
}
char **json_handler_parse_addr_array(const char *json_str) {
json_object *jobj = json_tokener_parse(json_str);
if (jobj == NULL) {
fprintf(stderr, "json-handler error: unable to parse the string: %s\n", json_str);
json_object_put(jobj);
return NULL;
}
// check if the object really corresponds to an array
if (!json_object_is_type(jobj, json_type_array)) {
fprintf(stderr, "json_handler_parse_string_array error: "
"the input string doesn't represent an array: %s\n",
json_str);
json_object_put(jobj);
return NULL;
}
// create and allocate return array
int arr_len = json_object_array_length(jobj);
char **addr = calloc(arr_len+1, sizeof(char*));
if (addr == NULL) {
fprintf(stderr, "json_handler_parse_string_array error: "
"unable to allocate memory for return array\n");
json_object_put(jobj);
return NULL;
}
// walk through the elements of the array
json_object *jelem;
enum json_type type = json_type_null;
for (int i = 0; i < arr_len; ++i) {
jelem = json_object_array_get_idx(jobj, i);
type = json_object_get_type(jelem);
if (type == json_type_null) {
printf("No addresses are defined for the PvD\n");
json_object_put(jobj);
return NULL;
}
json_object *jaddr = NULL;
if (json_object_object_get_ex(jelem, "address", &jaddr)) {
addr[i] = strdup(json_object_get_string(jaddr));
}
}
json_object_put(jobj);
return addr;
}
/**
* Creates a JSON object, which holds statistics for all Provisioning Domains.
*
* @param stats #t_pvd_stats structure holding the statistics
* @param stats_size number of PvDs
* @param stats_of_pvd callback function returning different statistics
* from a PvD in the #t_pvd_stats structure
* @return JSON object
*/
static json_object *create_json_for_all_pvds(t_pvd_stats **stats, const int stats_size,
json_object* (*stats_of_pvd)(t_pvd_stats*)) {
json_object *json = json_object_new_object();
for (int i = 0; i < stats_size; ++i)
json_object_object_add(json, stats[i]->info.name, (*stats_of_pvd) (stats[i]));
return json;
}
json_object *json_handler_all_stats(t_pvd_stats **stats, const int stats_size) {
return create_json_for_all_pvds(stats, stats_size, json_handler_all_stats_one_pvd);
}
json_object *json_handler_rtt_stats(t_pvd_stats **stats, const int stats_size) {
return create_json_for_all_pvds(stats, stats_size, json_handler_rtt_stats_one_pvd);
}
json_object *json_handler_tput_stats(t_pvd_stats **stats, const int stats_size) {
return create_json_for_all_pvds(stats, stats_size, json_handler_tput_stats_one_pvd);
}
json_object *json_handler_all_stats_one_pvd(t_pvd_stats *stats) {
json_object *json = json_object_new_object();
json_object_object_add(json, "rtt", json_handler_rtt_stats_one_pvd(stats));
json_object_object_add(json, "tput", json_handler_tput_stats_one_pvd(stats));
return json;
}
json_object *json_handler_rtt_stats_one_pvd(t_pvd_stats *stats) {
json_object *json = json_object_new_object();
json_object *jstat = NULL;
// create a json object for general, upload and download rtt and add them together
for (int i = 0; i < 3; ++i) {
jstat = json_object_new_object();
json_object_object_add(jstat, "min", json_object_new_double(stats->rtt[i].min));
json_object_object_add(jstat, "max", json_object_new_double(stats->rtt[i].max));
json_object_object_add(jstat, "avg", json_object_new_double(stats->rtt[i].avg));
if (i == 0)
json_object_object_add(json, "general", jstat);
else
json_object_object_add(json, (i == 1) ? "upload" : "download", jstat);
}
return json;
}
json_object *json_handler_tput_stats_one_pvd(t_pvd_stats *stats) {
json_object *json = json_object_new_object();
json_object *jstat = NULL;
// create a json object for general, upload and download tput and add them together
for (int i = 0; i < 3; ++i) {
jstat = json_object_new_object();
json_object_object_add(jstat, "min", json_object_new_double(stats->tput[i].min));
json_object_object_add(jstat, "max", json_object_new_double(stats->tput[i].max));
json_object_object_add(jstat, "avg", json_object_new_double(stats->tput[i].avg));
if (i == 0)
json_object_object_add(json, "general", jstat);
else
json_object_object_add(json, (i == 1) ? "upload" : "download", jstat);
}
return json;
}