1#ifndef Cpl_Container_SList_h_
2#define Cpl_Container_SList_h_
202 :m_headPtr( 0 ), m_tailPtr( 0 )
220 while ( (nextPtr=
get()) )
238 if ( (nextPtr=m_headPtr) )
240 if ( !(m_headPtr=(
ITEM*) (nextPtr->m_nextPtr_)) )
269 if ( item.insert_(
this ) )
273 item.m_nextPtr_ = m_headPtr;
278 m_headPtr = m_tailPtr = &item;
287 if ( item.insert_(
this ) )
291 m_tailPtr->m_nextPtr_ = &item;
311 if ( item.isInContainer_(
this ) )
328 if ( !(m_headPtr=(
ITEM*)
nxtPtr->m_nextPtr_) )
346 if ( item.insert_(
this ) )
348 item.m_nextPtr_ =
after.m_nextPtr_;
349 if ( !item.m_nextPtr_ )
353 after.m_nextPtr_ = &item;
360 if ( item.insert_(
this ) )
371 prvPtr->m_nextPtr_ = &item;
385 return item.isInContainer_(
this );
403 return (
ITEM*) (item.m_nextPtr_);
static void remove_(Item *itemPtr) noexcept
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an ite...
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This template class implements a singly linked list which maintains the ordering imposed on it by the...
Definition SList.h:30
void put(ITEM &item) noexcept
Adds the item as the last item in the list.
Definition SList.h:285
void putLast(ITEM &item) noexcept
Adds the item as the last item in the list.
Definition SList.h:303
bool find(const ITEM &item) const noexcept
Returns true if the specified item is already in the list, else false.
Definition SList.h:383
ITEM * getLast(void) noexcept
Removes the last item in the list.
Definition SList.h:256
void putFirst(ITEM &item) noexcept
Adds the item as the first item in the list.
Definition SList.h:267
void clearTheList() noexcept
Empties the list.
Definition SList.h:227
void move(SList< ITEM > &dst) noexcept
Moves the content of the this queue to the specified queue.
Definition SList.h:213
ITEM * getFirst(void) noexcept
Removes the first item in the list.
Definition SList.h:250
SList() noexcept
Public constructor initializes head and tail pointers.
Definition SList.h:201
ITEM * pop(void) noexcept
Removes the top element from stack and return a pointer to it as a result.
Definition SList.h:413
ITEM * last(void) const noexcept
Return a pointer to the last item in the list.
Definition SList.h:395
ITEM * head(void) const noexcept
Return a pointer to the first item in the list.
Definition SList.h:425
void push(ITEM &item) noexcept
Adds the ITEM item to top of the stack.
Definition SList.h:407
ITEM * tail(void) const noexcept
Return a pointer to the last item in the list.
Definition SList.h:431
ITEM * get(void) noexcept
Removes the first item in the list.
Definition SList.h:235
void insertBefore(ITEM &before, ITEM &item) noexcept
Insert the "item" ITEM into the list ahead of the "before" ITEM element.
Definition SList.h:358
ITEM * next(const ITEM &item) const noexcept
Return a pointer to the item after the item "item".
Definition SList.h:401
ITEM * first(void) const noexcept
Return a pointer to the first item in the list.
Definition SList.h:389
bool remove(ITEM &item) noexcept
Remove specified ITEM element from the list.
Definition SList.h:309
ITEM * top(void) const noexcept
Return a pointer to the top ITEM item in the stack.
Definition SList.h:419
void insertAfter(ITEM &after, ITEM &item) noexcept
Insert the "item" ITEM into the list behind the "after" ITEM element.
Definition SList.h:344
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20