GM6000 Digital Heater Controller Branch: main
SDX-1330
cdlist.h
Go to the documentation of this file.
1#ifndef Cpl_Container_cdlist_h_
2#define Cpl_Container_cdlist_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file defines a C-based interfaces for Doubly linked lists that do not
16 use/require dynamic memory allocation. See the 'README.txt' file for
17 details on how intrusive containers work.
18
19 NOTE: The list operations are NOT type safe - it the Application's
20 responsibility for managing the types/content of the lists
21*/
22
23#include "Cpl/Container/citem.h"
24
25//
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30
31/*---------------------------------------------------------------------------*/
32/** This structure define the internal structure of a Doubly Linked List. The
33 application should treat this struct as black box, i.e. never access the
34 field members directly.
35*/
36typedef struct CplContainerDList_T
37{
38 CplContainerItemDListLinkage_T* headPtr; //!< Pointer to the first item in the list
39 CplContainerItemDListLinkage_T* tailPtr; //!< Pointer to the last item in the list
41
42
43/** Initializes the list. This method must be called before calling any other
44 functions in this interface..
45
46 EXCEPTION: If the CplContainerDList_T instance is statically allocated, aka
47 it is in the BSS segment, it does not have be initialized using this function
48 since the C/C++ standard guaranties all data in the BSS segment will be
49 initialized to zero on start-up (which is the initialized state).
50*/
52
53
54/** Moves the content of 'srcList' to the 'dstList'. The 'dstList' is cleared
55 before the move operation occurs.
56 */
58
59/** Empties the list. All references to the item(s) in the
60 list are lost.
61 */
63
64
65/** Removes the FIRST item in the list. Returns NULL if the list is empty.
66 */
68
69/** Adds the item as the LAST item in the list. Returns true if the
70 operation was successful; else false is returned.
71 */
73
74/** Removes the LAST item in the list. Returns NULL if the list is empty.
75*/
77
78/** Adds the item as the FIRST item in the list. Returns true if the
79 operation was successful; else false is returned.
80 */
82
83/** Insert the 'newItem' into the list ahead of the 'beforeItem' element.
84 Returns true if the operation was successful; else false is returned.
85 */
86bool Cpl_Container_DList_insertBefore( CplContainerDList_T* list, void* beforeItem, void* newItem );
87
88/** Insert the 'newItem' into the list behind the 'afterItem' element.
89 Returns true if the operation was successful; else false is returned.
90 */
91bool Cpl_Container_DList_insertAfter( CplContainerDList_T* list, void* afterItem, void* newItem );
92
93/** Return a pointer to the FIRST item in the list. The returned item remains
94 in the list. Returns 0 if the list is empty.
95 */
97
98/** Return a pointer to the LAST item in the list. The returned item remains
99 in the list. Returns 0 if the list is empty.
100 */
102
103/** This function searches the list and - if found - removes the specified
104 item from the list. Returns true of the item was found and removed form
105 the list; else false is returned.
106 */
107bool Cpl_Container_DList_remove( CplContainerDList_T* list, void* itemToRemove );
108
109/** This function returns the next item in the list AFTER the specified item.
110 The returned item is NOT removed from the list. This method is typically
111 use to traverse the list without changing its list membership. If there is
112 no next item the method returns 0. The method will also return 0 if the
113 specified item is NOT in the list.
114 */
115 void* Cpl_Container_DList_next( const void* item );
116
117/** This function returns the previous item in the list BEFORE the specified item.
118 The returned item is NOT removed from the list. This method is typically
119 use to traverse the list without changing its list membership. If there is
120 no previous item the method returns 0. The method will also return 0 if the
121 specified item is NOT in the list.
122 */
123 void* Cpl_Container_DList_prev( const void* item );
124
125 /** Returns 'true' if the instance is in the specified list.
126 */
127 bool Cpl_Container_DList_isInList( const CplContainerDList_T* list, const void* item );
128
129
130/*---------------------------------------------------------------------------*/
131//
132#ifdef __cplusplus
133};
134#endif
135#endif // end header latch
void Cpl_Container_DList_move(CplContainerDList_T *dstList, CplContainerDList_T *srcList)
Moves the content of 'srcList' to the 'dstList'.
bool Cpl_Container_DList_insertAfter(CplContainerDList_T *list, void *afterItem, void *newItem)
Insert the 'newItem' into the list behind the 'afterItem' element.
void * Cpl_Container_DList_next(const void *item)
This function returns the next item in the list AFTER the specified item.
void * Cpl_Container_DList_peekHead(const CplContainerDList_T *list)
Return a pointer to the FIRST item in the list.
void * Cpl_Container_DList_prev(const void *item)
This function returns the previous item in the list BEFORE the specified item.
CplContainerItemDListLinkage_T * tailPtr
Pointer to the last item in the list.
Definition cdlist.h:39
void * Cpl_Container_DList_getLast(CplContainerDList_T *list)
Removes the LAST item in the list.
void Cpl_Container_DList_clear(CplContainerDList_T *listToClear)
Empties the list.
void Cpl_Container_DList_initialize(CplContainerDList_T *listToInitialize)
Initializes the list.
void * Cpl_Container_DList_get(CplContainerDList_T *list)
Removes the FIRST item in the list.
bool Cpl_Container_DList_put(CplContainerDList_T *list, void *item)
Adds the item as the LAST item in the list.
CplContainerItemDListLinkage_T * headPtr
Pointer to the first item in the list.
Definition cdlist.h:38
bool Cpl_Container_DList_insertBefore(CplContainerDList_T *list, void *beforeItem, void *newItem)
Insert the 'newItem' into the list ahead of the 'beforeItem' element.
bool Cpl_Container_DList_remove(CplContainerDList_T *list, void *itemToRemove)
This function searches the list and - if found - removes the specified item from the list.
bool Cpl_Container_DList_isInList(const CplContainerDList_T *list, const void *item)
Returns 'true' if the instance is in the specified list.
void * Cpl_Container_DList_peekTail(const CplContainerDList_T *list)
Return a pointer to the LAST item in the list.
bool Cpl_Container_DList_putFirst(CplContainerDList_T *list, void *item)
Adds the item as the FIRST item in the list.
This structure define the internal structure of a Doubly Linked List.
Definition cdlist.h:37
This file provides the definitions for creating a data structures that can be contained in a linked l...
Type definition for a Doubly linked item.
Definition citem.h:84