xref: /dflybsd-src/lib/libc/db/recno/rec_delete.c (revision ee61f228c1c38342493a01fe774b83cffc0f4be9)
1 /*-
2  * Copyright (c) 1990, 1993, 1994
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Mike Olson.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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. 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.
19  *
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
30  * SUCH DAMAGE.
31  *
32  * @(#)rec_delete.c	8.7 (Berkeley) 7/14/94
33  * $DragonFly: src/lib/libc/db/recno/rec_delete.c,v 1.4 2005/09/19 09:20:37 asmodai Exp $
34  */
35 
36 #include <sys/types.h>
37 
38 #include <errno.h>
39 #include <stdio.h>
40 #include <string.h>
41 
42 #include <db.h>
43 #include "recno.h"
44 
45 static int rec_rdelete (BTREE *, recno_t);
46 
47 /*
48  * __REC_DELETE -- Delete the item(s) referenced by a key.
49  *
50  * Parameters:
51  *	dbp:	pointer to access method
52  *	key:	key to delete
53  *	flags:	R_CURSOR if deleting what the cursor references
54  *
55  * Returns:
56  *	RET_ERROR, RET_SUCCESS and RET_SPECIAL if the key not found.
57  */
58 int
59 __rec_delete(dbp, key, flags)
60 	const DB *dbp;
61 	const DBT *key;
62 	u_int flags;
63 {
64 	BTREE *t;
65 	recno_t nrec;
66 	int status;
67 
68 	t = dbp->internal;
69 
70 	/* Toss any page pinned across calls. */
71 	if (t->bt_pinned != NULL) {
72 		mpool_put(t->bt_mp, t->bt_pinned, 0);
73 		t->bt_pinned = NULL;
74 	}
75 
76 	switch(flags) {
77 	case 0:
78 		if ((nrec = *(recno_t *)key->data) == 0)
79 			goto einval;
80 		if (nrec > t->bt_nrecs)
81 			return (RET_SPECIAL);
82 		--nrec;
83 		status = rec_rdelete(t, nrec);
84 		break;
85 	case R_CURSOR:
86 		if (!F_ISSET(&t->bt_cursor, CURS_INIT))
87 			goto einval;
88 		if (t->bt_nrecs == 0)
89 			return (RET_SPECIAL);
90 		status = rec_rdelete(t, t->bt_cursor.rcursor - 1);
91 		if (status == RET_SUCCESS)
92 			--t->bt_cursor.rcursor;
93 		break;
94 	default:
95 einval:		errno = EINVAL;
96 		return (RET_ERROR);
97 	}
98 
99 	if (status == RET_SUCCESS)
100 		F_SET(t, B_MODIFIED | R_MODIFIED);
101 	return (status);
102 }
103 
104 /*
105  * REC_RDELETE -- Delete the data matching the specified key.
106  *
107  * Parameters:
108  *	tree:	tree
109  *	nrec:	record to delete
110  *
111  * Returns:
112  *	RET_ERROR, RET_SUCCESS and RET_SPECIAL if the key not found.
113  */
114 static int
115 rec_rdelete(t, nrec)
116 	BTREE *t;
117 	recno_t nrec;
118 {
119 	EPG *e;
120 	PAGE *h;
121 	int status;
122 
123 	/* Find the record; __rec_search pins the page. */
124 	if ((e = __rec_search(t, nrec, SDELETE)) == NULL)
125 		return (RET_ERROR);
126 
127 	/* Delete the record. */
128 	h = e->page;
129 	status = __rec_dleaf(t, h, e->index);
130 	if (status != RET_SUCCESS) {
131 		mpool_put(t->bt_mp, h, 0);
132 		return (status);
133 	}
134 	mpool_put(t->bt_mp, h, MPOOL_DIRTY);
135 	return (RET_SUCCESS);
136 }
137 
138 /*
139  * __REC_DLEAF -- Delete a single record from a recno leaf page.
140  *
141  * Parameters:
142  *	t:	tree
143  *	index:	index on current page to delete
144  *
145  * Returns:
146  *	RET_SUCCESS, RET_ERROR.
147  */
148 int
149 __rec_dleaf(t, h, index)
150 	BTREE *t;
151 	PAGE *h;
152 	u_int32_t index;
153 {
154 	RLEAF *rl;
155 	indx_t *ip, cnt, offset;
156 	u_int32_t nbytes;
157 	char *from;
158 	void *to;
159 
160 	/*
161 	 * Delete a record from a recno leaf page.  Internal records are never
162 	 * deleted from internal pages, regardless of the records that caused
163 	 * them to be added being deleted.  Pages made empty by deletion are
164 	 * not reclaimed.  They are, however, made available for reuse.
165 	 *
166 	 * Pack the remaining entries at the end of the page, shift the indices
167 	 * down, overwriting the deleted record and its index.  If the record
168 	 * uses overflow pages, make them available for reuse.
169 	 */
170 	to = rl = GETRLEAF(h, index);
171 	if (rl->flags & P_BIGDATA && __ovfl_delete(t, rl->bytes) == RET_ERROR)
172 		return (RET_ERROR);
173 	nbytes = NRLEAF(rl);
174 
175 	/*
176 	 * Compress the key/data pairs.  Compress and adjust the [BR]LEAF
177 	 * offsets.  Reset the headers.
178 	 */
179 	from = (char *)h + h->upper;
180 	memmove(from + nbytes, from, (char *)to - from);
181 	h->upper += nbytes;
182 
183 	offset = h->linp[index];
184 	for (cnt = &h->linp[index] - (ip = &h->linp[0]); cnt--; ++ip)
185 		if (ip[0] < offset)
186 			ip[0] += nbytes;
187 	for (cnt = &h->linp[NEXTINDEX(h)] - ip; --cnt; ++ip)
188 		ip[0] = ip[1] < offset ? ip[1] + nbytes : ip[1];
189 	h->lower -= sizeof(indx_t);
190 	--t->bt_nrecs;
191 	return (RET_SUCCESS);
192 }
193