Home | History | Annotate | Line # | Download | only in btree
bt_utils.c revision 1.14
      1  1.14     ryoon /*	$NetBSD: bt_utils.c,v 1.14 2013/09/04 13:03:22 ryoon Exp $	*/
      2   1.6       cgd 
      3   1.1       cgd /*-
      4   1.5       cgd  * Copyright (c) 1990, 1993, 1994
      5   1.1       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Mike Olson.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18   1.9       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.10       jmc #if HAVE_NBTOOL_CONFIG_H
     36  1.10       jmc #include "nbtool_config.h"
     37  1.10       jmc #endif
     38  1.10       jmc 
     39   1.8  christos #include <sys/cdefs.h>
     40  1.14     ryoon __RCSID("$NetBSD: bt_utils.c,v 1.14 2013/09/04 13:03:22 ryoon Exp $");
     41   1.1       cgd 
     42   1.1       cgd #include <sys/param.h>
     43   1.1       cgd 
     44  1.11  christos #include <assert.h>
     45   1.1       cgd #include <stdio.h>
     46   1.1       cgd #include <stdlib.h>
     47   1.1       cgd #include <string.h>
     48   1.1       cgd 
     49   1.1       cgd #include <db.h>
     50   1.1       cgd #include "btree.h"
     51   1.1       cgd 
     52   1.1       cgd /*
     53   1.7       cgd  * __bt_ret --
     54   1.7       cgd  *	Build return key/data pair.
     55   1.1       cgd  *
     56   1.1       cgd  * Parameters:
     57   1.1       cgd  *	t:	tree
     58   1.7       cgd  *	e:	key/data pair to be returned
     59   1.1       cgd  *	key:	user's key structure (NULL if not to be filled in)
     60   1.7       cgd  *	rkey:	memory area to hold key
     61   1.7       cgd  *	data:	user's data structure (NULL if not to be filled in)
     62   1.7       cgd  *	rdata:	memory area to hold data
     63   1.7       cgd  *       copy:	always copy the key/data item
     64   1.1       cgd  *
     65   1.1       cgd  * Returns:
     66   1.1       cgd  *	RET_SUCCESS, RET_ERROR.
     67   1.1       cgd  */
     68   1.1       cgd int
     69  1.11  christos __bt_ret(BTREE *t, EPG *e, DBT *key, DBT *rkey, DBT *data, DBT *rdata, int copy)
     70   1.1       cgd {
     71   1.7       cgd 	BLEAF *bl;
     72   1.7       cgd 	void *p;
     73   1.1       cgd 
     74   1.1       cgd 	bl = GETBLEAF(e->page, e->index);
     75   1.1       cgd 
     76   1.4       cgd 	/*
     77  1.14     ryoon 	 * We must copy big keys/data to make them contiguous.  Otherwise,
     78   1.7       cgd 	 * leave the page pinned and don't copy unless the user specified
     79   1.4       cgd 	 * concurrent access.
     80   1.4       cgd 	 */
     81   1.7       cgd 	if (key == NULL)
     82   1.7       cgd 		goto dataonly;
     83   1.7       cgd 
     84   1.7       cgd 	if (bl->flags & P_BIGKEY) {
     85   1.7       cgd 		if (__ovfl_get(t, bl->bytes,
     86   1.7       cgd 		    &key->size, &rkey->data, &rkey->size))
     87   1.1       cgd 			return (RET_ERROR);
     88   1.7       cgd 		key->data = rkey->data;
     89   1.7       cgd 	} else if (copy || F_ISSET(t, B_DB_LOCK)) {
     90   1.7       cgd 		if (bl->ksize > rkey->size) {
     91   1.7       cgd 			p = (void *)(rkey->data == NULL ?
     92   1.7       cgd 			    malloc(bl->ksize) : realloc(rkey->data, bl->ksize));
     93   1.5       cgd 			if (p == NULL)
     94   1.1       cgd 				return (RET_ERROR);
     95   1.7       cgd 			rkey->data = p;
     96   1.7       cgd 			rkey->size = bl->ksize;
     97   1.1       cgd 		}
     98   1.7       cgd 		memmove(rkey->data, bl->bytes, bl->ksize);
     99   1.7       cgd 		key->size = bl->ksize;
    100   1.7       cgd 		key->data = rkey->data;
    101   1.4       cgd 	} else {
    102   1.7       cgd 		key->size = bl->ksize;
    103   1.7       cgd 		key->data = bl->bytes;
    104   1.1       cgd 	}
    105   1.1       cgd 
    106   1.7       cgd dataonly:
    107   1.7       cgd 	if (data == NULL)
    108   1.1       cgd 		return (RET_SUCCESS);
    109   1.1       cgd 
    110   1.7       cgd 	if (bl->flags & P_BIGDATA) {
    111   1.7       cgd 		if (__ovfl_get(t, bl->bytes + bl->ksize,
    112   1.7       cgd 		    &data->size, &rdata->data, &rdata->size))
    113   1.1       cgd 			return (RET_ERROR);
    114   1.7       cgd 		data->data = rdata->data;
    115   1.7       cgd 	} else if (copy || F_ISSET(t, B_DB_LOCK)) {
    116   1.7       cgd 		/* Use +1 in case the first record retrieved is 0 length. */
    117   1.7       cgd 		if (bl->dsize + 1 > rdata->size) {
    118   1.7       cgd 			p = (void *)(rdata->data == NULL ?
    119   1.7       cgd 			    malloc(bl->dsize + 1) :
    120   1.7       cgd 			    realloc(rdata->data, bl->dsize + 1));
    121   1.5       cgd 			if (p == NULL)
    122   1.1       cgd 				return (RET_ERROR);
    123   1.7       cgd 			rdata->data = p;
    124   1.7       cgd 			rdata->size = bl->dsize + 1;
    125   1.1       cgd 		}
    126   1.7       cgd 		memmove(rdata->data, bl->bytes + bl->ksize, bl->dsize);
    127   1.7       cgd 		data->size = bl->dsize;
    128   1.7       cgd 		data->data = rdata->data;
    129   1.4       cgd 	} else {
    130   1.7       cgd 		data->size = bl->dsize;
    131   1.7       cgd 		data->data = bl->bytes + bl->ksize;
    132   1.1       cgd 	}
    133   1.7       cgd 
    134   1.1       cgd 	return (RET_SUCCESS);
    135   1.1       cgd }
    136   1.1       cgd 
    137   1.1       cgd /*
    138   1.1       cgd  * __BT_CMP -- Compare a key to a given record.
    139   1.1       cgd  *
    140   1.1       cgd  * Parameters:
    141   1.1       cgd  *	t:	tree
    142   1.1       cgd  *	k1:	DBT pointer of first arg to comparison
    143   1.1       cgd  *	e:	pointer to EPG for comparison
    144   1.1       cgd  *
    145   1.1       cgd  * Returns:
    146   1.1       cgd  *	< 0 if k1 is < record
    147   1.1       cgd  *	= 0 if k1 is = record
    148   1.1       cgd  *	> 0 if k1 is > record
    149   1.1       cgd  */
    150   1.1       cgd int
    151  1.11  christos __bt_cmp(BTREE *t, const DBT *k1, EPG *e)
    152   1.1       cgd {
    153   1.1       cgd 	BINTERNAL *bi;
    154   1.1       cgd 	BLEAF *bl;
    155   1.1       cgd 	DBT k2;
    156   1.1       cgd 	PAGE *h;
    157   1.1       cgd 	void *bigkey;
    158   1.1       cgd 
    159   1.1       cgd 	/*
    160   1.1       cgd 	 * The left-most key on internal pages, at any level of the tree, is
    161   1.1       cgd 	 * guaranteed by the following code to be less than any user key.
    162   1.1       cgd 	 * This saves us from having to update the leftmost key on an internal
    163   1.1       cgd 	 * page when the user inserts a new key in the tree smaller than
    164   1.1       cgd 	 * anything we've yet seen.
    165   1.1       cgd 	 */
    166   1.1       cgd 	h = e->page;
    167   1.1       cgd 	if (e->index == 0 && h->prevpg == P_INVALID && !(h->flags & P_BLEAF))
    168   1.1       cgd 		return (1);
    169   1.1       cgd 
    170   1.1       cgd 	bigkey = NULL;
    171   1.1       cgd 	if (h->flags & P_BLEAF) {
    172   1.1       cgd 		bl = GETBLEAF(h, e->index);
    173   1.1       cgd 		if (bl->flags & P_BIGKEY)
    174   1.1       cgd 			bigkey = bl->bytes;
    175   1.1       cgd 		else {
    176   1.1       cgd 			k2.data = bl->bytes;
    177   1.1       cgd 			k2.size = bl->ksize;
    178   1.1       cgd 		}
    179   1.1       cgd 	} else {
    180   1.1       cgd 		bi = GETBINTERNAL(h, e->index);
    181   1.1       cgd 		if (bi->flags & P_BIGKEY)
    182   1.1       cgd 			bigkey = bi->bytes;
    183   1.1       cgd 		else {
    184   1.1       cgd 			k2.data = bi->bytes;
    185   1.1       cgd 			k2.size = bi->ksize;
    186   1.1       cgd 		}
    187   1.1       cgd 	}
    188   1.1       cgd 
    189   1.1       cgd 	if (bigkey) {
    190   1.1       cgd 		if (__ovfl_get(t, bigkey,
    191   1.7       cgd 		    &k2.size, &t->bt_rdata.data, &t->bt_rdata.size))
    192   1.1       cgd 			return (RET_ERROR);
    193   1.7       cgd 		k2.data = t->bt_rdata.data;
    194   1.1       cgd 	}
    195   1.1       cgd 	return ((*t->bt_cmp)(k1, &k2));
    196   1.1       cgd }
    197   1.1       cgd 
    198   1.1       cgd /*
    199   1.1       cgd  * __BT_DEFCMP -- Default comparison routine.
    200   1.1       cgd  *
    201   1.1       cgd  * Parameters:
    202   1.1       cgd  *	a:	DBT #1
    203   1.1       cgd  *	b: 	DBT #2
    204   1.1       cgd  *
    205   1.1       cgd  * Returns:
    206   1.1       cgd  *	< 0 if a is < b
    207   1.1       cgd  *	= 0 if a is = b
    208   1.1       cgd  *	> 0 if a is > b
    209   1.1       cgd  */
    210   1.1       cgd int
    211  1.11  christos __bt_defcmp(const DBT *a, const DBT *b)
    212   1.1       cgd {
    213  1.11  christos 	size_t len;
    214  1.12     joerg 	uint8_t *p1, *p2;
    215   1.1       cgd 
    216   1.5       cgd 	/*
    217   1.5       cgd 	 * XXX
    218   1.5       cgd 	 * If a size_t doesn't fit in an int, this routine can lose.
    219   1.5       cgd 	 * What we need is a integral type which is guaranteed to be
    220   1.5       cgd 	 * larger than a size_t, and there is no such thing.
    221   1.5       cgd 	 */
    222   1.1       cgd 	len = MIN(a->size, b->size);
    223   1.1       cgd 	for (p1 = a->data, p2 = b->data; len--; ++p1, ++p2)
    224   1.5       cgd 		if (*p1 != *p2)
    225   1.5       cgd 			return ((int)*p1 - (int)*p2);
    226   1.5       cgd 	return ((int)a->size - (int)b->size);
    227   1.1       cgd }
    228   1.1       cgd 
    229   1.1       cgd /*
    230   1.1       cgd  * __BT_DEFPFX -- Default prefix routine.
    231   1.1       cgd  *
    232   1.1       cgd  * Parameters:
    233   1.1       cgd  *	a:	DBT #1
    234   1.1       cgd  *	b: 	DBT #2
    235   1.1       cgd  *
    236   1.1       cgd  * Returns:
    237   1.1       cgd  *	Number of bytes needed to distinguish b from a.
    238   1.1       cgd  */
    239   1.5       cgd size_t
    240  1.11  christos __bt_defpfx(const DBT *a, const DBT *b)
    241   1.1       cgd {
    242  1.12     joerg 	uint8_t *p1, *p2;
    243  1.11  christos 	size_t cnt, len;
    244   1.1       cgd 
    245   1.1       cgd 	cnt = 1;
    246   1.1       cgd 	len = MIN(a->size, b->size);
    247   1.1       cgd 	for (p1 = a->data, p2 = b->data; len--; ++p1, ++p2, ++cnt)
    248   1.1       cgd 		if (*p1 != *p2)
    249   1.1       cgd 			return (cnt);
    250   1.1       cgd 
    251   1.1       cgd 	/* a->size must be <= b->size, or they wouldn't be in this order. */
    252   1.1       cgd 	return (a->size < b->size ? a->size + 1 : a->size);
    253   1.1       cgd }
    254