forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshell.h
208 lines (178 loc) · 5.43 KB
/
shell.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/* shell.h - Shell header */
/*
* Copyright (c) 2015 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _SHELL_H_
#define _SHELL_H_
#ifdef __cplusplus
extern "C" {
#endif
struct device;
/** @brief Callback called when command is entered.
*
* @param argc Number of parameters passed.
* @param argv Array of option strings. First option is always command name.
*
* @return 0 in case of success or negative value in case of error.
*/
typedef int (*shell_cmd_function_t)(int argc, char *argv[]);
struct shell_cmd {
const char *cmd_name;
shell_cmd_function_t cb;
const char *help;
const char *desc;
};
/** @brief Callback to get the current prompt.
*
* @returns Current prompt string.
*/
typedef const char *(*shell_prompt_function_t)(void);
struct shell_module {
const char *module_name;
const struct shell_cmd *commands;
shell_prompt_function_t prompt;
};
/** @typedef shell_mcumgr_function_t
* @brief Callback that is executed when an mcumgr packet is received over the
* shell.
*
* The packet argument must be exactly what was received over the console,
* except the terminating newline must be replaced with '\0'.
*
* @param line The received mcumgr packet.
* @param arg An optional argument.
*
* @return on success; negative error code on failure.
*/
typedef int (*shell_mcumgr_function_t)(const char *line, void *arg);
/**
* @brief Kernel Shell API
* @defgroup _shell_api_functions Shell API Functions
* @{
*/
/**
* @def SHELL_REGISTER
*
* @brief Create shell_module object and set it up for boot time initialization.
*
* @details This macro defines a shell_module object that is automatically
* configured by the kernel during system initialization.
*
* @param _name Module name to be entered in shell console.
* @param _commands Array of commands to register.
* Shell array entries must be packed to calculate array size correctly.
*/
/**
* @def SHELL_REGISTER_WITH_PROMPT
*
* @brief Create shell_module object and set it up for boot time initialization.
*
* @details This macro defines a shell_module object that is automatically
* configured by the kernel during system initialization, in addition to that
* this also enables setting a custom prompt handler when the module is
* selected.
*
* @param _name Module name to be entered in shell console.
* @param _commands Array of commands to register.
* Shell array entries must be packed to calculate array size correctly.
* @param _prompt Optional prompt handler to be set when module is selected.
*/
/**
* @def SHELL_REGISTER_COMMAND
*
* @brief Create a standalone command and set it up for boot time
* initialization.
*
* @details This macro defines a shell_cmd object that is automatically
* configured by the kernel during system initialization.
*
* The command will be available in the default module, so it will be available
* immediately.
*
*/
#ifdef CONFIG_CONSOLE_SHELL
#define SHELL_REGISTER(_name, _commands) \
SHELL_REGISTER_WITH_PROMPT(_name, _commands, NULL)
#define SHELL_REGISTER_WITH_PROMPT(_name, _commands, _prompt) \
\
static struct shell_module (__shell__name) __used \
__attribute__((__section__(".shell_module_"))) = { \
.module_name = _name, \
.commands = _commands, \
.prompt = _prompt \
}
#define SHELL_REGISTER_COMMAND(name, callback, _help) \
\
const struct shell_cmd (__shell__##name) __used \
__attribute__((__section__(".shell_cmd_"))) = { \
.cmd_name = name, \
.cb = callback, \
.help = _help \
}
#else
#define SHELL_REGISTER(_name, _commands)
#define SHELL_REGISTER_WITH_PROMPT(_name, _commands, _prompt)
#define SHELL_REGISTER_COMMAND(_name, _callback, _help)
#endif
/** @brief Initialize shell with optional prompt, NULL in case no prompt is
* needed.
*
* @param prompt Prompt to be printed on serial console.
*/
void shell_init(const char *prompt);
/** @brief Optionally register an app default cmd handler.
*
* @param handler To be called if no cmd found in cmds registered with
* shell_init.
*/
void shell_register_app_cmd_handler(shell_cmd_function_t handler);
/** @brief Optionally register a custom prompt callback.
*
* @param handler To be called to get the current prompt.
*/
void shell_register_prompt_handler(shell_prompt_function_t handler);
/** @brief Optionally register a default module, to eliminate typing it in
* shell console or for backwards compatibility.
*
* @param name Module name.
*/
void shell_register_default_module(const char *name);
/** @brief Configures a callback for received mcumgr packets.
*
* @param handler The callback to execute when an mcumgr packet is received.
* @param arg An optional argument to pass to the callback.
*/
void shell_register_mcumgr_handler(shell_mcumgr_function_t handler, void *arg);
/** @brief Execute command line.
*
* Pass command line to shell to execute. The line cannot be a C string literal
* since it will be modified in place, instead a variable can be used:
*
* char cmd[] = "command";
* shell_exec(cmd);
*
* Note: This by no means makes any of the commands a stable interface, so
* this function should only be used for debugging/diagnostic.
*
* @param line Command line to be executed
* @returns Result of the execution
*/
int shell_exec(char *line);
/**
* @}
*/
#ifdef CONFIG_CONSOLE_SHELL
int shell_run(struct device *dev);
#else
static inline int shell_run(struct device *dev)
{
ARG_UNUSED(dev);
return 0;
}
#endif
#ifdef __cplusplus
}
#endif
#endif /* _SHELL_H_ */