2000-09-20 15:21:09 +08:00
|
|
|
/* idl.c - ldap id list handling routines */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-09-20 15:21:09 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
2001-06-15 15:08:37 +08:00
|
|
|
#include "idl.h"
|
|
|
|
|
|
|
|
#define IDL_MAX(x,y) ( x > y ? x : y )
|
|
|
|
#define IDL_MIN(x,y) ( x < y ? x : y )
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2000-09-21 09:56:10 +08:00
|
|
|
#define IDL_CMP(x,y) ( x < y ? -1 : ( x > y ? 1 : 0 ) )
|
|
|
|
|
2001-09-26 07:56:49 +08:00
|
|
|
#ifndef IDL_DEBUG
|
|
|
|
/* enable basic checks for now */
|
|
|
|
#define IDL_DEBUG 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if IDL_DEBUG > 0
|
|
|
|
static void idl_check( ID *ids )
|
|
|
|
{
|
|
|
|
if( BDB_IDL_IS_RANGE( ids ) ) {
|
2001-10-14 00:55:54 +08:00
|
|
|
assert( BDB_IDL_RANGE_FIRST(ids) <= BDB_IDL_RANGE_LAST(ids) );
|
2001-09-26 07:56:49 +08:00
|
|
|
} else {
|
|
|
|
ID i;
|
|
|
|
for( i=1; i < ids[0]; i++ ) {
|
|
|
|
assert( ids[i+1] > ids[i] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if IDL_DEBUG > 1
|
|
|
|
static void idl_dump( ID *ids )
|
2000-09-28 09:02:59 +08:00
|
|
|
{
|
|
|
|
if( BDB_IDL_IS_RANGE( ids ) ) {
|
2000-09-28 09:27:01 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-10-14 00:55:54 +08:00
|
|
|
"IDL: range ( %ld - %ld )\n",
|
|
|
|
(long) BDB_IDL_RANGE_FIRST( ids ),
|
|
|
|
(long) BDB_IDL_RANGE_LAST( ids ) );
|
2000-09-28 09:27:01 +08:00
|
|
|
|
2000-09-28 09:02:59 +08:00
|
|
|
} else {
|
|
|
|
ID i;
|
2000-09-28 09:27:01 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "IDL: size %ld", (long) ids[0], 0, 0 );
|
2000-09-28 09:02:59 +08:00
|
|
|
|
|
|
|
for( i=1; i<=ids[0]; i++ ) {
|
2000-09-28 09:27:01 +08:00
|
|
|
if( i % 16 == 1 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "\n", 0, 0, 0 );
|
|
|
|
}
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, " %02lx", (long) ids[i], 0, 0 );
|
2000-09-28 09:02:59 +08:00
|
|
|
}
|
|
|
|
|
2000-09-28 09:27:01 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "\n", 0, 0, 0 );
|
2000-09-28 09:02:59 +08:00
|
|
|
}
|
2001-09-26 07:56:49 +08:00
|
|
|
|
|
|
|
idl_check( ids );
|
2000-09-28 09:02:59 +08:00
|
|
|
}
|
2001-09-26 07:56:49 +08:00
|
|
|
#endif /* IDL_DEBUG > 1 */
|
|
|
|
#endif /* IDL_DEBUG > 0 */
|
2000-09-28 09:02:59 +08:00
|
|
|
|
2000-09-27 06:22:42 +08:00
|
|
|
unsigned bdb_idl_search( ID *ids, ID id )
|
2000-09-20 15:21:09 +08:00
|
|
|
{
|
2001-09-26 11:50:48 +08:00
|
|
|
#define IDL_BINARY_SEARCH 1
|
2000-09-28 09:27:01 +08:00
|
|
|
#ifdef IDL_BINARY_SEARCH
|
2000-09-21 09:56:10 +08:00
|
|
|
/*
|
|
|
|
* binary search of id in ids
|
|
|
|
* if found, returns position of id
|
|
|
|
* if not found, returns first postion greater than id
|
|
|
|
*/
|
2000-09-27 06:22:42 +08:00
|
|
|
unsigned base = 0;
|
|
|
|
unsigned cursor = 0;
|
2001-12-07 20:38:25 +08:00
|
|
|
int val = 0;
|
2000-09-27 06:22:42 +08:00
|
|
|
unsigned n = ids[0];
|
2000-09-21 09:56:10 +08:00
|
|
|
|
2001-09-26 11:50:48 +08:00
|
|
|
#if IDL_DEBUG > 0
|
|
|
|
idl_check( ids );
|
|
|
|
#endif
|
|
|
|
|
2000-09-21 09:56:10 +08:00
|
|
|
while( 0 < n ) {
|
|
|
|
int pivot = n >> 1;
|
|
|
|
cursor = base + pivot;
|
|
|
|
val = IDL_CMP( id, ids[cursor + 1] );
|
|
|
|
|
|
|
|
if( val < 0 ) {
|
|
|
|
n = pivot;
|
|
|
|
|
|
|
|
} else if ( val > 0 ) {
|
|
|
|
base = cursor + 1;
|
|
|
|
n -= pivot + 1;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return cursor + 1;
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
|
|
|
}
|
2000-09-21 09:56:10 +08:00
|
|
|
|
2000-09-26 02:59:15 +08:00
|
|
|
if( val > 0 ) {
|
2000-09-21 09:56:10 +08:00
|
|
|
return cursor + 2;
|
2000-09-26 02:59:15 +08:00
|
|
|
} else {
|
|
|
|
return cursor + 1;
|
2000-09-21 09:56:10 +08:00
|
|
|
}
|
2000-09-26 11:47:56 +08:00
|
|
|
|
2000-09-26 09:36:35 +08:00
|
|
|
#else
|
2000-09-26 11:47:56 +08:00
|
|
|
/* (reverse) linear search */
|
2001-09-26 11:50:48 +08:00
|
|
|
int i;
|
2001-09-26 09:54:39 +08:00
|
|
|
|
2001-09-26 11:50:48 +08:00
|
|
|
#if IDL_DEBUG > 0
|
|
|
|
idl_check( ids );
|
|
|
|
#endif
|
2001-09-26 09:54:39 +08:00
|
|
|
|
2001-09-26 11:50:48 +08:00
|
|
|
for( i=ids[0]; i; i-- ) {
|
|
|
|
if( id > ids[i] ) {
|
|
|
|
break;
|
|
|
|
}
|
2000-09-26 09:36:35 +08:00
|
|
|
}
|
2001-09-26 11:50:48 +08:00
|
|
|
|
|
|
|
return i+1;
|
2000-09-26 09:36:35 +08:00
|
|
|
#endif
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
|
|
|
|
2001-12-07 20:38:25 +08:00
|
|
|
int bdb_idl_insert( ID *ids, ID id )
|
2000-09-20 15:21:09 +08:00
|
|
|
{
|
2000-09-27 06:22:42 +08:00
|
|
|
unsigned x = bdb_idl_search( ids, id );
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2001-09-26 07:56:49 +08:00
|
|
|
#if IDL_DEBUG > 1
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "insert: %04lx at %d\n", (long) id, x, 0 );
|
2000-09-28 09:02:59 +08:00
|
|
|
idl_dump( ids );
|
2001-09-26 07:56:49 +08:00
|
|
|
#elif IDL_DEBUG > 0
|
|
|
|
idl_check( ids );
|
2000-09-28 09:02:59 +08:00
|
|
|
#endif
|
|
|
|
|
2000-09-26 11:47:56 +08:00
|
|
|
assert( x > 0 );
|
|
|
|
|
2000-09-26 12:28:17 +08:00
|
|
|
if( x < 1 ) {
|
2000-09-26 11:47:56 +08:00
|
|
|
/* internal error */
|
2000-09-26 12:28:17 +08:00
|
|
|
return -2;
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
|
|
|
|
2000-09-26 12:28:17 +08:00
|
|
|
if ( x <= ids[0] && ids[x] == id ) {
|
2000-09-26 11:47:56 +08:00
|
|
|
/* duplicate */
|
|
|
|
return -1;
|
|
|
|
}
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2000-09-26 11:47:56 +08:00
|
|
|
if ( ++ids[0] >= BDB_IDL_DB_MAX ) {
|
2000-09-27 06:22:42 +08:00
|
|
|
if( id < ids[1] ) {
|
|
|
|
ids[1] = id;
|
|
|
|
ids[2] = ids[ids[0]-1];
|
|
|
|
} else if ( ids[ids[0]-1] < id ) {
|
|
|
|
ids[2] = id;
|
|
|
|
} else {
|
|
|
|
ids[2] = ids[ids[0]-1];
|
|
|
|
}
|
2000-09-20 15:21:09 +08:00
|
|
|
ids[0] = NOID;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* insert id */
|
2000-09-21 07:29:41 +08:00
|
|
|
AC_MEMCPY( &ids[x+1], &ids[x], (ids[0]-x) * sizeof(ID) );
|
2000-09-20 15:21:09 +08:00
|
|
|
ids[x] = id;
|
|
|
|
}
|
|
|
|
|
2001-09-26 07:56:49 +08:00
|
|
|
#if IDL_DEBUG > 1
|
2000-09-28 09:02:59 +08:00
|
|
|
idl_dump( ids );
|
2001-09-26 07:56:49 +08:00
|
|
|
#elif IDL_DEBUG > 0
|
|
|
|
idl_check( ids );
|
2000-09-28 09:02:59 +08:00
|
|
|
#endif
|
|
|
|
|
2000-09-20 15:21:09 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-09-21 07:29:41 +08:00
|
|
|
static int idl_delete( ID *ids, ID id )
|
|
|
|
{
|
2000-09-27 06:22:42 +08:00
|
|
|
unsigned x = bdb_idl_search( ids, id );
|
2000-09-21 07:29:41 +08:00
|
|
|
|
2001-09-26 07:56:49 +08:00
|
|
|
#if IDL_DEBUG > 1
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "delete: %04lx at %d\n", (long) id, x, 0 );
|
2000-09-28 09:02:59 +08:00
|
|
|
idl_dump( ids );
|
2001-09-26 07:56:49 +08:00
|
|
|
#elif IDL_DEBUG > 0
|
|
|
|
idl_check( ids );
|
2000-09-28 09:02:59 +08:00
|
|
|
#endif
|
|
|
|
|
2000-09-26 11:47:56 +08:00
|
|
|
assert( x > 0 );
|
|
|
|
|
|
|
|
if( x <= 0 ) {
|
|
|
|
/* internal error */
|
2000-09-28 08:24:28 +08:00
|
|
|
return -2;
|
2000-09-26 11:47:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( x > ids[0] || ids[x] != id ) {
|
2000-09-21 07:29:41 +08:00
|
|
|
/* not found */
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
} else if ( --ids[0] == 0 ) {
|
2000-09-26 11:47:56 +08:00
|
|
|
if( x != 1 ) {
|
2000-09-28 08:24:28 +08:00
|
|
|
return -3;
|
2000-09-26 11:47:56 +08:00
|
|
|
}
|
2000-09-21 07:29:41 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
AC_MEMCPY( &ids[x], &ids[x+1], (1+ids[0]-x) * sizeof(ID) );
|
|
|
|
}
|
|
|
|
|
2001-09-26 07:56:49 +08:00
|
|
|
#if IDL_DEBUG > 1
|
2000-09-28 09:02:59 +08:00
|
|
|
idl_dump( ids );
|
2001-09-26 07:56:49 +08:00
|
|
|
#elif IDL_DEBUG > 0
|
|
|
|
idl_check( ids );
|
2000-09-28 09:02:59 +08:00
|
|
|
#endif
|
|
|
|
|
2000-09-21 07:29:41 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-10-05 09:19:58 +08:00
|
|
|
int
|
|
|
|
bdb_idl_fetch_key(
|
|
|
|
BackendDB *be,
|
|
|
|
DB *db,
|
|
|
|
DB_TXN *tid,
|
|
|
|
DBT *key,
|
|
|
|
ID *ids )
|
|
|
|
{
|
2001-11-28 11:11:04 +08:00
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2001-10-05 09:19:58 +08:00
|
|
|
int rc;
|
|
|
|
DBT data;
|
|
|
|
|
|
|
|
assert( ids != NULL );
|
|
|
|
|
|
|
|
DBTzero( &data );
|
2001-12-06 21:20:18 +08:00
|
|
|
|
|
|
|
#ifdef BDB_IDL_MULTI
|
|
|
|
{
|
2002-01-16 23:22:08 +08:00
|
|
|
DBC *cursor;
|
2001-12-06 21:20:18 +08:00
|
|
|
ID buf[BDB_IDL_UM_SIZE];
|
|
|
|
ID *i, *j;
|
|
|
|
void *ptr;
|
|
|
|
size_t len;
|
2002-01-16 23:22:08 +08:00
|
|
|
int rc2;
|
2001-12-06 21:20:18 +08:00
|
|
|
data.data = buf;
|
|
|
|
data.ulen = BDB_IDL_UM_SIZEOF;
|
|
|
|
data.flags = DB_DBT_USERMEM;
|
2002-01-16 23:22:08 +08:00
|
|
|
|
|
|
|
rc = db->cursor( db, tid, &cursor, bdb->bi_db_opflags );
|
|
|
|
if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_fetch_key: "
|
|
|
|
"cursor failed: %s (%d)\n", db_strerror(rc), rc, 0 );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
rc = cursor->c_get( cursor, key, &data, bdb->bi_db_opflags |
|
|
|
|
DB_SET | DB_MULTIPLE );
|
2001-12-06 21:20:18 +08:00
|
|
|
if (rc == 0) {
|
|
|
|
i = ids;
|
2002-01-16 23:22:08 +08:00
|
|
|
while (rc == 0) {
|
|
|
|
DB_MULTIPLE_INIT( ptr, &data );
|
|
|
|
while (ptr) {
|
|
|
|
DB_MULTIPLE_NEXT(ptr, &data, j, len);
|
|
|
|
if (j) {
|
|
|
|
++i;
|
|
|
|
AC_MEMCPY( i, j, sizeof(ID) );
|
|
|
|
}
|
2001-12-06 21:20:18 +08:00
|
|
|
}
|
2002-01-16 23:22:08 +08:00
|
|
|
rc = cursor->c_get( cursor, key, &data, bdb->bi_db_opflags |
|
|
|
|
DB_NEXT_DUP | DB_MULTIPLE );
|
2001-12-06 21:20:18 +08:00
|
|
|
}
|
2002-01-16 23:22:08 +08:00
|
|
|
if ( rc == DB_NOTFOUND ) rc = 0;
|
|
|
|
ids[0] = i - ids;
|
|
|
|
/* On disk, a range is denoted by 0 in the first element */
|
2001-12-06 21:20:18 +08:00
|
|
|
if (ids[1] == 0) {
|
2002-01-16 23:22:08 +08:00
|
|
|
if (ids[0] != BDB_IDL_RANGE_SIZE) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_fetch_key: "
|
|
|
|
"range size mismatch: expected %ld, got %ld\n",
|
|
|
|
BDB_IDL_RANGE_SIZE, ids[0], 0 );
|
|
|
|
cursor->c_close( cursor );
|
|
|
|
return -1;
|
|
|
|
}
|
2001-12-06 21:20:18 +08:00
|
|
|
BDB_IDL_RANGE( ids, ids[2], ids[3] );
|
|
|
|
}
|
|
|
|
data.size = BDB_IDL_SIZEOF(ids);
|
|
|
|
}
|
2002-01-16 23:22:08 +08:00
|
|
|
rc2 = cursor->c_close( cursor );
|
|
|
|
if (rc2) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_fetch_key: "
|
|
|
|
"close failed: %s (%d)\n", db_strerror(rc2), rc2, 0 );
|
|
|
|
return rc2;
|
|
|
|
}
|
2001-12-06 21:20:18 +08:00
|
|
|
}
|
|
|
|
#else
|
2001-10-05 09:19:58 +08:00
|
|
|
data.data = ids;
|
2001-10-14 00:55:54 +08:00
|
|
|
data.ulen = BDB_IDL_UM_SIZEOF;
|
2001-10-05 09:19:58 +08:00
|
|
|
data.flags = DB_DBT_USERMEM;
|
|
|
|
/* fetch it */
|
2001-11-28 11:11:04 +08:00
|
|
|
rc = db->get( db, tid, key, &data, bdb->bi_db_opflags );
|
2001-12-06 21:20:18 +08:00
|
|
|
#endif
|
2002-01-15 15:29:15 +08:00
|
|
|
|
2001-10-14 00:55:54 +08:00
|
|
|
if( rc == DB_NOTFOUND ) {
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
} else if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_fetch_key: "
|
|
|
|
"get failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
} else if ( data.size == 0 || data.size % sizeof( ID ) ) {
|
|
|
|
/* size not multiple of ID size */
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_fetch_key: "
|
|
|
|
"odd size: expected %ld multiple, got %ld\n",
|
|
|
|
(long) sizeof( ID ), (long) data.size, 0 );
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
} else if ( data.size != BDB_IDL_SIZEOF(ids) ) {
|
|
|
|
/* size mismatch */
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_fetch_key: "
|
|
|
|
"get size mismatch: expected %ld, got %ld\n",
|
|
|
|
(long) ((1 + ids[0]) * sizeof( ID )), (long) data.size, 0 );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-10-05 09:19:58 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2000-09-20 15:21:09 +08:00
|
|
|
int
|
|
|
|
bdb_idl_insert_key(
|
2000-09-28 06:28:59 +08:00
|
|
|
BackendDB *be,
|
|
|
|
DB *db,
|
2000-09-20 15:21:09 +08:00
|
|
|
DB_TXN *tid,
|
2000-09-28 06:28:59 +08:00
|
|
|
DBT *key,
|
|
|
|
ID id )
|
2000-09-20 15:21:09 +08:00
|
|
|
{
|
2001-11-28 11:11:04 +08:00
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2000-09-20 15:21:09 +08:00
|
|
|
int rc;
|
|
|
|
DBT data;
|
2001-12-06 21:20:18 +08:00
|
|
|
#ifndef BDB_IDL_MULTI
|
|
|
|
ID ids[BDB_IDL_DB_SIZE];
|
|
|
|
#endif
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2000-09-26 12:28:17 +08:00
|
|
|
/* for printable keys only */
|
|
|
|
Debug( LDAP_DEBUG_ARGS,
|
|
|
|
"=> bdb_idl_insert_key: %s %ld\n",
|
2001-11-15 00:17:30 +08:00
|
|
|
(char *)key->data, (long) id, 0 );
|
2000-09-26 12:28:17 +08:00
|
|
|
|
2000-09-20 15:21:09 +08:00
|
|
|
assert( id != NOID );
|
|
|
|
|
2001-12-06 21:20:18 +08:00
|
|
|
DBTzero( &data );
|
|
|
|
#ifdef BDB_IDL_MULTI
|
2002-01-16 23:22:08 +08:00
|
|
|
{
|
|
|
|
ID buf[BDB_IDL_DB_MAX];
|
|
|
|
DBC *cursor;
|
|
|
|
ID lo, hi;
|
|
|
|
char *err;
|
|
|
|
|
|
|
|
data.size = sizeof( ID );
|
|
|
|
data.ulen = data.size;
|
|
|
|
data.flags = DB_DBT_USERMEM;
|
2001-12-07 14:48:38 +08:00
|
|
|
|
2002-01-16 23:22:08 +08:00
|
|
|
rc = bdb_idl_fetch_key( be, db, tid, key, buf );
|
|
|
|
if ( rc && rc != DB_NOTFOUND )
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* If it never existed, or there's room in the current key,
|
|
|
|
* just store it.
|
|
|
|
*/
|
|
|
|
if ( rc == DB_NOTFOUND || ( !BDB_IDL_IS_RANGE(buf) &&
|
|
|
|
BDB_IDL_N(buf) < BDB_IDL_DB_MAX ) ) {
|
|
|
|
data.data = &id;
|
|
|
|
rc = db->put( db, tid, key, &data, DB_NODUPDATA );
|
|
|
|
} else if ( BDB_IDL_IS_RANGE(buf) ) {
|
|
|
|
/* If it's a range and we're outside the boundaries,
|
|
|
|
* rewrite the range boundaries.
|
|
|
|
*/
|
|
|
|
if ( id < BDB_IDL_RANGE_FIRST(buf) ||
|
|
|
|
id > BDB_IDL_RANGE_LAST(buf) ) {
|
|
|
|
rc = db->cursor( db, tid, &cursor, bdb->bi_db_opflags );
|
|
|
|
if ( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_insert_key: "
|
|
|
|
"cursor failed: %s (%d)\n", db_strerror(rc), rc, 0 );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
if ( id < BDB_IDL_RANGE_FIRST(buf) ) {
|
|
|
|
data.data = buf+1;
|
|
|
|
} else {
|
|
|
|
data.data = buf+2;
|
|
|
|
}
|
|
|
|
rc = cursor->c_get( cursor, key, &data, DB_GET_BOTH );
|
|
|
|
if ( rc != 0 ) {
|
|
|
|
err = "c_get";
|
|
|
|
fail: Debug( LDAP_DEBUG_ANY, "=> bdb_idl_insert_key: "
|
|
|
|
"%s failed: %s (%d)\n", err, db_strerror(rc), rc );
|
|
|
|
if ( cursor ) cursor->c_close( cursor );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
data.data = &id;
|
|
|
|
/* We should have been able to just overwrite the old
|
|
|
|
* value with the new, but apparently we have to delete
|
|
|
|
* it first.
|
|
|
|
*/
|
|
|
|
rc = cursor->c_del( cursor, 0 );
|
|
|
|
if ( rc ) {
|
|
|
|
err = "c_del";
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
rc = cursor->c_put( cursor, key, &data, DB_KEYFIRST );
|
|
|
|
if ( rc ) {
|
|
|
|
err = "c_put";
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
rc = cursor->c_close( cursor );
|
|
|
|
if ( rc ) {
|
|
|
|
cursor = NULL;
|
|
|
|
err = "c_close";
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else { /* convert to a range */
|
|
|
|
lo = BDB_IDL_FIRST(buf);
|
|
|
|
hi = BDB_IDL_LAST(buf);
|
|
|
|
|
|
|
|
if (id < lo)
|
|
|
|
lo = id;
|
|
|
|
else if (id > hi)
|
|
|
|
hi = id;
|
|
|
|
|
|
|
|
cursor = NULL;
|
|
|
|
|
|
|
|
/* Delete all of the old IDL so we can replace with a range */
|
|
|
|
rc = db->del( db, tid, key, 0 );
|
|
|
|
if ( rc ) {
|
|
|
|
err = "del";
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write the range */
|
|
|
|
data.data = &id;
|
|
|
|
id = 0;
|
|
|
|
rc = db->put( db, tid, key, &data, 0 );
|
|
|
|
if ( rc ) {
|
|
|
|
err = "put #1";
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
id = lo;
|
|
|
|
rc = db->put( db, tid, key, &data, 0 );
|
|
|
|
if ( rc ) {
|
|
|
|
err = "put #2";
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
id = hi;
|
|
|
|
rc = db->put( db, tid, key, &data, 0 );
|
|
|
|
if ( rc ) {
|
|
|
|
err = "put #3";
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-12-06 21:20:18 +08:00
|
|
|
#else
|
2000-09-20 15:21:09 +08:00
|
|
|
data.data = ids;
|
2001-10-14 00:55:54 +08:00
|
|
|
data.ulen = sizeof ids;
|
2000-09-20 15:21:09 +08:00
|
|
|
data.flags = DB_DBT_USERMEM;
|
|
|
|
|
2000-09-28 10:27:49 +08:00
|
|
|
/* fetch the key for read/modify/write */
|
2001-11-28 11:11:04 +08:00
|
|
|
rc = db->get( db, tid, key, &data, DB_RMW | bdb->bi_db_opflags );
|
2000-09-20 15:21:09 +08:00
|
|
|
|
|
|
|
if( rc == DB_NOTFOUND ) {
|
|
|
|
ids[0] = 1;
|
|
|
|
ids[1] = id;
|
|
|
|
data.size = 2 * sizeof( ID );
|
|
|
|
|
|
|
|
} else if ( rc != 0 ) {
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_insert_key: "
|
|
|
|
"get failed: %s (%d)\n",
|
2000-09-26 09:18:00 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
2000-09-20 15:21:09 +08:00
|
|
|
return rc;
|
|
|
|
|
|
|
|
} else if ( data.size == 0 || data.size % sizeof( ID ) ) {
|
|
|
|
/* size not multiple of ID size */
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_insert_key: "
|
|
|
|
"odd size: expected %ld multiple, got %ld\n",
|
2000-09-26 09:18:00 +08:00
|
|
|
(long) sizeof( ID ), (long) data.size, 0 );
|
2000-09-20 15:21:09 +08:00
|
|
|
return -1;
|
|
|
|
|
2001-10-14 00:55:54 +08:00
|
|
|
} else if ( data.size != BDB_IDL_SIZEOF(ids) ) {
|
|
|
|
/* size mismatch */
|
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_insert_key: "
|
|
|
|
"get size mismatch: expected %ld, got %ld\n",
|
|
|
|
(long) ((1 + ids[0]) * sizeof( ID )), (long) data.size, 0 );
|
|
|
|
return -1;
|
|
|
|
|
2000-09-27 06:22:42 +08:00
|
|
|
} else if ( BDB_IDL_IS_RANGE(ids) ) {
|
|
|
|
if( id < ids[1] ) {
|
|
|
|
ids[1] = id;
|
|
|
|
} else if ( ids[2] > id ) {
|
|
|
|
ids[2] = id;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
2000-09-20 15:21:09 +08:00
|
|
|
|
|
|
|
} else {
|
2001-12-07 20:38:25 +08:00
|
|
|
rc = bdb_idl_insert( ids, id );
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2001-11-24 20:41:54 +08:00
|
|
|
if( rc == -1 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> bdb_idl_insert_key: dup\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
return 0;
|
|
|
|
}
|
2000-09-26 09:36:35 +08:00
|
|
|
if( rc != 0 ) {
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_insert_key: "
|
2001-12-07 20:38:25 +08:00
|
|
|
"bdb_idl_insert failed (%d)\n",
|
2000-09-26 09:36:35 +08:00
|
|
|
rc, 0, 0 );
|
2001-11-24 20:41:54 +08:00
|
|
|
|
2000-09-26 09:36:35 +08:00
|
|
|
return rc;
|
|
|
|
}
|
2000-09-20 15:21:09 +08:00
|
|
|
|
2001-10-14 00:55:54 +08:00
|
|
|
data.size = BDB_IDL_SIZEOF( ids );
|
2000-09-20 15:21:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* store the key */
|
|
|
|
rc = db->put( db, tid, key, &data, 0 );
|
2001-12-07 14:48:38 +08:00
|
|
|
#endif
|
2001-12-06 21:20:18 +08:00
|
|
|
if( rc == DB_KEYEXIST ) rc = 0;
|
|
|
|
|
2000-09-26 09:18:00 +08:00
|
|
|
if( rc != 0 ) {
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_insert_key: "
|
|
|
|
"put failed: %s (%d)\n",
|
2000-09-26 09:18:00 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
}
|
2000-09-20 15:21:09 +08:00
|
|
|
return rc;
|
|
|
|
}
|
2000-09-21 07:29:41 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
bdb_idl_delete_key(
|
2000-09-28 06:28:59 +08:00
|
|
|
BackendDB *be,
|
|
|
|
DB *db,
|
2000-09-21 07:29:41 +08:00
|
|
|
DB_TXN *tid,
|
2000-09-28 06:28:59 +08:00
|
|
|
DBT *key,
|
|
|
|
ID id )
|
2000-09-21 07:29:41 +08:00
|
|
|
{
|
2001-11-28 11:11:04 +08:00
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
2000-09-21 07:29:41 +08:00
|
|
|
int rc;
|
|
|
|
DBT data;
|
2001-12-06 21:20:18 +08:00
|
|
|
#ifndef BDB_IDL_MULTI
|
|
|
|
ID ids[BDB_IDL_DB_SIZE];
|
|
|
|
#endif
|
2000-09-21 07:29:41 +08:00
|
|
|
|
2000-09-26 12:28:17 +08:00
|
|
|
/* for printable keys only */
|
|
|
|
Debug( LDAP_DEBUG_ARGS,
|
|
|
|
"=> bdb_idl_delete_key: %s %ld\n",
|
2001-11-15 00:17:30 +08:00
|
|
|
(char *)key->data, (long) id, 0 );
|
2000-09-26 12:28:17 +08:00
|
|
|
|
2000-09-21 07:29:41 +08:00
|
|
|
assert( id != NOID );
|
|
|
|
|
2001-12-06 21:20:18 +08:00
|
|
|
DBTzero( &data );
|
|
|
|
#ifdef BDB_IDL_MULTI
|
|
|
|
{
|
|
|
|
DBC *cursor;
|
|
|
|
|
|
|
|
data.data = &id;
|
|
|
|
data.size = sizeof( id );
|
|
|
|
data.ulen = data.size;
|
|
|
|
data.flags = DB_DBT_USERMEM;
|
|
|
|
|
|
|
|
rc = db->cursor( db, tid, &cursor, bdb->bi_db_opflags );
|
|
|
|
rc = cursor->c_get( cursor, key, &data, bdb->bi_db_opflags |
|
|
|
|
DB_GET_BOTH | DB_RMW );
|
2001-12-07 14:48:38 +08:00
|
|
|
if (rc == 0)
|
|
|
|
rc = cursor->c_del( cursor, 0 );
|
2001-12-06 21:20:18 +08:00
|
|
|
rc = cursor->c_close( cursor );
|
|
|
|
}
|
|
|
|
#else
|
2000-09-21 07:29:41 +08:00
|
|
|
data.data = ids;
|
|
|
|
data.ulen = sizeof( ids );
|
|
|
|
data.flags = DB_DBT_USERMEM;
|
|
|
|
|
2000-09-28 10:27:49 +08:00
|
|
|
/* fetch the key for read/modify/write */
|
2001-11-28 11:11:04 +08:00
|
|
|
rc = db->get( db, tid, key, &data, DB_RMW | bdb->bi_db_opflags );
|
2000-09-21 07:29:41 +08:00
|
|
|
|
|
|
|
if ( rc != 0 ) {
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_delete_key: "
|
|
|
|
"get failed: %s (%d)\n",
|
2000-09-26 09:18:00 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
2000-09-21 07:29:41 +08:00
|
|
|
return rc;
|
|
|
|
|
|
|
|
} else if ( data.size == 0 || data.size % sizeof( ID ) ) {
|
|
|
|
/* size not multiple of ID size */
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_delete_key: "
|
|
|
|
"odd size: expected %ld multiple, got %ld\n",
|
2000-09-26 09:18:00 +08:00
|
|
|
(long) sizeof( ID ), (long) data.size, 0 );
|
2000-09-21 07:29:41 +08:00
|
|
|
return -1;
|
|
|
|
|
2000-09-27 06:22:42 +08:00
|
|
|
} else if ( BDB_IDL_IS_RANGE(ids) ) {
|
2000-09-21 07:29:41 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
} else if ( data.size != (1 + ids[0]) * sizeof( ID ) ) {
|
|
|
|
/* size mismatch */
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_delete_key: "
|
|
|
|
"get size mismatch: expected %ld, got %ld\n",
|
2000-09-26 09:18:00 +08:00
|
|
|
(long) ((1 + ids[0]) * sizeof( ID )), (long) data.size, 0 );
|
2000-09-21 07:29:41 +08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
rc = idl_delete( ids, id );
|
|
|
|
|
2000-09-26 09:36:35 +08:00
|
|
|
if( rc != 0 ) {
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_delete_key: "
|
|
|
|
"idl_delete failed (%d)\n",
|
2000-09-26 09:36:35 +08:00
|
|
|
rc, 0, 0 );
|
|
|
|
return rc;
|
|
|
|
}
|
2000-09-21 07:29:41 +08:00
|
|
|
|
2000-09-26 11:47:56 +08:00
|
|
|
if( ids[0] == 0 ) {
|
2000-09-21 07:29:41 +08:00
|
|
|
/* delete the key */
|
|
|
|
rc = db->del( db, tid, key, 0 );
|
2000-09-26 09:18:00 +08:00
|
|
|
if( rc != 0 ) {
|
2001-10-14 00:55:54 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "=> bdb_idl_delete_key: "
|
|
|
|
"delete failed: %s (%d)\n",
|
2000-09-26 09:18:00 +08:00
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
}
|
2000-09-21 07:29:41 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
data.size = (ids[0]+1) * sizeof( ID );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store the key */
|
|
|
|
rc = db->put( db, tid, key, &data, 0 );
|
|
|
|
|
2001-12-06 21:20:18 +08:00
|
|
|
#endif /* BDB_IDL_MULTI */
|
|
|
|
|
2000-09-26 09:18:00 +08:00
|
|
|
if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"=> bdb_idl_delete_key: put failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
}
|
|
|
|
|
2000-09-21 07:29:41 +08:00
|
|
|
return rc;
|
|
|
|
}
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-11-27 03:32:39 +08:00
|
|
|
* idl_intersection - return a = a intersection b
|
2001-06-15 15:08:37 +08:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
bdb_idl_intersection(
|
|
|
|
ID *a,
|
2001-11-27 03:32:39 +08:00
|
|
|
ID *b )
|
2001-06-15 15:08:37 +08:00
|
|
|
{
|
|
|
|
ID ida, idb;
|
2001-11-27 03:32:39 +08:00
|
|
|
ID idmax, idmin;
|
|
|
|
ID cursora = 0, cursorb = 0, cursorc;
|
|
|
|
int swap = 0;
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
if ( BDB_IDL_IS_ZERO( a ) || BDB_IDL_IS_ZERO( b ) ) {
|
2001-11-27 03:32:39 +08:00
|
|
|
a[0] = 0;
|
2001-06-15 15:08:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
idmin = IDL_MAX( BDB_IDL_FIRST(a), BDB_IDL_FIRST(b) );
|
|
|
|
idmax = IDL_MIN( BDB_IDL_LAST(a), BDB_IDL_LAST(b) );
|
|
|
|
if ( idmin > idmax ) {
|
|
|
|
a[0] = 0;
|
|
|
|
return 0;
|
|
|
|
} else if ( idmin == idmax ) {
|
|
|
|
a[0] = 1;
|
|
|
|
a[1] = idmin;
|
|
|
|
return 0;
|
|
|
|
}
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
if ( BDB_IDL_IS_RANGE( a ) && BDB_IDL_IS_RANGE(b) ) {
|
|
|
|
a[1] = idmin;
|
|
|
|
a[2] = idmax;
|
2001-06-15 15:08:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
if ( BDB_IDL_IS_RANGE( a ) ) {
|
2001-06-15 15:08:37 +08:00
|
|
|
ID *tmp = a;
|
|
|
|
a = b;
|
|
|
|
b = tmp;
|
2001-11-27 03:32:39 +08:00
|
|
|
swap = 1;
|
2001-06-15 15:08:37 +08:00
|
|
|
}
|
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
if ( BDB_IDL_IS_RANGE( b ) && BDB_IDL_FIRST( b ) <= idmin &&
|
|
|
|
BDB_IDL_LAST( b ) >= idmax) {
|
|
|
|
if (idmax - idmin + 1 == a[0])
|
|
|
|
{
|
|
|
|
a[0] = NOID;
|
|
|
|
a[1] = idmin;
|
|
|
|
a[2] = idmax;
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
ida = bdb_idl_first( a, &cursora );
|
2001-06-15 15:08:37 +08:00
|
|
|
idb = bdb_idl_first( b, &cursorb );
|
2001-11-27 03:32:39 +08:00
|
|
|
cursorc = 0;
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
while( ida < idmin )
|
|
|
|
ida = bdb_idl_next( a, &cursora );
|
|
|
|
while( idb < idmin )
|
|
|
|
idb = bdb_idl_next( b, &cursorb );
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
while( ida <= idmax || idb <= idmax ) {
|
2001-06-15 15:08:37 +08:00
|
|
|
if( ida == idb ) {
|
2001-11-27 03:32:39 +08:00
|
|
|
a[++cursorc] = ida;
|
2001-06-15 15:08:37 +08:00
|
|
|
ida = bdb_idl_next( a, &cursora );
|
|
|
|
idb = bdb_idl_next( b, &cursorb );
|
|
|
|
} else if ( ida < idb ) {
|
|
|
|
ida = bdb_idl_next( a, &cursora );
|
|
|
|
} else {
|
|
|
|
idb = bdb_idl_next( b, &cursorb );
|
|
|
|
}
|
|
|
|
}
|
2001-11-27 03:32:39 +08:00
|
|
|
a[0] = cursorc;
|
|
|
|
done:
|
|
|
|
if (swap)
|
|
|
|
BDB_IDL_CPY( b, a );
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-11-27 03:32:39 +08:00
|
|
|
* idl_union - return a = a union b
|
2001-06-15 15:08:37 +08:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
bdb_idl_union(
|
|
|
|
ID *a,
|
2001-11-27 03:32:39 +08:00
|
|
|
ID *b )
|
2001-06-15 15:08:37 +08:00
|
|
|
{
|
|
|
|
ID ida, idb;
|
2001-11-27 03:32:39 +08:00
|
|
|
ID cursora = 0, cursorb = 0, cursorc;
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
if ( BDB_IDL_IS_ZERO( b ) ) {
|
2001-06-15 15:08:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
if ( BDB_IDL_IS_ZERO( a ) ) {
|
|
|
|
BDB_IDL_CPY( a, b );
|
2001-06-15 15:08:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( BDB_IDL_IS_RANGE( a ) || BDB_IDL_IS_RANGE(b) ) {
|
2001-11-27 03:32:39 +08:00
|
|
|
over: a[1] = IDL_MIN( BDB_IDL_FIRST(a), BDB_IDL_FIRST(b) );
|
|
|
|
a[2] = IDL_MAX( BDB_IDL_LAST(a), BDB_IDL_LAST(b) );
|
2001-06-15 15:08:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-11-24 11:43:52 +08:00
|
|
|
ida = bdb_idl_first( a, &cursora );
|
2001-06-15 15:08:37 +08:00
|
|
|
idb = bdb_idl_first( b, &cursorb );
|
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
cursorc = b[0];
|
2001-06-15 15:08:37 +08:00
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
/* The distinct elements of a are cat'd to b */
|
2001-11-24 20:41:54 +08:00
|
|
|
while( ida != NOID || idb != NOID ) {
|
2001-06-15 15:08:37 +08:00
|
|
|
if ( ida < idb ) {
|
2001-11-27 03:32:39 +08:00
|
|
|
if( ++cursorc > BDB_IDL_UM_MAX ) {
|
|
|
|
a[0] = NOID;
|
|
|
|
goto over;
|
|
|
|
}
|
|
|
|
b[cursorc] = ida;
|
2001-06-15 15:08:37 +08:00
|
|
|
ida = bdb_idl_next( a, &cursora );
|
|
|
|
|
|
|
|
} else {
|
2001-11-27 03:32:39 +08:00
|
|
|
if ( ida == idb )
|
|
|
|
ida = bdb_idl_next( a, &cursora );
|
2001-06-15 15:08:37 +08:00
|
|
|
idb = bdb_idl_next( b, &cursorb );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-27 03:32:39 +08:00
|
|
|
/* b is copied back to a in sorted order */
|
|
|
|
a[0] = cursorc;
|
|
|
|
cursora = 1;
|
|
|
|
cursorb = 1;
|
|
|
|
cursorc = b[0]+1;
|
|
|
|
while (cursorb <= b[0] || cursorc <= a[0]) {
|
|
|
|
if (cursorc > a[0])
|
|
|
|
idb = NOID;
|
|
|
|
else
|
|
|
|
idb = b[cursorc];
|
|
|
|
if (b[cursorb] < idb)
|
|
|
|
a[cursora++] = b[cursorb++];
|
|
|
|
else {
|
|
|
|
a[cursora++] = idb;
|
|
|
|
cursorc++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-15 15:08:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-06 01:25:44 +08:00
|
|
|
#if 0
|
2001-06-15 15:08:37 +08:00
|
|
|
/*
|
|
|
|
* bdb_idl_notin - return a intersection ~b (or a minus b)
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bdb_idl_notin(
|
|
|
|
ID *a,
|
|
|
|
ID *b,
|
|
|
|
ID *ids )
|
|
|
|
{
|
|
|
|
ID ida, idb;
|
2001-11-24 11:43:52 +08:00
|
|
|
ID cursora = 0, cursorb = 0;
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
if( BDB_IDL_IS_ZERO( a ) ||
|
|
|
|
BDB_IDL_IS_ZERO( b ) ||
|
|
|
|
BDB_IDL_IS_RANGE( b ) )
|
|
|
|
{
|
|
|
|
BDB_IDL_CPY( ids, a );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( BDB_IDL_IS_RANGE( a ) ) {
|
|
|
|
BDB_IDL_CPY( ids, a );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ida = bdb_idl_first( a, &cursora ),
|
|
|
|
idb = bdb_idl_first( b, &cursorb );
|
|
|
|
|
|
|
|
ids[0] = 0;
|
|
|
|
|
|
|
|
while( ida != NOID ) {
|
|
|
|
if ( idb == NOID ) {
|
|
|
|
/* we could shortcut this */
|
|
|
|
ids[++ids[0]] = ida;
|
|
|
|
ida = bdb_idl_next( a, &cursora );
|
|
|
|
|
|
|
|
} else if ( ida < idb ) {
|
|
|
|
ids[++ids[0]] = ida;
|
|
|
|
ida = bdb_idl_next( a, &cursora );
|
|
|
|
|
|
|
|
} else if ( ida > idb ) {
|
|
|
|
idb = bdb_idl_next( b, &cursorb );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
ida = bdb_idl_next( a, &cursora );
|
|
|
|
idb = bdb_idl_next( b, &cursorb );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2001-11-06 01:25:44 +08:00
|
|
|
#endif
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
ID bdb_idl_first( ID *ids, ID *cursor )
|
|
|
|
{
|
|
|
|
ID pos;
|
|
|
|
|
|
|
|
if ( ids[0] == 0 ) {
|
|
|
|
*cursor = NOID;
|
|
|
|
return NOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( BDB_IDL_IS_RANGE( ids ) ) {
|
|
|
|
if( *cursor < ids[1] ) {
|
|
|
|
*cursor = ids[1];
|
|
|
|
}
|
|
|
|
return *cursor;
|
|
|
|
}
|
|
|
|
|
2001-11-24 11:43:52 +08:00
|
|
|
if ( *cursor == 0 )
|
|
|
|
pos = 1;
|
|
|
|
else
|
|
|
|
pos = bdb_idl_search( ids, *cursor );
|
2001-06-15 15:08:37 +08:00
|
|
|
|
|
|
|
if( pos > ids[0] ) {
|
|
|
|
return NOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
*cursor = pos;
|
|
|
|
return ids[pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
ID bdb_idl_next( ID *ids, ID *cursor )
|
|
|
|
{
|
|
|
|
if ( BDB_IDL_IS_RANGE( ids ) ) {
|
|
|
|
if( ids[2] < ++(*cursor) ) {
|
|
|
|
return NOID;
|
|
|
|
}
|
|
|
|
return *cursor;
|
|
|
|
}
|
|
|
|
|
2001-11-24 11:43:52 +08:00
|
|
|
if ( ++(*cursor) <= ids[0] ) {
|
|
|
|
return ids[*cursor];
|
2001-06-15 15:08:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NOID;
|
|
|
|
}
|