shell_fprintf.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <shell/shell_fprintf.h>
  7. #include <shell/shell.h>
  8. #include <sys/cbprintf.h>
  9. static int out_func(int c, void *ctx)
  10. {
  11. const struct shell_fprintf *sh_fprintf;
  12. const struct shell *shell;
  13. sh_fprintf = (const struct shell_fprintf *)ctx;
  14. shell = (const struct shell *)sh_fprintf->user_ctx;
  15. if ((shell->shell_flag == SHELL_FLAG_OLF_CRLF) && (c == '\n')) {
  16. (void)out_func('\r', ctx);
  17. }
  18. sh_fprintf->buffer[sh_fprintf->ctrl_blk->buffer_cnt] = (uint8_t)c;
  19. sh_fprintf->ctrl_blk->buffer_cnt++;
  20. if (sh_fprintf->ctrl_blk->buffer_cnt == sh_fprintf->buffer_size) {
  21. z_shell_fprintf_buffer_flush(sh_fprintf);
  22. }
  23. return 0;
  24. }
  25. void z_shell_fprintf_fmt(const struct shell_fprintf *sh_fprintf,
  26. const char *fmt, va_list args)
  27. {
  28. (void)cbvprintf(out_func, (void *)sh_fprintf, fmt, args);
  29. if (sh_fprintf->ctrl_blk->autoflush) {
  30. z_shell_fprintf_buffer_flush(sh_fprintf);
  31. }
  32. }
  33. void z_shell_fprintf_buffer_flush(const struct shell_fprintf *sh_fprintf)
  34. {
  35. sh_fprintf->fwrite(sh_fprintf->user_ctx, sh_fprintf->buffer,
  36. sh_fprintf->ctrl_blk->buffer_cnt);
  37. sh_fprintf->ctrl_blk->buffer_cnt = 0;
  38. }