summaryrefslogtreecommitdiffstats
path: root/lib/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/output.h')
-rw-r--r--lib/output.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/lib/output.h b/lib/output.h
new file mode 100644
index 00000000..3bd91f90
--- /dev/null
+++ b/lib/output.h
@@ -0,0 +1,100 @@
1#pragma once
2
3#include "../config.h"
4#include "./perfdata.h"
5#include "./states.h"
6
7/*
8 * A partial check result
9 */
10typedef struct {
11 mp_state_enum state; // OK, Warning, Critical ... set explicitly
12 mp_state_enum default_state; // OK, Warning, Critical .. if not set explicitly
13 bool state_set_explicitly; // was the state set explicitly (or should it be derived from subchecks)
14
15 char *output; // Text output for humans ("Filesystem xyz is fine", "Could not create TCP connection to..")
16 pd_list *perfdata; // Performance data for this check
17 struct subcheck_list *subchecks; // subchecks deeper in the hierarchy
18} mp_subcheck;
19
20/*
21 * A list of subchecks, used in subchecks and the main check
22 */
23typedef struct subcheck_list {
24 mp_subcheck subcheck;
25 struct subcheck_list *next;
26} mp_subcheck_list;
27
28/*
29 * Possible output formats
30 */
31typedef enum output_format {
32 MP_FORMAT_MULTI_LINE,
33 MP_FORMAT_TEST_JSON,
34} mp_output_format;
35
36#define MP_FORMAT_DEFAULT MP_FORMAT_MULTI_LINE
37
38/*
39 * Format related functions
40 */
41void mp_set_format(mp_output_format format);
42mp_output_format mp_get_format(void);
43
44// Output detail level
45
46typedef enum output_detail_level {
47 MP_DETAIL_ALL,
48 MP_DETAIL_NON_OK_ONLY,
49} mp_output_detail_level;
50
51void mp_set_level_of_detail(mp_output_detail_level level);
52mp_output_detail_level mp_get_level_of_detail(void);
53
54/*
55 * The main state object of a plugin. Exists only ONCE per plugin.
56 * This is the "root" of a tree of singular checks.
57 * The final result is always derived from the children and the "worst" state
58 * in the first layer of subchecks
59 */
60typedef struct {
61 char *summary; // Overall summary, if not set a summary will be automatically generated
62 mp_subcheck_list *subchecks;
63} mp_check;
64
65mp_check mp_check_init(void);
66mp_subcheck mp_subcheck_init(void);
67
68mp_subcheck mp_set_subcheck_state(mp_subcheck, mp_state_enum);
69mp_subcheck mp_set_subcheck_default_state(mp_subcheck, mp_state_enum);
70
71int mp_add_subcheck_to_check(mp_check check[static 1], mp_subcheck);
72int mp_add_subcheck_to_subcheck(mp_subcheck check[static 1], mp_subcheck);
73
74void mp_add_perfdata_to_subcheck(mp_subcheck check[static 1], mp_perfdata);
75
76void mp_add_summary(mp_check check[static 1], char *summary);
77
78mp_state_enum mp_compute_check_state(mp_check);
79mp_state_enum mp_compute_subcheck_state(mp_subcheck);
80
81typedef struct {
82 bool parsing_success;
83 mp_output_format output_format;
84} parsed_output_format;
85parsed_output_format mp_parse_output_format(char *format_string);
86
87// TODO free and stuff
88// void mp_cleanup_check(mp_check check[static 1]);
89
90char *mp_fmt_output(mp_check);
91
92void mp_print_output(mp_check);
93
94/*
95 * ==================
96 * Exit functionality
97 * ==================
98 */
99
100void mp_exit(mp_check) __attribute__((noreturn));