shell_fprintf.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_FPRINTF_H__
  7. #define SHELL_FPRINTF_H__
  8. #include <zephyr.h>
  9. #include <stdbool.h>
  10. #include <stddef.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. typedef void (*shell_fprintf_fwrite)(const void *user_ctx,
  15. const char *data,
  16. size_t length);
  17. struct shell_fprintf_control_block {
  18. size_t buffer_cnt;
  19. bool autoflush;
  20. };
  21. /**
  22. * @brief fprintf context
  23. */
  24. struct shell_fprintf {
  25. uint8_t *buffer;
  26. size_t buffer_size;
  27. shell_fprintf_fwrite fwrite;
  28. const void *user_ctx;
  29. struct shell_fprintf_control_block *ctrl_blk;
  30. };
  31. /**
  32. * @brief Macro for defining shell_fprintf instance.
  33. *
  34. * @param _name Instance name.
  35. * @param _user_ctx Pointer to user data.
  36. * @param _buf Pointer to output buffer
  37. * @param _size Size of output buffer.
  38. * @param _autoflush Indicator if buffer shall be automatically flush.
  39. * @param _fwrite Pointer to function sending data stream.
  40. */
  41. #define Z_SHELL_FPRINTF_DEFINE(_name, _user_ctx, _buf, _size, \
  42. _autoflush, _fwrite) \
  43. static struct shell_fprintf_control_block \
  44. _name##_shell_fprintf_ctx = { \
  45. .autoflush = _autoflush, \
  46. .buffer_cnt = 0 \
  47. }; \
  48. static const struct shell_fprintf _name = { \
  49. .buffer = _buf, \
  50. .buffer_size = _size, \
  51. .fwrite = _fwrite, \
  52. .user_ctx = _user_ctx, \
  53. .ctrl_blk = &_name##_shell_fprintf_ctx \
  54. }
  55. /**
  56. * @brief fprintf like function which send formatted data stream to output.
  57. *
  58. * @param sh_fprintf fprintf instance.
  59. * @param fmt Format string.
  60. * @param args List of parameters to print.
  61. */
  62. void z_shell_fprintf_fmt(const struct shell_fprintf *sh_fprintf,
  63. char const *fmt, va_list args);
  64. /**
  65. * @brief function flushing data stored in io_buffer.
  66. *
  67. * @param sh_fprintf fprintf instance
  68. */
  69. void z_shell_fprintf_buffer_flush(const struct shell_fprintf *sh_fprintf);
  70. #ifdef __cplusplus
  71. }
  72. #endif
  73. #endif /* SHELL_FPRINTF_H__ */