/* operational.c - ldbm backend operational attributes function */ /* * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ #include "portable.h" #include #include #include #include "slap.h" #include "back-ldbm.h" #include "proto-back-ldbm.h" /* * sets *hasSubordinates to LDAP_COMPARE_TRUE/LDAP_COMPARE_FALSE * if the entry has children or not. */ int ldbm_back_hasSubordinates( BackendDB *be, Connection *conn, Operation *op, Entry *e, int *hasSubordinates ) { if ( has_children( be, e ) ) { *hasSubordinates = LDAP_COMPARE_TRUE; } else { *hasSubordinates = LDAP_COMPARE_FALSE; } return 0; } /* * sets the supported operational attributes (if required) */ int ldbm_back_operational( BackendDB *be, Connection *conn, Operation *op, Entry *e, AttributeName *attrs, int opattrs, Attribute **a ) { Attribute **aa = a; assert( e ); if ( opattrs || ad_inlist( slap_schema.si_ad_hasSubordinates, attrs ) ) { int hs; hs = has_children( be, e ); *aa = slap_operational_hasSubordinate( hs ); if ( *aa != NULL ) { aa = &(*aa)->a_next; } } return 0; }