bt_conv.c revision 1.14.6.2 1 1.14.6.2 joerg /* $NetBSD: bt_conv.c,v 1.14.6.2 2008/09/10 17:52:36 joerg Exp $ */
2 1.14.6.2 joerg
3 1.14.6.2 joerg /*-
4 1.14.6.2 joerg * Copyright (c) 1990, 1993, 1994
5 1.14.6.2 joerg * The Regents of the University of California. All rights reserved.
6 1.14.6.2 joerg *
7 1.14.6.2 joerg * This code is derived from software contributed to Berkeley by
8 1.14.6.2 joerg * Mike Olson.
9 1.14.6.2 joerg *
10 1.14.6.2 joerg * Redistribution and use in source and binary forms, with or without
11 1.14.6.2 joerg * modification, are permitted provided that the following conditions
12 1.14.6.2 joerg * are met:
13 1.14.6.2 joerg * 1. Redistributions of source code must retain the above copyright
14 1.14.6.2 joerg * notice, this list of conditions and the following disclaimer.
15 1.14.6.2 joerg * 2. Redistributions in binary form must reproduce the above copyright
16 1.14.6.2 joerg * notice, this list of conditions and the following disclaimer in the
17 1.14.6.2 joerg * documentation and/or other materials provided with the distribution.
18 1.14.6.2 joerg * 3. Neither the name of the University nor the names of its contributors
19 1.14.6.2 joerg * may be used to endorse or promote products derived from this software
20 1.14.6.2 joerg * without specific prior written permission.
21 1.14.6.2 joerg *
22 1.14.6.2 joerg * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.14.6.2 joerg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.14.6.2 joerg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.14.6.2 joerg * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.14.6.2 joerg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.14.6.2 joerg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.14.6.2 joerg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.14.6.2 joerg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.14.6.2 joerg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.14.6.2 joerg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.14.6.2 joerg * SUCH DAMAGE.
33 1.14.6.2 joerg */
34 1.14.6.2 joerg
35 1.14.6.2 joerg #if HAVE_NBTOOL_CONFIG_H
36 1.14.6.2 joerg #include "nbtool_config.h"
37 1.14.6.2 joerg #endif
38 1.14.6.2 joerg
39 1.14.6.2 joerg #include <sys/cdefs.h>
40 1.14.6.2 joerg __RCSID("$NetBSD: bt_conv.c,v 1.14.6.2 2008/09/10 17:52:36 joerg Exp $");
41 1.14.6.2 joerg
42 1.14.6.2 joerg #include <assert.h>
43 1.14.6.2 joerg #include <stdio.h>
44 1.14.6.2 joerg
45 1.14.6.2 joerg #include <db.h>
46 1.14.6.2 joerg #include "btree.h"
47 1.14.6.2 joerg
48 1.14.6.2 joerg static void mswap(PAGE *);
49 1.14.6.2 joerg
50 1.14.6.2 joerg /*
51 1.14.6.2 joerg * __BT_BPGIN, __BT_BPGOUT --
52 1.14.6.2 joerg * Convert host-specific number layout to/from the host-independent
53 1.14.6.2 joerg * format stored on disk.
54 1.14.6.2 joerg *
55 1.14.6.2 joerg * Parameters:
56 1.14.6.2 joerg * t: tree
57 1.14.6.2 joerg * pg: page number
58 1.14.6.2 joerg * h: page to convert
59 1.14.6.2 joerg */
60 1.14.6.2 joerg void
61 1.14.6.2 joerg __bt_pgin(void *t, pgno_t pg, void *pp)
62 1.14.6.2 joerg {
63 1.14.6.2 joerg PAGE *h;
64 1.14.6.2 joerg indx_t i, top;
65 1.14.6.2 joerg uint8_t flags;
66 1.14.6.2 joerg char *p;
67 1.14.6.2 joerg
68 1.14.6.2 joerg if (!F_ISSET(((BTREE *)t), B_NEEDSWAP))
69 1.14.6.2 joerg return;
70 1.14.6.2 joerg if (pg == P_META) {
71 1.14.6.2 joerg mswap(pp);
72 1.14.6.2 joerg return;
73 1.14.6.2 joerg }
74 1.14.6.2 joerg
75 1.14.6.2 joerg h = pp;
76 1.14.6.2 joerg M_32_SWAP(h->pgno);
77 1.14.6.2 joerg M_32_SWAP(h->prevpg);
78 1.14.6.2 joerg M_32_SWAP(h->nextpg);
79 1.14.6.2 joerg M_32_SWAP(h->flags);
80 1.14.6.2 joerg M_16_SWAP(h->lower);
81 1.14.6.2 joerg M_16_SWAP(h->upper);
82 1.14.6.2 joerg
83 1.14.6.2 joerg top = NEXTINDEX(h);
84 1.14.6.2 joerg if ((h->flags & P_TYPE) == P_BINTERNAL)
85 1.14.6.2 joerg for (i = 0; i < top; i++) {
86 1.14.6.2 joerg M_16_SWAP(h->linp[i]);
87 1.14.6.2 joerg p = (char *)(void *)GETBINTERNAL(h, i);
88 1.14.6.2 joerg P_32_SWAP(p);
89 1.14.6.2 joerg p += sizeof(uint32_t);
90 1.14.6.2 joerg P_32_SWAP(p);
91 1.14.6.2 joerg p += sizeof(pgno_t);
92 1.14.6.2 joerg if (*(uint8_t *)p & P_BIGKEY) {
93 1.14.6.2 joerg p += sizeof(uint8_t);
94 1.14.6.2 joerg P_32_SWAP(p);
95 1.14.6.2 joerg p += sizeof(pgno_t);
96 1.14.6.2 joerg P_32_SWAP(p);
97 1.14.6.2 joerg }
98 1.14.6.2 joerg }
99 1.14.6.2 joerg else if ((h->flags & P_TYPE) == P_BLEAF)
100 1.14.6.2 joerg for (i = 0; i < top; i++) {
101 1.14.6.2 joerg M_16_SWAP(h->linp[i]);
102 1.14.6.2 joerg p = (char *)(void *)GETBLEAF(h, i);
103 1.14.6.2 joerg P_32_SWAP(p);
104 1.14.6.2 joerg p += sizeof(uint32_t);
105 1.14.6.2 joerg P_32_SWAP(p);
106 1.14.6.2 joerg p += sizeof(uint32_t);
107 1.14.6.2 joerg flags = *(uint8_t *)p;
108 1.14.6.2 joerg if (flags & (P_BIGKEY | P_BIGDATA)) {
109 1.14.6.2 joerg p += sizeof(uint8_t);
110 1.14.6.2 joerg if (flags & P_BIGKEY) {
111 1.14.6.2 joerg P_32_SWAP(p);
112 1.14.6.2 joerg p += sizeof(pgno_t);
113 1.14.6.2 joerg P_32_SWAP(p);
114 1.14.6.2 joerg }
115 1.14.6.2 joerg if (flags & P_BIGDATA) {
116 1.14.6.2 joerg p += sizeof(uint32_t);
117 1.14.6.2 joerg P_32_SWAP(p);
118 1.14.6.2 joerg p += sizeof(pgno_t);
119 1.14.6.2 joerg P_32_SWAP(p);
120 1.14.6.2 joerg }
121 1.14.6.2 joerg }
122 1.14.6.2 joerg }
123 1.14.6.2 joerg }
124 1.14.6.2 joerg
125 1.14.6.2 joerg void
126 1.14.6.2 joerg __bt_pgout(void *t, pgno_t pg, void *pp)
127 1.14.6.2 joerg {
128 1.14.6.2 joerg PAGE *h;
129 1.14.6.2 joerg indx_t i, top;
130 1.14.6.2 joerg uint8_t flags;
131 1.14.6.2 joerg char *p;
132 1.14.6.2 joerg
133 1.14.6.2 joerg if (!F_ISSET(((BTREE *)t), B_NEEDSWAP))
134 1.14.6.2 joerg return;
135 1.14.6.2 joerg if (pg == P_META) {
136 1.14.6.2 joerg mswap(pp);
137 1.14.6.2 joerg return;
138 1.14.6.2 joerg }
139 1.14.6.2 joerg
140 1.14.6.2 joerg h = pp;
141 1.14.6.2 joerg top = NEXTINDEX(h);
142 1.14.6.2 joerg if ((h->flags & P_TYPE) == P_BINTERNAL)
143 1.14.6.2 joerg for (i = 0; i < top; i++) {
144 1.14.6.2 joerg p = (char *)(void *)GETBINTERNAL(h, i);
145 1.14.6.2 joerg P_32_SWAP(p);
146 1.14.6.2 joerg p += sizeof(uint32_t);
147 1.14.6.2 joerg P_32_SWAP(p);
148 1.14.6.2 joerg p += sizeof(pgno_t);
149 1.14.6.2 joerg if (*(uint8_t *)p & P_BIGKEY) {
150 1.14.6.2 joerg p += sizeof(uint8_t);
151 1.14.6.2 joerg P_32_SWAP(p);
152 1.14.6.2 joerg p += sizeof(pgno_t);
153 1.14.6.2 joerg P_32_SWAP(p);
154 1.14.6.2 joerg }
155 1.14.6.2 joerg M_16_SWAP(h->linp[i]);
156 1.14.6.2 joerg }
157 1.14.6.2 joerg else if ((h->flags & P_TYPE) == P_BLEAF)
158 1.14.6.2 joerg for (i = 0; i < top; i++) {
159 1.14.6.2 joerg p = (char *)(void *)GETBLEAF(h, i);
160 1.14.6.2 joerg P_32_SWAP(p);
161 1.14.6.2 joerg p += sizeof(uint32_t);
162 1.14.6.2 joerg P_32_SWAP(p);
163 1.14.6.2 joerg p += sizeof(uint32_t);
164 1.14.6.2 joerg flags = *(uint8_t *)p;
165 1.14.6.2 joerg if (flags & (P_BIGKEY | P_BIGDATA)) {
166 1.14.6.2 joerg p += sizeof(uint8_t);
167 1.14.6.2 joerg if (flags & P_BIGKEY) {
168 1.14.6.2 joerg P_32_SWAP(p);
169 1.14.6.2 joerg p += sizeof(pgno_t);
170 1.14.6.2 joerg P_32_SWAP(p);
171 1.14.6.2 joerg }
172 1.14.6.2 joerg if (flags & P_BIGDATA) {
173 1.14.6.2 joerg p += sizeof(uint32_t);
174 1.14.6.2 joerg P_32_SWAP(p);
175 1.14.6.2 joerg p += sizeof(pgno_t);
176 1.14.6.2 joerg P_32_SWAP(p);
177 1.14.6.2 joerg }
178 1.14.6.2 joerg }
179 1.14.6.2 joerg M_16_SWAP(h->linp[i]);
180 1.14.6.2 joerg }
181 1.14.6.2 joerg
182 1.14.6.2 joerg M_32_SWAP(h->pgno);
183 1.14.6.2 joerg M_32_SWAP(h->prevpg);
184 1.14.6.2 joerg M_32_SWAP(h->nextpg);
185 1.14.6.2 joerg M_32_SWAP(h->flags);
186 1.14.6.2 joerg M_16_SWAP(h->lower);
187 1.14.6.2 joerg M_16_SWAP(h->upper);
188 1.14.6.2 joerg }
189 1.14.6.2 joerg
190 1.14.6.2 joerg /*
191 1.14.6.2 joerg * MSWAP -- Actually swap the bytes on the meta page.
192 1.14.6.2 joerg *
193 1.14.6.2 joerg * Parameters:
194 1.14.6.2 joerg * p: page to convert
195 1.14.6.2 joerg */
196 1.14.6.2 joerg static void
197 1.14.6.2 joerg mswap(PAGE *pg)
198 1.14.6.2 joerg {
199 1.14.6.2 joerg char *p;
200 1.14.6.2 joerg
201 1.14.6.2 joerg p = (char *)(void *)pg;
202 1.14.6.2 joerg P_32_SWAP(p); /* magic */
203 1.14.6.2 joerg p += sizeof(uint32_t);
204 1.14.6.2 joerg P_32_SWAP(p); /* version */
205 1.14.6.2 joerg p += sizeof(uint32_t);
206 1.14.6.2 joerg P_32_SWAP(p); /* psize */
207 1.14.6.2 joerg p += sizeof(uint32_t);
208 1.14.6.2 joerg P_32_SWAP(p); /* free */
209 1.14.6.2 joerg p += sizeof(uint32_t);
210 1.14.6.2 joerg P_32_SWAP(p); /* nrecs */
211 1.14.6.2 joerg p += sizeof(uint32_t);
212 1.14.6.2 joerg P_32_SWAP(p); /* flags */
213 1.14.6.2 joerg p += sizeof(uint32_t);
214 1.14.6.2 joerg }
215