diff spandsp-0.0.6pre17/src/spandsp/queue.h @ 4:26cd8f1ef0b1

import spandsp-0.0.6pre17
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Fri, 25 Jun 2010 15:50:58 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/spandsp-0.0.6pre17/src/spandsp/queue.h	Fri Jun 25 15:50:58 2010 +0200
@@ -0,0 +1,180 @@
+/*
+ * SpanDSP - a series of DSP components for telephony
+ *
+ * queue.h - simple in process message queuing
+ *
+ * Written by Steve Underwood <steveu@coppice.org>
+ *
+ * Copyright (C) 2004 Steve Underwood
+ *
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 2.1,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Id: queue.h,v 1.21 2009/02/10 13:06:47 steveu Exp $
+ */
+
+/*! \file */
+
+/*! \page queue_page Queuing
+\section queue_page_sec_1 What does it do?
+This module provides lock free queuing for either octet streams or messages.
+Specifically, lock free means one thread can write and another can read without
+locking the queue. It does NOT means a free-for-all is possible, with many
+threads writing or many threads reading. Those things would require locking,
+to avoid conflicts between the multiple threads acting on one end of the queue.
+
+\section queue_page_sec_2 How does it work?
+???.
+*/
+
+#if !defined(_SPANDSP_QUEUE_H_)
+#define _SPANDSP_QUEUE_H_
+
+/*! Flag bit to indicate queue reads are atomic operations. This must be set
+    if the queue is to be used with the message oriented functions. */
+#define QUEUE_READ_ATOMIC   0x0001
+/*! Flag bit to indicate queue writes are atomic operations. This must be set
+    if the queue is to be used with the message oriented functions. */
+#define QUEUE_WRITE_ATOMIC  0x0002
+
+/*!
+    Queue descriptor. This defines the working state for a single instance of
+    a byte stream or message oriented queue.
+*/
+typedef struct queue_state_s queue_state_t;
+
+#define QUEUE_STATE_T_SIZE(len) (sizeof(queue_state_t) + len + 1)
+
+#if defined(__cplusplus)
+extern "C"
+{
+#endif
+
+/*! Check if a queue is empty.
+    \brief Check if a queue is empty.
+    \param s The queue context.
+    \return TRUE if empty, else FALSE. */
+SPAN_DECLARE(int) queue_empty(queue_state_t *s);
+
+/*! Check the available free space in a queue's buffer.
+    \brief Check available free space.
+    \param s The queue context.
+    \return The number of bytes of free space. */
+SPAN_DECLARE(int) queue_free_space(queue_state_t *s);
+
+/*! Check the contents of a queue.
+    \brief Check the contents of a queue.
+    \param s The queue context.
+    \return The number of bytes in the queue. */
+SPAN_DECLARE(int) queue_contents(queue_state_t *s);
+
+/*! Flush the contents of a queue.
+    \brief Flush the contents of a queue.
+    \param s The queue context. */
+SPAN_DECLARE(void) queue_flush(queue_state_t *s);
+
+/*! Copy bytes from a queue. This is similar to queue_read, but
+    the data remains in the queue.
+    \brief Copy bytes from a queue.
+    \param s The queue context.
+    \param buf The buffer into which the bytes will be read.
+    \param len The length of the buffer.
+    \return the number of bytes returned. */
+SPAN_DECLARE(int) queue_view(queue_state_t *s, uint8_t *buf, int len);
+
+/*! Read bytes from a queue.
+    \brief Read bytes from a queue.
+    \param s The queue context.
+    \param buf The buffer into which the bytes will be read.
+    \param len The length of the buffer.
+    \return the number of bytes returned. */
+SPAN_DECLARE(int) queue_read(queue_state_t *s, uint8_t *buf, int len);
+
+/*! Read a byte from a queue.
+    \brief Read a byte from a queue.
+    \param s The queue context.
+    \return the byte, or -1 if the queue is empty. */
+SPAN_DECLARE(int) queue_read_byte(queue_state_t *s);
+
+/*! Write bytes to a queue.
+    \brief Write bytes to a queue.
+    \param s The queue context.
+    \param buf The buffer containing the bytes to be written.
+    \param len The length of the buffer.
+    \return the number of bytes actually written. */
+SPAN_DECLARE(int) queue_write(queue_state_t *s, const uint8_t *buf, int len);
+
+/*! Write a byte to a queue.
+    \brief Write a byte to a queue.
+    \param s The queue context.
+    \param byte The byte to be written.
+    \return the number of bytes actually written. */
+SPAN_DECLARE(int) queue_write_byte(queue_state_t *s, uint8_t byte);
+
+/*! Test the length of the message at the head of a queue.
+    \brief Test message length.
+    \param s The queue context.
+    \return The length of the next message, in byte. If there are
+            no messages in the queue, -1 is returned. */
+SPAN_DECLARE(int) queue_state_test_msg(queue_state_t *s);
+
+/*! Read a message from a queue. If the message is longer than the buffer
+    provided, only the first len bytes of the message will be returned. The
+    remainder of the message will be discarded.
+    \brief Read a message from a queue.
+    \param s The queue context.
+    \param buf The buffer into which the message will be read.
+    \param len The length of the buffer.
+    \return The number of bytes returned. If there are
+            no messages in the queue, -1 is returned. */
+SPAN_DECLARE(int) queue_read_msg(queue_state_t *s, uint8_t *buf, int len);
+
+/*! Write a message to a queue.
+    \brief Write a message to a queue.
+    \param s The queue context.
+    \param buf The buffer from which the message will be written.
+    \param len The length of the message.
+    \return The number of bytes actually written. */
+SPAN_DECLARE(int) queue_write_msg(queue_state_t *s, const uint8_t *buf, int len);
+
+/*! Initialise a queue.
+    \brief Initialise a queue.
+    \param s The queue context. If is imperative that the context this
+           points to is immediately followed by a buffer of the required
+           size + 1 octet.
+    \param len The length of the queue's buffer.
+    \param flags Flags controlling the operation of the queue.
+           Valid flags are QUEUE_READ_ATOMIC and QUEUE_WRITE_ATOMIC.
+    \return A pointer to the context if OK, else NULL. */
+SPAN_DECLARE(queue_state_t *) queue_init(queue_state_t *s, int len, int flags);
+
+/*! Release a queue.
+    \brief Release a queue.
+    \param s The queue context.
+    \return 0 if OK, else -1. */
+SPAN_DECLARE(int) queue_release(queue_state_t *s);
+
+/*! Free a queue.
+    \brief Delete a queue.
+    \param s The queue context.
+    \return 0 if OK, else -1. */
+SPAN_DECLARE(int) queue_free(queue_state_t *s);
+
+#if defined(__cplusplus)
+}
+#endif
+
+#endif
+/*- End of file ------------------------------------------------------------*/

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.