GM6000 Digital Heater Controller Branch: main
SDX-1330
citem.h
Go to the documentation of this file.
1#ifndef Cpl_Container_citem_h_
2#define Cpl_Container_citem_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 provides the definitions for creating a data structures that
16 can be contained in a linked lists, containers, trees, etc. using 'intrusive'
17 linkage. The item to be contained is RESPONSIBLE for providing the memory for
18 the link pointer(s). CAUTION: Since the is only one set of link(s) per
19 structure, the structure can only be in at most ONE list at any given time.
20
21 USAGE:
22 ------
23 To make a data structure 'listable', the application/developers needs
24 to modify the data structure as follows:
25 \code
26
27 Original structure:
28 typedef struct
29 {
30 int my_data;
31 void* my_ptr;
32 ....
33 } MyStructure;
34
35 Linkable structure:
36 typedef struct
37 {
38 CPL_CONTAINTER_ITEM_SLIST; // Link(s) for container implementation
39 int my_data;
40 void* my_ptr;
41 ....
42 } MyStructure;
43
44 \endcode
45
46 NOTES:
47 1. The above macro MUST be the FIRST field in the data structure.
48 2. All 'items' must be initialized before be placed in a list
49 3. Items are NOT type safe!
50 4. An item can be in at most ONE container at any given time. If an
51 attempt is made to put an item is to multiple containers (at the same
52 time) - the put/insert operation fails
53*/
54
55#include <stdbool.h>
56
57
58//
59#ifdef __cplusplus
60extern "C" {
61#endif
62
63
64/*---------------------------------------------------------------------------*/
65/** This type defines the fatal-error-callback function handler
66 */
67typedef void (*CplContainerItemFatalErrorCbFunc_T)(void* item, void* currentList, void* newList);
68
69/// Type definition for a singly linked item
70typedef struct
71{
72 void* containerPtr;
73 void* nextPtr;
75
76/** Single-Link field. This symbol must be placed as the FIRST entry in a
77 the user's structure that will/can be stored in a container.
78 */
79#define CPL_CONTAINTER_ITEM_SLIST CplContainerItemSListLinkage_T __cpl_container_item_slist__
80
81
82/// Type definition for a Doubly linked item
83typedef struct
84{
85 void* containerPtr;
86 void* nextPtr;
87 void* prevPtr;
89
90/** Double-Link field. This symbol must be placed as the FIRST entry in a
91 the user's structure that will/can be stored in a container.
92
93 NOTE: The item can also be used/contained in a Singly Link list
94 */
95#define CPL_CONTAINTER_ITEM_DLIST CplContainerItemDListLinkage_T __cpl_container_item_dlist__
96
97/*---------------------------------------------------------------------------*/
98/** This method is used to initialize an 'item' instance. The initialization
99 only needs to occur ONCE after the instance has been allocated.
100 ALL ITEMS MUST be initialize prior to placing them in a container.
101
102 EXCEPTION: If an item is statically allocated, aka it is in the BSS segment,
103 it does not have be initialize using this method since the C/C++ standard
104 guaranties all data in the BSS segment will be initialized to zero on
105 start-up.
106*/
107void Cpl_Container_Item_initialize( void* uninitializeItem );
108
109
110/*---------------------------------------------------------------------------*/
111/** This function is private and/or has 'PACKAGE_SCOPE'. This means that the
112 application should NEVER call/use this functions. The functions are
113 only exposes to simply the implementation of the containers.
114
115 This function is used to mark the item as in-a-container.
116
117 Returns true if successful; else false is returned (i.e. the item is
118 already in a container)
119 */
120bool Cpl_Container_Item_markAsContained_( void* item, void* newContainerPtr );
121
122/** This function is private and/or has 'PACKAGE_SCOPE'. This means that the
123 application should NEVER call/use this functions. The functions are
124 only exposes to simply the implementation of the containers.
125
126 This function returns true if the item is in the specified container
127 else false is returned
128 */
129bool Cpl_Container_Item_isInContainer_( const void* item, const void* containerPtr );
130
131/** This function is private and/or has 'PACKAGE_SCOPE'. This means that the
132 application should NEVER call/use this functions. The functions are
133 only exposes to simply the implementation of the containers.
134
135 This function is used to mark the item as 'available', i.e. NOT in a
136 container.
137 */
139
140/*---------------------------------------------------------------------------*/
141//
142#ifdef __cplusplus
143};
144#endif
145#endif // end header latch
bool Cpl_Container_Item_markAsContained_(void *item, void *newContainerPtr)
This function is private and/or has 'PACKAGE_SCOPE'.
void Cpl_Container_Item_markAsFree_(void *item)
This function is private and/or has 'PACKAGE_SCOPE'.
bool Cpl_Container_Item_isInContainer_(const void *item, const void *containerPtr)
This function is private and/or has 'PACKAGE_SCOPE'.
void Cpl_Container_Item_initialize(void *uninitializeItem)
This method is used to initialize an 'item' instance.
void(* CplContainerItemFatalErrorCbFunc_T)(void *item, void *currentList, void *newList)
This type defines the fatal-error-callback function handler.
Definition citem.h:67
Type definition for a Doubly linked item.
Definition citem.h:84
Type definition for a singly linked item.
Definition citem.h:71