]>
git.saurik.com Git - apple/libc.git/blob - db/btree/FreeBSD/bt_debug.c
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #if defined(LIBC_SCCS) && !defined(lint)
34 static char sccsid
[] = "@(#)bt_debug.c 8.5 (Berkeley) 8/17/94";
35 #endif /* LIBC_SCCS and not lint */
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD: src/lib/libc/db/btree/bt_debug.c,v 1.6 2009/03/23 23:22:09 delphij Exp $");
39 #include <sys/param.h>
50 * BT_DUMP -- Dump the tree
53 * dbp: pointer to the DB
64 (void)fprintf(stderr
, "%s: pgsz %u",
65 F_ISSET(t
, B_INMEM
) ? "memory" : "disk", t
->bt_psize
);
66 if (F_ISSET(t
, R_RECNO
))
67 (void)fprintf(stderr
, " keys %u", t
->bt_nrecs
);
69 #define X(flag, name) \
70 if (F_ISSET(t, flag)) { \
71 (void)fprintf(stderr, "%s%s", sep, name); \
76 X(R_FIXLEN
, "FIXLEN");
78 X(B_NODUPS
, "NODUPS");
79 X(B_RDONLY
, "RDONLY");
81 X(B_METADIRTY
,"METADIRTY");
82 (void)fprintf(stderr
, ")\n");
86 for (i
= P_ROOT
; (h
= mpool_get(t
->bt_mp
, i
, 0)) != NULL
; ++i
) {
88 (void)mpool_put(t
->bt_mp
, h
, 0);
93 * BT_DMPAGE -- Dump the meta page
96 * h: pointer to the PAGE
105 (void)fprintf(stderr
, "magic %x\n", m
->magic
);
106 (void)fprintf(stderr
, "version %u\n", m
->version
);
107 (void)fprintf(stderr
, "psize %u\n", m
->psize
);
108 (void)fprintf(stderr
, "free %u\n", m
->free
);
109 (void)fprintf(stderr
, "nrecs %u\n", m
->nrecs
);
110 (void)fprintf(stderr
, "flags %u", m
->flags
);
112 #define X(flag, name) \
113 if (m->flags & flag) { \
114 (void)fprintf(stderr, "%s%s", sep, name); \
119 X(B_NODUPS
, "NODUPS");
121 (void)fprintf(stderr
, ")");
126 * BT_DNPAGE -- Dump the page
129 * n: page number to dump.
132 __bt_dnpage(DB
*dbp
, pgno_t pgno
)
138 if ((h
= mpool_get(t
->bt_mp
, pgno
, 0)) != NULL
) {
140 (void)mpool_put(t
->bt_mp
, h
, 0);
145 * BT_DPAGE -- Dump the page
148 * h: pointer to the PAGE
160 (void)fprintf(stderr
, " page %u: (", h
->pgno
);
162 #define X(flag, name) \
163 if (h->flags & flag) { \
164 (void)fprintf(stderr, "%s%s", sep, name); \
168 X(P_BINTERNAL
, "BINTERNAL") /* types */
170 X(P_RINTERNAL
, "RINTERNAL") /* types */
172 X(P_OVERFLOW
, "OVERFLOW")
173 X(P_PRESERVE
, "PRESERVE");
174 (void)fprintf(stderr
, ")\n");
177 (void)fprintf(stderr
, "\tprev %2u next %2u", h
->prevpg
, h
->nextpg
);
178 if (h
->flags
& P_OVERFLOW
)
182 (void)fprintf(stderr
, " lower %3d upper %3d nextind %d\n",
183 h
->lower
, h
->upper
, top
);
184 for (cur
= 0; cur
< top
; cur
++) {
185 (void)fprintf(stderr
, "\t[%03d] %4d ", cur
, h
->linp
[cur
]);
186 switch (h
->flags
& P_TYPE
) {
188 bi
= GETBINTERNAL(h
, cur
);
189 (void)fprintf(stderr
,
190 "size %03d pgno %03d", bi
->ksize
, bi
->pgno
);
191 if (bi
->flags
& P_BIGKEY
)
192 (void)fprintf(stderr
, " (indirect)");
194 (void)fprintf(stderr
,
195 " {%.*s}", (int)bi
->ksize
, bi
->bytes
);
198 ri
= GETRINTERNAL(h
, cur
);
199 (void)fprintf(stderr
, "entries %03d pgno %03d",
200 ri
->nrecs
, ri
->pgno
);
203 bl
= GETBLEAF(h
, cur
);
204 if (bl
->flags
& P_BIGKEY
)
205 (void)fprintf(stderr
,
206 "big key page %u size %u/",
207 *(pgno_t
*)bl
->bytes
,
208 *(u_int32_t
*)(bl
->bytes
+ sizeof(pgno_t
)));
210 (void)fprintf(stderr
, "%.*s/",
211 bl
->ksize
, bl
->bytes
);
212 if (bl
->flags
& P_BIGDATA
)
213 (void)fprintf(stderr
,
214 "big data page %u size %u",
215 *(pgno_t
*)(bl
->bytes
+ bl
->ksize
),
216 *(u_int32_t
*)(bl
->bytes
+ bl
->ksize
+
219 (void)fprintf(stderr
, "%.*s",
220 (int)bl
->dsize
, bl
->bytes
+ bl
->ksize
);
223 rl
= GETRLEAF(h
, cur
);
224 if (rl
->flags
& P_BIGDATA
)
225 (void)fprintf(stderr
,
226 "big data page %u size %u",
227 *(pgno_t
*)rl
->bytes
,
228 *(u_int32_t
*)(rl
->bytes
+ sizeof(pgno_t
)));
230 (void)fprintf(stderr
,
231 "%.*s", (int)rl
->dsize
, rl
->bytes
);
234 (void)fprintf(stderr
, "\n");
241 * BT_STAT -- Gather/print the tree statistics
244 * dbp: pointer to the DB
249 extern u_long bt_cache_hit
, bt_cache_miss
, bt_pfxsaved
, bt_rootsplit
;
250 extern u_long bt_sortsplit
, bt_split
;
253 pgno_t i
, pcont
, pinternal
, pleaf
;
254 u_long ifree
, lfree
, nkeys
;
258 pcont
= pinternal
= pleaf
= 0;
259 nkeys
= ifree
= lfree
= 0;
260 for (i
= P_ROOT
; (h
= mpool_get(t
->bt_mp
, i
, 0)) != NULL
; ++i
) {
261 switch (h
->flags
& P_TYPE
) {
265 ifree
+= h
->upper
- h
->lower
;
270 lfree
+= h
->upper
- h
->lower
;
271 nkeys
+= NEXTINDEX(h
);
277 (void)mpool_put(t
->bt_mp
, h
, 0);
280 /* Count the levels of the tree. */
281 for (i
= P_ROOT
, levels
= 0 ;; ++levels
) {
282 h
= mpool_get(t
->bt_mp
, i
, 0);
283 if (h
->flags
& (P_BLEAF
|P_RLEAF
)) {
286 (void)mpool_put(t
->bt_mp
, h
, 0);
289 i
= F_ISSET(t
, R_RECNO
) ?
290 GETRINTERNAL(h
, 0)->pgno
:
291 GETBINTERNAL(h
, 0)->pgno
;
292 (void)mpool_put(t
->bt_mp
, h
, 0);
295 (void)fprintf(stderr
, "%d level%s with %lu keys",
296 levels
, levels
== 1 ? "" : "s", nkeys
);
297 if (F_ISSET(t
, R_RECNO
))
298 (void)fprintf(stderr
, " (%u header count)", t
->bt_nrecs
);
299 (void)fprintf(stderr
,
300 "\n%u pages (leaf %u, internal %u, overflow %u)\n",
301 pinternal
+ pleaf
+ pcont
, pleaf
, pinternal
, pcont
);
302 (void)fprintf(stderr
, "%lu cache hits, %lu cache misses\n",
303 bt_cache_hit
, bt_cache_miss
);
304 (void)fprintf(stderr
, "%lu splits (%lu root splits, %lu sort splits)\n",
305 bt_split
, bt_rootsplit
, bt_sortsplit
);
306 pleaf
*= t
->bt_psize
- BTDATAOFF
;
308 (void)fprintf(stderr
,
309 "%.0f%% leaf fill (%lu bytes used, %lu bytes free)\n",
310 ((double)(pleaf
- lfree
) / pleaf
) * 100,
311 pleaf
- lfree
, lfree
);
312 pinternal
*= t
->bt_psize
- BTDATAOFF
;
314 (void)fprintf(stderr
,
315 "%.0f%% internal fill (%lu bytes used, %lu bytes free\n",
316 ((double)(pinternal
- ifree
) / pinternal
) * 100,
317 pinternal
- ifree
, ifree
);
319 (void)fprintf(stderr
, "prefix checking removed %lu bytes.\n",