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

61 lines
1.1 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* id2children.c - routines to deal with the id2children index */
/* $OpenLDAP$ */
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-11-12 00:35:58 +08:00
#include <ac/string.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include "back-ldbm.h"
int
has_children(
Backend *be,
Entry *p
)
{
DBCache *db;
1998-08-09 08:43:13 +08:00
Datum key;
1999-02-03 11:50:11 +08:00
int rc = 0;
ID_BLOCK *idl;
1998-08-09 08:43:13 +08:00
ldbm_datum_init( key );
Debug( LDAP_DEBUG_TRACE, "=> has_children( %ld )\n", p->e_id , 0, 0 );
1998-08-09 08:43:13 +08:00
if ( (db = ldbm_cache_open( be, "dn2id", LDBM_SUFFIX,
LDBM_WRCREAT )) == NULL ) {
Debug( LDAP_DEBUG_ANY,
"<= has_children -1 could not open \"dn2id%s\"\n",
LDBM_SUFFIX, 0, 0 );
return( 0 );
}
key.dsize = strlen( p->e_ndn ) + 2;
key.dptr = ch_malloc( key.dsize );
sprintf( key.dptr, "%c%s", DN_ONE_PREFIX, p->e_ndn );
1998-08-09 08:43:13 +08:00
idl = idl_fetch( be, db, key );
free( key.dptr );
1998-08-09 08:43:13 +08:00
ldbm_cache_close( be, db );
if( idl != NULL ) {
idl_free( idl );
1999-02-03 11:50:11 +08:00
rc = 1;
}
Debug( LDAP_DEBUG_TRACE, "<= has_children( %ld ): %s\n",
p->e_id, rc ? "yes" : "no", 0 );
1998-08-09 08:43:13 +08:00
return( rc );
}