d1c3624cf6e3f2e7e6b6c8c350fb09ce8f899f63
[dragonfly.git] / lib / libc / db / man / btree.3
1 .\" Copyright (c) 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)btree.3     8.4 (Berkeley) 8/18/94
29 .\" $FreeBSD: src/lib/libc/db/man/btree.3,v 1.3.2.3 2003/03/15 15:11:05 trhodes Exp $
30 .\" $DragonFly: src/lib/libc/db/man/btree.3,v 1.5 2007/08/18 20:48:47 swildner Exp $
31 .\"
32 .Dd August 18, 1994
33 .Dt BTREE 3
34 .Os
35 .Sh NAME
36 .Nm btree
37 .Nd "btree database access method"
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In sys/types.h
42 .In db.h
43 .Sh DESCRIPTION
44 The routine
45 .Fn dbopen
46 is the library interface to database files.
47 One of the supported file formats is
48 .Nm
49 files.
50 The general description of the database access methods is in
51 .Xr dbopen 3 ,
52 this manual page describes only the
53 .Nm
54 specific information.
55 .Pp
56 The
57 .Nm
58 data structure is a sorted, balanced tree structure storing
59 associated key/data pairs.
60 .Pp
61 The
62 .Nm
63 access method specific data structure provided to
64 .Fn dbopen
65 is defined in the
66 .In db.h
67 include file as follows:
68 .Bd -literal
69 typedef struct {
70         u_long flags;
71         u_int cachesize;
72         int maxkeypage;
73         int minkeypage;
74         u_int psize;
75         int (*compare)(const DBT *key1, const DBT *key2);
76         size_t (*prefix)(const DBT *key1, const DBT *key2);
77         int lorder;
78 } BTREEINFO;
79 .Ed
80 .Pp
81 The elements of this structure are as follows:
82 .Bl -tag -width indent
83 .It Va flags
84 The flag value is specified by
85 .Em or Ns 'ing
86 any of the following values:
87 .Bl -tag -width indent
88 .It Dv R_DUP
89 Permit duplicate keys in the tree, i.e. permit insertion if the key to be
90 inserted already exists in the tree.
91 The default behavior, as described in
92 .Xr dbopen 3 ,
93 is to overwrite a matching key when inserting a new key or to fail if
94 the
95 .Dv R_NOOVERWRITE
96 flag is specified.
97 The
98 .Dv R_DUP
99 flag is overridden by the
100 .Dv R_NOOVERWRITE
101 flag, and if the
102 .Dv R_NOOVERWRITE
103 flag is specified, attempts to insert duplicate keys into
104 the tree will fail.
105 .Pp
106 If the database contains duplicate keys, the order of retrieval of
107 key/data pairs is undefined if the
108 .Va get
109 routine is used, however,
110 .Va seq
111 routine calls with the
112 .Dv R_CURSOR
113 flag set will always return the logical
114 .Dq first
115 of any group of duplicate keys.
116 .El
117 .It Va cachesize
118 A suggested maximum size (in bytes) of the memory cache.
119 This value is
120 .Em only
121 advisory, and the access method will allocate more memory rather than fail.
122 Since every search examines the root page of the tree, caching the most
123 recently used pages substantially improves access time.
124 In addition, physical writes are delayed as long as possible, so a moderate
125 cache can reduce the number of I/O operations significantly.
126 Obviously, using a cache increases (but only increases) the likelihood of
127 corruption or lost data if the system crashes while a tree is being modified.
128 If
129 .Va cachesize
130 is 0 (no size is specified) a default cache is used.
131 .It Va maxkeypage
132 The maximum number of keys which will be stored on any single page.
133 Not currently implemented.
134 .\" The maximum number of keys which will be stored on any single page.
135 .\" Because of the way the
136 .\" .Nm
137 .\" data structure works,
138 .\" .Va maxkeypage
139 .\" must always be greater than or equal to 2.
140 .\" If
141 .\" .Va maxkeypage
142 .\" is 0 (no maximum number of keys is specified) the page fill factor is
143 .\" made as large as possible (which is almost invariably what is wanted).
144 .It Va minkeypage
145 The minimum number of keys which will be stored on any single page.
146 This value is used to determine which keys will be stored on overflow
147 pages, i.e. if a key or data item is longer than the pagesize divided
148 by the minkeypage value, it will be stored on overflow pages instead
149 of in the page itself.
150 If
151 .Va minkeypage
152 is 0 (no minimum number of keys is specified) a value of 2 is used.
153 .It Va psize
154 Page size is the size (in bytes) of the pages used for nodes in the tree.
155 The minimum page size is 512 bytes and the maximum page size is 64K.
156 If
157 .Va psize
158 is 0 (no page size is specified) a page size is chosen based on the
159 underlying file system I/O block size.
160 .It Va compare
161 Compare is the key comparison function.
162 It must return an integer less than, equal to, or greater than zero if the
163 first key argument is considered to be respectively less than, equal to,
164 or greater than the second key argument.
165 The same comparison function must be used on a given tree every time it
166 is opened.
167 If
168 .Va compare
169 is
170 .Dv NULL
171 (no comparison function is specified), the keys are compared
172 lexically, with shorter keys considered less than longer keys.
173 .It Va prefix
174 The
175 .Va prefix
176 element
177 is the prefix comparison function.
178 If specified, this routine must return the number of bytes of the second key
179 argument which are necessary to determine that it is greater than the first
180 key argument.
181 If the keys are equal, the key length should be returned.
182 Note, the usefulness of this routine is very data dependent, but, in some
183 data sets can produce significantly reduced tree sizes and search times.
184 If
185 .Va prefix
186 is
187 .Dv NULL
188 (no prefix function is specified),
189 .Em and
190 no comparison function is specified, a default lexical comparison routine
191 is used.
192 If
193 .Va prefix
194 is
195 .Dv NULL
196 and a comparison routine is specified, no prefix comparison is
197 done.
198 .It Va lorder
199 The byte order for integers in the stored database metadata.
200 The number should represent the order as an integer; for example,
201 big endian order would be the number 4,321.
202 If
203 .Va lorder
204 is 0 (no order is specified) the current host order is used.
205 .El
206 .Pp
207 If the file already exists (and the
208 .Dv O_TRUNC
209 flag is not specified), the
210 values specified for the
211 .Va flags , lorder
212 and
213 .Va psize
214 arguments
215 are ignored
216 in favor of the values used when the tree was created.
217 .Pp
218 Forward sequential scans of a tree are from the least key to the greatest.
219 .Pp
220 Space freed up by deleting key/data pairs from the tree is never reclaimed,
221 although it is normally made available for reuse.
222 This means that the
223 .Nm
224 storage structure is grow-only.
225 The only solutions are to avoid excessive deletions, or to create a fresh
226 tree periodically from a scan of an existing one.
227 .Pp
228 Searches, insertions, and deletions in a
229 .Nm
230 will all complete in
231 O lg base N where base is the average fill factor.
232 Often, inserting ordered data into
233 .Nm Ns s
234 results in a low fill factor.
235 This implementation has been modified to make ordered insertion the best
236 case, resulting in a much better than normal page fill factor.
237 .Sh ERRORS
238 The
239 .Nm
240 access method routines may fail and set
241 .Va errno
242 for any of the errors specified for the library routine
243 .Xr dbopen 3 .
244 .Sh SEE ALSO
245 .Xr dbopen 3 ,
246 .Xr hash 3 ,
247 .Xr mpool 3 ,
248 .Xr recno 3
249 .Rs
250 .%T "The Ubiquitous B-tree"
251 .%A Douglas Comer
252 .%J "ACM Comput. Surv. 11"
253 .%N 2
254 .%D June 1979
255 .%P 121-138
256 .Re
257 .Rs
258 .%A Bayer
259 .%A Unterauer
260 .%T "Prefix B-trees"
261 .%J "ACM Transactions on Database Systems"
262 .%N 1
263 .%V Vol. 2
264 .%D March 1977
265 .%P 11-26
266 .Re
267 .Rs
268 .%B "The Art of Computer Programming Vol. 3: Sorting and Searching"
269 .%A D. E. Knuth
270 .%D 1968
271 .%P 471-480
272 .Re
273 .Sh BUGS
274 Only big and little endian byte order is supported.