1998-08-09 08:43:13 +08:00
|
|
|
/* id2children.c - routines to deal with the id2children index */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $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
|
|
|
|
)
|
|
|
|
{
|
1999-07-20 03:40:33 +08:00
|
|
|
DBCache *db;
|
1998-08-09 08:43:13 +08:00
|
|
|
Datum key;
|
1999-02-03 11:50:11 +08:00
|
|
|
int rc = 0;
|
1999-01-31 15:55:53 +08:00
|
|
|
ID_BLOCK *idl;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-12-30 01:28:45 +08:00
|
|
|
ldbm_datum_init( key );
|
1998-09-03 08:50:13 +08:00
|
|
|
|
1999-02-12 02:19:52 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> has_children( %ld )\n", p->e_id , 0, 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-08-13 08:55:08 +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 );
|
|
|
|
|
1999-08-18 03:00:59 +08:00
|
|
|
free( key.dptr );
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
ldbm_cache_close( be, db );
|
|
|
|
|
1999-02-03 06:46:21 +08:00
|
|
|
if( idl != NULL ) {
|
|
|
|
idl_free( idl );
|
1999-02-03 11:50:11 +08:00
|
|
|
rc = 1;
|
1999-02-03 06:46:21 +08:00
|
|
|
}
|
|
|
|
|
1999-02-12 02:19:52 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "<= has_children( %ld ): %s\n",
|
1999-02-03 06:46:21 +08:00
|
|
|
p->e_id, rc ? "yes" : "no", 0 );
|
1998-08-09 08:43:13 +08:00
|
|
|
return( rc );
|
|
|
|
}
|