![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This file provides the definitions for creating a data structures that can be contained in a linked lists, containers, trees, etc.
using 'intrusive' linkage. The item to be contained is RESPONSIBLE for providing the memory for the link pointer(s). CAUTION: Since the is only one set of link(s) per structure, the structure can only be in at most ONE list at any given time.
To make a data structure 'listable', the application/developers needs to modify the data structure as follows:
NOTES:
#include <stdbool.h>
Go to the source code of this file.
Classes | |
struct | CplContainerItemSListLinkage_T |
Type definition for a singly linked item. More... | |
struct | CplContainerItemDListLinkage_T |
Type definition for a Doubly linked item. More... | |
Macros | |
#define | CPL_CONTAINTER_ITEM_SLIST CplContainerItemSListLinkage_T __cpl_container_item_slist__ |
Single-Link field. | |
#define | CPL_CONTAINTER_ITEM_DLIST CplContainerItemDListLinkage_T __cpl_container_item_dlist__ |
Double-Link field. | |
Typedefs | |
typedef void(* | CplContainerItemFatalErrorCbFunc_T) (void *item, void *currentList, void *newList) |
This type defines the fatal-error-callback function handler. | |
Functions | |
void | Cpl_Container_Item_initialize (void *uninitializeItem) |
This method is used to initialize an 'item' instance. | |
bool | Cpl_Container_Item_markAsContained_ (void *item, void *newContainerPtr) |
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_markAsFree_ (void *item) |
This function is private and/or has 'PACKAGE_SCOPE'. | |
struct CplContainerItemSListLinkage_T |
struct CplContainerItemDListLinkage_T |
#define CPL_CONTAINTER_ITEM_DLIST CplContainerItemDListLinkage_T __cpl_container_item_dlist__ |
Double-Link field.
This symbol must be placed as the FIRST entry in a the user's structure that will/can be stored in a container.
NOTE: The item can also be used/contained in a Singly Link list
#define CPL_CONTAINTER_ITEM_SLIST CplContainerItemSListLinkage_T __cpl_container_item_slist__ |
Single-Link field.
This symbol must be placed as the FIRST entry in a the user's structure that will/can be stored in a container.
typedef void(* CplContainerItemFatalErrorCbFunc_T) (void *item, void *currentList, void *newList) |
This type defines the fatal-error-callback function handler.
void Cpl_Container_Item_initialize | ( | void * | uninitializeItem | ) |
This method is used to initialize an 'item' instance.
The initialization only needs to occur ONCE after the instance has been allocated. ALL ITEMS MUST be initialize prior to placing them in a container.
EXCEPTION: If an item is statically allocated, aka it is in the BSS segment, it does not have be initialize using this method since the C/C++ standard guaranties all data in the BSS segment will be initialized to zero on start-up.
bool Cpl_Container_Item_isInContainer_ | ( | const void * | item, |
const void * | containerPtr | ||
) |
This function is private and/or has 'PACKAGE_SCOPE'.
This means that the application should NEVER call/use this functions. The functions are only exposes to simply the implementation of the containers.
This function returns true if the item is in the specified container else false is returned
bool Cpl_Container_Item_markAsContained_ | ( | void * | item, |
void * | newContainerPtr | ||
) |
This function is private and/or has 'PACKAGE_SCOPE'.
This means that the application should NEVER call/use this functions. The functions are only exposes to simply the implementation of the containers.
This function is used to mark the item as in-a-container.
Returns true if successful; else false is returned (i.e. the item is already in a container)
void Cpl_Container_Item_markAsFree_ | ( | void * | item | ) |
This function is private and/or has 'PACKAGE_SCOPE'.
This means that the application should NEVER call/use this functions. The functions are only exposes to simply the implementation of the containers.
This function is used to mark the item as 'available', i.e. NOT in a container.