Merge pull request #92 from painless-security/jennifer/reduce_logging
[trust_router.git] / mon / mon_common.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
36 #include <talloc.h>
37 #include <glib.h>
38 #include <string.h>
39
40 #include <mon_internal.h>
41
42 // Monitoring common code
43
44 /**
45  * This method defines the command strings
46  */
47 const char *mon_cmd_to_string(MON_CMD cmd)
48 {
49   switch(cmd) {
50     case MON_CMD_UNKNOWN:
51       return NULL;
52
53     case MON_CMD_SHOW:
54       return "show";
55   }
56   return NULL;
57 }
58
59 // Helper macro for the mon_cmd_from_string method
60 #define return_if_matches(s, cmd)                \
61   do {                                           \
62     if (strcmp((s), mon_cmd_to_string(cmd))==0)  \
63       return (cmd);                              \
64   } while(0)
65
66 MON_CMD mon_cmd_from_string(const char *s)
67 {
68   return_if_matches(s, MON_CMD_SHOW);
69   return MON_CMD_UNKNOWN;
70 }
71 #undef return_if_matches
72
73 /**
74  * This method defines the option type strings
75  */
76 const char *mon_opt_type_to_string(MON_OPT_TYPE opt_type)
77 {
78   switch(opt_type) {
79     case OPT_TYPE_UNKNOWN:
80     case OPT_TYPE_ANY:
81       return NULL;
82
83     case OPT_TYPE_SHOW_VERSION:
84       return "version";
85
86     case OPT_TYPE_SHOW_CONFIG_FILES:
87       return "config_files";
88
89     case OPT_TYPE_SHOW_UPTIME:
90       return "uptime";
91
92     case OPT_TYPE_SHOW_TID_REQ_COUNT:
93       return "tid_reqs_processed";
94
95     case OPT_TYPE_SHOW_TID_REQ_ERR_COUNT:
96       return "tid_error_count";
97
98     case OPT_TYPE_SHOW_TID_REQ_PENDING:
99       return "tid_reqs_pending";
100
101     case OPT_TYPE_SHOW_ROUTES:
102       return "routes";
103
104     case OPT_TYPE_SHOW_PEERS:
105       return "peers";
106
107     case OPT_TYPE_SHOW_COMMUNITIES:
108       return "communities";
109
110     case OPT_TYPE_SHOW_REALMS:
111       return "realms";
112
113     case OPT_TYPE_SHOW_RP_CLIENTS:
114       return "rp_clients";
115   }
116   return NULL;
117 }
118
119 // Helper macro for the mon_opt_type_from_string method
120 #define return_if_matches(s, cmd)                     \
121   do {                                                \
122     if (strcmp((s), mon_opt_type_to_string(cmd))==0)  \
123       return (cmd);                                   \
124   } while(0)
125
126 MON_OPT_TYPE mon_opt_type_from_string(const char *s)
127 {
128   return_if_matches(s, OPT_TYPE_SHOW_VERSION);
129   return_if_matches(s, OPT_TYPE_SHOW_CONFIG_FILES);
130   return_if_matches(s, OPT_TYPE_SHOW_UPTIME);
131   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_COUNT);
132   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_ERR_COUNT);
133   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_PENDING);
134   return_if_matches(s, OPT_TYPE_SHOW_ROUTES);
135   return_if_matches(s, OPT_TYPE_SHOW_PEERS);
136   return_if_matches(s, OPT_TYPE_SHOW_COMMUNITIES);
137   return_if_matches(s, OPT_TYPE_SHOW_REALMS);
138   return_if_matches(s, OPT_TYPE_SHOW_RP_CLIENTS);
139   return OPT_TYPE_UNKNOWN;
140 }
141 #undef return_if_matches