/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 1997, 1998
* Sleepycat Software. All rights reserved.
*/
/*
* Copyright (c) 1990, 1993, 1994, 1995, 1996
* Keith Bostic. All rights reserved.
*/
/*
* Copyright (c) 1990, 1993, 1994, 1995
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Mike Olson.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "config.h"
#ifndef lint
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#include <errno.h>
#include <string.h>
#endif
#include "db_int.h"
#include "db_page.h"
#include "btree.h"
/*
* __bam_iitem --
* Insert an item into the tree.
*
* PUBLIC: int __bam_iitem __P((DBC *,
* PUBLIC: PAGE **, db_indx_t *, DBT *, DBT *, u_int32_t, u_int32_t));
*/
int
{
BTREE *t;
PAGE *h;
h = *hp;
/*
* If it's a page of duplicates, call the common code to do the work.
*
* !!!
* Here's where the hp and indxp are important. The duplicate code
* so the caller must understand that the page stack may change.
*/
if (TYPE(h) == P_DUPLICATE) {
/* Adjust the index for the new item if it's a DB_AFTER op. */
++*indxp;
/* Remove the current item if it's a DB_CURRENT op. */
if (op == DB_CURRENT) {
case B_KEYDATA:
break;
case B_OVERFLOW:
break;
default:
}
return (ret);
}
/* Put the new/replacement item onto the page. */
return (ret);
goto done;
}
/* Handle fixed-length records: build the real record. */
return (ret);
}
/*
* Figure out how much space the data will take, including if it's a
* partial record. If either of the key or data items won't fit on
* a page, we'll have to store them on overflow pages.
*/
needed = 0;
/* If BI_NEWKEY is set we're adding a new key and data pair. */
if (bigkey)
else
if (bigdata)
else
} else {
/*
* or we're adding the data item only, i.e. a new duplicate.
*/
if (op == DB_CURRENT) {
bk = GET_BKEYDATA(h,
else
need_bytes = 0;
} else {
have_bytes = 0;
need_bytes = sizeof(db_indx_t);
}
if (bigdata)
else
if (have_bytes < need_bytes)
}
/*
* If there's not enough room, or the user has put a ceiling on the
* number of keys permitted in the page, split the page.
*
* XXX
* The t->bt_maxkey test here may be insufficient -- do we have to
* check in the btree split code, so we don't undo it there!?!?
*/
if (P_FREESPACE(h) < needed ||
return (DB_NEEDSPLIT);
/* Handle partial puts: build the real record. */
return (ret);
}
/*
* The code breaks it up into six cases:
*
* 3. Append a new data item (a new duplicate).
* 4. Insert a new data item (a new duplicate).
* 5. Overflow item: delete and re-add the data item.
* 6. Replace the data item.
*/
switch (op) {
indx += 2;
*indxp += 2;
break;
break;
default:
return (EINVAL);
}
/* Add the key. */
if (bigkey) {
return (ret);
} else
return (ret);
++indx;
} else {
switch (op) {
case DB_AFTER: /* 3. Append a new data item. */
/*
* Adjust the cursor and copy in the key for
* the duplicate.
*/
return (ret);
indx += 3;
dupadjust = 1;
*indxp += 2;
} else {
++indx;
*indxp += 1;
}
break;
case DB_BEFORE: /* 4. Insert a new data item. */
/*
* Adjust the cursor and copy in the key for
* the duplicate.
*/
if ((ret =
return (ret);
++indx;
dupadjust = 1;
} else
break;
case DB_CURRENT:
++indx;
/*
*
* If we're dealing with offpage items, we have to
* delete and then re-add the item.
*/
return (ret);
break;
}
/* 6. Replace the data item. */
replace = 1;
break;
default:
return (EINVAL);
}
}
/* Add the data. */
if (bigdata) {
return (ret);
} else {
if (LF_ISSET(BI_DELETED)) {
} else if (replace)
else
if (ret != 0)
return (ret);
}
return (ret);
/*
* If the page is at least 50% full, and we added a duplicate, see if
* that set of duplicates takes up at least 25% of the space. If it
* does, move it off onto its own page.
*/
--indx;
return (ret);
}
/*
* If we've changed the record count, update the tree. Record counts
* need to be updated in recno databases and in btree databases where
* we are supporting records. In both cases, adjust the count if the
* operation wasn't performed on the current record or when the caller
* overrides and wants the adjustment made regardless.
*/
(op != DB_CURRENT &&
return (ret);
/* If we've modified a recno file, set the flag */
return (ret);
}
/*
* __bam_partsize --
* Figure out how much space a partial data item is in total.
*/
static u_int32_t
PAGE *h;
{
/*
* Figure out how much total space we'll need. If the record doesn't
* already exist, it's simply the data we're provided.
*/
/*
* Otherwise, it's the data provided plus any already existing data
* that we're not replacing.
*/
nbytes =
/*
* There are really two cases here:
*
* Case 1: We are replacing some bytes that do not exist (i.e., they
* are past the end of the record). In this case the number of bytes
* we are replacing is irrelevant and all we care about is how many
* bytes we are going to add from offset. So, the new record length
* is going to be the size of the new bytes (size) plus wherever those
* new bytes begin (doff).
*
* Case 2: All the bytes we are replacing exist. Therefore, the new
* size is the oldsize (nbytes) minus the bytes we are replacing (dlen)
* plus the bytes we are adding (size).
*/
}
/*
* OVPUT --
* Copy an overflow item onto a page.
*/
return (ret); \
} while (0)
/*
* __bam_ovput --
* Build an overflow item and put it on the page.
*/
static int
PAGE *h;
{
int ret;
return (ret);
return (0);
}
/*
* __bam_ritem --
* Replace an item on a page.
*
* PUBLIC: int __bam_ritem __P((DBC *, PAGE *, u_int32_t, DBT *));
*/
int
PAGE *h;
{
int ret;
u_int8_t *p, *t;
/*
* Replace a single item onto a page. The logic figuring out where
* to insert and whether it fits is handled in the caller. All we do
* here is manage the page shuffling.
*/
/* Log the change. */
if (DB_LOGGING(dbc)) {
/*
* We might as well check to see if the two data items share
* a common prefix and suffix -- it can save us a lot of log
* message if they're large.
*/
for (prefix = 0,
;
for (suffix = 0,
;
/* We only log the parts of the keys that have changed. */
return (ret);
}
/*
* Set references to the first in-use byte on the page and the
* first byte of the item being replaced.
*/
/*
* If the entry is growing in size, shift the beginning of the data
* part of the page down. If the entry is shrinking in size, shift
* the beginning of the data part of the page up. Use memmove(3),
* the regions overlap.
*/
if (p == t) /* First index is fast. */
else { /* Else, shift the page. */
/* Adjust the indices' offsets. */
}
/* Clean up the page and adjust the item's reference. */
t += nbytes;
}
/* Copy the new item onto the page. */
return (0);
}
/*
* __bam_ndup --
* Check to see if the duplicate set at indx should have its own page.
* If it should, create it.
*/
static int
PAGE *h;
{
int ret;
break;
}
/*
* If this set of duplicates is using more than 25% of the page, move
* them off. The choice of 25% is a WAG, but it has to be small enough
* that we can always split regardless of the presence of duplicates.
*/
return (0);
/* Get a new page. */
return (ret);
/*
* Move this set of duplicates off the page. First points to the first
* we're dealing with.
*/
/* Copy the entry to the new page. */
if ((ret =
goto err;
/*
* Move cursors referencing the old entry to the new entry.
* Done after the page put because __db_pitem() adjusts
* cursors on the new page, and before the delete because
* __db_ditem adjusts cursors on the old page.
*/
/* Delete the data item. */
goto err;
/* Delete all but the first reference to the key. */
if (--cnt == 0)
break;
goto err;
}
/* Put in a new data item that points to the duplicates page. */
return (ret);
}
/*
* __bam_fixed --
* Build the real record for a fixed length put.
*/
static int
{
int ret;
/*
* If database contains fixed-length records, and the record is long,
* return EINVAL.
*/
return (EINVAL);
/*
* The caller checked to see if it was just right, so we know it's
* short. Pad it out. We use the record data return memory, it's
* only a short-term use.
*/
return (ret);
}
}
/*
* Clean up our flags and other information just in case, and
* change the caller's DBT to reference our created record.
*/
return (0);
}
/*
* __bam_partial --
* Build the real record for a partial put.
*/
static int
PAGE *h;
{
u_int8_t *p;
int ret;
/* We use the record data return memory, it's only a short-term use. */
return (ret);
}
}
/*
* We use nul bytes for any part of the record that isn't specified;
* get it over with.
*/
/*
* In the next clauses, we need to do three things: a) set p to point
* to the place at which to copy the user's data, b) set tlen to the
* total length of the record, not including the bytes contributed by
* the user, and c) copy any valid data from an existing record.
*/
goto ucopy;
}
/* Find the current record. */
} else {
}
/*
* In the case of an overflow record, we shift things around
* in the current record rather than allocate a separate copy.
*/
return (ret);
/* Skip any leading data from the original record. */
/*
* Copy in any trailing data from the original record.
*
* If the original record was larger than the original offset
* plus the bytes being deleted, there is trailing data in the
* original record we need to preserve. If we aren't deleting
* the same number of bytes as we're inserting, copy it up or
* down, into place.
*
* Use memmove(), the regions may overlap.
*/
}
} else {
/* Copy in any leading data from the original record. */
/* Copy in any trailing data from the original record. */
}
}
ucopy: /*
* Copy in the application provided data -- p and tlen must have been
* initialized above.
*/
/* Set the DBT to reference our new record. */
return (0);
}