1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
/** @file
* IPRT - Generic Doubly Linked List, using 32-bit offset instead of pointers.
*/
/*
* Copyright (C) 2010-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_list_off32_h
#define IPRT_INCLUDED_list_off32_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/types.h>
/** @defgroup grp_rt_list_off32 RTListOff32 - Generic Doubly Linked List based on 32-bit offset.
* @ingroup grp_rt
*
* This is the same as @ref grp_rt_list , except that instead of pointers we use
* 32-bit offsets. The list implementation is circular, with a dummy node as
* anchor. Be careful with the dummy node when walking the list.
*
* @{
*/
RT_C_DECLS_BEGIN
/**
* A list node of a doubly linked list.
*/
typedef struct RTLISTOFF32NODE
{
/** Offset to the next list node, relative to this structure. */
int32_t offNext;
/** Offset to the previous list node, relative to this structure. */
int32_t offPrev;
} RTLISTOFF32NODE;
/** Pointer to a list node. */
typedef RTLISTOFF32NODE *PRTLISTOFF32NODE;
/** Pointer to a const list node. */
typedef RTLISTOFF32NODE const *PCRTLISTOFF32NODE;
/** Pointer to a list node pointer. */
typedef PRTLISTOFF32NODE *PPRTLISTOFF32NODE;
/** The anchor (head/tail) of a doubly linked list.
*
* @remarks Please always use this instead of RTLISTOFF32NODE to indicate a list
* head/tail. It makes the code so much easier to read. Also,
* always mention the actual list node type(s) in the comment.
* @remarks Must be allocated in a similar manner as the nodes, so as to
* keep it within a 32-bit distance from them.
*/
typedef RTLISTOFF32NODE RTLISTOFF32ANCHOR;
/** Pointer to a doubly linked list anchor. */
typedef RTLISTOFF32ANCHOR *PRTLISTOFF32ANCHOR;
/** Pointer to a const doubly linked list anchor. */
typedef RTLISTOFF32ANCHOR const *PCRTLISTOFF32ANCHOR;
/**
* Initialize a list.
*
* @param pList Pointer to an unitialised list.
*/
DECLINLINE(void) RTListOff32Init(PRTLISTOFF32NODE pList)
{
pList->offNext = 0;
pList->offPrev = 0;
}
/**
* Internal macro for converting an offset to a pointer.
* @returns PRTLISTOFF32NODE
* @param a_pNode The node the offset is relative to.
* @param a_off The offset.
*/
#define RTLISTOFF32_TO_PTR(a_pNode, a_off) ((PRTLISTOFF32NODE)((intptr_t)(a_pNode) + (a_off)))
/**
* Internal macro for getting the pointer to the next node.
* @returns PRTLISTOFF32NODE
* @param a_pNode The node the offset is relative to.
*/
#define RTLISTOFF32_NEXT_PTR(a_pNode) RTLISTOFF32_TO_PTR(a_pNode, (a_pNode)->offNext)
/**
* Internal macro for getting the pointer to the previous node.
* @returns PRTLISTOFF32NODE
* @param a_pNode The node the offset is relative to.
*/
#define RTLISTOFF32_PREV_PTR(a_pNode) RTLISTOFF32_TO_PTR(a_pNode, (a_pNode)->offPrev)
/**
* Internal macro for converting an a pointer to an offset.
* @returns offset
* @param a_pNode The node the offset is relative to.
* @param a_pOtherNode The pointer to convert.
*/
#define RTLISTOFF32_TO_OFF(a_pNode, a_pOtherNode) ((int32_t)((intptr_t)(a_pOtherNode) - (intptr_t)(a_pNode)))
/**
* Internal macro for getting the pointer to the next node.
* @returns PRTLISTOFF32NODE
* @param a_pNode The node which offNext member should be set.
* @param a_pNewNext Pointer to the new next node.
*/
#define RTLISTOFF32_SET_NEXT_PTR(a_pNode, a_pNewNext) \
do { (a_pNode)->offNext = RTLISTOFF32_TO_OFF(a_pNode, a_pNewNext); } while (0)
/**
* Internal macro for getting the pointer to the previous node.
* @returns PRTLISTOFF32NODE
* @param a_pNode The node which offPrev member should be set.
* @param a_pNewPrev Pointer to the new previous node.
*/
#define RTLISTOFF32_SET_PREV_PTR(a_pNode, a_pNewPrev) \
do { (a_pNode)->offPrev = RTLISTOFF32_TO_OFF(a_pNode, a_pNewPrev); } while (0)
/**
* Append a node to the end of the list.
*
* @param pList The list to append the node to.
* @param pNode The node to append.
*/
DECLINLINE(void) RTListOff32Append(PRTLISTOFF32NODE pList, PRTLISTOFF32NODE pNode)
{
PRTLISTOFF32NODE pLast = RTLISTOFF32_PREV_PTR(pList);
RTLISTOFF32_SET_NEXT_PTR(pLast, pNode);
RTLISTOFF32_SET_PREV_PTR(pNode, pLast);
RTLISTOFF32_SET_NEXT_PTR(pNode, pList);
RTLISTOFF32_SET_PREV_PTR(pList, pNode);
}
/**
* Add a node as the first element of the list.
*
* @param pList The list to prepend the node to.
* @param pNode The node to prepend.
*/
DECLINLINE(void) RTListOff32Prepend(PRTLISTOFF32NODE pList, PRTLISTOFF32NODE pNode)
{
PRTLISTOFF32NODE pFirst = RTLISTOFF32_NEXT_PTR(pList);
RTLISTOFF32_SET_PREV_PTR(pFirst, pNode);
RTLISTOFF32_SET_NEXT_PTR(pNode, pFirst);
RTLISTOFF32_SET_PREV_PTR(pNode, pList);
RTLISTOFF32_SET_NEXT_PTR(pList, pNode);
}
/**
* Inserts a node after the specified one.
*
* @param pCurNode The current node.
* @param pNewNode The node to insert.
*/
DECLINLINE(void) RTListOff32NodeInsertAfter(PRTLISTOFF32NODE pCurNode, PRTLISTOFF32NODE pNewNode)
{
RTListOff32Prepend(pCurNode, pNewNode);
}
/**
* Inserts a node before the specified one.
*
* @param pCurNode The current node.
* @param pNewNode The node to insert.
*/
DECLINLINE(void) RTListOff32NodeInsertBefore(PRTLISTOFF32NODE pCurNode, PRTLISTOFF32NODE pNewNode)
{
RTListOff32Append(pCurNode, pNewNode);
}
/**
* Remove a node from a list.
*
* @param pNode The node to remove.
*/
DECLINLINE(void) RTListOff32NodeRemove(PRTLISTOFF32NODE pNode)
{
PRTLISTOFF32NODE pPrev = RTLISTOFF32_PREV_PTR(pNode);
PRTLISTOFF32NODE pNext = RTLISTOFF32_NEXT_PTR(pNode);
RTLISTOFF32_SET_NEXT_PTR(pPrev, pNext);
RTLISTOFF32_SET_PREV_PTR(pNext, pPrev);
/* poison */
pNode->offNext = INT32_MAX / 2;
pNode->offPrev = INT32_MAX / 2;
}
/**
* Checks if a node is the last element in the list.
*
* @retval true if the node is the last element in the list.
* @retval false otherwise
*
* @param pList The list.
* @param pNode The node to check.
*/
#define RTListOff32NodeIsLast(pList, pNode) (RTLISTOFF32_NEXT_PTR(pNode) == (pList))
/**
* Checks if a node is the first element in the list.
*
* @retval true if the node is the first element in the list.
* @retval false otherwise.
*
* @param pList The list.
* @param pNode The node to check.
*/
#define RTListOff32NodeIsFirst(pList, pNode) (RTLISTOFF32_PREV_PTR(pNode) == (pList))
/**
* Checks if a type converted node is actually the dummy element (@a pList).
*
* @retval true if the node is the dummy element in the list.
* @retval false otherwise.
*
* @param pList The list.
* @param pNode The node structure to check. Typically
* something obtained from RTListOff32NodeGetNext()
* or RTListOff32NodeGetPrev(). This is NOT a
* PRTLISTOFF32NODE but something that contains a
* RTLISTOFF32NODE member!
* @param Type Structure the list node is a member of.
* @param Member The list node member.
*/
#define RTListOff32NodeIsDummy(pList, pNode, Type, Member) \
( (pNode) == RT_FROM_MEMBER((pList), Type, Member) )
/** @copydoc RTListOff32NodeIsDummy */
#define RTListOff32NodeIsDummyCpp(pList, pNode, Type, Member) \
( (pNode) == RT_FROM_CPP_MEMBER((pList), Type, Member) )
/**
* Checks if a list is empty.
*
* @retval true if the list is empty.
* @retval false otherwise.
*
* @param pList The list to check.
*/
#define RTListOff32IsEmpty(pList) ((pList)->offNext == 0)
/**
* Returns the next node in the list.
*
* @returns The next node.
*
* @param pCurNode The current node.
* @param Type Structure the list node is a member of.
* @param Member The list node member.
*/
#define RTListOff32NodeGetNext(pCurNode, Type, Member) \
RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(pCurNode), Type, Member)
/** @copydoc RTListOff32NodeGetNext */
#define RTListOff32NodeGetNextCpp(pCurNode, Type, Member) \
RT_FROM_CPP_MEMBER(RTLISTOFF32_NEXT_PTR(pCurNode), Type, Member)
/**
* Returns the previous node in the list.
*
* @returns The previous node.
*
* @param pCurNode The current node.
* @param Type Structure the list node is a member of.
* @param Member The list node member.
*/
#define RTListOff32NodeGetPrev(pCurNode, Type, Member) \
RT_FROM_MEMBER(RTLISTOFF32_PREV_PTR(pCurNode), Type, Member)
/** @copydoc RTListOff32NodeGetPrev */
#define RTListOff32NodeGetPrevCpp(pCurNode, Type, Member) \
RT_FROM_CPP_MEMBER(RTLISTOFF32_PREV_PTR(pCurNode), Type, Member)
/**
* Returns the first element in the list (checks for empty list).
*
* @retval Pointer to the first list element.
* @retval NULL if the list is empty.
*
* @param pList List to get the first element from.
* @param Type Structure the list node is a member of.
* @param Member The list node member.
*/
#define RTListOff32GetFirst(pList, Type, Member) \
((pList)->offNext != 0 ? RTListOff32NodeGetNext(pList, Type, Member) : NULL)
/** @copydoc RTListOff32GetFirst */
#define RTListOff32GetFirstCpp(pList, Type, Member) \
((pList)->offNext != 0 ? RTListOff32NodeGetNextCpp(pList, Type, Member) : NULL)
/**
* Returns the last element in the list (checks for empty list).
*
* @retval Pointer to the last list element.
* @retval NULL if the list is empty.
*
* @param pList List to get the last element from.
* @param Type Structure the list node is a member of.
* @param Member The list node member.
*/
#define RTListOff32GetLast(pList, Type, Member) \
((pList)->offPrev != 0 ? RTListOff32NodeGetPrev(pList, Type, Member) : NULL)
/** @copydoc RTListOff32GetLast */
#define RTListOff32GetLastCpp(pList, Type, Member) \
((pList)->offPrev != 0 ? RTListOff32NodeGetPrevCpp(pList, Type, Member) : NULL)
/**
* Returns the next node in the list or NULL if the end has been reached.
*
* @returns The next node or NULL.
*
* @param pList The list @a pCurNode is linked on.
* @param pCurNode The current node, of type @a Type.
* @param Type Structure the list node is a member of.
* @param Member The list node member.
*/
#define RTListOff32GetNext(pList, pCurNode, Type, Member) \
( RTLISTOFF32_NEXT_PTR(&(pCurNode)->Member) != (pList) \
? RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(&(pCurNode)->Member), Type, Member) : NULL )
/** @copydoc RTListOff32GetNext */
#define RTListOff32GetNextCpp(pList, pCurNode, Type, Member) \
( RTLISTOFF32_NEXT_PTR(&(pCurNode)->Member) != (pList) \
? RT_FROM_CPP_MEMBER(RTLISTOFF32_NEXT_PTR(&(pCurNode)->Member), Type, Member) : NULL )
/**
* Returns the previous node in the list or NULL if the start has been reached.
*
* @returns The previous node or NULL.
*
* @param pList The list @a pCurNode is linked on.
* @param pCurNode The current node, of type @a Type.
* @param Type Structure the list node is a member of.
* @param Member The list node member.
*/
#define RTListOff32GetPrev(pList, pCurNode, Type, Member) \
( RTLISTOFF32_PREV_PTR(&(pCurNode)->Member) != (pList) \
? RT_FROM_MEMBER(RTLISTOFF32_PREV_PTR(&(pCurNode)->Member), Type, Member) : NULL )
/** @copydoc RTListOff32GetPrev */
#define RTListOff32GetPrevCpp(pList, pCurNode, Type, Member) \
( RTLISTOFF32_PREV_PTR(&(pCurNode)->Member) != (pList) \
? RT_FROM_CPP_MEMBER(RTLISTOFF32_PREV_PTR(&(pCurNode)->Member), Type, Member) : NULL )
/**
* Enumerate the list in head to tail order.
*
* @param pList List to enumerate.
* @param pIterator The iterator variable name.
* @param Type Structure the list node is a member of.
* @param Member The list node member name.
*/
#define RTListOff32ForEach(pList, pIterator, Type, Member) \
for (pIterator = RTListOff32NodeGetNext(pList, Type, Member); \
!RTListOff32NodeIsDummy(pList, pIterator, Type, Member); \
pIterator = RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member) )
/** @copydoc RTListOff32ForEach */
#define RTListOff32ForEachCpp(pList, pIterator, Type, Member) \
for (pIterator = RTListOff32NodeGetNextCpp(pList, Type, Member); \
!RTListOff32NodeIsDummyCpp(pList, pIterator, Type, Member); \
pIterator = RT_FROM_CPP_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member) )
/**
* Enumerate the list in head to tail order, safe against removal of the
* current node.
*
* @param pList List to enumerate.
* @param pIterator The iterator variable name.
* @param pIterNext The name of the variable saving the pointer to
* the next element.
* @param Type Structure the list node is a member of.
* @param Member The list node member name.
*/
#define RTListOff32ForEachSafe(pList, pIterator, pIterNext, Type, Member) \
for (pIterator = RTListOff32NodeGetNext(pList, Type, Member), \
pIterNext = RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member); \
!RTListOff32NodeIsDummy(pList, pIterator, Type, Member); \
pIterator = pIterNext, \
pIterNext = RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member) )
/** @copydoc RTListOff32ForEachSafe */
#define RTListOff32ForEachSafeCpp(pList, pIterator, pIterNext, Type, Member) \
for (pIterator = RTListOff32NodeGetNextCpp(pList, Type, Member), \
pIterNext = RT_FROM_CPP_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member); \
!RTListOff32NodeIsDummyCpp(pList, pIterator, Type, Member); \
pIterator = pIterNext, \
pIterNext = RT_FROM_CPP_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member) )
/**
* Enumerate the list in reverse order (tail to head).
*
* @param pList List to enumerate.
* @param pIterator The iterator variable name.
* @param Type Structure the list node is a member of.
* @param Member The list node member name.
*/
#define RTListOff32ForEachReverse(pList, pIterator, Type, Member) \
for (pIterator = RTListOff32NodeGetPrev(pList, Type, Member); \
!RTListOff32NodeIsDummy(pList, pIterator, Type, Member); \
pIterator = RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member) )
/** @copydoc RTListOff32ForEachReverse */
#define RTListOff32ForEachReverseCpp(pList, pIterator, Type, Member) \
for (pIterator = RTListOff32NodeGetPrevCpp(pList, Type, Member); \
!RTListOff32NodeIsDummyCpp(pList, pIterator, Type, Member); \
pIterator = RT_FROM_CPP_MEMBER(RTLISTOFF32_PREV_PTR(&(pIterator)->Member), Type, Member) )
/**
* Enumerate the list in reverse order (tail to head).
*
* @param pList List to enumerate.
* @param pIterator The iterator variable name.
* @param pIterPrev The name of the variable saving the pointer to
* the previous element.
* @param Type Structure the list node is a member of.
* @param Member The list node member name.
*/
#define RTListOff32ForEachReverseSafe(pList, pIterator, pIterPrev, Type, Member) \
for (pIterator = RTListOff32NodeGetPrev(pList, Type, Member), \
pIterPrev = RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member); \
!RTListOff32NodeIsDummy(pList, pIterator, Type, Member); \
pIterator = pIterPrev, \
pIterPrev = RT_FROM_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member) )
/** @copydoc RTListOff32ForEachReverseSafe */
#define RTListOff32ForEachReverseSafeCpp(pList, pIterator, pIterPrev, Type, Member) \
for (pIterator = RTListOff32NodeGetPrevCpp(pList, Type, Member), \
pIterPrev = RT_FROM_CPP_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member); \
!RTListOff32NodeIsDummyCpp(pList, pIterator, Type, Member); \
pIterator = pIterPrev, \
pIterPrev = RT_FROM_CPP_MEMBER(RTLISTOFF32_NEXT_PTR(&(pIterator)->Member), Type, Member) )
/**
* Move the given list to a new list header.
*
* @param pListDst The new list.
* @param pListSrc The list to move.
*/
DECLINLINE(void) RTListOff32Move(PRTLISTOFF32NODE pListDst, PRTLISTOFF32NODE pListSrc)
{
if (!RTListOff32IsEmpty(pListSrc))
{
PRTLISTOFF32NODE pFirst = RTLISTOFF32_NEXT_PTR(pListSrc);
PRTLISTOFF32NODE pLast = RTLISTOFF32_PREV_PTR(pListSrc);
RTLISTOFF32_SET_NEXT_PTR(pListDst, pFirst);
RTLISTOFF32_SET_PREV_PTR(pListDst, pLast);
/* Adjust the first and last element links */
RTLISTOFF32_SET_NEXT_PTR(pLast, pListDst);
RTLISTOFF32_SET_PREV_PTR(pFirst, pListDst);
/* Finally remove the elements from the source list */
RTListOff32Init(pListSrc);
}
}
/**
* List concatenation.
*
* @param pListDst The destination list.
* @param pListSrc The source list to concatenate.
*/
DECLINLINE(void) RTListOff32Concatenate(PRTLISTOFF32ANCHOR pListDst, PRTLISTOFF32ANCHOR pListSrc)
{
if (!RTListOff32IsEmpty(pListSrc))
{
PRTLISTOFF32NODE pFirstSrc = RTLISTOFF32_NEXT_PTR(pListSrc);
PRTLISTOFF32NODE pLastSrc = RTLISTOFF32_PREV_PTR(pListSrc);
PRTLISTOFF32NODE pLastDst = RTLISTOFF32_PREV_PTR(pListDst);
RTLISTOFF32_SET_NEXT_PTR(pLastDst, pFirstSrc);
RTLISTOFF32_SET_PREV_PTR(pFirstSrc, pLastDst);
RTLISTOFF32_SET_NEXT_PTR(pLastSrc, pListDst);
RTLISTOFF32_SET_PREV_PTR(pListDst, pLastSrc);
/* Finally remove the elements from the source list */
RTListOff32Init(pListSrc);
}
}
/** @} */
RT_C_DECLS_END
#endif /* !IPRT_INCLUDED_list_off32_h */
|