1 | /* $Id: avlroogcptr.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - AVL tree, RTGCPTR, range, unique keys, overlapping ranges, offset pointers.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 knut st. osmundsen (bird-src-spam@anduin.net)
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef NOFILEID
|
---|
19 | static const char szFileId[] = "Id: kAVLULInt.c,v 1.4 2003/02/13 02:02:38 bird Exp $";
|
---|
20 | #endif
|
---|
21 |
|
---|
22 | /*******************************************************************************
|
---|
23 | * Defined Constants And Macros *
|
---|
24 | *******************************************************************************/
|
---|
25 | /*
|
---|
26 | * AVL configuration.
|
---|
27 | */
|
---|
28 | #define KAVL_FN(a) RTAvlrooGCPtr##a
|
---|
29 | #define KAVL_MAX_STACK 27 /* Up to 2^24 nodes. */
|
---|
30 | #define KAVL_EQUAL_ALLOWED 1 /* Duplicate keys allowed */
|
---|
31 | #define KAVLNODECORE AVLROOGCPTRNODECORE
|
---|
32 | #define PKAVLNODECORE PAVLROOGCPTRNODECORE
|
---|
33 | #define PPKAVLNODECORE PPAVLROOGCPTRNODECORE
|
---|
34 | #define KAVLKEY RTGCPTR
|
---|
35 | #define PKAVLKEY PRTGCPTR
|
---|
36 | #define KAVLENUMDATA AVLROOGCPTRENUMDATA
|
---|
37 | #define PKAVLENUMDATA PAVLROOGCPTRENUMDATA
|
---|
38 | #define PKAVLCALLBACK PAVLROOGCPTRCALLBACK
|
---|
39 | #define KAVL_OFFSET 1
|
---|
40 |
|
---|
41 |
|
---|
42 | /*
|
---|
43 | * AVL Compare macros
|
---|
44 | */
|
---|
45 | #define KAVL_G( key1, key2) ( (RTGCUINTPTR)(key1) > (RTGCUINTPTR)(key2) )
|
---|
46 | #define KAVL_E( key1, key2) ( (RTGCUINTPTR)(key1) == (RTGCUINTPTR)(key2) )
|
---|
47 | #define KAVL_NE(key1, key2) ( (RTGCUINTPTR)(key1) != (RTGCUINTPTR)(key2) )
|
---|
48 |
|
---|
49 |
|
---|
50 |
|
---|
51 | /*******************************************************************************
|
---|
52 | * Header Files *
|
---|
53 | *******************************************************************************/
|
---|
54 | #include <iprt/avl.h>
|
---|
55 | #include <iprt/assert.h>
|
---|
56 |
|
---|
57 | /*
|
---|
58 | * Include the code.
|
---|
59 | */
|
---|
60 | #define SSToDS(ptr) ptr
|
---|
61 | #define KMAX RT_MAX
|
---|
62 | #define kASSERT Assert
|
---|
63 | #include "avl_Base.cpp.h"
|
---|
64 | #include "avl_Get.cpp.h"
|
---|
65 | #include "avl_DoWithAll.cpp.h"
|
---|
66 | #include "avl_Destroy.cpp.h"
|
---|
67 | #include "avl_GetBestFit.cpp.h"
|
---|
68 | #include "avl_Enum.cpp.h"
|
---|
69 |
|
---|
70 | /*
|
---|
71 | * Defined only for the range functions as we allow for overlapping ranges.
|
---|
72 | */
|
---|
73 | #undef KAVL_R_IS_IDENTICAL
|
---|
74 | #undef KAVL_R_IS_INTERSECTING
|
---|
75 | #undef KAVL_R_IS_IN_RANGE
|
---|
76 | #define KAVL_RANGE 1
|
---|
77 | #define KAVL_R_IS_IDENTICAL( key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) == (RTGCUINTPTR)(key2B) && (RTGCUINTPTR)(key1E) == (RTGCUINTPTR)(key2E) )
|
---|
78 | #define KAVL_R_IS_INTERSECTING(key1B, key2B, key1E, key2E) ( (RTGCUINTPTR)(key1B) <= (RTGCUINTPTR)(key2E) && (RTGCUINTPTR)(key1E) >= (RTGCUINTPTR)(key2B) )
|
---|
79 | #define KAVL_R_IS_IN_RANGE( key1B, key1E, key2) KAVL_R_IS_INTERSECTING(key1B, key2, key1E, key2)
|
---|
80 | #include "avl_Range.cpp.h"
|
---|
81 |
|
---|