1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/include/shell.h

162 lines
5.2 KiB
C
Raw Normal View History

2014-04-22 08:02:56 +02:00
/*
* Copyright (C) 2009-2013 Freie Universität Berlin
*
2014-08-23 15:43:13 +02:00
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
2014-04-22 08:02:56 +02:00
*/
2010-09-22 17:25:19 +02:00
/**
* @defgroup sys_shell Shell
* @ingroup sys
* @brief Simple shell interpreter
*
* @{
*
* @file
* @brief Shell interface definition
2010-09-22 17:25:19 +02:00
*/
2016-10-26 21:53:58 +02:00
#ifndef SHELL_H
#define SHELL_H
2014-04-22 08:02:56 +02:00
#include <stdint.h>
#include "periph/pm.h"
#include "kernel_defines.h"
2014-04-22 08:02:56 +02:00
2014-10-10 11:51:11 +02:00
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Shutdown RIOT on shell exit
*/
#ifndef CONFIG_SHELL_SHUTDOWN_ON_EXIT
/* Some systems (e.g Ubuntu 20.04) close stdin on CTRL-D / EOF
* That means we can't just re-start the shell.
* Instead terminate RIOT, which is also the behavior a user would
* expect from a CLI application.
*/
# ifdef CPU_NATIVE
# define CONFIG_SHELL_SHUTDOWN_ON_EXIT 1
# endif
#endif
2015-07-14 18:18:28 +02:00
/**
* @brief Default shell buffer size (maximum line length shell can handle)
*/
#define SHELL_DEFAULT_BUFSIZE (128)
/**
* @brief Optional hook after readline has triggered.
* @details User implemented function gets called after the shell
* readline is complete.
* @note Only executed with the `shell_hooks` module.
*/
void shell_post_readline_hook(void);
/**
* @brief Optional hook before shell command is called.
* @details User implemented function gets called before a valid shell
* command will be called.
* @note Only executed with the `shell_hooks` module.
*
* @param[in] argc Number of arguments supplied to the function invocation.
* @param[in] argv The supplied argument list.
*/
void shell_pre_command_hook(int argc, char **argv);
/**
* @brief Optional hook after shell command is called.
* @details User implemented function gets called before a valid shell
* command will be called.
* @note Only executed with the `shell_hooks` module.
*
* @param[in] ret Return value of the shell command.
* @param[in] argc Number of arguments supplied to the function invocation.
* @param[in] argv The supplied argument list.
*/
void shell_post_command_hook(int ret, int argc, char **argv);
2014-04-22 08:02:56 +02:00
/**
* @brief Protype of a shell callback handler.
* @details The functions supplied to shell_run() must use this signature.
2014-04-22 08:02:56 +02:00
* The argument list is terminated with a NULL, i.e ``argv[argc] == NULL`.
* ``argv[0]`` is the function name.
*
* Escape sequences are removed before the function is called.
*
* The called function may edit `argv` and the contained strings,
* but it must be taken care of not to leave the boundaries of the array.
* This functionality can be used by getopt() or a similar function.
* @param[in] argc Number of arguments supplied to the function invocation.
* @param[in] argv The supplied argument list.
*
* @return 0 on success
* @return Anything else on failure
2014-04-22 08:02:56 +02:00
*/
typedef int (*shell_command_handler_t)(int argc, char **argv);
2014-04-22 08:02:56 +02:00
/**
* @brief A single command in the list of the supported commands.
* @details The list of commands is NULL terminated,
* i.e. the last element must be ``{ NULL, NULL, NULL }``.
*/
2010-11-02 17:23:10 +01:00
typedef struct shell_command_t {
const char *name; /**< Name of the function */
const char *desc; /**< Description to print in the "help" command. */
2014-04-22 08:02:56 +02:00
shell_command_handler_t handler; /**< The callback function. */
} shell_command_t;
2010-09-22 17:25:19 +02:00
2014-04-22 08:02:56 +02:00
/**
* @brief Start a shell and exit once EOF is reached.
2015-07-14 18:18:28 +02:00
*
* @param[in] commands ptr to array of command structs
* @param[in] line_buf Buffer that will be used for reading a line
* @param[in] len nr of bytes that fit in line_buf
2010-09-22 17:25:19 +02:00
*/
void shell_run_once(const shell_command_t *commands, char *line_buf, int len);
/**
* @brief Start a shell and restart it if it exits
*
* If `CONFIG_SHELL_SHUTDOWN_ON_EXIT` is set (e.g. on native)
* the shell will instead shut down RIOT once EOF is reached.
*
* @param[in] commands ptr to array of command structs
* @param[in] line_buf Buffer that will be used for reading a line
* @param[in] len nr of bytes that fit in line_buf
*/
static inline void shell_run_forever(const shell_command_t *commands,
char *line_buf, int len)
{
while (1) {
shell_run_once(commands, line_buf, len);
if (IS_ACTIVE(CONFIG_SHELL_SHUTDOWN_ON_EXIT)) {
pm_off();
}
}
}
/**
* @brief Back-porting alias for @ref shell_run_forever
*
* @param[in] commands ptr to array of command structs
* @param[in] line_buf Buffer that will be used for reading a line
* @param[in] len nr of bytes that fit in line_buf
*/
static inline void shell_run(const shell_command_t *commands,
char *line_buf, int len)
{
shell_run_forever(commands, line_buf, len);
}
2010-09-28 13:39:59 +02:00
2014-10-10 11:51:11 +02:00
#ifdef __cplusplus
}
#endif
2016-10-26 21:53:58 +02:00
#endif /* SHELL_H */
/** @} */