mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 19:19:35 -05:00
BEWARE: the backend will be compiled.
the backend will NOT be invoked, yet.
the backend CANNOT be invoked, yet, because it is NOT yet
integrated into the new initialization/startup environment
of the slapd server.
52 lines
977 B
C
52 lines
977 B
C
/* close.c - close bdb2 backend */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-bdb2.h"
|
|
|
|
static int
|
|
bdb2i_back_db_close_internal( Backend *be )
|
|
{
|
|
Debug( LDAP_DEBUG_TRACE, "bdb2 backend saving nextid\n", 0, 0, 0 );
|
|
if ( bdb2i_next_id_save( be ) < 0 ) {
|
|
Debug( LDAP_DEBUG_ANY, "bdb2 backend nextid save failed!\n", 0, 0, 0 );
|
|
}
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb2 backend syncing\n", 0, 0, 0 );
|
|
bdb2i_cache_flush_all( be );
|
|
Debug( LDAP_DEBUG_TRACE, "bdb2 backend done syncing\n", 0, 0, 0 );
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
int
|
|
bdb2_back_db_close( Backend *be )
|
|
{
|
|
struct timeval time1, time2;
|
|
char *elapsed_time;
|
|
int ret;
|
|
|
|
gettimeofday( &time1, NULL );
|
|
|
|
ret = bdb2i_back_db_close_internal( be );
|
|
|
|
if ( bdb2i_do_timing ) {
|
|
|
|
gettimeofday( &time2, NULL);
|
|
elapsed_time = bdb2i_elapsed( time1, time2 );
|
|
Debug( LDAP_DEBUG_ANY, "CLOSE elapsed=%s\n",
|
|
elapsed_time, 0, 0 );
|
|
free( elapsed_time );
|
|
|
|
}
|
|
|
|
return( ret );
|
|
}
|
|
|
|
|