summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/ringbuf.h
blob: 05bcceb6c17fe0b6e3aa2d332857faedea072f4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
 * @file
 *
 * @brief Simple Ring Buffer Functionality
 *
 * This file provides simple ring buffer functionality.
 */


#ifndef _RTEMS_RINGBUF_H
#define _RTEMS_RINGBUF_H

#include <rtems.h>

#ifndef RINGBUF_QUEUE_LENGTH
#define RINGBUF_QUEUE_LENGTH 128
#endif

typedef struct {
  uint8_t buffer[RINGBUF_QUEUE_LENGTH];
  volatile int  head;
  volatile int  tail;
  rtems_interrupt_lock lock;
} Ring_buffer_t;

#define Ring_buffer_Initialize( _buffer ) \
  do { \
    (_buffer)->head = (_buffer)->tail = 0; \
  } while ( 0 )

#define Ring_buffer_Is_empty( _buffer ) \
   ( (_buffer)->head == (_buffer)->tail )

#define Ring_buffer_Is_full( _buffer ) \
   ( (_buffer)->head == ((_buffer)->tail + 1) % RINGBUF_QUEUE_LENGTH )

#define Ring_buffer_Add_character( _buffer, _ch ) \
  do { \
    rtems_interrupt_lock_context lock_context; \
    \
    rtems_interrupt_lock_acquire( &(_buffer)->lock, &lock_context ); \
      (_buffer)->tail = ((_buffer)->tail+1) % RINGBUF_QUEUE_LENGTH; \
      (_buffer)->buffer[ (_buffer)->tail ] = (_ch); \
    rtems_interrupt_lock_release( &(_buffer)->lock, &lock_context ); \
  } while ( 0 )

#define Ring_buffer_Remove_character( _buffer, _ch ) \
  do { \
    rtems_interrupt_lock_context lock_context; \
    \
    rtems_interrupt_lock_acquire( &(_buffer)->lock, &lock_context ); \
      (_buffer)->head = ((_buffer)->head+1) % RINGBUF_QUEUE_LENGTH; \
      (_ch) = (_buffer)->buffer[ (_buffer)->head ]; \
    rtems_interrupt_lock_release( &(_buffer)->lock, &lock_context ); \
  } while ( 0 )

#endif