ringbuffer.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (c) 2006-2023, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-08-14 Jackistang add comments for function interface.
  9. */
  10. #ifndef RINGBUFFER_H__
  11. #define RINGBUFFER_H__
  12. #include <rtdef.h>
  13. #include <rtconfig.h>
  14. #include <rtthread.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /* ring buffer */
  19. struct rt_ringbuffer
  20. {
  21. rt_uint8_t *buffer_ptr;
  22. /* use the msb of the {read,write}_index as mirror bit. You can see this as
  23. * if the buffer adds a virtual mirror and the pointers point either to the
  24. * normal or to the mirrored buffer. If the write_index has the same value
  25. * with the read_index, but in a different mirror, the buffer is full.
  26. * While if the write_index and the read_index are the same and within the
  27. * same mirror, the buffer is empty. The ASCII art of the ringbuffer is:
  28. *
  29. * mirror = 0 mirror = 1
  30. * +---+---+---+---+---+---+---+|+~~~+~~~+~~~+~~~+~~~+~~~+~~~+
  31. * | 0 | 1 | 2 | 3 | 4 | 5 | 6 ||| 0 | 1 | 2 | 3 | 4 | 5 | 6 | Full
  32. * +---+---+---+---+---+---+---+|+~~~+~~~+~~~+~~~+~~~+~~~+~~~+
  33. * read_idx-^ write_idx-^
  34. *
  35. * +---+---+---+---+---+---+---+|+~~~+~~~+~~~+~~~+~~~+~~~+~~~+
  36. * | 0 | 1 | 2 | 3 | 4 | 5 | 6 ||| 0 | 1 | 2 | 3 | 4 | 5 | 6 | Empty
  37. * +---+---+---+---+---+---+---+|+~~~+~~~+~~~+~~~+~~~+~~~+~~~+
  38. * read_idx-^ ^-write_idx
  39. */
  40. rt_uint32_t read_mirror : 1;
  41. rt_uint32_t read_index : 31;
  42. rt_uint32_t write_mirror : 1;
  43. rt_uint32_t write_index : 31;
  44. /* as we use msb of index as mirror bit, the size should be signed and
  45. * could only be positive. */
  46. rt_int32_t buffer_size;
  47. };
  48. enum rt_ringbuffer_state
  49. {
  50. RT_RINGBUFFER_EMPTY,
  51. RT_RINGBUFFER_FULL,
  52. /* half full is neither full nor empty */
  53. RT_RINGBUFFER_HALFFULL,
  54. };
  55. /**
  56. * RingBuffer for DeviceDriver
  57. *
  58. * Please note that the ring buffer implementation of RT-Thread
  59. * has no thread wait or resume feature.
  60. */
  61. void rt_ringbuffer_init(struct rt_ringbuffer *rb, rt_uint8_t *pool, rt_int32_t size);
  62. void rt_ringbuffer_reset(struct rt_ringbuffer *rb);
  63. rt_size_t rt_ringbuffer_put(struct rt_ringbuffer *rb, const rt_uint8_t *ptr, rt_uint32_t length);
  64. rt_size_t rt_ringbuffer_put_force(struct rt_ringbuffer *rb, const rt_uint8_t *ptr, rt_uint32_t length);
  65. rt_size_t rt_ringbuffer_putchar(struct rt_ringbuffer *rb, const rt_uint8_t ch);
  66. rt_size_t rt_ringbuffer_putchar_force(struct rt_ringbuffer *rb, const rt_uint8_t ch);
  67. rt_size_t rt_ringbuffer_get(struct rt_ringbuffer *rb, rt_uint8_t *ptr, rt_uint32_t length);
  68. rt_size_t rt_ringbuffer_peek(struct rt_ringbuffer *rb, rt_uint8_t **ptr);
  69. rt_size_t rt_ringbuffer_getchar(struct rt_ringbuffer *rb, rt_uint8_t *ch);
  70. rt_size_t rt_ringbuffer_data_len(struct rt_ringbuffer *rb);
  71. #ifdef RT_USING_HEAP
  72. struct rt_ringbuffer* rt_ringbuffer_create(rt_uint32_t length);
  73. void rt_ringbuffer_destroy(struct rt_ringbuffer *rb);
  74. #endif
  75. /**
  76. * @brief Get the buffer size of the ring buffer object.
  77. *
  78. * @param rb A pointer to the ring buffer object.
  79. *
  80. * @return Buffer size.
  81. */
  82. rt_inline rt_uint32_t rt_ringbuffer_get_size(struct rt_ringbuffer *rb)
  83. {
  84. RT_ASSERT(rb != RT_NULL);
  85. return rb->buffer_size;
  86. }
  87. /** return the size of empty space in rb */
  88. #define rt_ringbuffer_space_len(rb) ((rb)->buffer_size - rt_ringbuffer_data_len(rb))
  89. #ifdef __cplusplus
  90. }
  91. #endif
  92. #endif