]>
git.saurik.com Git - apple/libc.git/blob - db/recno/FreeBSD/rec_delete.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
[] = "@(#)rec_delete.c 8.7 (Berkeley) 7/14/94";
35 #endif /* LIBC_SCCS and not lint */
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD: src/lib/libc/db/recno/rec_delete.c,v 1.5 2009/03/03 02:16:12 delphij Exp $");
39 #include <sys/types.h>
48 static int rec_rdelete(BTREE
*, recno_t
);
51 * __REC_DELETE -- Delete the item(s) referenced by a key.
54 * dbp: pointer to access method
56 * flags: R_CURSOR if deleting what the cursor references
59 * RET_ERROR, RET_SUCCESS and RET_SPECIAL if the key not found.
62 __rec_delete(const DB
*dbp
, const DBT
*key
, u_int flags
)
70 /* Toss any page pinned across calls. */
71 if (t
->bt_pinned
!= NULL
) {
72 mpool_put(t
->bt_mp
, t
->bt_pinned
, 0);
78 if ((nrec
= *(recno_t
*)key
->data
) == 0)
80 if (nrec
> t
->bt_nrecs
)
83 status
= rec_rdelete(t
, nrec
);
86 if (!F_ISSET(&t
->bt_cursor
, CURS_INIT
))
90 status
= rec_rdelete(t
, t
->bt_cursor
.rcursor
- 1);
91 if (status
== RET_SUCCESS
)
92 --t
->bt_cursor
.rcursor
;
95 einval
: errno
= EINVAL
;
99 if (status
== RET_SUCCESS
)
100 F_SET(t
, B_MODIFIED
| R_MODIFIED
);
105 * REC_RDELETE -- Delete the data matching the specified key.
109 * nrec: record to delete
112 * RET_ERROR, RET_SUCCESS and RET_SPECIAL if the key not found.
115 rec_rdelete(BTREE
*t
, recno_t nrec
)
121 /* Find the record; __rec_search pins the page. */
122 if ((e
= __rec_search(t
, nrec
, SDELETE
)) == NULL
)
125 /* Delete the record. */
127 status
= __rec_dleaf(t
, h
, e
->index
);
128 if (status
!= RET_SUCCESS
) {
129 mpool_put(t
->bt_mp
, h
, 0);
132 mpool_put(t
->bt_mp
, h
, MPOOL_DIRTY
);
133 return (RET_SUCCESS
);
137 * __REC_DLEAF -- Delete a single record from a recno leaf page.
141 * idx: index on current page to delete
144 * RET_SUCCESS, RET_ERROR.
147 __rec_dleaf(BTREE
*t
, PAGE
*h
, u_int32_t idx
)
150 indx_t
*ip
, cnt
, offset
;
156 * Delete a record from a recno leaf page. Internal records are never
157 * deleted from internal pages, regardless of the records that caused
158 * them to be added being deleted. Pages made empty by deletion are
159 * not reclaimed. They are, however, made available for reuse.
161 * Pack the remaining entries at the end of the page, shift the indices
162 * down, overwriting the deleted record and its index. If the record
163 * uses overflow pages, make them available for reuse.
165 to
= rl
= GETRLEAF(h
, idx
);
166 if (rl
->flags
& P_BIGDATA
&& __ovfl_delete(t
, rl
->bytes
) == RET_ERROR
)
171 * Compress the key/data pairs. Compress and adjust the [BR]LEAF
172 * offsets. Reset the headers.
174 from
= (char *)h
+ h
->upper
;
175 memmove(from
+ nbytes
, from
, (char *)to
- from
);
178 offset
= h
->linp
[idx
];
179 for (cnt
= &h
->linp
[idx
] - (ip
= &h
->linp
[0]); cnt
--; ++ip
)
182 for (cnt
= &h
->linp
[NEXTINDEX(h
)] - ip
; --cnt
; ++ip
)
183 ip
[0] = ip
[1] < offset
? ip
[1] + nbytes
: ip
[1];
184 h
->lower
-= sizeof(indx_t
);
186 return (RET_SUCCESS
);