Add support for "show realms" monitoring request
[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 <gmodule.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_RECONFIGURE:
54       return "reconfigure";
55
56     case MON_CMD_SHOW:
57       return "show";
58   }
59   return NULL;
60 }
61
62 // Helper macro for the mon_cmd_from_string method
63 #define return_if_matches(s, cmd)                \
64   do {                                           \
65     if (strcmp((s), mon_cmd_to_string(cmd))==0)  \
66       return (cmd);                              \
67   } while(0)
68
69 MON_CMD mon_cmd_from_string(const char *s)
70 {
71   return_if_matches(s, MON_CMD_RECONFIGURE);
72   return_if_matches(s, MON_CMD_SHOW);
73   return MON_CMD_UNKNOWN;
74 }
75 #undef return_if_matches
76
77 /**
78  * This method defines the option type strings
79  */
80 const char *mon_opt_type_to_string(MON_OPT_TYPE opt_type)
81 {
82   switch(opt_type) {
83     case OPT_TYPE_UNKNOWN:
84     case OPT_TYPE_ANY:
85       return NULL;
86
87     case OPT_TYPE_SHOW_VERSION:
88       return "version";
89
90     case OPT_TYPE_SHOW_SERIAL:
91       return "serial";
92
93     case OPT_TYPE_SHOW_UPTIME:
94       return "uptime";
95
96     case OPT_TYPE_SHOW_TID_REQ_COUNT:
97       return "tid_req_count";
98
99     case OPT_TYPE_SHOW_TID_REQ_ERR_COUNT:
100       return "tid_req_error_count";
101
102     case OPT_TYPE_SHOW_TID_REQ_PENDING:
103       return "tid_req_pending";
104
105     case OPT_TYPE_SHOW_ROUTES:
106       return "routes";
107
108     case OPT_TYPE_SHOW_PEERS:
109       return "peers";
110
111     case OPT_TYPE_SHOW_COMMUNITIES:
112       return "communities";
113
114     case OPT_TYPE_SHOW_REALMS:
115       return "realms";
116
117     case OPT_TYPE_SHOW_RP_CLIENTS:
118       return "rp_clients";
119   }
120   return NULL;
121 }
122
123 // Helper macro for the mon_opt_type_from_string method
124 #define return_if_matches(s, cmd)                     \
125   do {                                                \
126     if (strcmp((s), mon_opt_type_to_string(cmd))==0)  \
127       return (cmd);                                   \
128   } while(0)
129
130 MON_OPT_TYPE mon_opt_type_from_string(const char *s)
131 {
132   return_if_matches(s, OPT_TYPE_SHOW_VERSION);
133   return_if_matches(s, OPT_TYPE_SHOW_SERIAL);
134   return_if_matches(s, OPT_TYPE_SHOW_UPTIME);
135   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_COUNT);
136   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_ERR_COUNT);
137   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_PENDING);
138   return_if_matches(s, OPT_TYPE_SHOW_ROUTES);
139   return_if_matches(s, OPT_TYPE_SHOW_PEERS);
140   return_if_matches(s, OPT_TYPE_SHOW_COMMUNITIES);
141   return_if_matches(s, OPT_TYPE_SHOW_REALMS);
142   return_if_matches(s, OPT_TYPE_SHOW_RP_CLIENTS);
143   return OPT_TYPE_UNKNOWN;
144 }
145 #undef return_if_matches