2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
25 Contains: Private interface file for the BTree Module.
27 Version: xxx put the technology version here xxx
29 Written by: Gordon Sheridan and Bill Bruffey
31 Copyright: © 1992-1999 by Apple Computer, Inc., all rights reserved.
37 Other Contact: Mark Day
39 Technology: File Systems
49 Change History (most recent first):
50 <MacOSX> 3/19/99 djb Disable MoveRecordsLeft/Right macros since bcopy is broken.
52 <MacOSX> 8/10/98 djb Removed unused BTreeIterator from BTreeControlBlock, fixed alignment.
54 <CS5> 9/4/97 djb Convert MoveRecordsLeft and GetLeftSiblingNode to macros.
55 <CS4> 7/24/97 djb Add macro for GetRecordAddress (was a function before).
56 <CS3> 7/21/97 msd GetRecordByIndex now returns an OSStatus.
57 <CS2> 7/16/97 DSH FilesInternal.i renamed FileMgrInternal.i to avoid name
59 <CS1> 4/23/97 djb first checked in
61 <HFS6> 3/17/97 DSH Added a refCon field to BTreeControlBlock, for DFA use, to point
62 to additional data. Fixed Panic macros for use with SC.
63 <HFS5> 2/19/97 djb Add InsertKey struct. Moved on-disk definitions to
65 <HFS4> 1/27/97 djb InsertTree and DeleteTree are now recursive and support variable
67 <HFS3> 1/15/97 djb Move GetFileRefNumFromFCB macro to FilesInternal.h. Added
68 kBTVariableIndexKeysMask.
69 <HFS2> 1/3/97 djb Added support for large keys.
70 <HFS1> 12/19/96 djb first checked in
72 History applicable to original Scarecrow Design:
74 <7> 10/25/96 ser Changing for new VFPI
75 <6> 10/18/96 ser Converting over VFPI changes
76 <5> 9/17/96 dkh More BTree statistics
77 <4> 9/16/96 dkh Revised BTree statistics
78 <3> 6/20/96 dkh Radar #1358740. Switch from using Pools to debug MemAllocators.
79 <2> 12/7/95 dkh D10E2 build. Changed usage of Ref data type to LogicalAddress.
80 <1> 10/18/95 rst Moved from Scarecrow project.
82 <19> 11/22/94 djb Add prototype for GetMapNode
83 <18> 11/16/94 prp Add IsItAHint routine prototype.
84 <17> 9/30/94 prp Get in sync with D2 interface changes.
85 <16> 7/25/94 wjk Eliminate usage of BytePtr in favor of UInt8 *.
86 <15> 7/22/94 wjk Convert to the new set of header files.
87 <14> 5/31/94 srs Moved Btree types to public interface
88 <13> 12/9/93 wjk Add 68k alignment pragma's around persistent structures.
89 <12> 11/30/93 wjk Move from Makefiles to BuildFiles. Fit into the ModernOS and
91 <11> 11/23/93 wjk Changes required to compile on the RS6000.
92 <10> 8/30/93 CH Removed the M_ExitOnError and M_ReturnErrorIf macros which were
93 already defined in FileSystemPriv.h (included here).
94 <9> 8/30/93 CH Added parens around the M_ReturnErrorIf macro.
95 <8> 5/21/93 gs Add kBadClose flag. Add some prototypes for internal routines.
96 <7> 5/10/93 gs Change Ptr to BytePtr. Move BTreeTypes to BTree.h. Add
98 <6> 3/23/93 gs Remove mysterious "flags" field from HeaderRec structure. Move
99 prototypes of private functions to top of respective source
101 <5> 2/8/93 gs Update to use FSAgent.h Get/Release/SetEOF/SetBlockSize
102 procPtrs. Add UpdateNode routine.
103 <4> 12/10/92 gs Add Key Descriptor function declarations.
104 <3> 12/8/92 gs Add HeaderRec structure and incorporate review feedback.
105 <2> 12/2/92 gs Add GetNode and ReleaseNode callback procptrs to BTree CB, and
106 add internal function declarations.
107 <1> 11/15/92 gs first checked in
111 #ifndef __BTREESPRIVATE__
112 #define __BTREESPRIVATE__
114 #include "../../hfs_macos_defs.h"
116 #ifndef __FILEMGRINTERNAL__
117 #include "FileMgrInternal.h"
120 #ifndef __BTREESINTERNAL__
121 #include "BTreesInternal.h"
125 /////////////////////////////////// Constants ///////////////////////////////////
127 #define kBTreeVersion 1
128 #define kMaxTreeDepth 16
131 #define kHeaderNodeNum 0
132 #define kKeyDescRecord 1
135 // Header Node Record Offsets
137 kHeaderRecOffset
= 0x000E,
138 kKeyDescRecOffset
= 0x0078,
139 kHeaderMapRecOffset
= 0x00F8
142 #define kMinNodeSize 512
144 #define kMinRecordSize 6
145 // where is minimum record size enforced?
147 // miscellaneous BTree constants
158 // illegal string attribute bits set in mask
159 #define kBadStrAttribMask 0xCF
163 //////////////////////////////////// Macros /////////////////////////////////////
165 #define M_NodesInMap(mapSize) ((mapSize) << 3)
167 #define M_ClearBitNum(integer,bitNumber) ((integer) &= (~(1<<(bitNumber))))
168 #define M_SetBitNum(integer,bitNumber) ((integer) |= (1<<(bitNumber)))
169 #define M_IsOdd(integer) (((integer) & 1) != 0)
170 #define M_IsEven(integer) (((integer) & 1) == 0)
171 #define M_BTreeHeaderDirty(btreePtr) btreePtr->flags |= kBTHeaderDirty
173 #define M_MapRecordSize(nodeSize) (nodeSize - sizeof (BTNodeDescriptor) - 6)
174 #define M_HeaderMapRecordSize(nodeSize) (nodeSize - sizeof(BTNodeDescriptor) - sizeof(BTHeaderRec) - 128 - 8)
176 #define M_SWAP_BE16_ClearBitNum(integer,bitNumber) ((integer) &= SWAP_BE16(~(1<<(bitNumber))))
177 #define M_SWAP_BE16_SetBitNum(integer,bitNumber) ((integer) |= SWAP_BE16(1<<(bitNumber)))
179 ///////////////////////////////////// Types /////////////////////////////////////
181 typedef struct BTreeControlBlock
{ // fields specific to BTree CBs
183 UInt8 reserved1
; // keep for alignment with old style fields
186 FileReference fileRefNum
; // refNum of btree file
187 KeyCompareProcPtr keyCompareProc
;
190 UInt32 firstLeafNode
;
197 UInt16 reserved3
; // 4-byte alignment
201 UInt32 flags
; // dynamic flags
202 UInt32 attributes
; // persistent flags
204 UInt32 lastfsync
; /* Last time that this was fsynced */
206 GetBlockProcPtr getBlockProc
;
207 ReleaseBlockProcPtr releaseBlockProc
;
208 SetEndOfForkProcPtr setEndOfForkProc
;
210 // statistical information
212 UInt32 numGetNewNodes
;
213 UInt32 numReleaseNodes
;
214 UInt32 numUpdateNodes
;
215 UInt32 numMapNodesRead
; // map nodes beyond header node
216 UInt32 numHintChecks
;
217 UInt32 numPossibleHints
; // Looks like a formated hint
218 UInt32 numValidHints
; // Hint used to find correct record.
220 } BTreeControlBlock
, *BTreeControlBlockPtr
;
223 UInt32
CalcKeySize(const BTreeControlBlock
*btcb
, const BTreeKey
*key
);
224 #define CalcKeySize(btcb, key) ( ((btcb)->attributes & kBTBigKeysMask) ? ((key)->length16 + 2) : ((key)->length8 + 1) )
226 UInt32
KeyLength(const BTreeControlBlock
*btcb
, const BTreeKey
*key
);
227 #define KeyLength(btcb, key) ( ((btcb)->attributes & kBTBigKeysMask) ? (key)->length16 : (key)->length8 )
232 kBTHeaderDirty
= 0x00000001
236 typedef SInt8
*NodeBuffer
;
237 typedef BlockDescriptor NodeRec
, *NodePtr
; //\80\80 remove this someday...
242 //// Tree Path Table - constructed by SearchTree, used by InsertTree and DeleteTree
245 UInt32 node
; // node number
247 UInt16 reserved
; // align size to a power of 2
248 } TreePathRecord
, *TreePathRecordPtr
;
250 typedef TreePathRecord TreePathTable
[kMaxTreeDepth
];
253 //// InsertKey - used by InsertTree, InsertLevel and InsertNode
260 Boolean replacingKey
;
264 typedef struct InsertKey InsertKey
;
267 //// For Notational Convenience
269 typedef BTNodeDescriptor
* NodeDescPtr
;
270 typedef UInt8
*RecordPtr
;
271 typedef BTreeKeyPtr KeyPtr
;
274 //////////////////////////////////// Globals ////////////////////////////////////
277 //////////////////////////////////// Macros /////////////////////////////////////
280 #define Panic( message ) DebugStr( (ConstStr255Param) message )
281 #define PanicIf( condition, message ) if ( condition != 0 ) DebugStr( message )
283 #define Panic( message )
284 #define PanicIf( condition, message )
287 // Exit function on error
288 #define M_ExitOnError( result ) if ( ( result ) != noErr ) goto ErrorExit; else ;
290 // Test for passed condition and return if true
291 #define M_ReturnErrorIf( condition, error ) if ( condition ) return( error )
293 //////////////////////////////// Key Operations /////////////////////////////////
295 SInt32
CompareKeys (BTreeControlBlockPtr btreePtr
,
299 //////////////////////////////// Map Operations /////////////////////////////////
301 OSStatus
AllocateNode (BTreeControlBlockPtr btreePtr
,
304 OSStatus
FreeNode (BTreeControlBlockPtr btreePtr
,
307 OSStatus
ExtendBTree (BTreeControlBlockPtr btreePtr
,
310 UInt32
CalcMapBits (BTreeControlBlockPtr btreePtr
);
313 //////////////////////////////// Misc Operations ////////////////////////////////
315 UInt16
CalcKeyRecordSize (UInt16 keySize
,
318 OSStatus
VerifyHeader (FCB
*filePtr
,
319 BTHeaderRec
*header
);
321 OSStatus
UpdateHeader (BTreeControlBlockPtr btreePtr
,
322 Boolean forceWrite
);
324 OSStatus
FindIteratorPosition (BTreeControlBlockPtr btreePtr
,
325 BTreeIteratorPtr iterator
,
326 BlockDescriptor
*left
,
327 BlockDescriptor
*middle
,
328 BlockDescriptor
*right
,
331 Boolean
*foundRecord
);
333 OSStatus
CheckInsertParams (FCB
*filePtr
,
334 BTreeIterator
*iterator
,
335 FSBufferDescriptor
*record
,
338 OSStatus
TrySimpleReplace (BTreeControlBlockPtr btreePtr
,
340 BTreeIterator
*iterator
,
341 FSBufferDescriptor
*record
,
343 Boolean
*recordInserted
);
345 OSStatus
IsItAHint (BTreeControlBlockPtr btreePtr
,
346 BTreeIterator
*iterator
,
349 //////////////////////////////// Node Operations ////////////////////////////////
353 OSStatus
GetNode (BTreeControlBlockPtr btreePtr
,
355 NodeRec
*returnNodePtr
);
357 OSStatus
GetLeftSiblingNode (BTreeControlBlockPtr btreePtr
,
361 #define GetLeftSiblingNode(btree,node,left) GetNode ((btree), ((NodeDescPtr)(node))->bLink, (left))
363 OSStatus
GetRightSiblingNode (BTreeControlBlockPtr btreePtr
,
367 #define GetRightSiblingNode(btree,node,right) GetNode ((btree), ((NodeDescPtr)(node))->fLink, (right))
370 OSStatus
GetNewNode (BTreeControlBlockPtr btreePtr
,
372 NodeRec
*returnNodePtr
);
374 OSStatus
ReleaseNode (BTreeControlBlockPtr btreePtr
,
377 OSStatus
TrashNode (BTreeControlBlockPtr btreePtr
,
380 OSStatus
UpdateNode (BTreeControlBlockPtr btreePtr
,
382 UInt32 transactionID
,
385 OSStatus
GetMapNode (BTreeControlBlockPtr btreePtr
,
386 BlockDescriptor
*nodePtr
,
390 //// Node Buffer Operations
392 OSStatus
CheckNode (BTreeControlBlockPtr btreePtr
,
395 void ClearNode (BTreeControlBlockPtr btreePtr
,
398 UInt16
GetNodeDataSize (BTreeControlBlockPtr btreePtr
,
401 UInt16
GetNodeFreeSize (BTreeControlBlockPtr btreePtr
,
405 //// Record Operations
407 Boolean
InsertRecord (BTreeControlBlockPtr btreePtr
,
413 Boolean
InsertKeyRecord (BTreeControlBlockPtr btreePtr
,
421 void DeleteRecord (BTreeControlBlockPtr btree
,
426 Boolean
SearchNode (BTreeControlBlockPtr btree
,
431 OSStatus
GetRecordByIndex (BTreeControlBlockPtr btree
,
438 UInt8
* GetRecordAddress (BTreeControlBlockPtr btree
,
442 #define GetRecordAddress(btreePtr,node,index) ((UInt8 *)(node) + (*(short *) ((UInt8 *)(node) + (btreePtr)->nodeSize - ((index) << 1) - kOffsetSize)))
445 UInt16
GetRecordSize (BTreeControlBlockPtr btree
,
449 UInt32
GetChildNodeNum (BTreeControlBlockPtr btreePtr
,
453 void MoveRecordsLeft (UInt8
* src
,
455 UInt16 bytesToMove
);
457 #define MoveRecordsLeft(src,dst,bytes) bcopy((src),(dst),(bytes))
459 void MoveRecordsRight (UInt8
* src
,
461 UInt16 bytesToMove
);
463 #define MoveRecordsRight(src,dst,bytes) bcopy((src),(dst),(bytes))
466 //////////////////////////////// Tree Operations ////////////////////////////////
468 OSStatus
SearchTree (BTreeControlBlockPtr btreePtr
,
470 TreePathTable treePathTable
,
472 BlockDescriptor
*nodePtr
,
475 OSStatus
InsertTree (BTreeControlBlockPtr btreePtr
,
476 TreePathTable treePathTable
,
480 BlockDescriptor
*targetNode
,
483 Boolean replacingKey
,
484 UInt32
*insertNode
);
486 OSStatus
DeleteTree (BTreeControlBlockPtr btreePtr
,
487 TreePathTable treePathTable
,
488 BlockDescriptor
*targetNode
,
492 #endif //__BTREESPRIVATE__