Merge pull request #49 from painless-security/jennifer/mon_msg_encoders
[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       return NULL;
85
86     case OPT_TYPE_SHOW_VERSION:
87       return "version";
88
89     case OPT_TYPE_SHOW_SERIAL:
90       return "serial";
91
92     case OPT_TYPE_SHOW_UPTIME:
93       return "uptime";
94
95     case OPT_TYPE_SHOW_TID_REQ_COUNT:
96       return "tid_req_count";
97
98     case OPT_TYPE_SHOW_TID_REQ_PENDING:
99       return "tid_req_pending";
100
101     case OPT_TYPE_SHOW_ROUTES:
102       return "routes";
103
104     case OPT_TYPE_SHOW_COMMUNITIES:
105       return "communities";
106   }
107   return NULL;
108 }
109
110 // Helper macro for the mon_opt_type_from_string method
111 #define return_if_matches(s, cmd)                     \
112   do {                                                \
113     if (strcmp((s), mon_opt_type_to_string(cmd))==0)  \
114       return (cmd);                                   \
115   } while(0)
116
117 MON_OPT_TYPE mon_opt_type_from_string(const char *s)
118 {
119   return_if_matches(s, OPT_TYPE_SHOW_VERSION);
120   return_if_matches(s, OPT_TYPE_SHOW_SERIAL);
121   return_if_matches(s, OPT_TYPE_SHOW_UPTIME);
122   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_COUNT);
123   return_if_matches(s, OPT_TYPE_SHOW_TID_REQ_PENDING);
124   return_if_matches(s, OPT_TYPE_SHOW_ROUTES);
125   return_if_matches(s, OPT_TYPE_SHOW_COMMUNITIES);
126   return OPT_TYPE_UNKNOWN;
127 }
128 #undef return_if_matches