1998-08-09 08:43:13 +08:00
|
|
|
/* index.c - routines for dealing with attribute indexes */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
static int change_value(Backend *be,
|
1999-07-20 03:40:33 +08:00
|
|
|
DBCache *db,
|
1999-06-16 03:50:20 +08:00
|
|
|
char *type,
|
|
|
|
int indextype,
|
|
|
|
char *val,
|
1999-06-16 07:56:28 +08:00
|
|
|
ID id,
|
|
|
|
int
|
1999-07-20 03:40:33 +08:00
|
|
|
(*idl_func)(Backend *, DBCache *, Datum, ID));
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
static int index2prefix(int indextype);
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
index_add_entry(
|
|
|
|
Backend *be,
|
|
|
|
Entry *e
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Attribute *ap;
|
|
|
|
struct berval bv;
|
|
|
|
struct berval *bvals[2];
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> index_add( %ld, \"%s\" )\n", e->e_id,
|
|
|
|
e->e_dn, 0 );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dn index entry - make it look like an attribute so it works
|
1999-06-16 07:56:28 +08:00
|
|
|
* with index_change_values() call
|
1998-08-09 08:43:13 +08:00
|
|
|
*/
|
|
|
|
|
1999-06-03 04:29:35 +08:00
|
|
|
bv.bv_val = ch_strdup( e->e_ndn );
|
1998-08-09 08:43:13 +08:00
|
|
|
bv.bv_len = strlen( bv.bv_val );
|
|
|
|
bvals[0] = &bv;
|
|
|
|
bvals[1] = NULL;
|
|
|
|
|
|
|
|
/* add the dn to the indexes */
|
1999-05-28 07:04:28 +08:00
|
|
|
{
|
|
|
|
char *dn = ch_strdup("dn");
|
1999-06-16 07:56:28 +08:00
|
|
|
index_change_values( be, dn, bvals, e->e_id, __INDEX_ADD_OP );
|
1999-05-28 07:04:28 +08:00
|
|
|
free( dn );
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
free( bv.bv_val );
|
|
|
|
|
|
|
|
/* add each attribute to the indexes */
|
|
|
|
for ( ap = e->e_attrs; ap != NULL; ap = ap->a_next ) {
|
1999-06-12 04:42:48 +08:00
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
index_change_values( be, ap->a_type, ap->a_vals, e->e_id,
|
|
|
|
__INDEX_ADD_OP );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= index_add( %ld, \"%s\" ) 0\n", e->e_id,
|
1999-06-03 04:29:35 +08:00
|
|
|
e->e_ndn, 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
index_add_mods(
|
|
|
|
Backend *be,
|
1998-12-21 08:21:58 +08:00
|
|
|
LDAPModList *ml,
|
1998-08-09 08:43:13 +08:00
|
|
|
ID id
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
1998-12-21 08:21:58 +08:00
|
|
|
for ( ; ml != NULL; ml = ml->ml_next ) {
|
|
|
|
LDAPMod *mod = &ml->ml_mod;
|
|
|
|
|
|
|
|
switch ( mod->mod_op & ~LDAP_MOD_BVALUES ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
case LDAP_MOD_REPLACE:
|
1999-06-15 02:16:05 +08:00
|
|
|
/* XXX: Delete old index data==>problem when this
|
|
|
|
* gets called we lost values already!
|
|
|
|
*/
|
|
|
|
case LDAP_MOD_ADD:
|
1999-06-16 07:56:28 +08:00
|
|
|
rc = index_change_values( be,
|
|
|
|
mod->mod_type,
|
|
|
|
mod->mod_bvalues,
|
|
|
|
id,
|
|
|
|
__INDEX_ADD_OP);
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
case LDAP_MOD_DELETE:
|
1999-06-16 07:56:28 +08:00
|
|
|
rc = index_change_values( be,
|
|
|
|
mod->mod_type,
|
|
|
|
mod->mod_bvalues,
|
|
|
|
id,
|
|
|
|
__INDEX_DELETE_OP );
|
1999-06-15 02:16:05 +08:00
|
|
|
break;
|
|
|
|
case LDAP_MOD_SOFTADD: /* SOFTADD means index was there */
|
1998-08-09 08:43:13 +08:00
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( rc != 0 ) {
|
|
|
|
return( rc );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
1999-01-31 15:55:53 +08:00
|
|
|
ID_BLOCK *
|
1998-08-09 08:43:13 +08:00
|
|
|
index_read(
|
|
|
|
Backend *be,
|
|
|
|
char *type,
|
|
|
|
int indextype,
|
|
|
|
char *val
|
|
|
|
)
|
|
|
|
{
|
1999-07-20 03:40:33 +08:00
|
|
|
DBCache *db;
|
1998-08-09 08:43:13 +08:00
|
|
|
Datum key;
|
1999-01-31 15:55:53 +08:00
|
|
|
ID_BLOCK *idl;
|
1998-08-09 08:43:13 +08:00
|
|
|
int indexmask, syntax;
|
|
|
|
char prefix;
|
|
|
|
char *realval, *tmpval;
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
|
1999-06-15 00:36:00 +08:00
|
|
|
char *at_cn;
|
1999-06-12 04:42:48 +08:00
|
|
|
|
1998-12-30 01:28:45 +08:00
|
|
|
ldbm_datum_init( key );
|
1998-09-03 08:50:13 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
prefix = index2prefix( indextype );
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> index_read( \"%s\" \"%c\" \"%s\" )\n",
|
|
|
|
type, prefix, val );
|
|
|
|
|
|
|
|
attr_masks( be->be_private, type, &indexmask, &syntax );
|
|
|
|
if ( ! (indextype & indexmask) ) {
|
|
|
|
idl = idl_allids( be );
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
1999-02-12 02:19:52 +08:00
|
|
|
"<= index_read %ld candidates (allids - not indexed)\n",
|
1999-01-31 15:55:53 +08:00
|
|
|
idl ? ID_BLOCK_NIDS(idl) : 0, 0, 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
return( idl );
|
|
|
|
}
|
|
|
|
|
|
|
|
attr_normalize( type );
|
1999-06-15 00:36:00 +08:00
|
|
|
at_cn = at_canonical_name( type );
|
1999-06-12 04:42:48 +08:00
|
|
|
|
1999-06-15 00:36:00 +08:00
|
|
|
if ( (db = ldbm_cache_open( be, at_cn, LDBM_SUFFIX, LDBM_WRCREAT ))
|
1998-08-09 08:43:13 +08:00
|
|
|
== NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
1999-06-15 00:36:00 +08:00
|
|
|
"<= index_read NULL (could not open %s%s)\n", at_cn,
|
1998-08-09 08:43:13 +08:00
|
|
|
LDBM_SUFFIX, 0 );
|
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
realval = val;
|
|
|
|
tmpval = NULL;
|
1998-12-28 08:44:15 +08:00
|
|
|
if ( prefix != UNKNOWN_PREFIX ) {
|
1998-11-05 14:49:49 +08:00
|
|
|
unsigned int len = strlen( val );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-08-09 10:54:09 +08:00
|
|
|
if ( (len + 2) < sizeof(buf) ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
realval = buf;
|
|
|
|
} else {
|
|
|
|
/* value + prefix + null */
|
|
|
|
tmpval = (char *) ch_malloc( len + 2 );
|
|
|
|
realval = tmpval;
|
|
|
|
}
|
1998-08-09 10:54:09 +08:00
|
|
|
realval[0] = prefix;
|
|
|
|
strcpy( &realval[1], val );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
key.dptr = realval;
|
|
|
|
key.dsize = strlen( realval ) + 1;
|
|
|
|
|
|
|
|
idl = idl_fetch( be, db, key );
|
1999-06-16 07:56:28 +08:00
|
|
|
if ( tmpval != NULL ) {
|
1998-08-09 10:54:09 +08:00
|
|
|
free( tmpval );
|
1999-06-16 07:56:28 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
ldbm_cache_close( be, db );
|
|
|
|
|
1999-02-12 02:19:52 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= index_read %ld candidates\n",
|
1999-06-16 07:56:28 +08:00
|
|
|
idl ? ID_BLOCK_NIDS(idl) : 0, 0, 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
return( idl );
|
|
|
|
}
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
/* Add or remove stuff from index files */
|
1999-06-16 03:50:20 +08:00
|
|
|
|
|
|
|
static int
|
1999-06-16 07:56:28 +08:00
|
|
|
change_value(
|
1999-06-16 03:50:20 +08:00
|
|
|
Backend *be,
|
1999-07-20 03:40:33 +08:00
|
|
|
DBCache *db,
|
1999-06-16 03:50:20 +08:00
|
|
|
char *type,
|
|
|
|
int indextype,
|
|
|
|
char *val,
|
1999-06-16 07:56:28 +08:00
|
|
|
ID id,
|
1999-07-20 03:40:33 +08:00
|
|
|
int (*idl_func)(Backend *, DBCache *, Datum, ID)
|
1999-06-16 03:50:20 +08:00
|
|
|
)
|
|
|
|
{
|
1999-06-16 04:06:16 +08:00
|
|
|
int rc;
|
|
|
|
Datum key;
|
|
|
|
char *tmpval = NULL;
|
|
|
|
char *realval = val;
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
|
|
|
|
char prefix = index2prefix( indextype );
|
|
|
|
|
|
|
|
ldbm_datum_init( key );
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
1999-06-16 07:56:28 +08:00
|
|
|
"=> change_value( \"%c%s\", op=%s )\n",
|
|
|
|
prefix, val, (idl_func == idl_insert_key ? "ADD":"DELETE") );
|
1999-06-16 04:06:16 +08:00
|
|
|
|
|
|
|
if ( prefix != UNKNOWN_PREFIX ) {
|
|
|
|
unsigned int len = strlen( val );
|
|
|
|
|
|
|
|
if ( (len + 2) < sizeof(buf) ) {
|
|
|
|
realval = buf;
|
|
|
|
} else {
|
|
|
|
/* value + prefix + null */
|
|
|
|
tmpval = (char *) ch_malloc( len + 2 );
|
|
|
|
realval = tmpval;
|
|
|
|
}
|
|
|
|
realval[0] = prefix;
|
|
|
|
strcpy( &realval[1], val );
|
|
|
|
}
|
|
|
|
|
|
|
|
key.dptr = realval;
|
|
|
|
key.dsize = strlen( realval ) + 1;
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
rc = idl_func( be, db, key, id );
|
1999-06-16 04:06:16 +08:00
|
|
|
|
|
|
|
if ( tmpval != NULL ) {
|
|
|
|
free( tmpval );
|
|
|
|
}
|
|
|
|
|
|
|
|
ldap_pvt_thread_yield();
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= change_value %d\n", rc, 0, 0 );
|
1999-06-16 04:06:16 +08:00
|
|
|
|
|
|
|
return( rc );
|
1999-06-16 03:50:20 +08:00
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
}/* static int change_value() */
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-06-15 02:16:05 +08:00
|
|
|
|
|
|
|
int
|
1999-06-16 07:56:28 +08:00
|
|
|
index_change_values(
|
1999-06-15 02:16:05 +08:00
|
|
|
Backend *be,
|
|
|
|
char *type,
|
|
|
|
struct berval **vals,
|
1999-06-16 07:56:28 +08:00
|
|
|
ID id,
|
|
|
|
unsigned int op
|
1999-06-15 02:16:05 +08:00
|
|
|
)
|
|
|
|
{
|
1999-06-16 03:50:20 +08:00
|
|
|
char *val, *p, *code, *w;
|
|
|
|
unsigned i, j, len;
|
1999-06-16 07:56:28 +08:00
|
|
|
int indexmask, syntax;
|
1999-06-16 03:50:20 +08:00
|
|
|
char buf[SUBLEN + 1];
|
|
|
|
char vbuf[BUFSIZ];
|
|
|
|
char *bigbuf;
|
1999-07-20 03:40:33 +08:00
|
|
|
DBCache *db;
|
1999-06-16 03:50:20 +08:00
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
int (*idl_funct)(Backend *,
|
1999-07-20 03:40:33 +08:00
|
|
|
DBCache *,
|
1999-06-16 07:56:28 +08:00
|
|
|
Datum, ID);
|
|
|
|
char *at_cn; /* Attribute canonical name */
|
|
|
|
int mode;
|
1999-06-16 03:50:20 +08:00
|
|
|
|
1999-07-29 07:19:16 +08:00
|
|
|
if( vals == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"=> index_change_values( %s, NULL, %ld, op=%s )\n",
|
|
|
|
type, id, ((op == __INDEX_ADD_OP) ? "ADD" : "DELETE" ) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-06-16 03:50:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
1999-06-16 07:56:28 +08:00
|
|
|
"=> index_change_values( \"%s\", %ld, op=%s )\n",
|
|
|
|
type, id, ((op == __INDEX_ADD_OP) ? "ADD" : "DELETE" ) );
|
|
|
|
|
|
|
|
|
|
|
|
if (op == __INDEX_ADD_OP) {
|
|
|
|
|
|
|
|
/* Add values */
|
|
|
|
|
|
|
|
idl_funct = idl_insert_key;
|
|
|
|
mode = LDBM_WRCREAT;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* Delete values */
|
|
|
|
|
|
|
|
idl_funct = idl_delete_key;
|
|
|
|
mode = LDBM_WRITER;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1999-06-16 03:50:20 +08:00
|
|
|
attr_normalize(type);
|
|
|
|
attr_masks( be->be_private, type, &indexmask, &syntax );
|
1999-06-16 07:56:28 +08:00
|
|
|
|
1999-06-16 03:50:20 +08:00
|
|
|
if ( indexmask == 0 ) {
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
at_cn = at_canonical_name( type );
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
if ( (db = ldbm_cache_open( be, at_cn, LDBM_SUFFIX, mode ))
|
1999-06-16 03:50:20 +08:00
|
|
|
== NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
1999-06-16 07:56:28 +08:00
|
|
|
"<= index_change_values (couldn't open(%s%s),md=%s)\n",
|
1999-06-16 03:50:20 +08:00
|
|
|
at_cn,
|
|
|
|
LDBM_SUFFIX,
|
1999-06-16 07:56:28 +08:00
|
|
|
((mode==LDBM_WRCREAT)?"LDBM_WRCREAT":"LDBM_WRITER") );
|
1999-06-16 03:50:20 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-07-29 07:19:16 +08:00
|
|
|
for ( i = 0; vals[i] != NULL; i++ ) {
|
1999-06-16 03:50:20 +08:00
|
|
|
/*
|
1999-06-16 07:56:28 +08:00
|
|
|
* presence index entry
|
1999-06-16 03:50:20 +08:00
|
|
|
*/
|
|
|
|
if ( indexmask & INDEX_PRESENCE ) {
|
1999-06-16 07:56:28 +08:00
|
|
|
|
|
|
|
change_value( be, db, at_cn, INDEX_PRESENCE,
|
|
|
|
"*", id, idl_funct );
|
|
|
|
|
1999-06-16 03:50:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
1999-06-16 07:56:28 +08:00
|
|
|
"index_change_values syntax 0x%x syntax bin 0x%x\n",
|
1999-06-16 03:50:20 +08:00
|
|
|
syntax, SYNTAX_BIN, 0 );
|
|
|
|
|
|
|
|
if ( syntax & SYNTAX_BIN ) {
|
1999-06-16 07:56:28 +08:00
|
|
|
|
1999-06-16 03:50:20 +08:00
|
|
|
ldbm_cache_close( be, db );
|
|
|
|
return( 0 );
|
1999-06-16 07:56:28 +08:00
|
|
|
|
1999-06-16 03:50:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bigbuf = NULL;
|
|
|
|
len = vals[i]->bv_len;
|
|
|
|
|
|
|
|
/* value + null */
|
|
|
|
if ( len + 2 > sizeof(vbuf) ) {
|
|
|
|
bigbuf = (char *) ch_malloc( len + 1 );
|
|
|
|
val = bigbuf;
|
|
|
|
} else {
|
|
|
|
val = vbuf;
|
|
|
|
}
|
|
|
|
(void) memcpy( val, vals[i]->bv_val, len );
|
|
|
|
val[len] = '\0';
|
|
|
|
|
|
|
|
value_normalize( val, syntax );
|
|
|
|
|
|
|
|
/* value_normalize could change the length of val */
|
|
|
|
len = strlen( val );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* equality index entry
|
|
|
|
*/
|
|
|
|
if ( indexmask & INDEX_EQUALITY ) {
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
change_value( be, db, at_cn, INDEX_EQUALITY,
|
|
|
|
val, id, idl_funct);
|
1999-06-16 03:50:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* approximate index entry
|
|
|
|
*/
|
|
|
|
if ( indexmask & INDEX_APPROX ) {
|
1999-06-16 07:56:28 +08:00
|
|
|
for ( w = first_word( val ); w != NULL;
|
|
|
|
w = next_word( w ) ) {
|
1999-06-16 03:50:20 +08:00
|
|
|
if ( (code = phonetic( w )) != NULL ) {
|
1999-06-16 07:56:28 +08:00
|
|
|
change_value( be,
|
1999-06-16 03:50:20 +08:00
|
|
|
db,
|
|
|
|
at_cn,
|
|
|
|
INDEX_APPROX,
|
|
|
|
code,
|
1999-06-16 07:56:28 +08:00
|
|
|
id,
|
|
|
|
idl_funct );
|
1999-06-16 03:50:20 +08:00
|
|
|
free( code );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* substrings index entry
|
|
|
|
*/
|
|
|
|
if ( indexmask & INDEX_SUB ) {
|
|
|
|
/* leading and trailing */
|
|
|
|
if ( len > SUBLEN - 2 ) {
|
|
|
|
buf[0] = '^';
|
|
|
|
for ( j = 0; j < SUBLEN - 1; j++ ) {
|
|
|
|
buf[j + 1] = val[j];
|
|
|
|
}
|
|
|
|
buf[SUBLEN] = '\0';
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
change_value( be, db, at_cn, INDEX_SUB,
|
|
|
|
buf, id, idl_funct );
|
1999-06-16 03:50:20 +08:00
|
|
|
|
|
|
|
p = val + len - SUBLEN + 1;
|
|
|
|
for ( j = 0; j < SUBLEN - 1; j++ ) {
|
|
|
|
buf[j] = p[j];
|
|
|
|
}
|
|
|
|
buf[SUBLEN - 1] = '$';
|
|
|
|
buf[SUBLEN] = '\0';
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
change_value( be, db, at_cn, INDEX_SUB,
|
|
|
|
buf, id, idl_funct );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* any */
|
|
|
|
for ( p = val; p < (val + len - SUBLEN + 1); p++ ) {
|
|
|
|
for ( j = 0; j < SUBLEN; j++ ) {
|
|
|
|
buf[j] = p[j];
|
|
|
|
}
|
|
|
|
buf[SUBLEN] = '\0';
|
|
|
|
|
1999-06-16 07:56:28 +08:00
|
|
|
change_value( be, db, at_cn, INDEX_SUB,
|
|
|
|
buf, id, idl_funct );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( bigbuf != NULL ) {
|
|
|
|
free( bigbuf );
|
|
|
|
}
|
|
|
|
}
|
1999-07-29 06:57:52 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
ldbm_cache_close( be, db );
|
|
|
|
|
|
|
|
return( 0 );
|
1999-06-16 07:56:28 +08:00
|
|
|
|
|
|
|
}/* int index_change_values() */
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
static int
|
|
|
|
index2prefix( int indextype )
|
|
|
|
{
|
|
|
|
int prefix;
|
|
|
|
|
|
|
|
switch ( indextype ) {
|
|
|
|
case INDEX_EQUALITY:
|
|
|
|
prefix = EQ_PREFIX;
|
|
|
|
break;
|
|
|
|
case INDEX_APPROX:
|
|
|
|
prefix = APPROX_PREFIX;
|
|
|
|
break;
|
|
|
|
case INDEX_SUB:
|
|
|
|
prefix = SUB_PREFIX;
|
|
|
|
break;
|
|
|
|
default:
|
1998-12-28 08:44:15 +08:00
|
|
|
prefix = UNKNOWN_PREFIX;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( prefix );
|
|
|
|
}
|