shell_ops.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_OPS_H__
  7. #define SHELL_OPS_H__
  8. #include <stdbool.h>
  9. #include <shell/shell.h>
  10. #include "shell_vt100.h"
  11. #include "shell_utils.h"
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. static inline void z_shell_raw_fprintf(const struct shell_fprintf *const ctx,
  16. const char *fmt, ...)
  17. {
  18. va_list args;
  19. va_start(args, fmt);
  20. z_shell_fprintf_fmt(ctx, fmt, args);
  21. va_end(args);
  22. }
  23. /* Macro to send VT100 commands. */
  24. #define Z_SHELL_VT100_CMD(_shell_, _cmd_) \
  25. do { \
  26. if (!IS_ENABLED(CONFIG_SHELL_VT100_COMMANDS)) \
  27. break; \
  28. \
  29. static const char cmd[] = _cmd_; \
  30. z_shell_raw_fprintf(_shell_->fprintf_ctx, "%s", cmd); \
  31. } while (0)
  32. /* Function sends VT100 command to clear the screen from cursor position to
  33. * end of the screen.
  34. */
  35. static inline void z_clear_eos(const struct shell *shell)
  36. {
  37. Z_SHELL_VT100_CMD(shell, SHELL_VT100_CLEAREOS);
  38. }
  39. /* Function sends VT100 command to save cursor position. */
  40. static inline void z_cursor_save(const struct shell *shell)
  41. {
  42. Z_SHELL_VT100_CMD(shell, SHELL_VT100_SAVECURSOR);
  43. }
  44. /* Function sends VT100 command to restore saved cursor position. */
  45. static inline void z_cursor_restore(const struct shell *shell)
  46. {
  47. Z_SHELL_VT100_CMD(shell, SHELL_VT100_RESTORECURSOR);
  48. }
  49. /* Function forcing new line - cannot be replaced with function
  50. * cursor_down_move.
  51. */
  52. static inline void z_cursor_next_line_move(const struct shell *shell)
  53. {
  54. z_shell_raw_fprintf(shell->fprintf_ctx, "\n");
  55. }
  56. #define Z_SHELL_SET_FLAG_ATOMIC(_shell_, _flag_, _val_, _ret_) \
  57. do { \
  58. union shell_internal _internal_; \
  59. atomic_t *_dst_ = (atomic_t *)&(_shell_)->ctx->internal.value; \
  60. _internal_.value = 0U; \
  61. _internal_.flags._flag_ = 1U; \
  62. if (_val_) { \
  63. _internal_.value = atomic_or(_dst_, \
  64. _internal_.value); \
  65. } else { \
  66. _internal_.value = atomic_and(_dst_, \
  67. ~_internal_.value); \
  68. } \
  69. _ret_ = (_internal_.flags._flag_ != 0); \
  70. } while (0)
  71. static inline bool z_flag_insert_mode_get(const struct shell *shell)
  72. {
  73. return shell->ctx->internal.flags.insert_mode == 1;
  74. }
  75. static inline bool z_flag_insert_mode_set(const struct shell *shell, bool val)
  76. {
  77. bool ret;
  78. Z_SHELL_SET_FLAG_ATOMIC(shell, insert_mode, val, ret);
  79. return ret;
  80. }
  81. static inline bool z_flag_use_colors_get(const struct shell *shell)
  82. {
  83. return shell->ctx->internal.flags.use_colors == 1;
  84. }
  85. static inline bool z_flag_use_colors_set(const struct shell *shell, bool val)
  86. {
  87. bool ret;
  88. Z_SHELL_SET_FLAG_ATOMIC(shell, use_colors, val, ret);
  89. return ret;
  90. }
  91. static inline bool z_flag_echo_get(const struct shell *shell)
  92. {
  93. return shell->ctx->internal.flags.echo == 1;
  94. }
  95. static inline bool z_flag_echo_set(const struct shell *shell, bool val)
  96. {
  97. bool ret;
  98. Z_SHELL_SET_FLAG_ATOMIC(shell, echo, val, ret);
  99. return ret;
  100. }
  101. static inline bool z_flag_obscure_get(const struct shell *shell)
  102. {
  103. return shell->ctx->internal.flags.obscure == 1;
  104. }
  105. static inline bool z_flag_obscure_set(const struct shell *shell, bool val)
  106. {
  107. bool ret;
  108. Z_SHELL_SET_FLAG_ATOMIC(shell, obscure, val, ret);
  109. return ret;
  110. }
  111. static inline bool z_flag_processing_get(const struct shell *shell)
  112. {
  113. return shell->ctx->internal.flags.processing == 1;
  114. }
  115. static inline bool z_flag_processing_set(const struct shell *shell, bool val)
  116. {
  117. bool ret;
  118. Z_SHELL_SET_FLAG_ATOMIC(shell, processing, val, ret);
  119. return ret;
  120. }
  121. static inline bool z_flag_tx_rdy_get(const struct shell *shell)
  122. {
  123. return shell->ctx->internal.flags.tx_rdy == 1;
  124. }
  125. static inline bool z_flag_tx_rdy_set(const struct shell *shell, bool val)
  126. {
  127. bool ret;
  128. Z_SHELL_SET_FLAG_ATOMIC(shell, tx_rdy, val, ret);
  129. return ret;
  130. }
  131. static inline bool z_flag_mode_delete_get(const struct shell *shell)
  132. {
  133. return shell->ctx->internal.flags.mode_delete == 1;
  134. }
  135. static inline bool z_flag_mode_delete_set(const struct shell *shell, bool val)
  136. {
  137. bool ret;
  138. Z_SHELL_SET_FLAG_ATOMIC(shell, mode_delete, val, ret);
  139. return ret;
  140. }
  141. static inline bool z_flag_history_exit_get(const struct shell *shell)
  142. {
  143. return shell->ctx->internal.flags.history_exit == 1;
  144. }
  145. static inline bool z_flag_history_exit_set(const struct shell *shell, bool val)
  146. {
  147. bool ret;
  148. Z_SHELL_SET_FLAG_ATOMIC(shell, history_exit, val, ret);
  149. return ret;
  150. }
  151. static inline bool z_flag_cmd_ctx_get(const struct shell *shell)
  152. {
  153. return shell->ctx->internal.flags.cmd_ctx == 1;
  154. }
  155. static inline bool z_flag_cmd_ctx_set(const struct shell *shell, bool val)
  156. {
  157. bool ret;
  158. Z_SHELL_SET_FLAG_ATOMIC(shell, cmd_ctx, val, ret);
  159. return ret;
  160. }
  161. static inline uint8_t z_flag_last_nl_get(const struct shell *shell)
  162. {
  163. return shell->ctx->internal.flags.last_nl;
  164. }
  165. static inline void z_flag_last_nl_set(const struct shell *shell, uint8_t val)
  166. {
  167. shell->ctx->internal.flags.last_nl = val;
  168. }
  169. static inline bool z_flag_print_noinit_get(const struct shell *shell)
  170. {
  171. return shell->ctx->internal.flags.print_noinit == 1;
  172. }
  173. static inline bool z_flag_print_noinit_set(const struct shell *shell, bool val)
  174. {
  175. bool ret;
  176. Z_SHELL_SET_FLAG_ATOMIC(shell, print_noinit, val, ret);
  177. return ret;
  178. }
  179. void z_shell_op_cursor_vert_move(const struct shell *shell, int32_t delta);
  180. void z_shell_op_cursor_horiz_move(const struct shell *shell, int32_t delta);
  181. void z_shell_op_cond_next_line(const struct shell *shell);
  182. /* Function will move cursor back to position == cmd_buff_pos. Example usage is
  183. * when cursor needs to be moved back after printing some text. This function
  184. * cannot be used to move cursor to new location by manual change of
  185. * cmd_buff_pos.
  186. */
  187. void z_shell_op_cursor_position_synchronize(const struct shell *shell);
  188. void z_shell_op_cursor_move(const struct shell *shell, int16_t val);
  189. void z_shell_op_left_arrow(const struct shell *shell);
  190. void z_shell_op_right_arrow(const struct shell *shell);
  191. /* Moves cursor by defined number of words left (val negative) or right. */
  192. void z_shell_op_cursor_word_move(const struct shell *shell, int16_t val);
  193. /*
  194. * Removes the "word" to the left of the cursor:
  195. * - if there are spaces at the cursor position, remove all spaces to the left
  196. * - remove the non-spaces (word) until a space is found or a beginning of
  197. * buffer
  198. */
  199. void z_shell_op_word_remove(const struct shell *shell);
  200. /* Function moves cursor to begin of command position, just after console
  201. * name.
  202. */
  203. void z_shell_op_cursor_home_move(const struct shell *shell);
  204. /* Function moves cursor to end of command. */
  205. void z_shell_op_cursor_end_move(const struct shell *shell);
  206. void z_shell_op_char_insert(const struct shell *shell, char data);
  207. void z_shell_op_char_backspace(const struct shell *shell);
  208. void z_shell_op_char_delete(const struct shell *shell);
  209. void z_shell_op_delete_from_cursor(const struct shell *shell);
  210. void z_shell_op_completion_insert(const struct shell *shell,
  211. const char *compl,
  212. uint16_t compl_len);
  213. bool z_shell_cursor_in_empty_line(const struct shell *shell);
  214. void z_shell_cmd_line_erase(const struct shell *shell);
  215. /**
  216. * @brief Print command buffer.
  217. *
  218. * @param shell Shell instance.
  219. */
  220. void z_shell_print_cmd(const struct shell *shell);
  221. /**
  222. * @brief Print prompt followed by command buffer.
  223. *
  224. * @param shell Shell instance.
  225. */
  226. void z_shell_print_prompt_and_cmd(const struct shell *shell);
  227. /* Function sends data stream to the shell instance. Each time before the
  228. * shell_write function is called, it must be ensured that IO buffer of fprintf
  229. * is flushed to avoid synchronization issues.
  230. * For that purpose, use function transport_buffer_flush(shell)
  231. *
  232. * This function can be only used by shell module, it shall not be called
  233. * directly.
  234. */
  235. void z_shell_write(const struct shell *shell, const void *data, size_t length);
  236. /**
  237. * @internal @brief This function shall not be used directly, it is required by
  238. * the fprintf module.
  239. *
  240. * @param[in] p_user_ctx Pointer to the context for the shell instance.
  241. * @param[in] p_data Pointer to the data buffer.
  242. * @param[in] len Data buffer size.
  243. */
  244. void z_shell_print_stream(const void *user_ctx, const char *data, size_t len);
  245. /** @internal @brief Function for setting font color */
  246. void z_shell_vt100_color_set(const struct shell *shell,
  247. enum shell_vt100_color color);
  248. static inline void z_shell_vt100_colors_store(const struct shell *shell,
  249. struct shell_vt100_colors *color)
  250. {
  251. memcpy(color, &shell->ctx->vt100_ctx.col, sizeof(*color));
  252. }
  253. void z_shell_vt100_colors_restore(const struct shell *shell,
  254. const struct shell_vt100_colors *color);
  255. /* This function can be called only within shell thread but not from command
  256. * handlers.
  257. */
  258. void z_shell_fprintf(const struct shell *shell, enum shell_vt100_color color,
  259. const char *fmt, ...);
  260. void z_shell_vfprintf(const struct shell *shell, enum shell_vt100_color color,
  261. const char *fmt, va_list args);
  262. #ifdef __cplusplus
  263. }
  264. #endif
  265. #endif /* SHELL_OPS_H__ */