rec_delete.c 5.4 KB

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