rbuf_core.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*******************************************************************************
  2. * @file rbuf_core.h
  3. * @author MEMS Application Team
  4. * @version V1.0
  5. * @date 2020-10-15
  6. * @brief ring buffer for interaction RAM
  7. *******************************************************************************/
  8. #ifndef _RBUF_CORE_H
  9. #define _RBUF_CORE_H
  10. /******************************************************************************/
  11. //includes
  12. /******************************************************************************/
  13. #include <rbuf/rbuf_conf.h>
  14. /******************************************************************************/
  15. //constants
  16. /******************************************************************************/
  17. // RBuf Type
  18. #define RBUF_RAW (0 << 0)
  19. #define RBUF_MSG (1 << 0)
  20. /******************************************************************************/
  21. //typedef
  22. /******************************************************************************/
  23. /* RBuf Data */
  24. typedef struct rbuf {
  25. unsigned short head;
  26. unsigned short tmp_head;
  27. unsigned short tail;
  28. unsigned short tmp_tail;
  29. unsigned short buf_off;
  30. unsigned short size;
  31. unsigned short hlen;
  32. unsigned short next;
  33. } rbuf_t;
  34. /* RBuf Handler */
  35. typedef int (*rbuf_hdl)(void *ctx, void *pdata, unsigned int size);
  36. /******************************************************************************/
  37. //macros
  38. /******************************************************************************/
  39. #ifndef MIN
  40. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  41. #endif
  42. #ifndef ROUND_UP
  43. /* round "x" up to next multiple of "align" (which must be a power of 2) */
  44. #define ROUND_UP(x, a) \
  45. (((unsigned int)(x) + ((unsigned int)(a) - 1)) & ~((unsigned int)(a) - 1))
  46. #endif
  47. /* Ring Buffer from/to Offset */
  48. #define RBUF_NULL (void*)(RBUF_BASE)
  49. #define RBUF_FR_OF(x) (rbuf_t*)(RBUF_BASE + x)
  50. #define RBUF_TO_OF(x) ((unsigned int)x - RBUF_BASE)
  51. #define RBUF_FR_BUF(x) (rbuf_t*)(x - sizeof(rbuf_t))
  52. #define RBUF_TO_BUF(x) ((char*)x + sizeof(rbuf_t))
  53. /******************************************************************************/
  54. //functions
  55. /******************************************************************************/
  56. rbuf_t *rbuf_init_buf(char *buf, unsigned int size, unsigned int mode);
  57. unsigned int rbuf_get_space(rbuf_t *buf);
  58. void* rbuf_put_claim(rbuf_t *buf, unsigned int size, unsigned int *psz);
  59. int rbuf_put_finish(rbuf_t *buf, unsigned int size);
  60. void* rbuf_get_claim(rbuf_t *buf, unsigned int size, unsigned int *psz);
  61. int rbuf_get_finish(rbuf_t *buf, unsigned int size);
  62. unsigned int rbuf_get_hdl(rbuf_t *buf, unsigned int size, rbuf_hdl hdl, void *ctx);
  63. unsigned int rbuf_get_length(rbuf_t *buf);
  64. #define rbuf_is_empty(x) ((x)->head == (x)->tail)
  65. #define rbuf_is_pending(x) ((x) && !rbuf_is_empty((x)))
  66. #endif /* _RBUF_CORE_H */