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

87 lines
1.8 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* id2children.c - routines to deal with the id2children index */
/* $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
)
{
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 );
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( INDEX, ENTRY, "has_children: enter %ld\n", p->e_id, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
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
if ( (db = ldbm_cache_open( be, "dn2id", LDBM_SUFFIX,
LDBM_WRCREAT )) == NULL ) {
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
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
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
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;
}
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( INDEX, ENTRY,
2001-01-18 01:01:19 +08:00
"has_children: id (%ld) %s children.\n",
p->e_id, rc ? "has" : "doesn't have", 0 );
2001-01-18 01:01:19 +08:00
#else
Debug( LDAP_DEBUG_TRACE, "<= has_children( %ld ): %s\n",
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 );
}