FD.io VPP  v16.06
Vector Packet Processing
cli.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * cli.h: command line interface
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #ifndef included_vlib_cli_h
41 #define included_vlib_cli_h
42 
43 #include <vppinfra/format.h>
44 
45 struct vlib_cli_command_t;
46 
47 typedef struct {
49 
50  /* Indexed by name[position] - min_char. */
53 
54 typedef struct {
55  u8 * name;
56 
59 
60 typedef struct {
61  u8 * name;
62 
64 
67 
68 typedef struct {
69  char * name;
70  char * short_help;
71  char * long_help;
72 
73  /* Number of bytes in parsed data. Zero for vector. */
75 
77 
78  /* Opaque for unformat function. */
79  uword unformat_function_arg[2];
81 
82 /* CLI command callback function. */
84  (struct vlib_main_t * vm,
85  unformat_input_t * input,
86  struct vlib_cli_command_t * cmd);
87 
88 typedef struct vlib_cli_command_t {
89  /* Command path (e.g. "show something").
90  Spaces delimit elements of path. */
91  char * path;
92 
93  /* Short/long help strings. */
94  char * short_help;
95  char * long_help;
96 
97  /* Callback function. */
99 
100  /* Opaque. */
102 
103  /* Known MP-safe? */
105 
106  /* Sub commands for this command. */
108 
109  /* Hash table mapping name (e.g. last path element) to sub command index. */
111 
112  /* bitmap[p][c][i] says whether sub-command i has character
113  c in position p. */
115 
116  /* Hash table mapping name (e.g. last path element) to sub rule index. */
118 
119  /* Vector of possible parse rules for this path. */
121 
122  /* List of CLI commands, built by constructors */
124 
126 
128  u8 * buffer,
129  uword buffer_bytes);
130 typedef struct {
131  /* Vector of all known commands. */
133 
134  /* Hash table mapping normalized path to index into all_commands. */
136 
137  /* Vector of all known parse rules. */
139 
140  /* Hash table mapping parse rule name to index into parse_rule vector. */
142 
143  /* Data parsed for rules. */
145 
146  /* registration list added by constructors */
149 
150 #define VLIB_CLI_COMMAND(x,...) \
151  __VA_ARGS__ vlib_cli_command_t x; \
152 static void __vlib_cli_command_registration_##x (void) \
153  __attribute__((__constructor__)) ; \
154 static void __vlib_cli_command_registration_##x (void) \
155 { \
156  vlib_main_t * vm = vlib_get_main(); \
157  vlib_cli_main_t *cm = &vm->cli_main; \
158  x.next_cli_command = cm->cli_command_registrations; \
159  cm->cli_command_registrations = &x; \
160 } \
161 __VA_ARGS__ vlib_cli_command_t x
162 
163 
164 #define VLIB_CLI_PARSE_RULE(x) \
165  vlib_cli_parse_rule_t x
166 
167 /* Output to current CLI connection. */
168 void vlib_cli_output (struct vlib_main_t * vm, char * fmt, ...);
169 
170 /* Process CLI input. */
171 void vlib_cli_input (struct vlib_main_t * vm,
172  unformat_input_t * input,
173  vlib_cli_output_function_t * function,
175 
177  vlib_cli_command_t * c);
180 
181 #endif /* included_vlib_cli_h */
unformat_function_t * unformat_function
Definition: cli.h:76
uword( unformat_function_t)(unformat_input_t *input, va_list *args)
Definition: format.h:229
uword data_size
Definition: cli.h:74
static void(BVT(clib_bihash)*h, BVT(clib_bihash_value)*v)
vlib_cli_command_t * commands
Definition: cli.h:132
uword * sub_rule_index_by_name
Definition: cli.h:117
clib_error_t * vlib_cli_register_parse_rule(struct vlib_main_t *vm, vlib_cli_parse_rule_t *c)
Definition: cli.c:987
uword * command_index_by_path
Definition: cli.h:135
u32 command_index
Definition: cli.h:65
vlib_cli_parse_rule_t * parse_rules
Definition: cli.h:138
vlib_cli_sub_rule_t * sub_rules
Definition: cli.h:120
char * long_help
Definition: cli.h:71
uword function_arg
Definition: cli.h:101
vlib_cli_sub_command_t * sub_commands
Definition: cli.h:107
clib_error_t * vlib_cli_register(struct vlib_main_t *vm, vlib_cli_command_t *c)
Definition: cli.c:907
uword ** bitmaps
Definition: cli.h:51
clib_error_t *( vlib_cli_command_function_t)(struct vlib_main_t *vm, unformat_input_t *input, struct vlib_cli_command_t *cmd)
Definition: cli.h:84
unsigned int u32
Definition: types.h:88
uword * parse_rule_index_by_name
Definition: cli.h:141
void( vlib_cli_output_function_t)(uword arg, u8 *buffer, uword buffer_bytes)
Definition: cli.h:127
char * long_help
Definition: cli.h:95
uword is_mp_safe
Definition: cli.h:104
char * path
Definition: cli.h:91
uword * sub_command_index_by_name
Definition: cli.h:110
u64 uword
Definition: types.h:112
void vlib_cli_output(struct vlib_main_t *vm, char *fmt,...)
Definition: cli.c:538
struct vlib_cli_command_t * next_cli_command
Definition: cli.h:123
unsigned char u8
Definition: types.h:56
void ** parse_rule_data
Definition: cli.h:144
vlib_cli_command_t * cli_command_registrations
Definition: cli.h:147
struct vlib_cli_command_t vlib_cli_command_t
char * short_help
Definition: cli.h:70
vlib_cli_parse_position_t * sub_command_positions
Definition: cli.h:114
struct _unformat_input_t unformat_input_t
void vlib_cli_input(struct vlib_main_t *vm, unformat_input_t *input, vlib_cli_output_function_t *function, uword function_arg)
Definition: cli.c:504
char * short_help
Definition: cli.h:94
u32 rule_index
Definition: cli.h:63