GM6000 Digital Heater Controller Branch: main
SDX-1330
cslist.h
Go to the documentation of this file.
1#ifndef Cpl_Container_cslist_h_
2#define Cpl_Container_cslist_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 Singly lists that do not use or
16 require dynamic memory allocation. See the 'README.txt' file for details on
17 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/** This structure define the internal structure of a Singly Linked List. The
32 application should treat this struct as black box, i.e. never access the
33 field members directly.
34 */
35typedef struct CplContainerSList_T
36{
37 CplContainerItemSListLinkage_T* headPtr; //!< Pointer to the first item in the list
38 CplContainerItemSListLinkage_T* tailPtr; //!< Pointer to the last item in the list
40
41
42/** Initializes the list. This method must be called before calling any other
43 functions in this interface..
44
45 EXCEPTION: If the CplContainerSList_T instance is statically allocated, aka
46 it is in the BSS segment, it does not have be initialized using this function
47 since the C/C++ standard guaranties all data in the BSS segment will be
48 initialized to zero on start-up (which is the initialized state).
49 */
51
52
53/** Moves the content of 'srcList' to the 'dstList'. The 'dstList' is cleared
54 before the move operation occurs.
55 */
57
58/** Empties the list. All references to the item(s) in the
59 list are lost.
60 */
62
63
64/** Removes the FIRST item in the list. Returns NULL if the list is empty.
65 */
67
68/** Removes the LAST item in the list. Returns NULL if the list is empty.
69
70 NOTE: This is 'expensive' operation in that the entire list will be
71 traversed.
72*/
74
75/** Adds the item as the LAST item in the list. Returns true if the
76 operation was successful; else false is returned.
77 */
79
80/** Adds the item as the FIRST item in the list. Returns true if the
81 operation was successful; else false is returned.
82 */
84
85/** Returns a pointer to the FIRST item in the list. The returned item remains
86 in the list. Returns 0 if the list is empty.
87 */
89
90/** Return a pointer to the LAST item in the list. The returned item remains
91 in the list. Returns 0 if the list is empty.
92 */
94
95/** This function searches the list and - if found - removes the specified
96 item from the list. Returns true of the item was found and removed form
97 the list; else false is returned.
98 */
99bool Cpl_Container_SList_remove( CplContainerSList_T* list, void* itemToRemove );
100
101/** This function returns the next item in the list AFTER the specified item.
102 The returned item is NOT removed from the list. This method is typically
103 use to traverse the list without changing its list membership. If there is
104 no next item the method returns 0. The method will also return 0 if the
105 specified item is NOT in the list.
106 */
107void* Cpl_Container_SList_next( const void* item );
108
109/** Returns 'true' if the instance is in the specified list.
110 */
111bool Cpl_Container_SList_isInList( const CplContainerSList_T* list, const void* item );
112
113
114
115
116/*---------------------------------------------------------------------------*/
117//
118#ifdef __cplusplus
119};
120#endif
121#endif // end header latch
This file provides the definitions for creating a data structures that can be contained in a linked l...
Type definition for a singly linked item.
Definition citem.h:71
void * Cpl_Container_SList_peekHead(const CplContainerSList_T *list)
Returns a pointer to the FIRST item in the list.
bool Cpl_Container_SList_remove(CplContainerSList_T *list, void *itemToRemove)
This function searches the list and - if found - removes the specified item from the list.
void * Cpl_Container_SList_peekTail(const CplContainerSList_T *list)
Return a pointer to the LAST item in the list.
void Cpl_Container_SList_clear(CplContainerSList_T *listToClear)
Empties the list.
void * Cpl_Container_SList_get(CplContainerSList_T *list)
Removes the FIRST item in the list.
bool Cpl_Container_SList_putFirst(CplContainerSList_T *list, void *item)
Adds the item as the FIRST item in the list.
CplContainerItemSListLinkage_T * headPtr
Pointer to the first item in the list.
Definition cslist.h:37
bool Cpl_Container_SList_put(CplContainerSList_T *list, void *item)
Adds the item as the LAST item in the list.
CplContainerItemSListLinkage_T * tailPtr
Pointer to the last item in the list.
Definition cslist.h:38
bool Cpl_Container_SList_isInList(const CplContainerSList_T *list, const void *item)
Returns 'true' if the instance is in the specified list.
void Cpl_Container_SList_initialize(CplContainerSList_T *listToInitialize)
Initializes the list.
void Cpl_Container_SList_move(CplContainerSList_T *dstList, CplContainerSList_T *srcList)
Moves the content of 'srcList' to the 'dstList'.
void * Cpl_Container_SList_getLast(CplContainerSList_T *list)
Removes the LAST item in the list.
void * Cpl_Container_SList_next(const void *item)
This function returns the next item in the list AFTER the specified item.
This structure define the internal structure of a Singly Linked List.
Definition cslist.h:36