diff options
Diffstat (limited to 'lib/output.c')
-rw-r--r-- | lib/output.c | 636 |
1 files changed, 636 insertions, 0 deletions
diff --git a/lib/output.c b/lib/output.c new file mode 100644 index 00000000..f283969f --- /dev/null +++ b/lib/output.c | |||
@@ -0,0 +1,636 @@ | |||
1 | #include "./output.h" | ||
2 | #include "./utils_base.h" | ||
3 | #include "../plugins/utils.h" | ||
4 | |||
5 | #include <assert.h> | ||
6 | #include <stdlib.h> | ||
7 | #include <string.h> | ||
8 | #include <strings.h> | ||
9 | // #include <cjson/cJSON.h> | ||
10 | #include "./vendor/cJSON/cJSON.h" | ||
11 | #include "perfdata.h" | ||
12 | #include "states.h" | ||
13 | |||
14 | // == Global variables | ||
15 | static mp_output_format output_format = MP_FORMAT_DEFAULT; | ||
16 | static mp_output_detail_level level_of_detail = MP_DETAIL_ALL; | ||
17 | |||
18 | // == Prototypes == | ||
19 | static char *fmt_subcheck_output(mp_output_format output_format, mp_subcheck check, | ||
20 | unsigned int indentation); | ||
21 | static inline cJSON *json_serialize_subcheck(mp_subcheck subcheck); | ||
22 | |||
23 | // == Implementation == | ||
24 | |||
25 | /* | ||
26 | * Generate output string for a mp_subcheck object | ||
27 | */ | ||
28 | static inline char *fmt_subcheck_perfdata(mp_subcheck check) { | ||
29 | char *result = strdup(""); | ||
30 | int added = 0; | ||
31 | |||
32 | if (check.perfdata != NULL) { | ||
33 | added = asprintf(&result, "%s", pd_list_to_string(*check.perfdata)); | ||
34 | } | ||
35 | |||
36 | if (check.subchecks == NULL) { | ||
37 | // No subchecks, return here | ||
38 | return result; | ||
39 | } | ||
40 | |||
41 | mp_subcheck_list *subchecks = check.subchecks; | ||
42 | |||
43 | while (subchecks != NULL) { | ||
44 | if (added > 0) { | ||
45 | added = asprintf(&result, "%s%s", result, fmt_subcheck_perfdata(subchecks->subcheck)); | ||
46 | } else { | ||
47 | // TODO free previous result here? | ||
48 | added = asprintf(&result, "%s", fmt_subcheck_perfdata(subchecks->subcheck)); | ||
49 | } | ||
50 | |||
51 | subchecks = subchecks->next; | ||
52 | } | ||
53 | |||
54 | return result; | ||
55 | } | ||
56 | |||
57 | /* | ||
58 | * Initialiser for a mp_check object. Always use this to get a new one! | ||
59 | * It sets useful defaults | ||
60 | */ | ||
61 | mp_check mp_check_init(void) { | ||
62 | mp_check check = { | ||
63 | .evaluation_function = &mp_eval_check_default, | ||
64 | }; | ||
65 | return check; | ||
66 | } | ||
67 | |||
68 | /* | ||
69 | * Initialiser for a mp_subcheck object. Always use this to get a new one! | ||
70 | * It sets useful defaults | ||
71 | */ | ||
72 | mp_subcheck mp_subcheck_init(void) { | ||
73 | mp_subcheck tmp = {0}; | ||
74 | tmp.default_state = STATE_UNKNOWN; // Default state is unknown | ||
75 | tmp.state_set_explicitly = false; | ||
76 | return tmp; | ||
77 | } | ||
78 | |||
79 | /* | ||
80 | * Add a subcheck to a (the one and only) check object | ||
81 | */ | ||
82 | int mp_add_subcheck_to_check(mp_check check[static 1], mp_subcheck subcheck) { | ||
83 | assert(subcheck.output != NULL); // There must be output in a subcheck | ||
84 | |||
85 | mp_subcheck_list *tmp = NULL; | ||
86 | |||
87 | if (check->subchecks == NULL) { | ||
88 | check->subchecks = (mp_subcheck_list *)calloc(1, sizeof(mp_subcheck_list)); | ||
89 | if (check->subchecks == NULL) { | ||
90 | die(STATE_UNKNOWN, "%s - %s #%d: %s", __FILE__, __func__, __LINE__, "malloc failed"); | ||
91 | } | ||
92 | |||
93 | check->subchecks->subcheck = subcheck; | ||
94 | check->subchecks->next = NULL; | ||
95 | } else { | ||
96 | // Search for the end | ||
97 | tmp = (mp_subcheck_list *)calloc(1, sizeof(mp_subcheck_list)); | ||
98 | if (tmp == NULL) { | ||
99 | die(STATE_UNKNOWN, "%s - %s #%d: %s", __FILE__, __func__, __LINE__, "malloc failed"); | ||
100 | } | ||
101 | |||
102 | tmp->subcheck = subcheck; | ||
103 | tmp->next = check->subchecks; | ||
104 | |||
105 | check->subchecks = tmp; | ||
106 | } | ||
107 | |||
108 | return 0; | ||
109 | } | ||
110 | |||
111 | /* | ||
112 | * Add a mp_perfdata data point to a mp_subcheck object | ||
113 | */ | ||
114 | void mp_add_perfdata_to_subcheck(mp_subcheck check[static 1], const mp_perfdata perfData) { | ||
115 | if (check->perfdata == NULL) { | ||
116 | check->perfdata = pd_list_init(); | ||
117 | } | ||
118 | pd_list_append(check->perfdata, perfData); | ||
119 | } | ||
120 | |||
121 | /* | ||
122 | * Add a mp_subcheck object to another one. The seconde mp_subcheck (argument) is the lower in the | ||
123 | * hierarchy | ||
124 | */ | ||
125 | int mp_add_subcheck_to_subcheck(mp_subcheck check[static 1], mp_subcheck subcheck) { | ||
126 | if (subcheck.output == NULL) { | ||
127 | die(STATE_UNKNOWN, "%s - %s #%d: %s", __FILE__, __func__, __LINE__, | ||
128 | "Sub check output is NULL"); | ||
129 | } | ||
130 | |||
131 | mp_subcheck_list *tmp = NULL; | ||
132 | |||
133 | if (check->subchecks == NULL) { | ||
134 | check->subchecks = (mp_subcheck_list *)calloc(1, sizeof(mp_subcheck_list)); | ||
135 | if (check->subchecks == NULL) { | ||
136 | die(STATE_UNKNOWN, "%s - %s #%d: %s", __FILE__, __func__, __LINE__, "malloc failed"); | ||
137 | } | ||
138 | |||
139 | tmp = check->subchecks; | ||
140 | } else { | ||
141 | // Search for the end | ||
142 | tmp = check->subchecks; | ||
143 | |||
144 | while (tmp->next != NULL) { | ||
145 | tmp = tmp->next; | ||
146 | } | ||
147 | |||
148 | tmp->next = (mp_subcheck_list *)calloc(1, sizeof(mp_subcheck_list)); | ||
149 | if (tmp->next == NULL) { | ||
150 | die(STATE_UNKNOWN, "%s - %s #%d: %s", __FILE__, __func__, __LINE__, "malloc failed"); | ||
151 | } | ||
152 | |||
153 | tmp = tmp->next; | ||
154 | } | ||
155 | |||
156 | tmp->subcheck = subcheck; | ||
157 | |||
158 | return 0; | ||
159 | } | ||
160 | |||
161 | /* | ||
162 | * Add a manual summary to a mp_check object, effectively replacing | ||
163 | * the autogenerated one | ||
164 | */ | ||
165 | void mp_add_summary(mp_check check[static 1], char *summary) { check->summary = summary; } | ||
166 | |||
167 | /* | ||
168 | * Generate the summary string of a mp_check object based on it's subchecks | ||
169 | */ | ||
170 | char *get_subcheck_summary(mp_check check) { | ||
171 | mp_subcheck_list *subchecks = check.subchecks; | ||
172 | |||
173 | unsigned int ok = 0; | ||
174 | unsigned int warning = 0; | ||
175 | unsigned int critical = 0; | ||
176 | unsigned int unknown = 0; | ||
177 | while (subchecks != NULL) { | ||
178 | switch (subchecks->subcheck.state) { | ||
179 | case STATE_OK: | ||
180 | ok++; | ||
181 | break; | ||
182 | case STATE_WARNING: | ||
183 | warning++; | ||
184 | break; | ||
185 | case STATE_CRITICAL: | ||
186 | critical++; | ||
187 | break; | ||
188 | case STATE_UNKNOWN: | ||
189 | unknown++; | ||
190 | break; | ||
191 | default: | ||
192 | die(STATE_UNKNOWN, "Unknown state in get_subcheck_summary"); | ||
193 | } | ||
194 | subchecks = subchecks->next; | ||
195 | } | ||
196 | char *result = NULL; | ||
197 | asprintf(&result, "ok=%d, warning=%d, critical=%d, unknown=%d", ok, warning, critical, unknown); | ||
198 | return result; | ||
199 | } | ||
200 | |||
201 | mp_state_enum mp_compute_subcheck_state(const mp_subcheck subcheck) { | ||
202 | if (subcheck.evaluation_function == NULL) { | ||
203 | return mp_eval_subcheck_default(subcheck); | ||
204 | } | ||
205 | return subcheck.evaluation_function(subcheck); | ||
206 | } | ||
207 | |||
208 | /* | ||
209 | * Generate the result state of a mp_subcheck object based on its own state and its subchecks | ||
210 | * states | ||
211 | */ | ||
212 | mp_state_enum mp_eval_subcheck_default(mp_subcheck subcheck) { | ||
213 | if (subcheck.evaluation_function != NULL) { | ||
214 | return subcheck.evaluation_function(subcheck); | ||
215 | } | ||
216 | |||
217 | if (subcheck.state_set_explicitly) { | ||
218 | return subcheck.state; | ||
219 | } | ||
220 | |||
221 | mp_subcheck_list *scl = subcheck.subchecks; | ||
222 | |||
223 | if (scl == NULL) { | ||
224 | return subcheck.default_state; | ||
225 | } | ||
226 | |||
227 | mp_state_enum result = STATE_OK; | ||
228 | |||
229 | while (scl != NULL) { | ||
230 | result = max_state_alt(result, mp_compute_subcheck_state(scl->subcheck)); | ||
231 | scl = scl->next; | ||
232 | } | ||
233 | |||
234 | return result; | ||
235 | } | ||
236 | |||
237 | mp_state_enum mp_compute_check_state(const mp_check check) { | ||
238 | // just a safety check | ||
239 | if (check.evaluation_function == NULL) { | ||
240 | return mp_eval_check_default(check); | ||
241 | } | ||
242 | return check.evaluation_function(check); | ||
243 | } | ||
244 | |||
245 | /* | ||
246 | * Generate the result state of a mp_check object based on it's own state and it's subchecks states | ||
247 | */ | ||
248 | mp_state_enum mp_eval_check_default(const mp_check check) { | ||
249 | assert(check.subchecks != NULL); // a mp_check without subchecks is invalid, die here | ||
250 | |||
251 | mp_subcheck_list *scl = check.subchecks; | ||
252 | mp_state_enum result = STATE_OK; | ||
253 | |||
254 | while (scl != NULL) { | ||
255 | result = max_state_alt(result, mp_compute_subcheck_state(scl->subcheck)); | ||
256 | scl = scl->next; | ||
257 | } | ||
258 | |||
259 | return result; | ||
260 | } | ||
261 | |||
262 | /* | ||
263 | * Generate output string for a mp_check object | ||
264 | * Non static to be available for testing functions | ||
265 | */ | ||
266 | char *mp_fmt_output(mp_check check) { | ||
267 | char *result = NULL; | ||
268 | |||
269 | switch (output_format) { | ||
270 | case MP_FORMAT_MULTI_LINE: { | ||
271 | if (check.summary == NULL) { | ||
272 | check.summary = get_subcheck_summary(check); | ||
273 | } | ||
274 | |||
275 | asprintf(&result, "[%s] - %s", state_text(mp_compute_check_state(check)), check.summary); | ||
276 | |||
277 | mp_subcheck_list *subchecks = check.subchecks; | ||
278 | |||
279 | while (subchecks != NULL) { | ||
280 | if (level_of_detail == MP_DETAIL_ALL || | ||
281 | mp_compute_subcheck_state(subchecks->subcheck) != STATE_OK) { | ||
282 | asprintf(&result, "%s\n%s", result, | ||
283 | fmt_subcheck_output(MP_FORMAT_MULTI_LINE, subchecks->subcheck, 1)); | ||
284 | } | ||
285 | subchecks = subchecks->next; | ||
286 | } | ||
287 | |||
288 | char *pd_string = NULL; | ||
289 | subchecks = check.subchecks; | ||
290 | |||
291 | while (subchecks != NULL) { | ||
292 | if (pd_string == NULL) { | ||
293 | asprintf(&pd_string, "%s", fmt_subcheck_perfdata(subchecks->subcheck)); | ||
294 | } else { | ||
295 | asprintf(&pd_string, "%s %s", pd_string, | ||
296 | fmt_subcheck_perfdata(subchecks->subcheck)); | ||
297 | } | ||
298 | |||
299 | subchecks = subchecks->next; | ||
300 | } | ||
301 | |||
302 | if (pd_string != NULL && strlen(pd_string) > 0) { | ||
303 | asprintf(&result, "%s|%s", result, pd_string); | ||
304 | } | ||
305 | |||
306 | break; | ||
307 | } | ||
308 | case MP_FORMAT_TEST_JSON: { | ||
309 | cJSON *resultObject = cJSON_CreateObject(); | ||
310 | if (resultObject == NULL) { | ||
311 | die(STATE_UNKNOWN, "cJSON_CreateObject failed"); | ||
312 | } | ||
313 | |||
314 | cJSON *resultState = cJSON_CreateString(state_text(mp_compute_check_state(check))); | ||
315 | cJSON_AddItemToObject(resultObject, "state", resultState); | ||
316 | |||
317 | if (check.summary == NULL) { | ||
318 | check.summary = get_subcheck_summary(check); | ||
319 | } | ||
320 | |||
321 | cJSON *summary = cJSON_CreateString(check.summary); | ||
322 | cJSON_AddItemToObject(resultObject, "summary", summary); | ||
323 | |||
324 | if (check.subchecks != NULL) { | ||
325 | cJSON *subchecks = cJSON_CreateArray(); | ||
326 | |||
327 | mp_subcheck_list *sc = check.subchecks; | ||
328 | |||
329 | while (sc != NULL) { | ||
330 | cJSON *sc_json = json_serialize_subcheck(sc->subcheck); | ||
331 | cJSON_AddItemToArray(subchecks, sc_json); | ||
332 | sc = sc->next; | ||
333 | } | ||
334 | |||
335 | cJSON_AddItemToObject(resultObject, "checks", subchecks); | ||
336 | } | ||
337 | |||
338 | result = cJSON_PrintUnformatted(resultObject); | ||
339 | break; | ||
340 | } | ||
341 | default: | ||
342 | die(STATE_UNKNOWN, "Invalid format"); | ||
343 | } | ||
344 | |||
345 | return result; | ||
346 | } | ||
347 | |||
348 | /* | ||
349 | * Helper function to properly indent the output lines when using multiline | ||
350 | * formats | ||
351 | */ | ||
352 | static char *generate_indentation_string(unsigned int indentation) { | ||
353 | char *result = calloc(indentation + 1, sizeof(char)); | ||
354 | |||
355 | for (unsigned int i = 0; i < indentation; i++) { | ||
356 | result[i] = '\t'; | ||
357 | } | ||
358 | |||
359 | return result; | ||
360 | } | ||
361 | |||
362 | /* | ||
363 | * Helper function to generate the output string of mp_subcheck | ||
364 | */ | ||
365 | static inline char *fmt_subcheck_output(mp_output_format output_format, mp_subcheck check, | ||
366 | unsigned int indentation) { | ||
367 | char *result = NULL; | ||
368 | mp_subcheck_list *subchecks = NULL; | ||
369 | |||
370 | switch (output_format) { | ||
371 | case MP_FORMAT_MULTI_LINE: { | ||
372 | char *tmp_string = NULL; | ||
373 | if ((tmp_string = strchr(check.output, '\n')) != NULL) { | ||
374 | // This is a multiline string, put the correct indentation in before proceeding | ||
375 | char *intermediate_string = ""; | ||
376 | bool have_residual_chars = false; | ||
377 | |||
378 | while (tmp_string != NULL) { | ||
379 | *tmp_string = '\0'; | ||
380 | asprintf(&intermediate_string, "%s%s\n%s", intermediate_string, check.output, | ||
381 | generate_indentation_string( | ||
382 | indentation + 1)); // one more indentation to make it look better | ||
383 | |||
384 | if (*(tmp_string + 1) != '\0') { | ||
385 | check.output = tmp_string + 1; | ||
386 | have_residual_chars = true; | ||
387 | } else { | ||
388 | // Null after the \n, so this is the end | ||
389 | have_residual_chars = false; | ||
390 | break; | ||
391 | } | ||
392 | |||
393 | tmp_string = strchr(check.output, '\n'); | ||
394 | } | ||
395 | |||
396 | // add the rest (if any) | ||
397 | if (have_residual_chars) { | ||
398 | char *tmp = check.output; | ||
399 | xasprintf(&check.output, "%s\n%s%s", intermediate_string, | ||
400 | generate_indentation_string(indentation + 1), tmp); | ||
401 | } else { | ||
402 | check.output = intermediate_string; | ||
403 | } | ||
404 | } | ||
405 | asprintf(&result, "%s\\_[%s] - %s", generate_indentation_string(indentation), | ||
406 | state_text(mp_compute_subcheck_state(check)), check.output); | ||
407 | |||
408 | subchecks = check.subchecks; | ||
409 | |||
410 | while (subchecks != NULL) { | ||
411 | asprintf(&result, "%s\n%s", result, | ||
412 | fmt_subcheck_output(output_format, subchecks->subcheck, indentation + 1)); | ||
413 | subchecks = subchecks->next; | ||
414 | } | ||
415 | return result; | ||
416 | } | ||
417 | default: | ||
418 | die(STATE_UNKNOWN, "Invalid format"); | ||
419 | } | ||
420 | } | ||
421 | |||
422 | static inline cJSON *json_serialise_pd_value(mp_perfdata_value value) { | ||
423 | cJSON *result = cJSON_CreateObject(); | ||
424 | |||
425 | switch (value.type) { | ||
426 | case PD_TYPE_DOUBLE: | ||
427 | cJSON_AddStringToObject(result, "type", "double"); | ||
428 | break; | ||
429 | case PD_TYPE_INT: | ||
430 | cJSON_AddStringToObject(result, "type", "int"); | ||
431 | break; | ||
432 | case PD_TYPE_UINT: | ||
433 | cJSON_AddStringToObject(result, "type", "uint"); | ||
434 | break; | ||
435 | case PD_TYPE_NONE: | ||
436 | die(STATE_UNKNOWN, "Perfdata type was None in json_serialise_pd_value"); | ||
437 | } | ||
438 | cJSON_AddStringToObject(result, "value", pd_value_to_string(value)); | ||
439 | |||
440 | return result; | ||
441 | } | ||
442 | |||
443 | static inline cJSON *json_serialise_range(mp_range range) { | ||
444 | cJSON *result = cJSON_CreateObject(); | ||
445 | |||
446 | if (range.alert_on_inside_range) { | ||
447 | cJSON_AddBoolToObject(result, "alert_on_inside", true); | ||
448 | } else { | ||
449 | cJSON_AddBoolToObject(result, "alert_on_inside", false); | ||
450 | } | ||
451 | |||
452 | if (range.end_infinity) { | ||
453 | cJSON_AddStringToObject(result, "end", "inf"); | ||
454 | } else { | ||
455 | cJSON_AddItemToObject(result, "end", json_serialise_pd_value(range.end)); | ||
456 | } | ||
457 | |||
458 | if (range.start_infinity) { | ||
459 | cJSON_AddStringToObject(result, "start", "inf"); | ||
460 | } else { | ||
461 | cJSON_AddItemToObject(result, "start", json_serialise_pd_value(range.end)); | ||
462 | } | ||
463 | |||
464 | return result; | ||
465 | } | ||
466 | |||
467 | static inline cJSON *json_serialise_pd(mp_perfdata pd_val) { | ||
468 | cJSON *result = cJSON_CreateObject(); | ||
469 | |||
470 | // Label | ||
471 | cJSON_AddStringToObject(result, "label", pd_val.label); | ||
472 | |||
473 | // Value | ||
474 | cJSON_AddItemToObject(result, "value", json_serialise_pd_value(pd_val.value)); | ||
475 | |||
476 | // Uom | ||
477 | cJSON_AddStringToObject(result, "uom", pd_val.uom); | ||
478 | |||
479 | // Warn/Crit | ||
480 | if (pd_val.warn_present) { | ||
481 | cJSON *warn = json_serialise_range(pd_val.warn); | ||
482 | cJSON_AddItemToObject(result, "warn", warn); | ||
483 | } | ||
484 | if (pd_val.crit_present) { | ||
485 | cJSON *crit = json_serialise_range(pd_val.crit); | ||
486 | cJSON_AddItemToObject(result, "crit", crit); | ||
487 | } | ||
488 | |||
489 | if (pd_val.min_present) { | ||
490 | cJSON_AddItemToObject(result, "min", json_serialise_pd_value(pd_val.min)); | ||
491 | } | ||
492 | if (pd_val.max_present) { | ||
493 | cJSON_AddItemToObject(result, "max", json_serialise_pd_value(pd_val.max)); | ||
494 | } | ||
495 | |||
496 | return result; | ||
497 | } | ||
498 | |||
499 | static inline cJSON *json_serialise_pd_list(pd_list *list) { | ||
500 | cJSON *result = cJSON_CreateArray(); | ||
501 | |||
502 | do { | ||
503 | cJSON *pd_value = json_serialise_pd(list->data); | ||
504 | cJSON_AddItemToArray(result, pd_value); | ||
505 | list = list->next; | ||
506 | } while (list != NULL); | ||
507 | |||
508 | return result; | ||
509 | } | ||
510 | |||
511 | static inline cJSON *json_serialize_subcheck(mp_subcheck subcheck) { | ||
512 | cJSON *result = cJSON_CreateObject(); | ||
513 | |||
514 | // Human readable output | ||
515 | cJSON *output = cJSON_CreateString(subcheck.output); | ||
516 | cJSON_AddItemToObject(result, "output", output); | ||
517 | |||
518 | // Test state (aka Exit Code) | ||
519 | cJSON *state = cJSON_CreateString(state_text(mp_compute_subcheck_state(subcheck))); | ||
520 | cJSON_AddItemToObject(result, "state", state); | ||
521 | |||
522 | // Perfdata | ||
523 | if (subcheck.perfdata != NULL) { | ||
524 | cJSON *perfdata = json_serialise_pd_list(subcheck.perfdata); | ||
525 | cJSON_AddItemToObject(result, "perfdata", perfdata); | ||
526 | } | ||
527 | |||
528 | if (subcheck.subchecks != NULL) { | ||
529 | cJSON *subchecks = cJSON_CreateArray(); | ||
530 | |||
531 | mp_subcheck_list *sc = subcheck.subchecks; | ||
532 | |||
533 | while (sc != NULL) { | ||
534 | cJSON *sc_json = json_serialize_subcheck(sc->subcheck); | ||
535 | cJSON_AddItemToArray(subchecks, sc_json); | ||
536 | sc = sc->next; | ||
537 | } | ||
538 | |||
539 | cJSON_AddItemToObject(result, "checks", subchecks); | ||
540 | } | ||
541 | |||
542 | return result; | ||
543 | } | ||
544 | |||
545 | /* | ||
546 | * Wrapper function to print the output string of a mp_check object | ||
547 | * Use this in concrete plugins. | ||
548 | */ | ||
549 | void mp_print_output(mp_check check) { puts(mp_fmt_output(check)); } | ||
550 | |||
551 | /* | ||
552 | * Convenience function to print the output string of a mp_check object and exit | ||
553 | * the program with the resulting state. | ||
554 | * Intended to be used to exit a monitoring plugin. | ||
555 | */ | ||
556 | void mp_exit(mp_check check) { | ||
557 | mp_print_output(check); | ||
558 | if (output_format == MP_FORMAT_TEST_JSON) { | ||
559 | exit(0); | ||
560 | } | ||
561 | |||
562 | exit(mp_compute_check_state(check)); | ||
563 | } | ||
564 | |||
565 | /* | ||
566 | * Function to set the result state of a mp_subcheck object explicitly. | ||
567 | * This will overwrite the default state AND states derived from it's subchecks | ||
568 | */ | ||
569 | mp_subcheck mp_set_subcheck_state(mp_subcheck check, mp_state_enum state) { | ||
570 | check.state = state; | ||
571 | check.state_set_explicitly = true; | ||
572 | return check; | ||
573 | } | ||
574 | |||
575 | /* | ||
576 | * Function to set the default result state of a mp_subcheck object. This state | ||
577 | * will be used if neither an explicit state is set (see *mp_set_subcheck_state*) | ||
578 | * nor does it include other subchecks | ||
579 | */ | ||
580 | mp_subcheck mp_set_subcheck_default_state(mp_subcheck check, mp_state_enum state) { | ||
581 | check.default_state = state; | ||
582 | return check; | ||
583 | } | ||
584 | |||
585 | char *mp_output_format_map[] = { | ||
586 | [MP_FORMAT_MULTI_LINE] = "multi-line", | ||
587 | [MP_FORMAT_TEST_JSON] = "mp-test-json", | ||
588 | }; | ||
589 | |||
590 | /* | ||
591 | * Function to parse the output from a string | ||
592 | */ | ||
593 | parsed_output_format mp_parse_output_format(char *format_string) { | ||
594 | parsed_output_format result = { | ||
595 | .parsing_success = false, | ||
596 | .output_format = MP_FORMAT_DEFAULT, | ||
597 | }; | ||
598 | |||
599 | for (mp_output_format i = 0; i < (sizeof(mp_output_format_map) / sizeof(char *)); i++) { | ||
600 | if (strcasecmp(mp_output_format_map[i], format_string) == 0) { | ||
601 | result.parsing_success = true; | ||
602 | result.output_format = i; | ||
603 | break; | ||
604 | } | ||
605 | } | ||
606 | |||
607 | return result; | ||
608 | } | ||
609 | |||
610 | void mp_set_format(mp_output_format format) { output_format = format; } | ||
611 | |||
612 | mp_output_format mp_get_format(void) { return output_format; } | ||
613 | |||
614 | void mp_set_level_of_detail(mp_output_detail_level level) { level_of_detail = level; } | ||
615 | |||
616 | mp_output_detail_level mp_get_level_of_detail(void) { return level_of_detail; } | ||
617 | |||
618 | mp_state_enum mp_eval_ok(mp_check overall) { | ||
619 | (void)overall; | ||
620 | return STATE_OK; | ||
621 | } | ||
622 | |||
623 | mp_state_enum mp_eval_warning(mp_check overall) { | ||
624 | (void)overall; | ||
625 | return STATE_WARNING; | ||
626 | } | ||
627 | |||
628 | mp_state_enum mp_eval_critical(mp_check overall) { | ||
629 | (void)overall; | ||
630 | return STATE_CRITICAL; | ||
631 | } | ||
632 | |||
633 | mp_state_enum mp_eval_unknown(mp_check overall) { | ||
634 | (void)overall; | ||
635 | return STATE_UNKNOWN; | ||
636 | } | ||