]> git.tdb.fi Git - model-railway-devices.git/commitdiff
Rewrite ringbuffer implementation to be interrupt-safe
authorMikko Rasa <tdb@tdb.fi>
Mon, 28 Oct 2013 18:28:07 +0000 (20:28 +0200)
committerMikko Rasa <tdb@tdb.fi>
Mon, 28 Oct 2013 18:28:07 +0000 (20:28 +0200)
The earlier version had a race condition with the fill variable, where an
interrupt might execute in the middle of increment/decrement and do the
opposite operation.  Each variable is now written to by only one end of
the buffer, eliminating the problem.

common/ringbuffer.h

index 1a03ec591ddb3dbb82cc6a6b942d703869203779..107227b8596dee4e37659ca28e6c46df152b9d44 100644 (file)
@@ -1,52 +1,67 @@
 #ifndef RINGBUFFER_H_
 #define RINGBUFFER_H_
 
 #ifndef RINGBUFFER_H_
 #define RINGBUFFER_H_
 
-#define RINGBUFFER(name, size) uint8_t name[(size)+4] = { size, 0, 0, 0 }
+#define RINGBUFFER(name, size) uint8_t name[(size)+4] = { (size)+1, 0, 0 }
+
+static inline uint8_t ringbuffer_size(const uint8_t *buffer)
+{
+       return buffer[0]-1;
+}
 
 static inline uint8_t ringbuffer_fill(const uint8_t *buffer)
 {
 
 static inline uint8_t ringbuffer_fill(const uint8_t *buffer)
 {
-       return buffer[1];
+       const uint8_t size = buffer[0];
+       uint8_t head = buffer[1];
+       uint8_t tail = buffer[2];
+       if(head<tail)
+               head += size;
+       return head-tail;
 }
 
 static inline uint8_t ringbuffer_space(const uint8_t *buffer)
 {
 }
 
 static inline uint8_t ringbuffer_space(const uint8_t *buffer)
 {
-       return buffer[0]-buffer[1];
+       return ringbuffer_size(buffer)-ringbuffer_fill(buffer);
 }
 
 static inline void ringbuffer_push(uint8_t *buffer, uint8_t value)
 {
        const uint8_t size = buffer[0];
 }
 
 static inline void ringbuffer_push(uint8_t *buffer, uint8_t value)
 {
        const uint8_t size = buffer[0];
-       uint8_t head = buffer[2];
-       buffer[4+head++] = value;
+       uint8_t head = buffer[1];
+       buffer[3+head] = value;
+       ++head;
        if(head>=size)
                head -= size;
        if(head>=size)
                head -= size;
-       buffer[2] = head;
-       ++buffer[1];
+       buffer[1] = head;
 }
 
 static inline void ringbuffer_blocking_push(uint8_t *buffer, uint8_t value)
 {
 }
 
 static inline void ringbuffer_blocking_push(uint8_t *buffer, uint8_t value)
 {
-       const volatile uint8_t *fill = buffer+1;
-       while(*fill>=buffer[0]) ;
+       const uint8_t size = buffer[0];
+       uint8_t next_head = buffer[1]+1;
+       if(next_head>=size)
+               next_head -= size;
+       const volatile uint8_t *tail = buffer+2;
+       while(next_head==*tail) ;
        ringbuffer_push(buffer, value);
 }
 
 static inline uint8_t ringbuffer_pop(uint8_t *buffer)
 {
        const uint8_t size = buffer[0];
        ringbuffer_push(buffer, value);
 }
 
 static inline uint8_t ringbuffer_pop(uint8_t *buffer)
 {
        const uint8_t size = buffer[0];
-       uint8_t tail = buffer[3];
-       uint8_t value = buffer[4+tail++];
+       uint8_t tail = buffer[2];
+       uint8_t value = buffer[3+tail];
+       ++tail;
        if(tail>=size)
                tail -= size;
        if(tail>=size)
                tail -= size;
-       buffer[3] = tail;
-       --buffer[1];
+       buffer[2] = tail;
        return value;
 }
 
        return value;
 }
 
-static inline uint8_t rinbuffer_blocking_pop(uint8_t *buffer)
+static inline uint8_t ringbuffer_blocking_pop(uint8_t *buffer)
 {
 {
-       const volatile uint8_t *fill = buffer+1;
-       while(*fill==0) ;
+       const volatile uint8_t *head = buffer+1;
+       uint8_t tail = buffer[2];
+       while(*head==tail) ;
        return ringbuffer_pop(buffer);
 }
 
        return ringbuffer_pop(buffer);
 }