shell.h 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_H__
  7. #define SHELL_H__
  8. #include <zephyr.h>
  9. #include <shell/shell_types.h>
  10. #include <shell/shell_history.h>
  11. #include <shell/shell_fprintf.h>
  12. #include <shell/shell_log_backend.h>
  13. #include <logging/log_instance.h>
  14. #include <logging/log.h>
  15. #include <sys/util.h>
  16. #if defined CONFIG_SHELL_GETOPT
  17. #include <shell/shell_getopt.h>
  18. #endif
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. #ifndef CONFIG_SHELL_CMD_BUFF_SIZE
  23. #define CONFIG_SHELL_CMD_BUFF_SIZE 0
  24. #endif
  25. #ifndef CONFIG_SHELL_PRINTF_BUFF_SIZE
  26. #define CONFIG_SHELL_PRINTF_BUFF_SIZE 0
  27. #endif
  28. #ifndef CONFIG_SHELL_HISTORY_BUFFER
  29. #define CONFIG_SHELL_HISTORY_BUFFER 0
  30. #endif
  31. #define Z_SHELL_CMD_ROOT_LVL (0u)
  32. #define SHELL_HEXDUMP_BYTES_IN_LINE 16
  33. /**
  34. * @brief Flag indicates that optional arguments will be treated as one,
  35. * unformatted argument.
  36. *
  37. * By default, shell is parsing all arguments, treats all spaces as argument
  38. * separators unless they are within quotation marks which are removed in that
  39. * case. If command rely on unformatted argument then this flag shall be used
  40. * in place of number of optional arguments in command definition to indicate
  41. * that only mandatory arguments shall be parsed and remaining command string is
  42. * passed as a raw string.
  43. */
  44. #define SHELL_OPT_ARG_RAW (0xFE)
  45. /**
  46. * @brief Flag indicateding that number of optional arguments is not limited.
  47. */
  48. #define SHELL_OPT_ARG_CHECK_SKIP (0xFF)
  49. /**
  50. * @brief Flag indicating maximum number of optional arguments that can be
  51. * validated.
  52. */
  53. #define SHELL_OPT_ARG_MAX (0xFD)
  54. /**
  55. * @brief Shell API
  56. * @defgroup shell_api Shell API
  57. * @ingroup shell
  58. * @{
  59. */
  60. struct getopt_state;
  61. struct shell_static_entry;
  62. /**
  63. * @brief Shell dynamic command descriptor.
  64. *
  65. * @details Function shall fill the received shell_static_entry structure
  66. * with requested (idx) dynamic subcommand data. If there is more than
  67. * one dynamic subcommand available, the function shall ensure that the
  68. * returned commands: entry->syntax are sorted in alphabetical order.
  69. * If idx exceeds the available dynamic subcommands, the function must
  70. * write to entry->syntax NULL value. This will indicate to the shell
  71. * module that there are no more dynamic commands to read.
  72. */
  73. typedef void (*shell_dynamic_get)(size_t idx,
  74. struct shell_static_entry *entry);
  75. /**
  76. * @brief Shell command descriptor.
  77. */
  78. struct shell_cmd_entry {
  79. bool is_dynamic;
  80. union union_cmd_entry {
  81. /*!< Pointer to function returning dynamic commands.*/
  82. shell_dynamic_get dynamic_get;
  83. /*!< Pointer to array of static commands. */
  84. const struct shell_static_entry *entry;
  85. } u;
  86. };
  87. struct shell;
  88. struct shell_static_args {
  89. uint8_t mandatory; /*!< Number of mandatory arguments. */
  90. uint8_t optional; /*!< Number of optional arguments. */
  91. };
  92. /**
  93. * @brief Get by index a device that matches .
  94. *
  95. * This can be used, for example, to identify I2C_1 as the second I2C
  96. * device.
  97. *
  98. * Devices that failed to initialize or do not have a non-empty name
  99. * are excluded from the candidates for a match.
  100. *
  101. * @param idx the device number starting from zero.
  102. *
  103. * @param prefix optional name prefix used to restrict candidate
  104. * devices. Indexing is done relative to devices with names that
  105. * start with this text. Pass null if no prefix match is required.
  106. */
  107. const struct device *shell_device_lookup(size_t idx,
  108. const char *prefix);
  109. /**
  110. * @brief Shell command handler prototype.
  111. *
  112. * @param shell Shell instance.
  113. * @param argc Arguments count.
  114. * @param argv Arguments.
  115. *
  116. * @retval 0 Successful command execution.
  117. * @retval 1 Help printed and command not executed.
  118. * @retval -EINVAL Argument validation failed.
  119. * @retval -ENOEXEC Command not executed.
  120. */
  121. typedef int (*shell_cmd_handler)(const struct shell *shell,
  122. size_t argc, char **argv);
  123. /**
  124. * @brief Shell dictionary command handler prototype.
  125. *
  126. * @param shell Shell instance.
  127. * @param argc Arguments count.
  128. * @param argv Arguments.
  129. * @param data Pointer to the user data.
  130. *
  131. * @retval 0 Successful command execution.
  132. * @retval 1 Help printed and command not executed.
  133. * @retval -EINVAL Argument validation failed.
  134. * @retval -ENOEXEC Command not executed.
  135. */
  136. typedef int (*shell_dict_cmd_handler)(const struct shell *shell, size_t argc,
  137. char **argv, void *data);
  138. /*
  139. * @brief Shell static command descriptor.
  140. */
  141. struct shell_static_entry {
  142. const char *syntax; /*!< Command syntax strings. */
  143. const char *help; /*!< Command help string. */
  144. const struct shell_cmd_entry *subcmd; /*!< Pointer to subcommand. */
  145. shell_cmd_handler handler; /*!< Command handler. */
  146. struct shell_static_args args; /*!< Command arguments. */
  147. };
  148. /**
  149. * @brief Macro for defining and adding a root command (level 0) with required
  150. * number of arguments.
  151. *
  152. * @note Each root command shall have unique syntax. If a command will be called
  153. * with wrong number of arguments shell will print an error message and command
  154. * handler will not be called.
  155. *
  156. * @param[in] syntax Command syntax (for example: history).
  157. * @param[in] subcmd Pointer to a subcommands array.
  158. * @param[in] help Pointer to a command help string.
  159. * @param[in] handler Pointer to a function handler.
  160. * @param[in] mandatory Number of mandatory arguments includig command name.
  161. * @param[in] optional Number of optional arguments.
  162. */
  163. #define SHELL_CMD_ARG_REGISTER(syntax, subcmd, help, handler, \
  164. mandatory, optional) \
  165. static const struct shell_static_entry UTIL_CAT(_shell_, syntax) = \
  166. SHELL_CMD_ARG(syntax, subcmd, help, handler, mandatory, optional); \
  167. static const struct shell_cmd_entry UTIL_CAT(shell_cmd_, syntax) \
  168. __attribute__ ((section("." \
  169. STRINGIFY(UTIL_CAT(shell_root_cmd_, syntax))))) \
  170. __attribute__((used)) = { \
  171. .is_dynamic = false, \
  172. .u = {.entry = &UTIL_CAT(_shell_, syntax)} \
  173. }
  174. /**
  175. * @brief Macro for defining and adding a conditional root command (level 0)
  176. * with required number of arguments.
  177. *
  178. * @see SHELL_CMD_ARG_REGISTER for details.
  179. *
  180. * Macro can be used to create a command which can be conditionally present.
  181. * It is and alternative to \#ifdefs around command registration and command
  182. * handler. If command is disabled handler and subcommands are removed from
  183. * the application.
  184. *
  185. * @param[in] flag Compile time flag. Command is present only if flag
  186. * exists and equals 1.
  187. * @param[in] syntax Command syntax (for example: history).
  188. * @param[in] subcmd Pointer to a subcommands array.
  189. * @param[in] help Pointer to a command help string.
  190. * @param[in] handler Pointer to a function handler.
  191. * @param[in] mandatory Number of mandatory arguments includig command name.
  192. * @param[in] optional Number of optional arguments.
  193. */
  194. #define SHELL_COND_CMD_ARG_REGISTER(flag, syntax, subcmd, help, handler, \
  195. mandatory, optional) \
  196. COND_CODE_1(\
  197. flag, \
  198. (\
  199. SHELL_CMD_ARG_REGISTER(syntax, subcmd, help, handler, \
  200. mandatory, optional) \
  201. ), \
  202. (\
  203. static shell_cmd_handler dummy_##syntax##_handler __unused = \
  204. handler;\
  205. static const struct shell_cmd_entry *dummy_subcmd_##syntax \
  206. __unused = subcmd\
  207. )\
  208. )
  209. /**
  210. * @brief Macro for defining and adding a root command (level 0) with
  211. * arguments.
  212. *
  213. * @note All root commands must have different name.
  214. *
  215. * @param[in] syntax Command syntax (for example: history).
  216. * @param[in] subcmd Pointer to a subcommands array.
  217. * @param[in] help Pointer to a command help string.
  218. * @param[in] handler Pointer to a function handler.
  219. */
  220. #define SHELL_CMD_REGISTER(syntax, subcmd, help, handler) \
  221. SHELL_CMD_ARG_REGISTER(syntax, subcmd, help, handler, 0, 0)
  222. /**
  223. * @brief Macro for defining and adding a conditional root command (level 0)
  224. * with arguments.
  225. *
  226. * @see SHELL_COND_CMD_ARG_REGISTER.
  227. *
  228. * @param[in] flag Compile time flag. Command is present only if flag
  229. * exists and equals 1.
  230. * @param[in] syntax Command syntax (for example: history).
  231. * @param[in] subcmd Pointer to a subcommands array.
  232. * @param[in] help Pointer to a command help string.
  233. * @param[in] handler Pointer to a function handler.
  234. */
  235. #define SHELL_COND_CMD_REGISTER(flag, syntax, subcmd, help, handler) \
  236. SHELL_COND_CMD_ARG_REGISTER(flag, syntax, subcmd, help, handler, 0, 0)
  237. /**
  238. * @brief Macro for creating a subcommand set. It must be used outside of any
  239. * function body.
  240. *
  241. * Example usage:
  242. * SHELL_STATIC_SUBCMD_SET_CREATE(
  243. * foo,
  244. * SHELL_CMD(abc, ...),
  245. * SHELL_CMD(def, ...),
  246. * SHELL_SUBCMD_SET_END
  247. * )
  248. *
  249. * @param[in] name Name of the subcommand set.
  250. * @param[in] ... List of commands created with @ref SHELL_CMD_ARG or
  251. * or @ref SHELL_CMD
  252. */
  253. #define SHELL_STATIC_SUBCMD_SET_CREATE(name, ...) \
  254. static const struct shell_static_entry shell_##name[] = { \
  255. __VA_ARGS__ \
  256. }; \
  257. static const struct shell_cmd_entry name = { \
  258. .is_dynamic = false, \
  259. .u = { .entry = shell_##name } \
  260. }
  261. /**
  262. * @brief Define ending subcommands set.
  263. *
  264. */
  265. #define SHELL_SUBCMD_SET_END {NULL}
  266. /**
  267. * @brief Macro for creating a dynamic entry.
  268. *
  269. * @param[in] name Name of the dynamic entry.
  270. * @param[in] get Pointer to the function returning dynamic commands array
  271. */
  272. #define SHELL_DYNAMIC_CMD_CREATE(name, get) \
  273. static const struct shell_cmd_entry name = { \
  274. .is_dynamic = true, \
  275. .u = { .dynamic_get = get } \
  276. }
  277. /**
  278. * @brief Initializes a shell command with arguments.
  279. *
  280. * @note If a command will be called with wrong number of arguments shell will
  281. * print an error message and command handler will not be called.
  282. *
  283. * @param[in] syntax Command syntax (for example: history).
  284. * @param[in] subcmd Pointer to a subcommands array.
  285. * @param[in] help Pointer to a command help string.
  286. * @param[in] handler Pointer to a function handler.
  287. * @param[in] mand Number of mandatory arguments includig command name.
  288. * @param[in] opt Number of optional arguments.
  289. */
  290. #define SHELL_CMD_ARG(syntax, subcmd, help, handler, mand, opt) \
  291. SHELL_EXPR_CMD_ARG(1, syntax, subcmd, help, handler, mand, opt)
  292. /**
  293. * @brief Initializes a conditional shell command with arguments.
  294. *
  295. * @see SHELL_CMD_ARG. Based on the flag, creates a valid entry or an empty
  296. * command which is ignored by the shell. It is an alternative to \#ifdefs
  297. * around command registration and command handler. However, empty structure is
  298. * present in the flash even if command is disabled (subcommands and handler are
  299. * removed). Macro internally handles case if flag is not defined so flag must
  300. * be provided without any wrapper, e.g.: SHELL_COND_CMD_ARG(CONFIG_FOO, ...)
  301. *
  302. * @param[in] flag Compile time flag. Command is present only if flag
  303. * exists and equals 1.
  304. * @param[in] syntax Command syntax (for example: history).
  305. * @param[in] subcmd Pointer to a subcommands array.
  306. * @param[in] help Pointer to a command help string.
  307. * @param[in] handler Pointer to a function handler.
  308. * @param[in] mand Number of mandatory arguments includig command name.
  309. * @param[in] opt Number of optional arguments.
  310. */
  311. #define SHELL_COND_CMD_ARG(flag, syntax, subcmd, help, handler, mand, opt) \
  312. SHELL_EXPR_CMD_ARG(IS_ENABLED(flag), syntax, subcmd, help, \
  313. handler, mand, opt)
  314. /**
  315. * @brief Initializes a conditional shell command with arguments if expression
  316. * gives non-zero result at compile time.
  317. *
  318. * @see SHELL_CMD_ARG. Based on the expression, creates a valid entry or an
  319. * empty command which is ignored by the shell. It should be used instead of
  320. * @ref SHELL_COND_CMD_ARG if condition is not a single configuration flag,
  321. * e.g.:
  322. * SHELL_EXPR_CMD_ARG(IS_ENABLED(CONFIG_FOO) &&
  323. * IS_ENABLED(CONFIG_FOO_SETTING_1), ...)
  324. *
  325. * @param[in] _expr Expression.
  326. * @param[in] _syntax Command syntax (for example: history).
  327. * @param[in] _subcmd Pointer to a subcommands array.
  328. * @param[in] _help Pointer to a command help string.
  329. * @param[in] _handler Pointer to a function handler.
  330. * @param[in] _mand Number of mandatory arguments includig command name.
  331. * @param[in] _opt Number of optional arguments.
  332. */
  333. #define SHELL_EXPR_CMD_ARG(_expr, _syntax, _subcmd, _help, _handler, \
  334. _mand, _opt) \
  335. { \
  336. .syntax = (_expr) ? (const char *)STRINGIFY(_syntax) : "", \
  337. .help = (_expr) ? (const char *)_help : NULL, \
  338. .subcmd = (const struct shell_cmd_entry *)((_expr) ? \
  339. _subcmd : NULL), \
  340. .handler = (shell_cmd_handler)((_expr) ? _handler : NULL), \
  341. .args = { .mandatory = _mand, .optional = _opt} \
  342. }
  343. /**
  344. * @brief Initializes a shell command.
  345. *
  346. * @param[in] _syntax Command syntax (for example: history).
  347. * @param[in] _subcmd Pointer to a subcommands array.
  348. * @param[in] _help Pointer to a command help string.
  349. * @param[in] _handler Pointer to a function handler.
  350. */
  351. #define SHELL_CMD(_syntax, _subcmd, _help, _handler) \
  352. SHELL_CMD_ARG(_syntax, _subcmd, _help, _handler, 0, 0)
  353. /**
  354. * @brief Initializes a conditional shell command.
  355. *
  356. * @see SHELL_COND_CMD_ARG.
  357. *
  358. * @param[in] _flag Compile time flag. Command is present only if flag
  359. * exists and equals 1.
  360. * @param[in] _syntax Command syntax (for example: history).
  361. * @param[in] _subcmd Pointer to a subcommands array.
  362. * @param[in] _help Pointer to a command help string.
  363. * @param[in] _handler Pointer to a function handler.
  364. */
  365. #define SHELL_COND_CMD(_flag, _syntax, _subcmd, _help, _handler) \
  366. SHELL_COND_CMD_ARG(_flag, _syntax, _subcmd, _help, _handler, 0, 0)
  367. /**
  368. * @brief Initializes shell command if expression gives non-zero result at
  369. * compile time.
  370. *
  371. * @see SHELL_EXPR_CMD_ARG.
  372. *
  373. * @param[in] _expr Compile time expression. Command is present only if
  374. * expression is non-zero.
  375. * @param[in] _syntax Command syntax (for example: history).
  376. * @param[in] _subcmd Pointer to a subcommands array.
  377. * @param[in] _help Pointer to a command help string.
  378. * @param[in] _handler Pointer to a function handler.
  379. */
  380. #define SHELL_EXPR_CMD(_expr, _syntax, _subcmd, _help, _handler) \
  381. SHELL_EXPR_CMD_ARG(_expr, _syntax, _subcmd, _help, _handler, 0, 0)
  382. /* Internal macro used for creating handlers for dictionary commands. */
  383. #define Z_SHELL_CMD_DICT_HANDLER_CREATE(_data, _handler) \
  384. static int UTIL_CAT(cmd_dict_, GET_ARG_N(1, __DEBRACKET _data))( \
  385. const struct shell *shell, size_t argc, char **argv) \
  386. { \
  387. return _handler(shell, argc, argv, \
  388. (void *)GET_ARG_N(2, __DEBRACKET _data)); \
  389. }
  390. /* Internal macro used for creating dictionary commands. */
  391. #define SHELL_CMD_DICT_CREATE(_data) \
  392. SHELL_CMD_ARG(GET_ARG_N(1, __DEBRACKET _data), NULL, NULL, \
  393. UTIL_CAT(cmd_dict_, GET_ARG_N(1, __DEBRACKET _data)), 1, 0)
  394. /**
  395. * @brief Initializes shell dictionary commands.
  396. *
  397. * This is a special kind of static commands. Dictionary commands can be used
  398. * every time you want to use a pair: (string <-> corresponding data) in
  399. * a command handler. The string is usually a verbal description of a given
  400. * data. The idea is to use the string as a command syntax that can be prompted
  401. * by the shell and corresponding data can be used to process the command.
  402. *
  403. * @param[in] _name Name of the dictionary subcommand set
  404. * @param[in] _handler Command handler common for all dictionary commands.
  405. * @see shell_dict_cmd_handler
  406. * @param[in] ... Dictionary pairs: (command_syntax, value). Value will be
  407. * passed to the _handler as user data.
  408. *
  409. * Example usage:
  410. * static int my_handler(const struct shell *shell,
  411. * size_t argc, char **argv, void *data)
  412. * {
  413. * int val = (int)data;
  414. *
  415. * shell_print(shell, "(syntax, value) : (%s, %d)", argv[0], val);
  416. * return 0;
  417. * }
  418. *
  419. * SHELL_SUBCMD_DICT_SET_CREATE(sub_dict_cmds, my_handler,
  420. * (value_0, 0), (value_1, 1), (value_2, 2), (value_3, 3)
  421. * );
  422. * SHELL_CMD_REGISTER(dictionary, &sub_dict_cmds, NULL, NULL);
  423. */
  424. #define SHELL_SUBCMD_DICT_SET_CREATE(_name, _handler, ...) \
  425. FOR_EACH_FIXED_ARG(Z_SHELL_CMD_DICT_HANDLER_CREATE, (), \
  426. _handler, __VA_ARGS__) \
  427. SHELL_STATIC_SUBCMD_SET_CREATE(_name, \
  428. FOR_EACH(SHELL_CMD_DICT_CREATE, (,), __VA_ARGS__), \
  429. SHELL_SUBCMD_SET_END \
  430. )
  431. /**
  432. * @internal @brief Internal shell state in response to data received from the
  433. * terminal.
  434. */
  435. enum shell_receive_state {
  436. SHELL_RECEIVE_DEFAULT,
  437. SHELL_RECEIVE_ESC,
  438. SHELL_RECEIVE_ESC_SEQ,
  439. SHELL_RECEIVE_TILDE_EXP
  440. };
  441. /**
  442. * @internal @brief Internal shell state.
  443. */
  444. enum shell_state {
  445. SHELL_STATE_UNINITIALIZED,
  446. SHELL_STATE_INITIALIZED,
  447. SHELL_STATE_ACTIVE,
  448. SHELL_STATE_PANIC_MODE_ACTIVE, /*!< Panic activated.*/
  449. SHELL_STATE_PANIC_MODE_INACTIVE /*!< Panic requested, not supported.*/
  450. };
  451. /** @brief Shell transport event. */
  452. enum shell_transport_evt {
  453. SHELL_TRANSPORT_EVT_RX_RDY,
  454. SHELL_TRANSPORT_EVT_TX_RDY
  455. };
  456. typedef void (*shell_transport_handler_t)(enum shell_transport_evt evt,
  457. void *context);
  458. typedef void (*shell_uninit_cb_t)(const struct shell *shell, int res);
  459. /** @brief Bypass callback.
  460. *
  461. * @param shell Shell instance.
  462. * @param data Raw data from transport.
  463. * @param len Data length.
  464. */
  465. typedef void (*shell_bypass_cb_t)(const struct shell *shell,
  466. uint8_t *data,
  467. size_t len);
  468. struct shell_transport;
  469. /**
  470. * @brief Unified shell transport interface.
  471. */
  472. struct shell_transport_api {
  473. /**
  474. * @brief Function for initializing the shell transport interface.
  475. *
  476. * @param[in] transport Pointer to the transfer instance.
  477. * @param[in] config Pointer to instance configuration.
  478. * @param[in] evt_handler Event handler.
  479. * @param[in] context Pointer to the context passed to event
  480. * handler.
  481. *
  482. * @return Standard error code.
  483. */
  484. int (*init)(const struct shell_transport *transport,
  485. const void *config,
  486. shell_transport_handler_t evt_handler,
  487. void *context);
  488. /**
  489. * @brief Function for uninitializing the shell transport interface.
  490. *
  491. * @param[in] transport Pointer to the transfer instance.
  492. *
  493. * @return Standard error code.
  494. */
  495. int (*uninit)(const struct shell_transport *transport);
  496. /**
  497. * @brief Function for enabling transport in given TX mode.
  498. *
  499. * Function can be used to reconfigure TX to work in blocking mode.
  500. *
  501. * @param transport Pointer to the transfer instance.
  502. * @param blocking_tx If true, the transport TX is enabled in blocking
  503. * mode.
  504. *
  505. * @return NRF_SUCCESS on successful enabling, error otherwise (also if
  506. * not supported).
  507. */
  508. int (*enable)(const struct shell_transport *transport,
  509. bool blocking_tx);
  510. /**
  511. * @brief Function for writing data to the transport interface.
  512. *
  513. * @param[in] transport Pointer to the transfer instance.
  514. * @param[in] data Pointer to the source buffer.
  515. * @param[in] length Source buffer length.
  516. * @param[out] cnt Pointer to the sent bytes counter.
  517. *
  518. * @return Standard error code.
  519. */
  520. int (*write)(const struct shell_transport *transport,
  521. const void *data, size_t length, size_t *cnt);
  522. /**
  523. * @brief Function for reading data from the transport interface.
  524. *
  525. * @param[in] p_transport Pointer to the transfer instance.
  526. * @param[in] p_data Pointer to the destination buffer.
  527. * @param[in] length Destination buffer length.
  528. * @param[out] cnt Pointer to the received bytes counter.
  529. *
  530. * @return Standard error code.
  531. */
  532. int (*read)(const struct shell_transport *transport,
  533. void *data, size_t length, size_t *cnt);
  534. /**
  535. * @brief Function called in shell thread loop.
  536. *
  537. * Can be used for backend operations that require longer execution time
  538. *
  539. * @param[in] transport Pointer to the transfer instance.
  540. */
  541. void (*update)(const struct shell_transport *transport);
  542. };
  543. struct shell_transport {
  544. const struct shell_transport_api *api;
  545. void *ctx;
  546. };
  547. /**
  548. * @brief Shell statistics structure.
  549. */
  550. struct shell_stats {
  551. atomic_t log_lost_cnt; /*!< Lost log counter.*/
  552. };
  553. #ifdef CONFIG_SHELL_STATS
  554. #define Z_SHELL_STATS_DEFINE(_name) static struct shell_stats _name##_stats
  555. #define Z_SHELL_STATS_PTR(_name) (&(_name##_stats))
  556. #else
  557. #define Z_SHELL_STATS_DEFINE(_name)
  558. #define Z_SHELL_STATS_PTR(_name) NULL
  559. #endif /* CONFIG_SHELL_STATS */
  560. /**
  561. * @internal @brief Flags for internal shell usage.
  562. */
  563. struct shell_flags {
  564. uint32_t insert_mode :1; /*!< Controls insert mode for text introduction.*/
  565. uint32_t use_colors :1; /*!< Controls colored syntax.*/
  566. uint32_t echo :1; /*!< Controls shell echo.*/
  567. uint32_t obscure :1; /*!< If echo on, print asterisk instead */
  568. uint32_t processing :1; /*!< Shell is executing process function.*/
  569. uint32_t tx_rdy :1;
  570. uint32_t mode_delete :1; /*!< Operation mode of backspace key */
  571. uint32_t history_exit:1; /*!< Request to exit history mode */
  572. uint32_t last_nl :8; /*!< Last received new line character */
  573. uint32_t cmd_ctx :1; /*!< Shell is executing command */
  574. uint32_t print_noinit:1; /*!< Print request from not initialized shell*/
  575. };
  576. BUILD_ASSERT((sizeof(struct shell_flags) == sizeof(uint32_t)),
  577. "Structure must fit in 4 bytes");
  578. /**
  579. * @internal @brief Union for internal shell usage.
  580. */
  581. union shell_internal {
  582. uint32_t value;
  583. struct shell_flags flags;
  584. };
  585. enum shell_signal {
  586. SHELL_SIGNAL_RXRDY,
  587. SHELL_SIGNAL_LOG_MSG,
  588. SHELL_SIGNAL_KILL,
  589. SHELL_SIGNAL_TXDONE, /* TXDONE must be last one before SHELL_SIGNALS */
  590. SHELL_SIGNALS
  591. };
  592. /**
  593. * @brief Shell instance context.
  594. */
  595. struct shell_ctx {
  596. const char *prompt; /*!< shell current prompt. */
  597. enum shell_state state; /*!< Internal module state.*/
  598. enum shell_receive_state receive_state;/*!< Escape sequence indicator.*/
  599. /*!< Currently executed command.*/
  600. struct shell_static_entry active_cmd;
  601. /* New root command. If NULL shell uses default root commands. */
  602. const struct shell_static_entry *selected_cmd;
  603. /*!< VT100 color and cursor position, terminal width.*/
  604. struct shell_vt100_ctx vt100_ctx;
  605. /*!< Callback called from shell thread context when unitialization is
  606. * completed just before aborting shell thread.
  607. */
  608. shell_uninit_cb_t uninit_cb;
  609. /*!< When bypass is set, all incoming data is passed to the callback. */
  610. shell_bypass_cb_t bypass;
  611. #if defined CONFIG_SHELL_GETOPT
  612. /*!< getopt context for a shell backend. */
  613. struct getopt_state getopt_state;
  614. #endif
  615. uint16_t cmd_buff_len; /*!< Command length.*/
  616. uint16_t cmd_buff_pos; /*!< Command buffer cursor position.*/
  617. uint16_t cmd_tmp_buff_len; /*!< Command length in tmp buffer.*/
  618. /*!< Command input buffer.*/
  619. char cmd_buff[CONFIG_SHELL_CMD_BUFF_SIZE];
  620. /*!< Command temporary buffer.*/
  621. char temp_buff[CONFIG_SHELL_CMD_BUFF_SIZE];
  622. /*!< Printf buffer size.*/
  623. char printf_buff[CONFIG_SHELL_PRINTF_BUFF_SIZE];
  624. volatile union shell_internal internal; /*!< Internal shell data.*/
  625. struct k_poll_signal signals[SHELL_SIGNALS];
  626. /*!< Events that should be used only internally by shell thread.
  627. * Event for SHELL_SIGNAL_TXDONE is initialized but unused.
  628. */
  629. struct k_poll_event events[SHELL_SIGNALS];
  630. struct k_mutex wr_mtx;
  631. k_tid_t tid;
  632. };
  633. extern const struct log_backend_api log_backend_shell_api;
  634. /**
  635. * @brief Flags for setting shell output newline sequence.
  636. */
  637. enum shell_flag {
  638. SHELL_FLAG_CRLF_DEFAULT = (1<<0), /* Do not map CR or LF */
  639. SHELL_FLAG_OLF_CRLF = (1<<1) /* Map LF to CRLF on output */
  640. };
  641. /**
  642. * @brief Shell instance internals.
  643. */
  644. struct shell {
  645. const char *default_prompt; /*!< shell default prompt. */
  646. const struct shell_transport *iface; /*!< Transport interface.*/
  647. struct shell_ctx *ctx; /*!< Internal context.*/
  648. struct shell_history *history;
  649. const enum shell_flag shell_flag;
  650. const struct shell_fprintf *fprintf_ctx;
  651. struct shell_stats *stats;
  652. const struct shell_log_backend *log_backend;
  653. LOG_INSTANCE_PTR_DECLARE(log);
  654. const char *thread_name;
  655. struct k_thread *thread;
  656. k_thread_stack_t *stack;
  657. };
  658. extern void z_shell_print_stream(const void *user_ctx, const char *data,
  659. size_t data_len);
  660. /**
  661. * @brief Macro for defining a shell instance.
  662. *
  663. * @param[in] _name Instance name.
  664. * @param[in] _prompt Shell default prompt string.
  665. * @param[in] _transport_iface Pointer to the transport interface.
  666. * @param[in] _log_queue_size Logger processing queue size.
  667. * @param[in] _log_timeout Logger thread timeout in milliseconds on full
  668. * log queue. If queue is full logger thread is
  669. * blocked for given amount of time before log
  670. * message is dropped.
  671. * @param[in] _shell_flag Shell output newline sequence.
  672. */
  673. #define SHELL_DEFINE(_name, _prompt, _transport_iface, \
  674. _log_queue_size, _log_timeout, _shell_flag) \
  675. static const struct shell _name; \
  676. static struct shell_ctx UTIL_CAT(_name, _ctx); \
  677. static uint8_t _name##_out_buffer[CONFIG_SHELL_PRINTF_BUFF_SIZE]; \
  678. Z_SHELL_LOG_BACKEND_DEFINE(_name, _name##_out_buffer, \
  679. CONFIG_SHELL_PRINTF_BUFF_SIZE, \
  680. _log_queue_size, _log_timeout); \
  681. Z_SHELL_HISTORY_DEFINE(_name##_history, CONFIG_SHELL_HISTORY_BUFFER); \
  682. Z_SHELL_FPRINTF_DEFINE(_name##_fprintf, &_name, _name##_out_buffer, \
  683. CONFIG_SHELL_PRINTF_BUFF_SIZE, \
  684. true, z_shell_print_stream); \
  685. LOG_INSTANCE_REGISTER(shell, _name, CONFIG_SHELL_LOG_LEVEL); \
  686. Z_SHELL_STATS_DEFINE(_name); \
  687. static K_KERNEL_STACK_DEFINE(_name##_stack, CONFIG_SHELL_STACK_SIZE); \
  688. static struct k_thread _name##_thread; \
  689. static const STRUCT_SECTION_ITERABLE(shell, _name) = { \
  690. .default_prompt = _prompt, \
  691. .iface = _transport_iface, \
  692. .ctx = &UTIL_CAT(_name, _ctx), \
  693. .history = IS_ENABLED(CONFIG_SHELL_HISTORY) ? \
  694. &_name##_history : NULL, \
  695. .shell_flag = _shell_flag, \
  696. .fprintf_ctx = &_name##_fprintf, \
  697. .stats = Z_SHELL_STATS_PTR(_name), \
  698. .log_backend = Z_SHELL_LOG_BACKEND_PTR(_name), \
  699. LOG_INSTANCE_PTR_INIT(log, shell, _name) \
  700. .thread_name = STRINGIFY(_name), \
  701. .thread = &_name##_thread, \
  702. .stack = _name##_stack \
  703. }
  704. /**
  705. * @brief Function for initializing a transport layer and internal shell state.
  706. *
  707. * @param[in] shell Pointer to shell instance.
  708. * @param[in] transport_config Transport configuration during initialization.
  709. * @param[in] use_colors Enables colored prints.
  710. * @param[in] log_backend If true, the console will be used as logger
  711. * backend.
  712. * @param[in] init_log_level Default severity level for the logger.
  713. *
  714. * @return Standard error code.
  715. */
  716. int shell_init(const struct shell *shell, const void *transport_config,
  717. bool use_colors, bool log_backend, uint32_t init_log_level);
  718. /**
  719. * @brief Uninitializes the transport layer and the internal shell state.
  720. *
  721. * @param shell Pointer to shell instance.
  722. * @param cb Callback called when uninitialization is completed.
  723. *
  724. * @return Standard error code.
  725. */
  726. void shell_uninit(const struct shell *shell, shell_uninit_cb_t cb);
  727. /**
  728. * @brief Function for starting shell processing.
  729. *
  730. * @param shell Pointer to the shell instance.
  731. *
  732. * @return Standard error code.
  733. */
  734. int shell_start(const struct shell *shell);
  735. /**
  736. * @brief Function for stopping shell processing.
  737. *
  738. * @param shell Pointer to shell instance.
  739. *
  740. * @return Standard error code.
  741. */
  742. int shell_stop(const struct shell *shell);
  743. /**
  744. * @brief Terminal default text color for shell_fprintf function.
  745. */
  746. #define SHELL_NORMAL SHELL_VT100_COLOR_DEFAULT
  747. /**
  748. * @brief Green text color for shell_fprintf function.
  749. */
  750. #define SHELL_INFO SHELL_VT100_COLOR_GREEN
  751. /**
  752. * @brief Cyan text color for shell_fprintf function.
  753. */
  754. #define SHELL_OPTION SHELL_VT100_COLOR_CYAN
  755. /**
  756. * @brief Yellow text color for shell_fprintf function.
  757. */
  758. #define SHELL_WARNING SHELL_VT100_COLOR_YELLOW
  759. /**
  760. * @brief Red text color for shell_fprintf function.
  761. */
  762. #define SHELL_ERROR SHELL_VT100_COLOR_RED
  763. /**
  764. * @brief printf-like function which sends formatted data stream to the shell.
  765. *
  766. * This function can be used from the command handler or from threads, but not
  767. * from an interrupt context.
  768. *
  769. * @param[in] shell Pointer to the shell instance.
  770. * @param[in] color Printed text color.
  771. * @param[in] fmt Format string.
  772. * @param[in] ... List of parameters to print.
  773. */
  774. void shell_fprintf(const struct shell *shell, enum shell_vt100_color color,
  775. const char *fmt, ...);
  776. /**
  777. * @brief vprintf-like function which sends formatted data stream to the shell.
  778. *
  779. * This function can be used from the command handler or from threads, but not
  780. * from an interrupt context. It is similar to shell_fprintf() but takes a
  781. * va_list instead of variable arguments.
  782. *
  783. * @param[in] shell Pointer to the shell instance.
  784. * @param[in] color Printed text color.
  785. * @param[in] fmt Format string.
  786. * @param[in] args List of parameters to print.
  787. */
  788. void shell_vfprintf(const struct shell *shell, enum shell_vt100_color color,
  789. const char *fmt, va_list args);
  790. /**
  791. * @brief Print a line of data in hexadecimal format.
  792. *
  793. * Each line shows the offset, bytes and then ASCII representation.
  794. *
  795. * For example:
  796. *
  797. * 00008010: 20 25 00 20 2f 48 00 08 80 05 00 20 af 46 00
  798. * | %. /H.. ... .F. |
  799. *
  800. * @param[in] shell Pointer to the shell instance.
  801. * @param[in] offset Offset to show for this line.
  802. * @param[in] data Pointer to data.
  803. * @param[in] len Length of data.
  804. */
  805. void shell_hexdump_line(const struct shell *shell, unsigned int offset,
  806. const uint8_t *data, size_t len);
  807. /**
  808. * @brief Print data in hexadecimal format.
  809. *
  810. * @param[in] shell Pointer to the shell instance.
  811. * @param[in] data Pointer to data.
  812. * @param[in] len Length of data.
  813. */
  814. void shell_hexdump(const struct shell *shell, const uint8_t *data, size_t len);
  815. /**
  816. * @brief Print info message to the shell.
  817. *
  818. * See @ref shell_fprintf.
  819. *
  820. * @param[in] _sh Pointer to the shell instance.
  821. * @param[in] _ft Format string.
  822. * @param[in] ... List of parameters to print.
  823. */
  824. #define shell_info(_sh, _ft, ...) \
  825. shell_fprintf(_sh, SHELL_INFO, _ft "\n", ##__VA_ARGS__)
  826. /**
  827. * @brief Print normal message to the shell.
  828. *
  829. * See @ref shell_fprintf.
  830. *
  831. * @param[in] _sh Pointer to the shell instance.
  832. * @param[in] _ft Format string.
  833. * @param[in] ... List of parameters to print.
  834. */
  835. #define shell_print(_sh, _ft, ...) \
  836. shell_fprintf(_sh, SHELL_NORMAL, _ft "\n", ##__VA_ARGS__)
  837. /**
  838. * @brief Print warning message to the shell.
  839. *
  840. * See @ref shell_fprintf.
  841. *
  842. * @param[in] _sh Pointer to the shell instance.
  843. * @param[in] _ft Format string.
  844. * @param[in] ... List of parameters to print.
  845. */
  846. #define shell_warn(_sh, _ft, ...) \
  847. shell_fprintf(_sh, SHELL_WARNING, _ft "\n", ##__VA_ARGS__)
  848. /**
  849. * @brief Print error message to the shell.
  850. *
  851. * See @ref shell_fprintf.
  852. *
  853. * @param[in] _sh Pointer to the shell instance.
  854. * @param[in] _ft Format string.
  855. * @param[in] ... List of parameters to print.
  856. */
  857. #define shell_error(_sh, _ft, ...) \
  858. shell_fprintf(_sh, SHELL_ERROR, _ft "\n", ##__VA_ARGS__)
  859. /**
  860. * @brief Process function, which should be executed when data is ready in the
  861. * transport interface. To be used if shell thread is disabled.
  862. *
  863. * @param[in] shell Pointer to the shell instance.
  864. */
  865. void shell_process(const struct shell *shell);
  866. /**
  867. * @brief Change displayed shell prompt.
  868. *
  869. * @param[in] shell Pointer to the shell instance.
  870. * @param[in] prompt New shell prompt.
  871. *
  872. * @return 0 Success.
  873. * @return -EINVAL Pointer to new prompt is not correct.
  874. */
  875. int shell_prompt_change(const struct shell *shell, const char *prompt);
  876. /**
  877. * @brief Prints the current command help.
  878. *
  879. * Function will print a help string with: the currently entered command
  880. * and subcommands (if they exist).
  881. *
  882. * @param[in] shell Pointer to the shell instance.
  883. */
  884. void shell_help(const struct shell *shell);
  885. /* @brief Command's help has been printed */
  886. #define SHELL_CMD_HELP_PRINTED (1)
  887. #if defined CONFIG_SHELL_GETOPT
  888. /**
  889. * @brief Parses the command-line arguments.
  890. *
  891. * It is based on FreeBSD implementation.
  892. *
  893. * @param[in] shell Pointer to the shell instance.
  894. * @param[in] argc Arguments count.
  895. * @param[in] argv Arguments.
  896. * @param[in] ostr String containing the legitimate option characters.
  897. *
  898. * @return If an option was successfully found, function returns
  899. * the option character.
  900. * @return If options have been detected that is not in @p ostr
  901. * function will return '?'.
  902. * If function encounters an option with a missing
  903. * argument, then the return value depends on the first
  904. * character in optstring: if it is ':', then ':' is
  905. * returned; otherwise '?' is returned.
  906. * @return -1 If all options have been parsed.
  907. */
  908. int shell_getopt(const struct shell *shell, int argc, char *const argv[],
  909. const char *ostr);
  910. /**
  911. * @brief Returns shell_getopt state.
  912. *
  913. * @param[in] shell Pointer to the shell instance.
  914. *
  915. * @return Pointer to struct getopt_state.
  916. */
  917. struct getopt_state *shell_getopt_state_get(const struct shell *shell);
  918. #endif /* CONFIG_SHELL_GETOPT */
  919. /** @brief Execute command.
  920. *
  921. * Pass command line to shell to execute.
  922. *
  923. * Note: This by no means makes any of the commands a stable interface, so
  924. * this function should only be used for debugging/diagnostic.
  925. *
  926. * This function must not be called from shell command context!
  927. *
  928. * @param[in] shell Pointer to the shell instance.
  929. * It can be NULL when the
  930. * @kconfig{CONFIG_SHELL_BACKEND_DUMMY} option is enabled.
  931. * @param[in] cmd Command to be executed.
  932. *
  933. * @return Result of the execution
  934. */
  935. int shell_execute_cmd(const struct shell *shell, const char *cmd);
  936. /** @brief Set root command for all shell instances.
  937. *
  938. * It allows setting from the code the root command. It is an equivalent of
  939. * calling select command with one of the root commands as the argument
  940. * (e.g "select log") except it sets command for all shell instances.
  941. *
  942. * @param cmd String with one of the root commands or null pointer to reset.
  943. *
  944. * @retval 0 if root command is set.
  945. * @retval -EINVAL if invalid root command is provided.
  946. */
  947. int shell_set_root_cmd(const char *cmd);
  948. /** @brief Set bypass callback.
  949. *
  950. * Bypass callback is called whenever data is received. Shell is bypassed and
  951. * data is passed directly to the callback. Use null to disable bypass functionality.
  952. *
  953. * @param[in] shell Pointer to the shell instance.
  954. * @param[in] bypass Bypass callback or null to disable.
  955. */
  956. void shell_set_bypass(const struct shell *shell, shell_bypass_cb_t bypass);
  957. /**
  958. * @brief Allow application to control text insert mode.
  959. * Value is modified atomically and the previous value is returned.
  960. *
  961. * @param[in] shell Pointer to the shell instance.
  962. * @param[in] val Insert mode.
  963. *
  964. * @retval 0 or 1: previous value
  965. * @retval -EINVAL if shell is NULL.
  966. */
  967. int shell_insert_mode_set(const struct shell *shell, bool val);
  968. /**
  969. * @brief Allow application to control whether terminal output uses colored
  970. * syntax.
  971. * Value is modified atomically and the previous value is returned.
  972. *
  973. * @param[in] shell Pointer to the shell instance.
  974. * @param[in] val Color mode.
  975. *
  976. * @retval 0 or 1: previous value
  977. * @retval -EINVAL if shell is NULL.
  978. */
  979. int shell_use_colors_set(const struct shell *shell, bool val);
  980. /**
  981. * @brief Allow application to control whether user input is echoed back.
  982. * Value is modified atomically and the previous value is returned.
  983. *
  984. * @param[in] shell Pointer to the shell instance.
  985. * @param[in] val Echo mode.
  986. *
  987. * @retval 0 or 1: previous value
  988. * @retval -EINVAL if shell is NULL.
  989. */
  990. int shell_echo_set(const struct shell *shell, bool val);
  991. /**
  992. * @brief Allow application to control whether user input is obscured with
  993. * asterisks -- useful for implementing passwords.
  994. * Value is modified atomically and the previous value is returned.
  995. *
  996. * @param[in] shell Pointer to the shell instance.
  997. * @param[in] obscure Obscure mode.
  998. *
  999. * @retval 0 or 1: previous value.
  1000. * @retval -EINVAL if shell is NULL.
  1001. */
  1002. int shell_obscure_set(const struct shell *shell, bool obscure);
  1003. /**
  1004. * @brief Allow application to control whether the delete key backspaces or
  1005. * deletes.
  1006. * Value is modified atomically and the previous value is returned.
  1007. *
  1008. * @param[in] shell Pointer to the shell instance.
  1009. * @param[in] val Delete mode.
  1010. *
  1011. * @retval 0 or 1: previous value
  1012. * @retval -EINVAL if shell is NULL.
  1013. */
  1014. int shell_mode_delete_set(const struct shell *shell, bool val);
  1015. /**
  1016. * @}
  1017. */
  1018. #ifdef __cplusplus
  1019. }
  1020. #endif
  1021. #endif /* SHELL_H__ */