⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nextid.c

📁 开放源码的ldap系统
💻 C
字号:
/* nextid.c - keep track of the next id to be given out *//* $OpenLDAP: pkg/ldap/servers/slapd/back-ldbm/nextid.c,v 1.13.8.6 2001/07/22 02:28:29 kurt Exp $ *//* * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */#include "portable.h"#include <stdio.h>#include <ac/string.h>#include <ac/socket.h>#ifdef HAVE_SYS_PARAM_H#include <sys/param.h>#endif#include "slap.h"#include "back-ldbm.h"static intnext_id_read( Backend *be, ID *idp ){	Datum key, data;	DBCache *db;	*idp = NOID;	if ( (db = ldbm_cache_open( be, "nextid", LDBM_SUFFIX, LDBM_WRCREAT ))	    == NULL ) {		Debug( LDAP_DEBUG_ANY, "Could not open/create nextid" LDBM_SUFFIX "\n",			0, 0, 0 );		return( -1 );	}	ldbm_datum_init( key );	key.dptr = (char *) idp;	key.dsize = sizeof(ID);	data = ldbm_cache_fetch( db, key );	if( data.dptr != NULL ) {		AC_MEMCPY( idp, data.dptr, sizeof( ID ) );		ldbm_datum_free( db->dbc_db, data );	} else {		*idp = 1;	}	ldbm_cache_close( be, db );	return( 0 );}intnext_id_write( Backend *be, ID id ){	Datum key, data;	DBCache *db;	ID noid = NOID;	int flags, rc = 0;	if ( (db = ldbm_cache_open( be, "nextid", LDBM_SUFFIX, LDBM_WRCREAT ))	    == NULL ) {		Debug( LDAP_DEBUG_ANY, "Could not open/create nextid" LDBM_SUFFIX "\n",		    0, 0, 0 );		return( -1 );	}	ldbm_datum_init( key );	ldbm_datum_init( data );	key.dptr = (char *) &noid;	key.dsize = sizeof(ID);	data.dptr = (char *) &id;	data.dsize = sizeof(ID);	flags = LDBM_REPLACE;	if ( ldbm_cache_store( db, key, data, flags ) != 0 ) {		rc = -1;	}	ldbm_cache_close( be, db );	return( rc );}intnext_id_get( Backend *be, ID *idp ){	struct ldbminfo	*li = (struct ldbminfo *) be->be_private;	int rc = 0;	*idp = NOID;	ldap_pvt_thread_mutex_lock( &li->li_nextid_mutex );	if ( li->li_nextid == NOID ) {		if ( ( rc = next_id_read( be, idp ) ) ) {			ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );			return( rc );		}		li->li_nextid = *idp;	}	*idp = li->li_nextid;	ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );	return( rc );}intnext_id( Backend *be, ID *idp ){	struct ldbminfo	*li = (struct ldbminfo *) be->be_private;	int rc = 0;	ldap_pvt_thread_mutex_lock( &li->li_nextid_mutex );	if ( li->li_nextid == NOID ) {		if ( ( rc = next_id_read( be, idp ) ) ) {			ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );			return( rc );		}		li->li_nextid = *idp;	}	*idp = li->li_nextid++;	if ( next_id_write( be, li->li_nextid ) ) {		rc = -1;	}	ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );	return( rc );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -