VirtualBox

source: vbox/trunk/include/iprt/avl.h@ 57004

Last change on this file since 57004 was 53624, checked in by vboxsync, 10 years ago

scm automatic cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 46.4 KB
Line 
1/** @file
2 * IPRT - AVL Trees.
3 */
4
5/*
6 * Copyright (C) 1999-2012 knut st. osmundsen <bird-src-spam@anduin.net>
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_avl_h
27#define ___iprt_avl_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_rt_avl RTAvl - AVL Trees
35 * @ingroup grp_rt
36 * @{
37 */
38
39
40/** AVL tree of void pointers.
41 * @{
42 */
43
44/**
45 * AVL key type
46 */
47typedef void * AVLPVKEY;
48
49/**
50 * AVL Core node.
51 */
52typedef struct _AVLPVNodeCore
53{
54 AVLPVKEY Key; /** Key value. */
55 struct _AVLPVNodeCore *pLeft; /** Pointer to left leaf node. */
56 struct _AVLPVNodeCore *pRight; /** Pointer to right leaf node. */
57 unsigned char uchHeight; /** Height of this tree: max(height(left), height(right)) + 1 */
58} AVLPVNODECORE, *PAVLPVNODECORE, **PPAVLPVNODECORE;
59
60/** A tree with void pointer keys. */
61typedef PAVLPVNODECORE AVLPVTREE;
62/** Pointer to a tree with void pointer keys. */
63typedef PPAVLPVNODECORE PAVLPVTREE;
64
65/** Callback function for AVLPVDoWithAll().
66 * @returns IPRT status codes. */
67typedef DECLCALLBACK(int) AVLPVCALLBACK(PAVLPVNODECORE, void *);
68/** Pointer to callback function for AVLPVDoWithAll(). */
69typedef AVLPVCALLBACK *PAVLPVCALLBACK;
70
71/*
72 * Functions.
73 */
74RTDECL(bool) RTAvlPVInsert(PAVLPVTREE ppTree, PAVLPVNODECORE pNode);
75RTDECL(PAVLPVNODECORE) RTAvlPVRemove(PAVLPVTREE ppTree, AVLPVKEY Key);
76RTDECL(PAVLPVNODECORE) RTAvlPVGet(PAVLPVTREE ppTree, AVLPVKEY Key);
77RTDECL(PAVLPVNODECORE) RTAvlPVGetBestFit(PAVLPVTREE ppTree, AVLPVKEY Key, bool fAbove);
78RTDECL(PAVLPVNODECORE) RTAvlPVRemoveBestFit(PAVLPVTREE ppTree, AVLPVKEY Key, bool fAbove);
79RTDECL(int) RTAvlPVDoWithAll(PAVLPVTREE ppTree, int fFromLeft, PAVLPVCALLBACK pfnCallBack, void *pvParam);
80RTDECL(int) RTAvlPVDestroy(PAVLPVTREE ppTree, PAVLPVCALLBACK pfnCallBack, void *pvParam);
81
82/** @} */
83
84
85/** AVL tree of unsigned long.
86 * @{
87 */
88
89/**
90 * AVL key type
91 */
92typedef unsigned long AVLULKEY;
93
94/**
95 * AVL Core node.
96 */
97typedef struct _AVLULNodeCore
98{
99 AVLULKEY Key; /** Key value. */
100 struct _AVLULNodeCore *pLeft; /** Pointer to left leaf node. */
101 struct _AVLULNodeCore *pRight; /** Pointer to right leaf node. */
102 unsigned char uchHeight; /** Height of this tree: max(height(left), height(right)) + 1 */
103} AVLULNODECORE, *PAVLULNODECORE, **PPAVLULNODECORE;
104
105
106/** Callback function for AVLULDoWithAll().
107 * @returns IPRT status codes. */
108typedef DECLCALLBACK(int) AVLULCALLBACK(PAVLULNODECORE, void*);
109/** Pointer to callback function for AVLULDoWithAll(). */
110typedef AVLULCALLBACK *PAVLULCALLBACK;
111
112
113/*
114 * Functions.
115 */
116RTDECL(bool) RTAvlULInsert(PPAVLULNODECORE ppTree, PAVLULNODECORE pNode);
117RTDECL(PAVLULNODECORE) RTAvlULRemove(PPAVLULNODECORE ppTree, AVLULKEY Key);
118RTDECL(PAVLULNODECORE) RTAvlULGet(PPAVLULNODECORE ppTree, AVLULKEY Key);
119RTDECL(PAVLULNODECORE) RTAvlULGetBestFit(PPAVLULNODECORE ppTree, AVLULKEY Key, bool fAbove);
120RTDECL(PAVLULNODECORE) RTAvlULRemoveBestFit(PPAVLULNODECORE ppTree, AVLULKEY Key, bool fAbove);
121RTDECL(int) RTAvlULDoWithAll(PPAVLULNODECORE ppTree, int fFromLeft, PAVLULCALLBACK pfnCallBack, void *pvParam);
122RTDECL(int) RTAvlULDestroy(PPAVLULNODECORE pTree, PAVLULCALLBACK pfnCallBack, void *pvParam);
123
124/** @} */
125
126
127
128/** AVL tree of void pointer ranges.
129 * @{
130 */
131
132/**
133 * AVL key type
134 */
135typedef void *AVLRPVKEY;
136
137/**
138 * AVL Core node.
139 */
140typedef struct AVLRPVNodeCore
141{
142 AVLRPVKEY Key; /**< First key value in the range (inclusive). */
143 AVLRPVKEY KeyLast; /**< Last key value in the range (inclusive). */
144 struct AVLRPVNodeCore *pLeft; /**< Pointer to left leaf node. */
145 struct AVLRPVNodeCore *pRight; /**< Pointer to right leaf node. */
146 unsigned char uchHeight; /**< Height of this tree: max(height(left), height(right)) + 1 */
147} AVLRPVNODECORE, *PAVLRPVNODECORE, **PPAVLRPVNODECORE;
148
149/** A tree with void pointer keys. */
150typedef PAVLRPVNODECORE AVLRPVTREE;
151/** Pointer to a tree with void pointer keys. */
152typedef PPAVLRPVNODECORE PAVLRPVTREE;
153
154/** Callback function for AVLPVDoWithAll().
155 * @returns IPRT status codes. */
156typedef DECLCALLBACK(int) AVLRPVCALLBACK(PAVLRPVNODECORE, void *);
157/** Pointer to callback function for AVLPVDoWithAll(). */
158typedef AVLRPVCALLBACK *PAVLRPVCALLBACK;
159
160/*
161 * Functions.
162 */
163RTDECL(bool) RTAvlrPVInsert(PAVLRPVTREE ppTree, PAVLRPVNODECORE pNode);
164RTDECL(PAVLRPVNODECORE) RTAvlrPVRemove(PAVLRPVTREE ppTree, AVLRPVKEY Key);
165RTDECL(PAVLRPVNODECORE) RTAvlrPVGet(PAVLRPVTREE ppTree, AVLRPVKEY Key);
166RTDECL(PAVLRPVNODECORE) RTAvlrPVRangeGet(PAVLRPVTREE ppTree, AVLRPVKEY Key);
167RTDECL(PAVLRPVNODECORE) RTAvlrPVRangeRemove(PAVLRPVTREE ppTree, AVLRPVKEY Key);
168RTDECL(PAVLRPVNODECORE) RTAvlrPVGetBestFit(PAVLRPVTREE ppTree, AVLRPVKEY Key, bool fAbove);
169RTDECL(PAVLRPVNODECORE) RTAvlrPVRemoveBestFit(PAVLRPVTREE ppTree, AVLRPVKEY Key, bool fAbove);
170RTDECL(int) RTAvlrPVDoWithAll(PAVLRPVTREE ppTree, int fFromLeft, PAVLRPVCALLBACK pfnCallBack, void *pvParam);
171RTDECL(int) RTAvlrPVDestroy(PAVLRPVTREE ppTree, PAVLRPVCALLBACK pfnCallBack, void *pvParam);
172
173/** @} */
174
175
176
177/** AVL tree of uint32_t
178 * @{
179 */
180
181/** AVL key type. */
182typedef uint32_t AVLU32KEY;
183
184/** AVL Core node. */
185typedef struct _AVLU32NodeCore
186{
187 AVLU32KEY Key; /**< Key value. */
188 struct _AVLU32NodeCore *pLeft; /**< Pointer to left leaf node. */
189 struct _AVLU32NodeCore *pRight; /**< Pointer to right leaf node. */
190 unsigned char uchHeight; /**< Height of this tree: max(height(left), height(right)) + 1 */
191} AVLU32NODECORE, *PAVLU32NODECORE, **PPAVLU32NODECORE;
192
193/** A tree with void pointer keys. */
194typedef PAVLU32NODECORE AVLU32TREE;
195/** Pointer to a tree with void pointer keys. */
196typedef PPAVLU32NODECORE PAVLU32TREE;
197
198/** Callback function for AVLU32DoWithAll() & AVLU32Destroy().
199 * @returns IPRT status codes. */
200typedef DECLCALLBACK(int) AVLU32CALLBACK(PAVLU32NODECORE, void*);
201/** Pointer to callback function for AVLU32DoWithAll() & AVLU32Destroy(). */
202typedef AVLU32CALLBACK *PAVLU32CALLBACK;
203
204
205/*
206 * Functions.
207 */
208RTDECL(bool) RTAvlU32Insert(PAVLU32TREE pTree, PAVLU32NODECORE pNode);
209RTDECL(PAVLU32NODECORE) RTAvlU32Remove(PAVLU32TREE pTree, AVLU32KEY Key);
210RTDECL(PAVLU32NODECORE) RTAvlU32Get(PAVLU32TREE pTree, AVLU32KEY Key);
211RTDECL(PAVLU32NODECORE) RTAvlU32GetBestFit(PAVLU32TREE pTree, AVLU32KEY Key, bool fAbove);
212RTDECL(PAVLU32NODECORE) RTAvlU32RemoveBestFit(PAVLU32TREE pTree, AVLU32KEY Key, bool fAbove);
213RTDECL(int) RTAvlU32DoWithAll(PAVLU32TREE pTree, int fFromLeft, PAVLU32CALLBACK pfnCallBack, void *pvParam);
214RTDECL(int) RTAvlU32Destroy(PAVLU32TREE pTree, PAVLU32CALLBACK pfnCallBack, void *pvParam);
215
216/** @} */
217
218/**
219 * AVL uint32_t type for the relative offset pointer scheme.
220 */
221typedef int32_t AVLOU32;
222
223typedef uint32_t AVLOU32KEY;
224
225/**
226 * AVL Core node.
227 */
228typedef struct _AVLOU32NodeCore
229{
230 /** Key value. */
231 AVLOU32KEY Key;
232 /** Offset to the left leaf node, relative to this field. */
233 AVLOU32 pLeft;
234 /** Offset to the right leaf node, relative to this field. */
235 AVLOU32 pRight;
236 /** Height of this tree: max(height(left), height(right)) + 1 */
237 unsigned char uchHeight;
238} AVLOU32NODECORE, *PAVLOU32NODECORE;
239
240/** A offset base tree with uint32_t keys. */
241typedef AVLOU32 AVLOU32TREE;
242/** Pointer to an offset base tree with uint32_t keys. */
243typedef AVLOU32TREE *PAVLOU32TREE;
244
245/** Pointer to an internal tree pointer.
246 * In this case it's a pointer to a relative offset. */
247typedef AVLOU32TREE *PPAVLOU32NODECORE;
248
249/** Callback function for RTAvloU32DoWithAll().
250 * @returns IPRT status codes. */
251typedef DECLCALLBACK(int) AVLOU32CALLBACK(PAVLOU32NODECORE pNode, void *pvUser);
252/** Pointer to callback function for RTAvloU32DoWithAll(). */
253typedef AVLOU32CALLBACK *PAVLOU32CALLBACK;
254
255RTDECL(bool) RTAvloU32Insert(PAVLOU32TREE pTree, PAVLOU32NODECORE pNode);
256RTDECL(PAVLOU32NODECORE) RTAvloU32Remove(PAVLOU32TREE pTree, AVLOU32KEY Key);
257RTDECL(PAVLOU32NODECORE) RTAvloU32Get(PAVLOU32TREE pTree, AVLOU32KEY Key);
258RTDECL(int) RTAvloU32DoWithAll(PAVLOU32TREE pTree, int fFromLeft, PAVLOU32CALLBACK pfnCallBack, void *pvParam);
259RTDECL(PAVLOU32NODECORE) RTAvloU32GetBestFit(PAVLOU32TREE ppTree, AVLOU32KEY Key, bool fAbove);
260RTDECL(PAVLOU32NODECORE) RTAvloU32RemoveBestFit(PAVLOU32TREE ppTree, AVLOU32KEY Key, bool fAbove);
261RTDECL(int) RTAvloU32Destroy(PAVLOU32TREE pTree, PAVLOU32CALLBACK pfnCallBack, void *pvParam);
262
263/** @} */
264
265
266/** AVL tree of uint32_t, list duplicates.
267 * @{
268 */
269
270/** AVL key type. */
271typedef uint32_t AVLLU32KEY;
272
273/** AVL Core node. */
274typedef struct _AVLLU32NodeCore
275{
276 AVLLU32KEY Key; /**< Key value. */
277 unsigned char uchHeight; /**< Height of this tree: max(height(left), height(right)) + 1 */
278 struct _AVLLU32NodeCore *pLeft; /**< Pointer to left leaf node. */
279 struct _AVLLU32NodeCore *pRight; /**< Pointer to right leaf node. */
280 struct _AVLLU32NodeCore *pList; /**< Pointer to next node with the same key. */
281} AVLLU32NODECORE, *PAVLLU32NODECORE, **PPAVLLU32NODECORE;
282
283/** Callback function for RTAvllU32DoWithAll() & RTAvllU32Destroy().
284 * @returns IPRT status codes. */
285typedef DECLCALLBACK(int) AVLLU32CALLBACK(PAVLLU32NODECORE, void*);
286/** Pointer to callback function for RTAvllU32DoWithAll() & RTAvllU32Destroy(). */
287typedef AVLLU32CALLBACK *PAVLLU32CALLBACK;
288
289
290/*
291 * Functions.
292 */
293RTDECL(bool) RTAvllU32Insert(PPAVLLU32NODECORE ppTree, PAVLLU32NODECORE pNode);
294RTDECL(PAVLLU32NODECORE) RTAvllU32Remove(PPAVLLU32NODECORE ppTree, AVLLU32KEY Key);
295RTDECL(PAVLLU32NODECORE) RTAvllU32RemoveNode(PPAVLLU32NODECORE ppTree, PAVLLU32NODECORE pNode);
296RTDECL(PAVLLU32NODECORE) RTAvllU32Get(PPAVLLU32NODECORE ppTree, AVLLU32KEY Key);
297RTDECL(PAVLLU32NODECORE) RTAvllU32GetBestFit(PPAVLLU32NODECORE ppTree, AVLLU32KEY Key, bool fAbove);
298RTDECL(PAVLLU32NODECORE) RTAvllU32RemoveBestFit(PPAVLLU32NODECORE ppTree, AVLLU32KEY Key, bool fAbove);
299RTDECL(int) RTAvllU32DoWithAll(PPAVLLU32NODECORE ppTree, int fFromLeft, PAVLLU32CALLBACK pfnCallBack, void *pvParam);
300RTDECL(int) RTAvllU32Destroy(PPAVLLU32NODECORE pTree, PAVLLU32CALLBACK pfnCallBack, void *pvParam);
301
302/** @} */
303
304
305
306/** AVL tree of uint64_t ranges.
307 * @{
308 */
309
310/**
311 * AVL key type
312 */
313typedef uint64_t AVLRU64KEY;
314
315/**
316 * AVL Core node.
317 */
318typedef struct AVLRU64NodeCore
319{
320 AVLRU64KEY Key; /**< First key value in the range (inclusive). */
321 AVLRU64KEY KeyLast; /**< Last key value in the range (inclusive). */
322 struct AVLRU64NodeCore *pLeft; /**< Pointer to left leaf node. */
323 struct AVLRU64NodeCore *pRight; /**< Pointer to right leaf node. */
324 unsigned char uchHeight; /**< Height of this tree: max(height(left), height(right)) + 1 */
325} AVLRU64NODECORE, *PAVLRU64NODECORE, **PPAVLRU64NODECORE;
326
327/** A tree with void pointer keys. */
328typedef PAVLRU64NODECORE AVLRU64TREE;
329/** Pointer to a tree with void pointer keys. */
330typedef PPAVLRU64NODECORE PAVLRU64TREE;
331
332/** Callback function for AVLRU64DoWithAll().
333 * @returns IPRT status codes. */
334typedef DECLCALLBACK(int) AVLRU64CALLBACK(PAVLRU64NODECORE, void *);
335/** Pointer to callback function for AVLU64DoWithAll(). */
336typedef AVLRU64CALLBACK *PAVLRU64CALLBACK;
337
338/*
339 * Functions.
340 */
341RTDECL(bool) RTAvlrU64Insert(PAVLRU64TREE ppTree, PAVLRU64NODECORE pNode);
342RTDECL(PAVLRU64NODECORE) RTAvlrU64Remove(PAVLRU64TREE ppTree, AVLRU64KEY Key);
343RTDECL(PAVLRU64NODECORE) RTAvlrU64Get(PAVLRU64TREE ppTree, AVLRU64KEY Key);
344RTDECL(PAVLRU64NODECORE) RTAvlrU64RangeGet(PAVLRU64TREE ppTree, AVLRU64KEY Key);
345RTDECL(PAVLRU64NODECORE) RTAvlrU64RangeRemove(PAVLRU64TREE ppTree, AVLRU64KEY Key);
346RTDECL(PAVLRU64NODECORE) RTAvlrU64GetBestFit(PAVLRU64TREE ppTree, AVLRU64KEY Key, bool fAbove);
347RTDECL(PAVLRU64NODECORE) RTAvlrU64RemoveBestFit(PAVLRU64TREE ppTree, AVLRU64KEY Key, bool fAbove);
348RTDECL(int) RTAvlrU64DoWithAll(PAVLRU64TREE ppTree, int fFromLeft, PAVLRU64CALLBACK pfnCallBack, void *pvParam);
349RTDECL(int) RTAvlrU64Destroy(PAVLRU64TREE ppTree, PAVLRU64CALLBACK pfnCallBack, void *pvParam);
350
351/** @} */
352
353
354
355/** AVL tree of RTGCPHYSes - using relative offsets internally.
356 * @{
357 */
358
359/**
360 * AVL 'pointer' type for the relative offset pointer scheme.
361 */
362typedef int32_t AVLOGCPHYS;
363
364/**
365 * AVL Core node.
366 */
367typedef struct _AVLOGCPhysNodeCore
368{
369 /** Key value. */
370 RTGCPHYS Key;
371 /** Offset to the left leaf node, relative to this field. */
372 AVLOGCPHYS pLeft;
373 /** Offset to the right leaf node, relative to this field. */
374 AVLOGCPHYS pRight;
375 /** Height of this tree: max(height(left), height(right)) + 1 */
376 unsigned char uchHeight;
377 /** Padding */
378 unsigned char Padding[7];
379} AVLOGCPHYSNODECORE, *PAVLOGCPHYSNODECORE;
380
381/** A offset base tree with uint32_t keys. */
382typedef AVLOGCPHYS AVLOGCPHYSTREE;
383/** Pointer to an offset base tree with uint32_t keys. */
384typedef AVLOGCPHYSTREE *PAVLOGCPHYSTREE;
385
386/** Pointer to an internal tree pointer.
387 * In this case it's a pointer to a relative offset. */
388typedef AVLOGCPHYSTREE *PPAVLOGCPHYSNODECORE;
389
390/** Callback function for RTAvloGCPhysDoWithAll() and RTAvloGCPhysDestroy().
391 * @returns IPRT status codes. */
392typedef DECLCALLBACK(int) AVLOGCPHYSCALLBACK(PAVLOGCPHYSNODECORE pNode, void *pvUser);
393/** Pointer to callback function for RTAvloGCPhysDoWithAll() and RTAvloGCPhysDestroy(). */
394typedef AVLOGCPHYSCALLBACK *PAVLOGCPHYSCALLBACK;
395
396RTDECL(bool) RTAvloGCPhysInsert(PAVLOGCPHYSTREE pTree, PAVLOGCPHYSNODECORE pNode);
397RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysRemove(PAVLOGCPHYSTREE pTree, RTGCPHYS Key);
398RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysGet(PAVLOGCPHYSTREE pTree, RTGCPHYS Key);
399RTDECL(int) RTAvloGCPhysDoWithAll(PAVLOGCPHYSTREE pTree, int fFromLeft, PAVLOGCPHYSCALLBACK pfnCallBack, void *pvParam);
400RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysGetBestFit(PAVLOGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
401RTDECL(PAVLOGCPHYSNODECORE) RTAvloGCPhysRemoveBestFit(PAVLOGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
402RTDECL(int) RTAvloGCPhysDestroy(PAVLOGCPHYSTREE pTree, PAVLOGCPHYSCALLBACK pfnCallBack, void *pvParam);
403
404/** @} */
405
406
407/** AVL tree of RTGCPHYS ranges - using relative offsets internally.
408 * @{
409 */
410
411/**
412 * AVL 'pointer' type for the relative offset pointer scheme.
413 */
414typedef int32_t AVLROGCPHYS;
415
416/**
417 * AVL Core node.
418 */
419typedef struct _AVLROGCPhysNodeCore
420{
421 /** First key value in the range (inclusive). */
422 RTGCPHYS Key;
423 /** Last key value in the range (inclusive). */
424 RTGCPHYS KeyLast;
425 /** Offset to the left leaf node, relative to this field. */
426 AVLROGCPHYS pLeft;
427 /** Offset to the right leaf node, relative to this field. */
428 AVLROGCPHYS pRight;
429 /** Height of this tree: max(height(left), height(right)) + 1 */
430 unsigned char uchHeight;
431 /** Padding */
432 unsigned char Padding[7];
433} AVLROGCPHYSNODECORE, *PAVLROGCPHYSNODECORE;
434
435/** A offset base tree with uint32_t keys. */
436typedef AVLROGCPHYS AVLROGCPHYSTREE;
437/** Pointer to an offset base tree with uint32_t keys. */
438typedef AVLROGCPHYSTREE *PAVLROGCPHYSTREE;
439
440/** Pointer to an internal tree pointer.
441 * In this case it's a pointer to a relative offset. */
442typedef AVLROGCPHYSTREE *PPAVLROGCPHYSNODECORE;
443
444/** Callback function for RTAvlroGCPhysDoWithAll() and RTAvlroGCPhysDestroy().
445 * @returns IPRT status codes. */
446typedef DECLCALLBACK(int) AVLROGCPHYSCALLBACK(PAVLROGCPHYSNODECORE pNode, void *pvUser);
447/** Pointer to callback function for RTAvlroGCPhysDoWithAll() and RTAvlroGCPhysDestroy(). */
448typedef AVLROGCPHYSCALLBACK *PAVLROGCPHYSCALLBACK;
449
450RTDECL(bool) RTAvlroGCPhysInsert(PAVLROGCPHYSTREE pTree, PAVLROGCPHYSNODECORE pNode);
451RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysRemove(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
452RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGet(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
453RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysRangeGet(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
454RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysRangeRemove(PAVLROGCPHYSTREE pTree, RTGCPHYS Key);
455RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetBestFit(PAVLROGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
456RTDECL(int) RTAvlroGCPhysDoWithAll(PAVLROGCPHYSTREE pTree, int fFromLeft, PAVLROGCPHYSCALLBACK pfnCallBack, void *pvParam);
457RTDECL(int) RTAvlroGCPhysDestroy(PAVLROGCPHYSTREE pTree, PAVLROGCPHYSCALLBACK pfnCallBack, void *pvParam);
458RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetRoot(PAVLROGCPHYSTREE pTree);
459RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetLeft(PAVLROGCPHYSNODECORE pNode);
460RTDECL(PAVLROGCPHYSNODECORE) RTAvlroGCPhysGetRight(PAVLROGCPHYSNODECORE pNode);
461
462/** @} */
463
464
465/** AVL tree of RTGCPTRs.
466 * @{
467 */
468
469/**
470 * AVL Core node.
471 */
472typedef struct _AVLGCPtrNodeCore
473{
474 /** Key value. */
475 RTGCPTR Key;
476 /** Pointer to the left node. */
477 struct _AVLGCPtrNodeCore *pLeft;
478 /** Pointer to the right node. */
479 struct _AVLGCPtrNodeCore *pRight;
480 /** Height of this tree: max(height(left), height(right)) + 1 */
481 unsigned char uchHeight;
482} AVLGCPTRNODECORE, *PAVLGCPTRNODECORE, **PPAVLGCPTRNODECORE;
483
484/** A tree of RTGCPTR keys. */
485typedef PAVLGCPTRNODECORE AVLGCPTRTREE;
486/** Pointer to a tree of RTGCPTR keys. */
487typedef PPAVLGCPTRNODECORE PAVLGCPTRTREE;
488
489/** Callback function for RTAvlGCPtrDoWithAll().
490 * @returns IPRT status codes. */
491typedef DECLCALLBACK(int) AVLGCPTRCALLBACK(PAVLGCPTRNODECORE pNode, void *pvUser);
492/** Pointer to callback function for RTAvlGCPtrDoWithAll(). */
493typedef AVLGCPTRCALLBACK *PAVLGCPTRCALLBACK;
494
495RTDECL(bool) RTAvlGCPtrInsert(PAVLGCPTRTREE pTree, PAVLGCPTRNODECORE pNode);
496RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrRemove(PAVLGCPTRTREE pTree, RTGCPTR Key);
497RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrGet(PAVLGCPTRTREE pTree, RTGCPTR Key);
498RTDECL(int) RTAvlGCPtrDoWithAll(PAVLGCPTRTREE pTree, int fFromLeft, PAVLGCPTRCALLBACK pfnCallBack, void *pvParam);
499RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrGetBestFit(PAVLGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
500RTDECL(PAVLGCPTRNODECORE) RTAvlGCPtrRemoveBestFit(PAVLGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
501RTDECL(int) RTAvlGCPtrDestroy(PAVLGCPTRTREE pTree, PAVLGCPTRCALLBACK pfnCallBack, void *pvParam);
502
503/** @} */
504
505
506/** AVL tree of RTGCPTRs - using relative offsets internally.
507 * @{
508 */
509
510/**
511 * AVL 'pointer' type for the relative offset pointer scheme.
512 */
513typedef int32_t AVLOGCPTR;
514
515/**
516 * AVL Core node.
517 */
518typedef struct _AVLOGCPtrNodeCore
519{
520 /** Key value. */
521 RTGCPTR Key;
522 /** Offset to the left leaf node, relative to this field. */
523 AVLOGCPTR pLeft;
524 /** Offset to the right leaf node, relative to this field. */
525 AVLOGCPTR pRight;
526 /** Height of this tree: max(height(left), height(right)) + 1 */
527 unsigned char uchHeight;
528 unsigned char padding[GC_ARCH_BITS == 64 ? 7 : 3];
529} AVLOGCPTRNODECORE, *PAVLOGCPTRNODECORE;
530
531/** A offset base tree with uint32_t keys. */
532typedef AVLOGCPTR AVLOGCPTRTREE;
533/** Pointer to an offset base tree with uint32_t keys. */
534typedef AVLOGCPTRTREE *PAVLOGCPTRTREE;
535
536/** Pointer to an internal tree pointer.
537 * In this case it's a pointer to a relative offset. */
538typedef AVLOGCPTRTREE *PPAVLOGCPTRNODECORE;
539
540/** Callback function for RTAvloGCPtrDoWithAll().
541 * @returns IPRT status codes. */
542typedef DECLCALLBACK(int) AVLOGCPTRCALLBACK(PAVLOGCPTRNODECORE pNode, void *pvUser);
543/** Pointer to callback function for RTAvloGCPtrDoWithAll(). */
544typedef AVLOGCPTRCALLBACK *PAVLOGCPTRCALLBACK;
545
546RTDECL(bool) RTAvloGCPtrInsert(PAVLOGCPTRTREE pTree, PAVLOGCPTRNODECORE pNode);
547RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrRemove(PAVLOGCPTRTREE pTree, RTGCPTR Key);
548RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrGet(PAVLOGCPTRTREE pTree, RTGCPTR Key);
549RTDECL(int) RTAvloGCPtrDoWithAll(PAVLOGCPTRTREE pTree, int fFromLeft, PAVLOGCPTRCALLBACK pfnCallBack, void *pvParam);
550RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrGetBestFit(PAVLOGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
551RTDECL(PAVLOGCPTRNODECORE) RTAvloGCPtrRemoveBestFit(PAVLOGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
552RTDECL(int) RTAvloGCPtrDestroy(PAVLOGCPTRTREE pTree, PAVLOGCPTRCALLBACK pfnCallBack, void *pvParam);
553
554/** @} */
555
556
557/** AVL tree of RTGCPTR ranges.
558 * @{
559 */
560
561/**
562 * AVL Core node.
563 */
564typedef struct _AVLRGCPtrNodeCore
565{
566 /** First key value in the range (inclusive). */
567 RTGCPTR Key;
568 /** Last key value in the range (inclusive). */
569 RTGCPTR KeyLast;
570 /** Offset to the left leaf node, relative to this field. */
571 struct _AVLRGCPtrNodeCore *pLeft;
572 /** Offset to the right leaf node, relative to this field. */
573 struct _AVLRGCPtrNodeCore *pRight;
574 /** Height of this tree: max(height(left), height(right)) + 1 */
575 unsigned char uchHeight;
576} AVLRGCPTRNODECORE, *PAVLRGCPTRNODECORE;
577
578/** A offset base tree with RTGCPTR keys. */
579typedef PAVLRGCPTRNODECORE AVLRGCPTRTREE;
580/** Pointer to an offset base tree with RTGCPTR keys. */
581typedef AVLRGCPTRTREE *PAVLRGCPTRTREE;
582
583/** Pointer to an internal tree pointer.
584 * In this case it's a pointer to a relative offset. */
585typedef AVLRGCPTRTREE *PPAVLRGCPTRNODECORE;
586
587/** Callback function for RTAvlrGCPtrDoWithAll() and RTAvlrGCPtrDestroy().
588 * @returns IPRT status codes. */
589typedef DECLCALLBACK(int) AVLRGCPTRCALLBACK(PAVLRGCPTRNODECORE pNode, void *pvUser);
590/** Pointer to callback function for RTAvlrGCPtrDoWithAll() and RTAvlrGCPtrDestroy(). */
591typedef AVLRGCPTRCALLBACK *PAVLRGCPTRCALLBACK;
592
593RTDECL(bool) RTAvlrGCPtrInsert( PAVLRGCPTRTREE pTree, PAVLRGCPTRNODECORE pNode);
594RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrRemove( PAVLRGCPTRTREE pTree, RTGCPTR Key);
595RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGet( PAVLRGCPTRTREE pTree, RTGCPTR Key);
596RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetBestFit( PAVLRGCPTRTREE pTree, RTGCPTR Key, bool fAbove);
597RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrRangeGet( PAVLRGCPTRTREE pTree, RTGCPTR Key);
598RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrRangeRemove( PAVLRGCPTRTREE pTree, RTGCPTR Key);
599RTDECL(int) RTAvlrGCPtrDoWithAll( PAVLRGCPTRTREE pTree, int fFromLeft, PAVLRGCPTRCALLBACK pfnCallBack, void *pvParam);
600RTDECL(int) RTAvlrGCPtrDestroy( PAVLRGCPTRTREE pTree, PAVLRGCPTRCALLBACK pfnCallBack, void *pvParam);
601RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetRoot( PAVLRGCPTRTREE pTree);
602RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetLeft( PAVLRGCPTRNODECORE pNode);
603RTDECL(PAVLRGCPTRNODECORE) RTAvlrGCPtrGetRight( PAVLRGCPTRNODECORE pNode);
604
605/** @} */
606
607
608/** AVL tree of RTGCPTR ranges - using relative offsets internally.
609 * @{
610 */
611
612/**
613 * AVL 'pointer' type for the relative offset pointer scheme.
614 */
615typedef int32_t AVLROGCPTR;
616
617/**
618 * AVL Core node.
619 */
620typedef struct _AVLROGCPtrNodeCore
621{
622 /** First key value in the range (inclusive). */
623 RTGCPTR Key;
624 /** Last key value in the range (inclusive). */
625 RTGCPTR KeyLast;
626 /** Offset to the left leaf node, relative to this field. */
627 AVLROGCPTR pLeft;
628 /** Offset to the right leaf node, relative to this field. */
629 AVLROGCPTR pRight;
630 /** Height of this tree: max(height(left), height(right)) + 1 */
631 unsigned char uchHeight;
632 unsigned char padding[GC_ARCH_BITS == 64 ? 7 : 7];
633} AVLROGCPTRNODECORE, *PAVLROGCPTRNODECORE;
634
635/** A offset base tree with uint32_t keys. */
636typedef AVLROGCPTR AVLROGCPTRTREE;
637/** Pointer to an offset base tree with uint32_t keys. */
638typedef AVLROGCPTRTREE *PAVLROGCPTRTREE;
639
640/** Pointer to an internal tree pointer.
641 * In this case it's a pointer to a relative offset. */
642typedef AVLROGCPTRTREE *PPAVLROGCPTRNODECORE;
643
644/** Callback function for RTAvlroGCPtrDoWithAll() and RTAvlroGCPtrDestroy().
645 * @returns IPRT status codes. */
646typedef DECLCALLBACK(int) AVLROGCPTRCALLBACK(PAVLROGCPTRNODECORE pNode, void *pvUser);
647/** Pointer to callback function for RTAvlroGCPtrDoWithAll() and RTAvlroGCPtrDestroy(). */
648typedef AVLROGCPTRCALLBACK *PAVLROGCPTRCALLBACK;
649
650RTDECL(bool) RTAvlroGCPtrInsert(PAVLROGCPTRTREE pTree, PAVLROGCPTRNODECORE pNode);
651RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrRemove(PAVLROGCPTRTREE pTree, RTGCPTR Key);
652RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGet(PAVLROGCPTRTREE pTree, RTGCPTR Key);
653RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetBestFit(PAVLROGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
654RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrRangeGet(PAVLROGCPTRTREE pTree, RTGCPTR Key);
655RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrRangeRemove(PAVLROGCPTRTREE pTree, RTGCPTR Key);
656RTDECL(int) RTAvlroGCPtrDoWithAll(PAVLROGCPTRTREE pTree, int fFromLeft, PAVLROGCPTRCALLBACK pfnCallBack, void *pvParam);
657RTDECL(int) RTAvlroGCPtrDestroy(PAVLROGCPTRTREE pTree, PAVLROGCPTRCALLBACK pfnCallBack, void *pvParam);
658RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetRoot(PAVLROGCPTRTREE pTree);
659RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetLeft(PAVLROGCPTRNODECORE pNode);
660RTDECL(PAVLROGCPTRNODECORE) RTAvlroGCPtrGetRight(PAVLROGCPTRNODECORE pNode);
661
662/** @} */
663
664
665/** AVL tree of RTGCPTR ranges (overlapping supported) - using relative offsets internally.
666 * @{
667 */
668
669/**
670 * AVL 'pointer' type for the relative offset pointer scheme.
671 */
672typedef int32_t AVLROOGCPTR;
673
674/**
675 * AVL Core node.
676 */
677typedef struct _AVLROOGCPtrNodeCore
678{
679 /** First key value in the range (inclusive). */
680 RTGCPTR Key;
681 /** Last key value in the range (inclusive). */
682 RTGCPTR KeyLast;
683 /** Offset to the left leaf node, relative to this field. */
684 AVLROOGCPTR pLeft;
685 /** Offset to the right leaf node, relative to this field. */
686 AVLROOGCPTR pRight;
687 /** Pointer to the list of string with the same key. Don't touch. */
688 AVLROOGCPTR pList;
689 /** Height of this tree: max(height(left), height(right)) + 1 */
690 unsigned char uchHeight;
691} AVLROOGCPTRNODECORE, *PAVLROOGCPTRNODECORE;
692
693/** A offset base tree with uint32_t keys. */
694typedef AVLROOGCPTR AVLROOGCPTRTREE;
695/** Pointer to an offset base tree with uint32_t keys. */
696typedef AVLROOGCPTRTREE *PAVLROOGCPTRTREE;
697
698/** Pointer to an internal tree pointer.
699 * In this case it's a pointer to a relative offset. */
700typedef AVLROOGCPTRTREE *PPAVLROOGCPTRNODECORE;
701
702/** Callback function for RTAvlrooGCPtrDoWithAll() and RTAvlrooGCPtrDestroy().
703 * @returns IPRT status codes. */
704typedef DECLCALLBACK(int) AVLROOGCPTRCALLBACK(PAVLROOGCPTRNODECORE pNode, void *pvUser);
705/** Pointer to callback function for RTAvlrooGCPtrDoWithAll() and RTAvlrooGCPtrDestroy(). */
706typedef AVLROOGCPTRCALLBACK *PAVLROOGCPTRCALLBACK;
707
708RTDECL(bool) RTAvlrooGCPtrInsert(PAVLROOGCPTRTREE pTree, PAVLROOGCPTRNODECORE pNode);
709RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrRemove(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
710RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGet(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
711RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetBestFit(PAVLROOGCPTRTREE ppTree, RTGCPTR Key, bool fAbove);
712RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrRangeGet(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
713RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrRangeRemove(PAVLROOGCPTRTREE pTree, RTGCPTR Key);
714RTDECL(int) RTAvlrooGCPtrDoWithAll(PAVLROOGCPTRTREE pTree, int fFromLeft, PAVLROOGCPTRCALLBACK pfnCallBack, void *pvParam);
715RTDECL(int) RTAvlrooGCPtrDestroy(PAVLROOGCPTRTREE pTree, PAVLROOGCPTRCALLBACK pfnCallBack, void *pvParam);
716RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetRoot(PAVLROOGCPTRTREE pTree);
717RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetLeft(PAVLROOGCPTRNODECORE pNode);
718RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetRight(PAVLROOGCPTRNODECORE pNode);
719RTDECL(PAVLROOGCPTRNODECORE) RTAvlrooGCPtrGetNextEqual(PAVLROOGCPTRNODECORE pNode);
720
721/** @} */
722
723
724/** AVL tree of RTUINTPTR.
725 * @{
726 */
727
728/**
729 * AVL RTUINTPTR node core.
730 */
731typedef struct _AVLUIntPtrNodeCore
732{
733 /** Key value. */
734 RTUINTPTR Key;
735 /** Offset to the left leaf node, relative to this field. */
736 struct _AVLUIntPtrNodeCore *pLeft;
737 /** Offset to the right leaf node, relative to this field. */
738 struct _AVLUIntPtrNodeCore *pRight;
739 /** Height of this tree: max(height(left), height(right)) + 1 */
740 unsigned char uchHeight;
741} AVLUINTPTRNODECORE;
742/** Pointer to a RTUINTPTR AVL node core.*/
743typedef AVLUINTPTRNODECORE *PAVLUINTPTRNODECORE;
744
745/** A pointer based tree with RTUINTPTR keys. */
746typedef PAVLUINTPTRNODECORE AVLUINTPTRTREE;
747/** Pointer to an offset base tree with RTUINTPTR keys. */
748typedef AVLUINTPTRTREE *PAVLUINTPTRTREE;
749
750/** Pointer to an internal tree pointer.
751 * In this case it's a pointer to a pointer. */
752typedef AVLUINTPTRTREE *PPAVLUINTPTRNODECORE;
753
754/** Callback function for RTAvlUIntPtrDoWithAll() and RTAvlUIntPtrDestroy().
755 * @returns IPRT status codes. */
756typedef DECLCALLBACK(int) AVLUINTPTRCALLBACK(PAVLUINTPTRNODECORE pNode, void *pvUser);
757/** Pointer to callback function for RTAvlUIntPtrDoWithAll() and RTAvlUIntPtrDestroy(). */
758typedef AVLUINTPTRCALLBACK *PAVLUINTPTRCALLBACK;
759
760RTDECL(bool) RTAvlUIntPtrInsert( PAVLUINTPTRTREE pTree, PAVLUINTPTRNODECORE pNode);
761RTDECL(PAVLUINTPTRNODECORE) RTAvlUIntPtrRemove( PAVLUINTPTRTREE pTree, RTUINTPTR Key);
762RTDECL(PAVLUINTPTRNODECORE) RTAvlUIntPtrGet( PAVLUINTPTRTREE pTree, RTUINTPTR Key);
763RTDECL(PAVLUINTPTRNODECORE) RTAvlUIntPtrGetBestFit(PAVLUINTPTRTREE pTree, RTUINTPTR Key, bool fAbove);
764RTDECL(int) RTAvlUIntPtrDoWithAll( PAVLUINTPTRTREE pTree, int fFromLeft, PAVLUINTPTRCALLBACK pfnCallBack, void *pvParam);
765RTDECL(int) RTAvlUIntPtrDestroy( PAVLUINTPTRTREE pTree, PAVLUINTPTRCALLBACK pfnCallBack, void *pvParam);
766RTDECL(PAVLUINTPTRNODECORE) RTAvlUIntPtrGetRoot( PAVLUINTPTRTREE pTree);
767RTDECL(PAVLUINTPTRNODECORE) RTAvlUIntPtrGetLeft( PAVLUINTPTRNODECORE pNode);
768RTDECL(PAVLUINTPTRNODECORE) RTAvlUIntPtrGetRight( PAVLUINTPTRNODECORE pNode);
769
770/** @} */
771
772
773/** AVL tree of RTUINTPTR ranges.
774 * @{
775 */
776
777/**
778 * AVL RTUINTPTR range node core.
779 */
780typedef struct _AVLRUIntPtrNodeCore
781{
782 /** First key value in the range (inclusive). */
783 RTUINTPTR Key;
784 /** Last key value in the range (inclusive). */
785 RTUINTPTR KeyLast;
786 /** Offset to the left leaf node, relative to this field. */
787 struct _AVLRUIntPtrNodeCore *pLeft;
788 /** Offset to the right leaf node, relative to this field. */
789 struct _AVLRUIntPtrNodeCore *pRight;
790 /** Height of this tree: max(height(left), height(right)) + 1 */
791 unsigned char uchHeight;
792} AVLRUINTPTRNODECORE;
793/** Pointer to an AVL RTUINTPTR range node code. */
794typedef AVLRUINTPTRNODECORE *PAVLRUINTPTRNODECORE;
795
796/** A pointer based tree with RTUINTPTR ranges. */
797typedef PAVLRUINTPTRNODECORE AVLRUINTPTRTREE;
798/** Pointer to a pointer based tree with RTUINTPTR ranges. */
799typedef AVLRUINTPTRTREE *PAVLRUINTPTRTREE;
800
801/** Pointer to an internal tree pointer.
802 * In this case it's a pointer to a pointer. */
803typedef AVLRUINTPTRTREE *PPAVLRUINTPTRNODECORE;
804
805/** Callback function for RTAvlrUIntPtrDoWithAll() and RTAvlrUIntPtrDestroy().
806 * @returns IPRT status codes. */
807typedef DECLCALLBACK(int) AVLRUINTPTRCALLBACK(PAVLRUINTPTRNODECORE pNode, void *pvUser);
808/** Pointer to callback function for RTAvlrUIntPtrDoWithAll() and RTAvlrUIntPtrDestroy(). */
809typedef AVLRUINTPTRCALLBACK *PAVLRUINTPTRCALLBACK;
810
811RTDECL(bool) RTAvlrUIntPtrInsert( PAVLRUINTPTRTREE pTree, PAVLRUINTPTRNODECORE pNode);
812RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrRemove( PAVLRUINTPTRTREE pTree, RTUINTPTR Key);
813RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrGet( PAVLRUINTPTRTREE pTree, RTUINTPTR Key);
814RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrGetBestFit( PAVLRUINTPTRTREE pTree, RTUINTPTR Key, bool fAbove);
815RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrRangeGet( PAVLRUINTPTRTREE pTree, RTUINTPTR Key);
816RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrRangeRemove(PAVLRUINTPTRTREE pTree, RTUINTPTR Key);
817RTDECL(int) RTAvlrUIntPtrDoWithAll( PAVLRUINTPTRTREE pTree, int fFromLeft, PAVLRUINTPTRCALLBACK pfnCallBack, void *pvParam);
818RTDECL(int) RTAvlrUIntPtrDestroy( PAVLRUINTPTRTREE pTree, PAVLRUINTPTRCALLBACK pfnCallBack, void *pvParam);
819RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrGetRoot( PAVLRUINTPTRTREE pTree);
820RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrGetLeft( PAVLRUINTPTRNODECORE pNode);
821RTDECL(PAVLRUINTPTRNODECORE) RTAvlrUIntPtrGetRight( PAVLRUINTPTRNODECORE pNode);
822
823/** @} */
824
825
826/** AVL tree of RTHCPHYSes - using relative offsets internally.
827 * @{
828 */
829
830/**
831 * AVL 'pointer' type for the relative offset pointer scheme.
832 */
833typedef int32_t AVLOHCPHYS;
834
835/**
836 * AVL Core node.
837 */
838typedef struct _AVLOHCPhysNodeCore
839{
840 /** Key value. */
841 RTHCPHYS Key;
842 /** Offset to the left leaf node, relative to this field. */
843 AVLOHCPHYS pLeft;
844 /** Offset to the right leaf node, relative to this field. */
845 AVLOHCPHYS pRight;
846 /** Height of this tree: max(height(left), height(right)) + 1 */
847 unsigned char uchHeight;
848#if HC_ARCH_BITS == 64 || GC_ARCH_BITS == 64
849 unsigned char Padding[7]; /**< Alignment padding. */
850#endif
851} AVLOHCPHYSNODECORE, *PAVLOHCPHYSNODECORE;
852
853/** A offset base tree with uint32_t keys. */
854typedef AVLOHCPHYS AVLOHCPHYSTREE;
855/** Pointer to an offset base tree with uint32_t keys. */
856typedef AVLOHCPHYSTREE *PAVLOHCPHYSTREE;
857
858/** Pointer to an internal tree pointer.
859 * In this case it's a pointer to a relative offset. */
860typedef AVLOHCPHYSTREE *PPAVLOHCPHYSNODECORE;
861
862/** Callback function for RTAvloHCPhysDoWithAll() and RTAvloHCPhysDestroy().
863 * @returns IPRT status codes. */
864typedef DECLCALLBACK(int) AVLOHCPHYSCALLBACK(PAVLOHCPHYSNODECORE pNode, void *pvUser);
865/** Pointer to callback function for RTAvloHCPhysDoWithAll() and RTAvloHCPhysDestroy(). */
866typedef AVLOHCPHYSCALLBACK *PAVLOHCPHYSCALLBACK;
867
868RTDECL(bool) RTAvloHCPhysInsert(PAVLOHCPHYSTREE pTree, PAVLOHCPHYSNODECORE pNode);
869RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysRemove(PAVLOHCPHYSTREE pTree, RTHCPHYS Key);
870RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysGet(PAVLOHCPHYSTREE pTree, RTHCPHYS Key);
871RTDECL(int) RTAvloHCPhysDoWithAll(PAVLOHCPHYSTREE pTree, int fFromLeft, PAVLOHCPHYSCALLBACK pfnCallBack, void *pvParam);
872RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysGetBestFit(PAVLOHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
873RTDECL(PAVLOHCPHYSNODECORE) RTAvloHCPhysRemoveBestFit(PAVLOHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
874RTDECL(int) RTAvloHCPhysDestroy(PAVLOHCPHYSTREE pTree, PAVLOHCPHYSCALLBACK pfnCallBack, void *pvParam);
875
876/** @} */
877
878
879
880/** AVL tree of RTIOPORTs - using relative offsets internally.
881 * @{
882 */
883
884/**
885 * AVL 'pointer' type for the relative offset pointer scheme.
886 */
887typedef int32_t AVLOIOPORTPTR;
888
889/**
890 * AVL Core node.
891 */
892typedef struct _AVLOIOPortNodeCore
893{
894 /** Offset to the left leaf node, relative to this field. */
895 AVLOIOPORTPTR pLeft;
896 /** Offset to the right leaf node, relative to this field. */
897 AVLOIOPORTPTR pRight;
898 /** Key value. */
899 RTIOPORT Key;
900 /** Height of this tree: max(height(left), height(right)) + 1 */
901 unsigned char uchHeight;
902} AVLOIOPORTNODECORE, *PAVLOIOPORTNODECORE;
903
904/** A offset base tree with uint32_t keys. */
905typedef AVLOIOPORTPTR AVLOIOPORTTREE;
906/** Pointer to an offset base tree with uint32_t keys. */
907typedef AVLOIOPORTTREE *PAVLOIOPORTTREE;
908
909/** Pointer to an internal tree pointer.
910 * In this case it's a pointer to a relative offset. */
911typedef AVLOIOPORTTREE *PPAVLOIOPORTNODECORE;
912
913/** Callback function for RTAvloIOPortDoWithAll() and RTAvloIOPortDestroy().
914 * @returns IPRT status codes. */
915typedef DECLCALLBACK(int) AVLOIOPORTCALLBACK(PAVLOIOPORTNODECORE pNode, void *pvUser);
916/** Pointer to callback function for RTAvloIOPortDoWithAll() and RTAvloIOPortDestroy(). */
917typedef AVLOIOPORTCALLBACK *PAVLOIOPORTCALLBACK;
918
919RTDECL(bool) RTAvloIOPortInsert(PAVLOIOPORTTREE pTree, PAVLOIOPORTNODECORE pNode);
920RTDECL(PAVLOIOPORTNODECORE) RTAvloIOPortRemove(PAVLOIOPORTTREE pTree, RTIOPORT Key);
921RTDECL(PAVLOIOPORTNODECORE) RTAvloIOPortGet(PAVLOIOPORTTREE pTree, RTIOPORT Key);
922RTDECL(int) RTAvloIOPortDoWithAll(PAVLOIOPORTTREE pTree, int fFromLeft, PAVLOIOPORTCALLBACK pfnCallBack, void *pvParam);
923RTDECL(PAVLOIOPORTNODECORE) RTAvloIOPortGetBestFit(PAVLOIOPORTTREE ppTree, RTIOPORT Key, bool fAbove);
924RTDECL(PAVLOIOPORTNODECORE) RTAvloIOPortRemoveBestFit(PAVLOIOPORTTREE ppTree, RTIOPORT Key, bool fAbove);
925RTDECL(int) RTAvloIOPortDestroy(PAVLOIOPORTTREE pTree, PAVLOIOPORTCALLBACK pfnCallBack, void *pvParam);
926
927/** @} */
928
929
930/** AVL tree of RTIOPORT ranges - using relative offsets internally.
931 * @{
932 */
933
934/**
935 * AVL 'pointer' type for the relative offset pointer scheme.
936 */
937typedef int32_t AVLROIOPORTPTR;
938
939/**
940 * AVL Core node.
941 */
942typedef struct _AVLROIOPortNodeCore
943{
944 /** First key value in the range (inclusive). */
945 RTIOPORT Key;
946 /** Last key value in the range (inclusive). */
947 RTIOPORT KeyLast;
948 /** Offset to the left leaf node, relative to this field. */
949 AVLROIOPORTPTR pLeft;
950 /** Offset to the right leaf node, relative to this field. */
951 AVLROIOPORTPTR pRight;
952 /** Height of this tree: max(height(left), height(right)) + 1 */
953 unsigned char uchHeight;
954} AVLROIOPORTNODECORE, *PAVLROIOPORTNODECORE;
955
956/** A offset base tree with uint32_t keys. */
957typedef AVLROIOPORTPTR AVLROIOPORTTREE;
958/** Pointer to an offset base tree with uint32_t keys. */
959typedef AVLROIOPORTTREE *PAVLROIOPORTTREE;
960
961/** Pointer to an internal tree pointer.
962 * In this case it's a pointer to a relative offset. */
963typedef AVLROIOPORTTREE *PPAVLROIOPORTNODECORE;
964
965/** Callback function for RTAvlroIOPortDoWithAll() and RTAvlroIOPortDestroy().
966 * @returns IPRT status codes. */
967typedef DECLCALLBACK(int) AVLROIOPORTCALLBACK(PAVLROIOPORTNODECORE pNode, void *pvUser);
968/** Pointer to callback function for RTAvlroIOPortDoWithAll() and RTAvlroIOPortDestroy(). */
969typedef AVLROIOPORTCALLBACK *PAVLROIOPORTCALLBACK;
970
971RTDECL(bool) RTAvlroIOPortInsert(PAVLROIOPORTTREE pTree, PAVLROIOPORTNODECORE pNode);
972RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortRemove(PAVLROIOPORTTREE pTree, RTIOPORT Key);
973RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortGet(PAVLROIOPORTTREE pTree, RTIOPORT Key);
974RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortRangeGet(PAVLROIOPORTTREE pTree, RTIOPORT Key);
975RTDECL(PAVLROIOPORTNODECORE) RTAvlroIOPortRangeRemove(PAVLROIOPORTTREE pTree, RTIOPORT Key);
976RTDECL(int) RTAvlroIOPortDoWithAll(PAVLROIOPORTTREE pTree, int fFromLeft, PAVLROIOPORTCALLBACK pfnCallBack, void *pvParam);
977RTDECL(int) RTAvlroIOPortDestroy(PAVLROIOPORTTREE pTree, PAVLROIOPORTCALLBACK pfnCallBack, void *pvParam);
978
979/** @} */
980
981
982/** AVL tree of RTHCPHYSes.
983 * @{
984 */
985
986/**
987 * AVL 'pointer' type for the relative offset pointer scheme.
988 */
989typedef struct _AVLHCPhysNodeCore *AVLHCPHYSPTR;
990
991/**
992 * AVL Core node.
993 */
994typedef struct _AVLHCPhysNodeCore
995{
996 /** Offset to the left leaf node, relative to this field. */
997 AVLHCPHYSPTR pLeft;
998 /** Offset to the right leaf node, relative to this field. */
999 AVLHCPHYSPTR pRight;
1000 /** Key value. */
1001 RTHCPHYS Key;
1002 /** Height of this tree: max(height(left), height(right)) + 1 */
1003 unsigned char uchHeight;
1004} AVLHCPHYSNODECORE, *PAVLHCPHYSNODECORE;
1005
1006/** A offset base tree with RTHCPHYS keys. */
1007typedef AVLHCPHYSPTR AVLHCPHYSTREE;
1008/** Pointer to an offset base tree with RTHCPHYS keys. */
1009typedef AVLHCPHYSTREE *PAVLHCPHYSTREE;
1010
1011/** Pointer to an internal tree pointer.
1012 * In this case it's a pointer to a relative offset. */
1013typedef AVLHCPHYSTREE *PPAVLHCPHYSNODECORE;
1014
1015/** Callback function for RTAvlHCPhysDoWithAll() and RTAvlHCPhysDestroy().
1016 * @returns IPRT status codes. */
1017typedef DECLCALLBACK(int) AVLHCPHYSCALLBACK(PAVLHCPHYSNODECORE pNode, void *pvUser);
1018/** Pointer to callback function for RTAvlHCPhysDoWithAll() and RTAvlHCPhysDestroy(). */
1019typedef AVLHCPHYSCALLBACK *PAVLHCPHYSCALLBACK;
1020
1021RTDECL(bool) RTAvlHCPhysInsert(PAVLHCPHYSTREE pTree, PAVLHCPHYSNODECORE pNode);
1022RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysRemove(PAVLHCPHYSTREE pTree, RTHCPHYS Key);
1023RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysGet(PAVLHCPHYSTREE pTree, RTHCPHYS Key);
1024RTDECL(int) RTAvlHCPhysDoWithAll(PAVLHCPHYSTREE pTree, int fFromLeft, PAVLHCPHYSCALLBACK pfnCallBack, void *pvParam);
1025RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysGetBestFit(PAVLHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
1026RTDECL(PAVLHCPHYSNODECORE) RTAvlHCPhysRemoveBestFit(PAVLHCPHYSTREE ppTree, RTHCPHYS Key, bool fAbove);
1027RTDECL(int) RTAvlHCPhysDestroy(PAVLHCPHYSTREE pTree, PAVLHCPHYSCALLBACK pfnCallBack, void *pvParam);
1028
1029/** @} */
1030
1031/** AVL tree of RTGCPHYSes.
1032 * @{
1033 */
1034
1035/**
1036 * AVL 'pointer' type for the relative offset pointer scheme.
1037 */
1038typedef struct _AVLGCPhysNodeCore *AVLGCPHYSPTR;
1039
1040/**
1041 * AVL Core node.
1042 */
1043typedef struct _AVLGCPhysNodeCore
1044{
1045 /** Offset to the left leaf node, relative to this field. */
1046 AVLGCPHYSPTR pLeft;
1047 /** Offset to the right leaf node, relative to this field. */
1048 AVLGCPHYSPTR pRight;
1049 /** Key value. */
1050 RTGCPHYS Key;
1051 /** Height of this tree: max(height(left), height(right)) + 1 */
1052 unsigned char uchHeight;
1053} AVLGCPHYSNODECORE, *PAVLGCPHYSNODECORE;
1054
1055/** A offset base tree with RTGCPHYS keys. */
1056typedef AVLGCPHYSPTR AVLGCPHYSTREE;
1057/** Pointer to an offset base tree with RTGCPHYS keys. */
1058typedef AVLGCPHYSTREE *PAVLGCPHYSTREE;
1059
1060/** Pointer to an internal tree pointer.
1061 * In this case it's a pointer to a relative offset. */
1062typedef AVLGCPHYSTREE *PPAVLGCPHYSNODECORE;
1063
1064/** Callback function for RTAvlGCPhysDoWithAll() and RTAvlGCPhysDestroy().
1065 * @returns IPRT status codes. */
1066typedef DECLCALLBACK(int) AVLGCPHYSCALLBACK(PAVLGCPHYSNODECORE pNode, void *pvUser);
1067/** Pointer to callback function for RTAvlGCPhysDoWithAll() and RTAvlGCPhysDestroy(). */
1068typedef AVLGCPHYSCALLBACK *PAVLGCPHYSCALLBACK;
1069
1070RTDECL(bool) RTAvlGCPhysInsert(PAVLGCPHYSTREE pTree, PAVLGCPHYSNODECORE pNode);
1071RTDECL(PAVLGCPHYSNODECORE) RTAvlGCPhysRemove(PAVLGCPHYSTREE pTree, RTGCPHYS Key);
1072RTDECL(PAVLGCPHYSNODECORE) RTAvlGCPhysGet(PAVLGCPHYSTREE pTree, RTGCPHYS Key);
1073RTDECL(int) RTAvlGCPhysDoWithAll(PAVLGCPHYSTREE pTree, int fFromLeft, PAVLGCPHYSCALLBACK pfnCallBack, void *pvParam);
1074RTDECL(PAVLGCPHYSNODECORE) RTAvlGCPhysGetBestFit(PAVLGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
1075RTDECL(PAVLGCPHYSNODECORE) RTAvlGCPhysRemoveBestFit(PAVLGCPHYSTREE ppTree, RTGCPHYS Key, bool fAbove);
1076RTDECL(int) RTAvlGCPhysDestroy(PAVLGCPHYSTREE pTree, PAVLGCPHYSCALLBACK pfnCallBack, void *pvParam);
1077
1078/** @} */
1079
1080
1081/** AVL tree of RTFOFF ranges.
1082 * @{
1083 */
1084
1085/**
1086 * AVL Core node.
1087 */
1088typedef struct _AVLRFOFFNodeCore
1089{
1090 /** First key value in the range (inclusive). */
1091 RTFOFF Key;
1092 /** Last key value in the range (inclusive). */
1093 RTFOFF KeyLast;
1094 /** Offset to the left leaf node, relative to this field. */
1095 struct _AVLRFOFFNodeCore *pLeft;
1096 /** Offset to the right leaf node, relative to this field. */
1097 struct _AVLRFOFFNodeCore *pRight;
1098 /** Height of this tree: max(height(left), height(right)) + 1 */
1099 unsigned char uchHeight;
1100} AVLRFOFFNODECORE, *PAVLRFOFFNODECORE;
1101
1102/** A pointer based tree with RTFOFF ranges. */
1103typedef PAVLRFOFFNODECORE AVLRFOFFTREE;
1104/** Pointer to a pointer based tree with RTFOFF ranges. */
1105typedef AVLRFOFFTREE *PAVLRFOFFTREE;
1106
1107/** Pointer to an internal tree pointer.
1108 * In this case it's a pointer to a relative offset. */
1109typedef AVLRFOFFTREE *PPAVLRFOFFNODECORE;
1110
1111/** Callback function for RTAvlrGCPtrDoWithAll() and RTAvlrGCPtrDestroy().
1112 * @returns IPRT status codes. */
1113typedef DECLCALLBACK(int) AVLRFOFFCALLBACK(PAVLRFOFFNODECORE pNode, void *pvUser);
1114/** Pointer to callback function for RTAvlrGCPtrDoWithAll() and RTAvlrGCPtrDestroy(). */
1115typedef AVLRFOFFCALLBACK *PAVLRFOFFCALLBACK;
1116
1117RTDECL(bool) RTAvlrFileOffsetInsert( PAVLRFOFFTREE pTree, PAVLRFOFFNODECORE pNode);
1118RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetRemove( PAVLRFOFFTREE pTree, RTFOFF Key);
1119RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetGet( PAVLRFOFFTREE pTree, RTFOFF Key);
1120RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetGetBestFit( PAVLRFOFFTREE pTree, RTFOFF Key, bool fAbove);
1121RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetRangeGet( PAVLRFOFFTREE pTree, RTFOFF Key);
1122RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetRangeRemove( PAVLRFOFFTREE pTree, RTFOFF Key);
1123RTDECL(int) RTAvlrFileOffsetDoWithAll( PAVLRFOFFTREE pTree, int fFromLeft, PAVLRFOFFCALLBACK pfnCallBack, void *pvParam);
1124RTDECL(int) RTAvlrFileOffsetDestroy( PAVLRFOFFTREE pTree, PAVLRFOFFCALLBACK pfnCallBack, void *pvParam);
1125RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetGetRoot( PAVLRFOFFTREE pTree);
1126RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetGetLeft( PAVLRFOFFNODECORE pNode);
1127RTDECL(PAVLRFOFFNODECORE) RTAvlrFileOffsetGetRight( PAVLRFOFFNODECORE pNode);
1128
1129/** @} */
1130
1131/** @} */
1132
1133RT_C_DECLS_END
1134
1135#endif
1136
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette