shell_dummy.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Shell backend used for testing
  3. *
  4. * Copyright (c) 2018 Nordic Semiconductor ASA
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. #include <shell/shell_dummy.h>
  9. #include <init.h>
  10. SHELL_DUMMY_DEFINE(shell_transport_dummy);
  11. SHELL_DEFINE(shell_dummy, CONFIG_SHELL_PROMPT_DUMMY, &shell_transport_dummy, 1,
  12. 0, SHELL_FLAG_OLF_CRLF);
  13. static int init(const struct shell_transport *transport,
  14. const void *config,
  15. shell_transport_handler_t evt_handler,
  16. void *context)
  17. {
  18. struct shell_dummy *sh_dummy = (struct shell_dummy *)transport->ctx;
  19. if (sh_dummy->initialized) {
  20. return -EINVAL;
  21. }
  22. sh_dummy->initialized = true;
  23. return 0;
  24. }
  25. static int uninit(const struct shell_transport *transport)
  26. {
  27. struct shell_dummy *sh_dummy = (struct shell_dummy *)transport->ctx;
  28. if (!sh_dummy->initialized) {
  29. return -ENODEV;
  30. }
  31. sh_dummy->initialized = false;
  32. return 0;
  33. }
  34. static int enable(const struct shell_transport *transport, bool blocking)
  35. {
  36. struct shell_dummy *sh_dummy = (struct shell_dummy *)transport->ctx;
  37. if (!sh_dummy->initialized) {
  38. return -ENODEV;
  39. }
  40. return 0;
  41. }
  42. static int write(const struct shell_transport *transport,
  43. const void *data, size_t length, size_t *cnt)
  44. {
  45. struct shell_dummy *sh_dummy = (struct shell_dummy *)transport->ctx;
  46. size_t store_cnt;
  47. if (!sh_dummy->initialized) {
  48. *cnt = 0;
  49. return -ENODEV;
  50. }
  51. store_cnt = length;
  52. if (sh_dummy->len + store_cnt >= sizeof(sh_dummy->buf)) {
  53. store_cnt = sizeof(sh_dummy->buf) - sh_dummy->len - 1;
  54. }
  55. memcpy(sh_dummy->buf + sh_dummy->len, data, store_cnt);
  56. sh_dummy->len += store_cnt;
  57. *cnt = length;
  58. return 0;
  59. }
  60. static int read(const struct shell_transport *transport,
  61. void *data, size_t length, size_t *cnt)
  62. {
  63. struct shell_dummy *sh_dummy = (struct shell_dummy *)transport->ctx;
  64. if (!sh_dummy->initialized) {
  65. return -ENODEV;
  66. }
  67. *cnt = 0;
  68. return 0;
  69. }
  70. const struct shell_transport_api shell_dummy_transport_api = {
  71. .init = init,
  72. .uninit = uninit,
  73. .enable = enable,
  74. .write = write,
  75. .read = read
  76. };
  77. static int enable_shell_dummy(const struct device *arg)
  78. {
  79. ARG_UNUSED(arg);
  80. shell_init(&shell_dummy, NULL, true, true, LOG_LEVEL_INF);
  81. return 0;
  82. }
  83. SYS_INIT(enable_shell_dummy, POST_KERNEL, 0);
  84. const struct shell *shell_backend_dummy_get_ptr(void)
  85. {
  86. return &shell_dummy;
  87. }
  88. const char *shell_backend_dummy_get_output(const struct shell *shell,
  89. size_t *sizep)
  90. {
  91. struct shell_dummy *sh_dummy = (struct shell_dummy *)shell->iface->ctx;
  92. sh_dummy->buf[sh_dummy->len] = '\0';
  93. *sizep = sh_dummy->len;
  94. sh_dummy->len = 0;
  95. return sh_dummy->buf;
  96. }
  97. void shell_backend_dummy_clear_output(const struct shell *shell)
  98. {
  99. struct shell_dummy *sh_dummy = (struct shell_dummy *)shell->iface->ctx;
  100. sh_dummy->buf[0] = '\0';
  101. sh_dummy->len = 0;
  102. }