]>
git.saurik.com Git - apple/libc.git/blob - db/btree/FreeBSD/bt_close.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 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #if defined(LIBC_SCCS) && !defined(lint)
38 static char sccsid
[] = "@(#)bt_close.c 8.7 (Berkeley) 8/17/94";
39 #endif /* LIBC_SCCS and not lint */
40 #include <sys/cdefs.h>
41 __FBSDID("$FreeBSD: src/lib/libc/db/btree/bt_close.c,v 1.8 2002/03/22 21:52:00 obrien Exp $");
43 #include "namespace.h"
44 #include <sys/param.h>
51 #include "un-namespace.h"
56 static int bt_meta(BTREE
*);
59 * BT_CLOSE -- Close a btree.
62 * dbp: pointer to access method
65 * RET_ERROR, RET_SUCCESS
76 /* Toss any page pinned across calls. */
77 if (t
->bt_pinned
!= NULL
) {
78 mpool_put(t
->bt_mp
, t
->bt_pinned
, 0);
83 if (__bt_sync(dbp
, 0) == RET_ERROR
)
86 /* Close the memory pool. */
87 if (mpool_close(t
->bt_mp
) == RET_ERROR
)
90 /* Free random memory. */
91 if (t
->bt_cursor
.key
.data
!= NULL
) {
92 free(t
->bt_cursor
.key
.data
);
93 t
->bt_cursor
.key
.size
= 0;
94 t
->bt_cursor
.key
.data
= NULL
;
96 if (t
->bt_rkey
.data
) {
97 free(t
->bt_rkey
.data
);
99 t
->bt_rkey
.data
= NULL
;
101 if (t
->bt_rdata
.data
) {
102 free(t
->bt_rdata
.data
);
103 t
->bt_rdata
.size
= 0;
104 t
->bt_rdata
.data
= NULL
;
110 return (_close(fd
) ? RET_ERROR
: RET_SUCCESS
);
114 * BT_SYNC -- sync the btree to disk.
117 * dbp: pointer to access method
120 * RET_SUCCESS, RET_ERROR.
123 __bt_sync(dbp
, flags
)
132 /* Toss any page pinned across calls. */
133 if (t
->bt_pinned
!= NULL
) {
134 mpool_put(t
->bt_mp
, t
->bt_pinned
, 0);
138 /* Sync doesn't currently take any flags. */
144 if (F_ISSET(t
, B_INMEM
| B_RDONLY
) || !F_ISSET(t
, B_MODIFIED
))
145 return (RET_SUCCESS
);
147 if (F_ISSET(t
, B_METADIRTY
) && bt_meta(t
) == RET_ERROR
)
150 if ((status
= mpool_sync(t
->bt_mp
)) == RET_SUCCESS
)
151 F_CLR(t
, B_MODIFIED
);
157 * BT_META -- write the tree meta data to disk.
163 * RET_ERROR, RET_SUCCESS
172 if ((p
= mpool_get(t
->bt_mp
, P_META
, 0)) == NULL
)
175 /* Fill in metadata. */
176 m
.magic
= BTREEMAGIC
;
177 m
.version
= BTREEVERSION
;
178 m
.psize
= t
->bt_psize
;
180 m
.nrecs
= t
->bt_nrecs
;
181 m
.flags
= F_ISSET(t
, SAVEMETA
);
183 memmove(p
, &m
, sizeof(BTMETA
));
184 mpool_put(t
->bt_mp
, p
, MPOOL_DIRTY
);
185 return (RET_SUCCESS
);