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$ */
|
2003-11-29 05:08:20 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1998-2004 The OpenLDAP Foundation.
|
2003-11-29 05:08:20 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
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
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( INDEX, ENTRY, "has_children: enter %ld\n", p->e_id, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-02-12 02:19:52 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "=> has_children( %ld )\n", p->e_id , 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
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 ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( INDEX, ERR,
|
|
|
|
"has_children: could not open \"dn2id%s\"\n", LDBM_SUFFIX, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-08-13 08:55:08 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"<= has_children -1 could not open \"dn2id%s\"\n",
|
|
|
|
LDBM_SUFFIX, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-08-13 08:55:08 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( INDEX, ENTRY,
|
2001-01-18 01:01:19 +08:00
|
|
|
"has_children: id (%ld) %s children.\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
p->e_id, rc ? "has" : "doesn't have", 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
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 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( rc );
|
|
|
|
}
|