2 * Copyright (c) 2000-2014 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 File: BTreesInternal.h
31 Contains: IPI to File Manager B-tree
35 Copyright: (c) 1996-1998 by Apple Inc., all rights reserved.
41 Other Contact: Mark Day
43 Technology: File Systems
51 Change History (most recent first):
53 <RHAP> 9/22/99 ser Added prototypes for BTGetLastSync and BTSetLastSync
54 <RHAP> 6/22/98 djb Add ERR_BASE to btree error codes to make them negative (for MacOS X only).
56 <CS7> 7/28/97 msd Add enum for fsBTTimeOutErr.
57 <CS6> 7/25/97 DSH Added heuristicHint as parameter to BTSearchRecord.
58 <CS5> 7/24/97 djb Add blockReadFromDisk flag to BlockDescriptor. Callbacks now use
59 a file refNum instead of an FCB.
60 <CS4> 7/16/97 DSH FilesInternal.i renamed FileMgrInternal.i to avoid name
62 <CS3> 6/2/97 DSH Added SetEndOfForkProc() prototype, so Attributes.c can call it
64 <CS2> 5/19/97 djb kMaxKeyLength is now 520.
65 <CS1> 4/28/97 djb first checked in
67 <HFS6> 3/17/97 DSH Remove Key Comparison prototype, already in FilesInternal.h.
68 <HFS5> 2/19/97 djb Add SetBlockSizeProcPtr. Add blockSize field to BlockDescriptor.
69 Remove E_ type error enums.
70 <HFS4> 1/27/97 djb Include Types.h and FilesInternal.h.
71 <HFS3> 1/13/97 djb Added kBTreeCurrentRecord for BTIterateRecord.
72 <HFS2> 1/3/97 djb Added support for large keys.
73 <HFS1> 12/19/96 djb first checked in
77 #ifndef __BTREESINTERNAL__
78 #define __BTREESINTERNAL__
80 #include <sys/appleapiopts.h>
83 #ifdef __APPLE_API_PRIVATE
85 #ifndef __FILEMGRINTERNAL__
86 #include "FileMgrInternal.h"
90 fsBTInvalidHeaderErr
= btBadHdr
,
91 fsBTBadRotateErr
= dsBadRotate
,
92 fsBTInvalidNodeErr
= btBadNode
,
93 fsBTRecordTooLargeErr
= btNoFit
,
94 fsBTRecordNotFoundErr
= btNotFound
,
95 fsBTDuplicateRecordErr
= btExists
,
96 fsBTFullErr
= btNoSpaceAvail
,
98 fsBTInvalidFileErr
= ERR_BASE
+ 0x0302, /* no BTreeCB has been allocated for fork*/
99 fsBTrFileAlreadyOpenErr
= ERR_BASE
+ 0x0303,
100 fsBTInvalidIteratorErr
= ERR_BASE
+ 0x0308,
101 fsBTEmptyErr
= ERR_BASE
+ 0x030A,
102 fsBTNoMoreMapNodesErr
= ERR_BASE
+ 0x030B,
103 fsBTBadNodeSize
= ERR_BASE
+ 0x030C,
104 fsBTBadNodeType
= ERR_BASE
+ 0x030D,
105 fsBTInvalidKeyLengthErr
= ERR_BASE
+ 0x030E,
106 fsBTStartOfIterationErr
= ERR_BASE
+ 0x0353,
107 fsBTEndOfIterationErr
= ERR_BASE
+ 0x0354,
108 fsBTUnknownVersionErr
= ERR_BASE
+ 0x0355,
109 fsBTTreeTooDeepErr
= ERR_BASE
+ 0x0357,
110 fsIteratorExitedScopeErr
= ERR_BASE
+ 0x0A02, /* iterator exited the scope*/
111 fsIteratorScopeExceptionErr
= ERR_BASE
+ 0x0A03, /* iterator is undefined due to error or movement of scope locality*/
112 fsUnknownIteratorMovementErr
= ERR_BASE
+ 0x0A04, /* iterator movement is not defined*/
113 fsInvalidIterationMovmentErr
= ERR_BASE
+ 0x0A05, /* iterator movement is invalid in current context*/
114 fsClientIDMismatchErr
= ERR_BASE
+ 0x0A06, /* wrong client process ID*/
115 fsEndOfIterationErr
= ERR_BASE
+ 0x0A07, /* there were no objects left to return on iteration*/
116 fsBTTimeOutErr
= ERR_BASE
+ 0x0A08 /* BTree scan interrupted -- no time left for physical I/O */
119 struct BlockDescriptor
{
122 daddr64_t blockNum
; /* logical block number (used by hfs_swap_BTNode) */
124 Boolean blockReadFromDisk
;
125 Byte isModified
; // XXXdbg - for journaling
128 typedef struct BlockDescriptor BlockDescriptor
;
129 typedef BlockDescriptor
*BlockDescPtr
;
132 struct FSBufferDescriptor
{
133 void * bufferAddress
;
137 typedef struct FSBufferDescriptor FSBufferDescriptor
;
139 typedef FSBufferDescriptor
*FSBufferDescriptorPtr
;
143 Fork Level Access Method Block get options
146 kGetBlock
= 0x00000000,
147 kGetBlockHint
= 0x00000001, // if set, the block is being looked up using hint
148 kForceReadBlock
= 0x00000002, //\80\80 how does this relate to Read/Verify? Do we need this?
149 kGetEmptyBlock
= 0x00000008
151 typedef u_int32_t GetBlockOptions
;
154 Fork Level Access Method Block release options
157 kReleaseBlock
= 0x00000000,
158 kForceWriteBlock
= 0x00000001,
159 kMarkBlockDirty
= 0x00000002,
160 kTrashBlock
= 0x00000004,
161 kLockTransaction
= 0x00000100
163 typedef u_int32_t ReleaseBlockOptions
;
165 typedef u_int64_t FSSize
;
166 typedef u_int32_t ForkBlockNumber
;
168 /*============================================================================
169 Fork Level Buffered I/O Access Method
170 ============================================================================*/
172 typedef OSStatus (* GetBlockProcPtr
) (FileReference fileRefNum
,
174 GetBlockOptions options
,
175 BlockDescriptor
*block
);
178 typedef OSStatus (* ReleaseBlockProcPtr
) (FileReference fileRefNum
,
179 BlockDescPtr blockPtr
,
180 ReleaseBlockOptions options
);
182 typedef OSStatus (* SetEndOfForkProcPtr
) (FileReference fileRefNum
,
186 typedef OSStatus (* SetBlockSizeProcPtr
) (FileReference fileRefNum
,
188 ItemCount minBlockCount
);
190 OSStatus
SetEndOfForkProc ( FileReference fileRefNum
, FSSize minEOF
, FSSize maxEOF
);
194 B*Tree Information Version
197 enum BTreeInformationVersion
{
198 kBTreeInfoVersion
= 0
202 B*Tree Iteration Operation Constants
205 enum BTreeIterationOperations
{
212 typedef u_int16_t BTreeIterationOperation
;
216 Btree types: 0 is HFS CAT/EXT file, 1~127 are AppleShare B*Tree files, 128~254 unused
217 hfsBtreeType EQU 0 ; control file
218 validBTType EQU $80 ; user btree type starts from 128
219 userBT1Type EQU $FF ; 255 is our Btree type. Used by BTInit and BTPatch
223 kHFSBTreeType
= 0, // control file
224 kUserBTreeType
= 128, // user btree type starts from 128
225 kReservedBTreeType
= 255 //
228 #define kBTreeHeaderUserBytes 128
231 typedef BTreeKey
*BTreeKeyPtr
;
235 BTreeInfoRec Structure - for BTGetInformation
240 u_int16_t maxKeyLength
;
242 u_int32_t lastfsync
; /* Last time that this was fsynced */
243 ItemCount numRecords
;
245 ItemCount numFreeNodes
;
246 u_int8_t keyCompareType
;
247 u_int8_t reserved
[3];
249 typedef struct BTreeInfoRec BTreeInfoRec
;
250 typedef BTreeInfoRec
*BTreeInfoPtr
;
253 BTreeHint can never be exported to the outside. Use u_int32_t BTreeHint[4],
254 u_int8_t BTreeHint[16], etc.
257 ItemCount writeCount
;
258 u_int32_t nodeNum
; // node the key was last seen in
259 u_int16_t index
; // index then key was last seen at
263 typedef struct BTreeHint BTreeHint
;
264 typedef BTreeHint
*BTreeHintPtr
;
269 struct BTreeIterator
{
273 u_int32_t hitCount
; // Total number of leaf records hit
274 u_int32_t maxLeafRecs
; // Max leaf records over iteration
277 typedef struct BTreeIterator BTreeIterator
;
278 typedef BTreeIterator
*BTreeIteratorPtr
;
281 /*============================================================================
283 ============================================================================*/
286 Key Comparison Function ProcPtr Type - for BTOpenPath
288 //typedef int32_t (* KeyCompareProcPtr)(BTreeKeyPtr a, BTreeKeyPtr b);
291 typedef int32_t (* IterateCallBackProcPtr
)(BTreeKeyPtr key
, void * record
, void * state
);
294 extern OSStatus
BTOpenPath(FCB
*filePtr
, KeyCompareProcPtr keyCompareProc
);
296 extern OSStatus
BTClosePath (FCB
*filePtr
);
299 extern OSStatus
BTSearchRecord (FCB
*filePtr
,
300 BTreeIterator
*searchIterator
,
301 FSBufferDescriptor
*btRecord
,
302 u_int16_t
*recordLen
,
303 BTreeIterator
*resultIterator
);
305 extern OSStatus
BTIterateRecord (FCB
*filePtr
,
306 BTreeIterationOperation operation
,
307 BTreeIterator
*iterator
,
308 FSBufferDescriptor
*btRecord
,
309 u_int16_t
*recordLen
);
312 extern OSStatus
BTIterateRecords(FCB
*filePtr
, BTreeIterationOperation operation
, BTreeIterator
*iterator
,
313 IterateCallBackProcPtr callBackProc
, void * callBackState
);
315 extern OSStatus
BTInsertRecord (FCB
*filePtr
,
316 BTreeIterator
*iterator
,
317 FSBufferDescriptor
*btrecord
,
318 u_int16_t recordLen
);
320 extern OSStatus
BTReplaceRecord (FCB
*filePtr
,
321 BTreeIterator
*iterator
,
322 FSBufferDescriptor
*btRecord
,
323 u_int16_t recordLen
);
325 extern OSStatus
BTUpdateRecord (FCB
*filePtr
,
326 BTreeIterator
*iterator
,
327 IterateCallBackProcPtr callBackProc
,
328 void *callBackState
);
330 extern OSStatus
BTDeleteRecord (FCB
*filePtr
,
331 BTreeIterator
*iterator
);
333 extern OSStatus
BTGetInformation (FCB
*filePtr
,
335 BTreeInfoRec
*info
);
337 extern OSStatus
BTIsDirty(FCB
*filePtr
);
339 extern OSStatus
BTFlushPath (FCB
*filePtr
);
341 extern OSStatus
BTReloadData (FCB
*filePtr
);
343 extern OSStatus
BTInvalidateHint (BTreeIterator
*iterator
);
345 extern OSStatus
BTGetLastSync (FCB
*filePtr
,
346 u_int32_t
*lastfsync
);
348 extern OSStatus
BTSetLastSync (FCB
*filePtr
,
349 u_int32_t lastfsync
);
351 extern OSStatus
BTHasContiguousNodes(FCB
*filePtr
);
353 extern OSStatus
BTGetUserData(FCB
*filePtr
, void * dataPtr
, int dataSize
);
355 extern OSStatus
BTSetUserData(FCB
*filePtr
, void * dataPtr
, int dataSize
);
357 /* B-tree node reserve routines. */
358 extern void BTReserveSetup(void);
360 extern int BTReserveSpace(FCB
*file
, int operations
, void * data
);
362 extern int BTReleaseReserve(FCB
*file
, void * data
);
364 extern int BTZeroUnusedNodes(FCB
*file
);
366 #endif /* __APPLE_API_PRIVATE */
368 #endif // __BTREESINTERNAL__