Adjust for DevLib.
[bertos.git] / mware / fifobuf.h
index 43ea6f1d6dc6a767de3d4618d51136ca96361338..12de29495cf64fc9bbafc8eb0ba14cfeb366c664 100755 (executable)
@@ -1,7 +1,7 @@
 /*!
  * \file
  * <!--
- * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/)
+ * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
  * Copyright 2001 Bernardo Innocenti <bernie@develer.com>
  * This file is part of DevLib - See devlib/README for information.
  * -->
  *
  * \brief General pourpose FIFO buffer implemented with a ring buffer
  *
- * \li \c begin punta al primo elemento del buffer,
- * \li \c end punta all'ultimo elemento,
- * \li \c head punta al prossimo elemento che verra' estratto,
- * \li \c tail punta alla posizione successiva all'ultimo elemento inserito.
- * \li quando uno dei due puntatori raggiunge @c end, viene resettato a @c begin.
+ * \li \c begin points to the first buffer element;
+ * \li \c end points to the last buffer element (unlike the STL convention);
+ * \li \c head points to the element to be extracted next;
+ * \li \c tail points to the location following the last insertion;
+ * \li when any of the pointers advances beyond \c end, it is reset
+ *     back to \c begin.
  *
  * \code
  *
  *  +-----------------------------------+
- *  |  vuoto  |   dati validi  |  vuoto |
+ *  |  empty  |   valid data   |  empty |
  *  +-----------------------------------+
  *  ^         ^                ^        ^
  *  begin    head             tail     end
  *
  * \endcode
  *
- * Il buffer e' VUOTO quando head e tail coincidono:
+ * The buffer is EMPTY when \c head and \c tail point to the same location:
  *             \code head == tail \endcode
  *
- * Il buffer e' PIENO quando tail si trova immediatamente dietro a head:
+ * The buffer is FULL when \c tail points to the location immediately
+ * after \c head:
  *             \code tail == head - 1 \endcode
  *
- * Il buffer e' PIENO anche quando tail e' posizionato
- * sull'ultima posizione del buffer e head sulla prima:
+ * The buffer is also FULL when \c tail points to the last buffer
+ * location and head points to the first one:
  *             \code head == begin && tail == end \endcode
  */
 
 /*
  * $Log$
- * Revision 1.5  2004/06/06 16:50:35  bernie
- * Import fixes for race conditions from project_ks.
- *
- * Revision 1.4  2004/06/06 16:11:17  bernie
- * Protect MetroWerks specific pragmas with #ifdef's
- *
- * Revision 1.3  2004/06/03 15:04:10  aleph
- * Merge improvements from project_ks (mainly inlining)
+ * Revision 1.12  2004/08/02 20:20:29  aleph
+ * Merge from project_ks
  *
- * Revision 1.2  2004/06/03 11:27:09  bernie
- * Add dual-license information.
+ * Revision 1.11  2004/07/30 14:15:53  rasky
+ * Nuovo supporto unificato per detect della CPU
  *
- * Revision 1.1  2004/05/23 15:43:16  bernie
- * Import mware modules.
+ * Revision 1.10  2004/07/29 22:57:09  bernie
+ * Doxygen fix.
  *
- * Revision 1.3  2004/05/22 17:55:58  rasky
- * \samp non esiste in doxygen
+ * Revision 1.9  2004/07/20 23:54:27  bernie
+ * fifo_flush_locked(): New function;
+ * Revamp documentation.
  *
- * Revision 1.2  2004/04/27 11:13:29  rasky
- * Spostate tutte le definizioni CPU-specific da compiler.h nel nuovo file cpu.h
+ * Revision 1.8  2004/07/20 23:47:39  bernie
+ * Finally remove redundant protos.
  *
- * Revision 1.1  2004/04/21 17:38:25  rasky
- * New application
+ * Revision 1.7  2004/07/20 23:46:29  bernie
+ * Finally remove redundant protos.
  *
- * Revision 1.4  2004/03/24 15:37:03  bernie
- * Remove Copyright messages from Doxygen output
+ * Revision 1.6  2004/06/06 17:18:04  bernie
+ * Remove redundant declaration of fifo_isempty_locked().
  *
- * Revision 1.3  2004/03/18 18:11:07  bernie
- * Add thread-safe FIFO handling macros
- *
- * Revision 1.2  2004/03/01 08:00:36  bernie
- * Fixes for Doxygen
- *
- * Revision 1.1  2003/12/07 04:04:20  bernie
- * Initial project_ks framework.
- *
- * Revision 1.1  2003/11/21 16:36:17  aleph
- * Rename from fifo to fifobuf to avoid conflict with BSP fifo.h header
- *
- * Revision 1.1  2003/11/20 22:17:41  aleph
- * Add fifo buffer used by serial
+ * Revision 1.5  2004/06/06 16:50:35  bernie
+ * Import fixes for race conditions from project_ks.
  *
+ * Revision 1.4  2004/06/06 16:11:17  bernie
+ * Protect MetroWerks specific pragmas with #ifdef's
  */
 
 #ifndef MWARE_FIFO_H
@@ -99,23 +86,6 @@ typedef struct FIFOBuffer
 } FIFOBuffer;
 
 
-/* Public function prototypes */
-INLINE bool fifo_isempty(const FIFOBuffer *fb);
-INLINE bool fifo_isempty_locked(const FIFOBuffer *fb);
-INLINE bool fifo_isfull(const FIFOBuffer *fb);
-INLINE bool fifo_isfull_locked(const FIFOBuffer *fb);
-#ifdef __MWERKS__
-#pragma interrupt called
-#endif
-INLINE void fifo_push(FIFOBuffer *fb, unsigned char c);
-#ifdef __MWERKS__
-#pragma interrupt called
-#endif
-INLINE unsigned char fifo_pop(FIFOBuffer *fb);
-INLINE void fifo_flush(FIFOBuffer *fb);
-INLINE void fifo_init(FIFOBuffer *fb, unsigned char *buf, size_t size);
-
-
 /*!
  * Check whether the fifo is empty
  *
@@ -169,6 +139,9 @@ INLINE bool fifo_isfull(const FIFOBuffer *fb)
  */
 INLINE void fifo_push(FIFOBuffer *fb, unsigned char c)
 {
+#ifdef __MWERKS__
+#pragma interrupt called
+#endif
        /* Write at tail position */
        *(fb->tail) = c;
 
@@ -193,6 +166,9 @@ INLINE void fifo_push(FIFOBuffer *fb, unsigned char c)
  */
 INLINE unsigned char fifo_pop(FIFOBuffer *fb)
 {
+#ifdef __MWERKS__
+#pragma interrupt called
+#endif
        if (fb->head == fb->end)
        {
                /* wrap head around */
@@ -214,22 +190,23 @@ INLINE void fifo_flush(FIFOBuffer *fb)
 }
 
 
-#if !defined(__AVR__)
+#if !CPU_AVR
 
        /* No tricks needed on 16/32bit CPUs */
 #      define fifo_isempty_locked(fb) fifo_isempty((fb))
 #      define fifo_push_locked(fb, c) fifo_push((fb), (c))
+#      define fifo_flush_locked(fb) fifo_flush((fb))
 
-#else /* !__AVR__ */
+#else /* !CPU_AVR */
 
        /*!
         * Similar to fifo_isempty(), but with stronger guarantees for
         * concurrent access between user and interrupt code.
-        * This is actually only needed for 8-bit processors.
+        *
+        * \note This is actually only needed for 8-bit processors.
         *
         * \sa fifo_isempty()
         */
-       INLINE bool fifo_isempty_locked(const FIFOBuffer *fb);
        INLINE bool fifo_isempty_locked(const FIFOBuffer *fb)
        {
                bool result;
@@ -245,11 +222,11 @@ INLINE void fifo_flush(FIFOBuffer *fb)
        /*!
         * Similar to fifo_push(), but with stronger guarantees for
         * concurrent access between user and interrupt code.
-        * This is actually only needed for 8-bit processors.
+        *
+        * \note This is actually only needed for 8-bit processors.
         *
         * \sa fifo_push()
         */
-       INLINE void fifo_push_locked(FIFOBuffer *fb, unsigned char c);
        INLINE void fifo_push_locked(FIFOBuffer *fb, unsigned char c)
        {
                cpuflags_t flags;
@@ -258,7 +235,23 @@ INLINE void fifo_flush(FIFOBuffer *fb)
                ENABLE_IRQRESTORE(flags);
        }
 
-#endif /* !__AVR__ */
+       /*!
+        * Similar to fifo_flush(), but with stronger guarantees for
+        * concurrent access between user and interrupt code.
+        *
+        * \note This is actually only needed for 8-bit processors.
+        *
+        * \sa fifo_flush()
+        */
+       INLINE void fifo_flush_locked(FIFOBuffer *fb)
+       {
+               cpuflags_t flags;
+               DISABLE_IRQSAVE(flags);
+               fifo_flush(fb);
+               ENABLE_IRQRESTORE(flags);
+       }
+
+#endif /* !CPU_AVR */
 
 
 /*!
@@ -277,7 +270,6 @@ INLINE bool fifo_isfull_locked(const FIFOBuffer *_fb)
 }
 
 
-
 /*!
  * FIFO Initialization.
  */
@@ -288,7 +280,6 @@ INLINE void fifo_init(FIFOBuffer *fb, unsigned char *buf, size_t size)
 }
 
 
-
 #if 0
 
 /*