openldap/servers/slapd/back-ldbm/id2children.c

146 lines
2.9 KiB
C
Raw Normal View History

1998-08-08 20:43:13 -04:00
/* id2children.c - routines to deal with the id2children index */
1998-10-24 21:41:42 -04:00
#include "portable.h"
1998-08-08 20:43:13 -04:00
#include <stdio.h>
1998-11-11 11:35:58 -05:00
#include <ac/string.h>
1998-10-24 21:41:42 -04:00
#include <ac/socket.h>
1998-08-08 20:43:13 -04:00
#include "slap.h"
#include "back-ldbm.h"
struct dbcache *ldbm_cache_open();
extern Datum ldbm_cache_fetch();
IDList *idl_fetch();
int
id2children_add(
Backend *be,
Entry *p,
Entry *e
)
{
struct dbcache *db;
1998-11-05 01:49:49 -05:00
Datum key;
1998-08-08 20:43:13 -04:00
int len, rc;
IDList *idl;
char buf[20];
1998-10-24 21:41:42 -04:00
#ifdef HAVE_BERKELEY_DB2
1998-11-05 01:49:49 -05:00
Datum data;
memset( &key, 0, sizeof( key ) );
memset( &data, 0, sizeof( data ) );
#endif
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_TRACE, "=> id2children_add( %d, %d )\n", p ? p->e_id
: 0, e->e_id, 0 );
if ( (db = ldbm_cache_open( be, "id2children", LDBM_SUFFIX,
LDBM_WRCREAT )) == NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= id2children_add -1 could not open \"id2children%s\"\n",
LDBM_SUFFIX, 0, 0 );
return( -1 );
}
1998-11-05 01:49:49 -05:00
sprintf( buf, "%c%ld", EQ_PREFIX, p ? p->e_id : 0 );
1998-08-08 20:43:13 -04:00
key.dptr = buf;
key.dsize = strlen( buf ) + 1;
if ( idl_insert_key( be, db, key, e->e_id ) != 0 ) {
Debug( LDAP_DEBUG_TRACE, "<= id2children_add -1 (idl_insert)\n",
0, 0, 0 );
ldbm_cache_close( be, db );
return( -1 );
}
ldbm_cache_close( be, db );
Debug( LDAP_DEBUG_TRACE, "<= id2children_add 0\n", 0, 0, 0 );
return( 0 );
}
int
id2children_remove(
Backend *be,
Entry *p,
Entry *e
)
{
struct dbcache *db;
Datum key;
int len, rc;
IDList *idl;
char buf[20];
Debug( LDAP_DEBUG_TRACE, "=> id2children_remove( %d, %d )\n", p ? p->e_id
: 0, e->e_id, 0 );
if ( (db = ldbm_cache_open( be, "id2children", LDBM_SUFFIX,
LDBM_WRCREAT )) == NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= id2children_add -1 could not open \"id2children%s\"\n",
LDBM_SUFFIX, 0, 0 );
return( -1 );
}
memset( &key, 0, sizeof(key) );
sprintf( buf, "%c%d", EQ_PREFIX, p ? p->e_id : 0 );
key.dptr = buf;
key.dsize = strlen( buf ) + 1;
if ( idl_delete_key( be, db, key, e->e_id ) != 0 ) {
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_TRACE, "<= id2children_add -1 (idl_insert)\n",
0, 0, 0 );
ldbm_cache_close( be, db );
return( -1 );
}
ldbm_cache_close( be, db );
Debug( LDAP_DEBUG_TRACE, "<= id2children_add 0\n", 0, 0, 0 );
return( 0 );
}
int
has_children(
Backend *be,
Entry *p
)
{
struct dbcache *db;
Datum key;
int rc;
IDList *idl;
char buf[20];
1998-10-24 21:41:42 -04:00
#ifdef HAVE_BERKELEY_DB2
memset( &key, 0, sizeof( key ) );
#endif
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_TRACE, "=> has_children( %d )\n", p->e_id , 0, 0 );
if ( (db = ldbm_cache_open( be, "id2children", LDBM_SUFFIX,
LDBM_WRCREAT )) == NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= has_children -1 could not open \"id2children%s\"\n",
LDBM_SUFFIX, 0, 0 );
return( 0 );
}
1998-11-05 01:49:49 -05:00
sprintf( buf, "%c%ld", EQ_PREFIX, p->e_id );
1998-08-08 20:43:13 -04:00
key.dptr = buf;
key.dsize = strlen( buf ) + 1;
idl = idl_fetch( be, db, key );
ldbm_cache_close( be, db );
rc = idl ? 1 : 0;
idl_free( idl );
Debug( LDAP_DEBUG_TRACE, "<= has_children %d\n", rc, 0, 0 );
return( rc );
}