1998-08-08 20:43:13 -04:00
|
|
|
/* close.c - close ldbm backend */
|
1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-28 16:08:20 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
|
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation.
|
|
|
|
|
* 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-06 19:07:46 -04:00
|
|
|
*/
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include <stdio.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "slap.h"
|
|
|
|
|
#include "back-ldbm.h"
|
|
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
int
|
|
|
|
|
ldbm_back_db_close( Backend *be )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
2001-06-28 05:20:33 -04:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
|
|
|
|
if ( li->li_dbsyncfreq > 0 )
|
|
|
|
|
{
|
|
|
|
|
li->li_dbshutdown++;
|
|
|
|
|
ldap_pvt_thread_join( li->li_dbsynctid, (void *) NULL );
|
|
|
|
|
}
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, CRIT,
|
|
|
|
|
"ldbm_back_db_close: ldbm backend syncing\n", 0, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm backend syncing\n", 0, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
ldbm_cache_flush_all( be );
|
2001-01-17 12:01:19 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-11 16:33:24 -04:00
|
|
|
LDAP_LOG( BACK_LDBM, CRIT,
|
|
|
|
|
"ldbm_back_db_close: ldbm backend synch'ed\n", 0, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm backend done syncing\n", 0, 0, 0 );
|
2001-01-17 12:01:19 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
|
1999-04-05 21:55:11 -04:00
|
|
|
cache_release_all( &((struct ldbminfo *) be->be_private)->li_cache );
|
|
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
return 0;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|