/* ** Copyright (C) 2004-2006 by Carnegie Mellon University. ** ** @OPENSOURCE_HEADER_START@ ** ** Use of the SILK system and related source code is subject to the terms ** of the following licenses: ** ** GNU Public License (GPL) Rights pursuant to Version 2, June 1991 ** Government Purpose License Rights (GPLR) pursuant to DFARS 252.225-7013 ** ** NO WARRANTY ** ** ANY INFORMATION, MATERIALS, SERVICES, INTELLECTUAL PROPERTY OR OTHER ** PROPERTY OR RIGHTS GRANTED OR PROVIDED BY CARNEGIE MELLON UNIVERSITY ** PURSUANT TO THIS LICENSE (HEREINAFTER THE "DELIVERABLES") ARE ON AN ** "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY ** KIND, EITHER EXPRESS OR IMPLIED AS TO ANY MATTER INCLUDING, BUT NOT ** LIMITED TO, WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE, ** MERCHANTABILITY, INFORMATIONAL CONTENT, NONINFRINGEMENT, OR ERROR-FREE ** OPERATION. CARNEGIE MELLON UNIVERSITY SHALL NOT BE LIABLE FOR INDIRECT, ** SPECIAL OR CONSEQUENTIAL DAMAGES, SUCH AS LOSS OF PROFITS OR INABILITY ** TO USE SAID INTELLECTUAL PROPERTY, UNDER THIS LICENSE, REGARDLESS OF ** WHETHER SUCH PARTY WAS AWARE OF THE POSSIBILITY OF SUCH DAMAGES. ** LICENSEE AGREES THAT IT WILL NOT MAKE ANY WARRANTY ON BEHALF OF ** CARNEGIE MELLON UNIVERSITY, EXPRESS OR IMPLIED, TO ANY PERSON ** CONCERNING THE APPLICATION OF OR THE RESULTS TO BE OBTAINED WITH THE ** DELIVERABLES UNDER THIS LICENSE. ** ** Licensee hereby agrees to defend, indemnify, and hold harmless Carnegie ** Mellon University, its trustees, officers, employees, and agents from ** all claims or demands made against them (and any related losses, ** expenses, or attorney's fees) arising out of, or relating to Licensee's ** and/or its sub licensees' negligent use or willful misuse of or ** negligent conduct or willful misconduct regarding the Software, ** facilities, or other rights or assistance granted by Carnegie Mellon ** University under this License, including, but not limited to, any ** claims of product liability, personal injury, death, damage to ** property, or violation of any laws or regulations. ** ** Carnegie Mellon University Software Engineering Institute authored ** documents are sponsored by the U.S. Department of Defense under ** Contract F19628-00-C-0003. Carnegie Mellon University retains ** copyrights in all material produced under this contract. The U.S. ** Government retains a non-exclusive, royalty-free license to publish or ** reproduce these documents, or allow others to do so, for U.S. ** Government purposes only pursuant to the copyright license under the ** contract clause at 252.227.7013. ** ** @OPENSOURCE_HEADER_END@ */ #ifndef _SKDEQUE_H #define _SKDEQUE_H #include "silk.h" RCSIDENTVAR(rcsID_SKDEQUE_H, "$SiLK: skdeque.h 3856 2006-05-26 15:38:34Z mwd $"); /* ** skdeque.h ** ** Methods for working with thread-safe double-ended queues ** */ /* * A deque maintains a list of void pointers. It does not know the * contents of these pointers, and as such the deque knows nothing * about the memory management behind them. A deque never attemps to * copy or free anything behind the pointer. It is the caller's * responsibility to ensure that an object in a deque is not * free()'ed until the object has been popped from the deque. */ /* * Within this header file, the item most-recently pushed is * considered to be "last", and "behind" all the other items, and the * item which would be returned by a pop is considered to be "first", * and "in front of" all the other items. */ /* The type of deques */ typedef struct sk_deque_t *skDeque_t; /* Return values from skSkdeque functions. */ typedef enum { SKDQ_SUCCESS = 0, /* success */ SKDQ_EMPTY = -1, /* deque is empty */ SKDQ_ERROR = -2, /* unspecified error */ SKDQ_DESTROYED = -3, /* deque was destroyed */ SKDQ_UNBLOCKED = -4, /* deque was unblocked */ SKDQ_TIMEDOUT = -5 /* deque pop timed out */ } skDQErr_t; /*** Deque creation functions *** * For all creation functions, a NULL return value indicates an error * condition. */ /* Create a deque */ skDeque_t skDequeCreate(void); /* Creates a copy of a deque. Operations on both deques will affect each other. */ skDeque_t skDequeCopy(skDeque_t deque); /* Creates a new pseudo-deque which acts like a deque with all the elements of q1 in front of q2. q1 and q2 continue behaving normally. */ skDeque_t skDequeCreateMerged(skDeque_t q1, skDeque_t q2); /*** Deque destruction ***/ /* Destroy and free a deque. (Not reponsible for freeing the elements within the deque). */ skDQErr_t skDequeDestroy(skDeque_t deque); /*** Deque data manipulation functions ***/ /* Return the status of a deque. */ skDQErr_t skDequeStatus(skDeque_t deque); /* Returns the size of a deque. Undefined on a bad (destroyed or error-ridden) deque. */ uint32_t skDequeSize(skDeque_t deque); /* Pop an element from a deque. skDequePop{Front,Back} will block until an item is available in the deque. skDequePop{Front,Back}NB will return SKDQ_EMPTY if the deque is empty instead. It is the responsibility of the program using the deque to free any elements popped from it. */ skDQErr_t skDequePopFront(skDeque_t deque, void **item); skDQErr_t skDequePopFrontNB(skDeque_t deque, void **item); skDQErr_t skDequePopFrontTimed(skDeque_t deque, void **item, uint32_t seconds); skDQErr_t skDequePopBack(skDeque_t deque, void **item); skDQErr_t skDequePopBackNB(skDeque_t deque, void **item); skDQErr_t skDequePopBackTimed(skDeque_t deque, void **item, uint32_t seconds); /* Unblock threads blocked on dequeue pops (each of which will return SKDQ_UNBLOCKED). They will remain unblocked, ignoreing blocking pushes, until re-blocked. */ skDQErr_t skDequeUnblock(skDeque_t deque); /* Will reblock a deque unblocked by skDequeUnblock. Deques are created in a blockable state. */ skDQErr_t skDequeBlock(skDeque_t deque); /* Return the first or last element of a deque without removing it, or SKDQ_EMPTY if the deque is empty. This function does not remove items from the deque. Do not free an item until it has been popped. */ skDQErr_t skDequeFront(skDeque_t deque, void **item); skDQErr_t skDequeBack(skDeque_t deque, void **item); /* Push an item onto a deque. Deques maintain the item pointer only. In order for the item to be of any use when it is later popped, it must survive its stay in the queue (not be freed). */ skDQErr_t skDequePushFront(skDeque_t deque, void *item); skDQErr_t skDequePushBack(skDeque_t deque, void *item); #endif /* _SKDEQUE_H */