]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldbm/dbcache.c
Const'ification
[openldap] / servers / slapd / back-ldbm / dbcache.c
1 /* ldbmcache.c - maintain a cache of open ldbm files */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/errno.h>
13 #include <ac/socket.h>
14 #include <ac/string.h>
15 #include <ac/time.h>
16 #include <sys/stat.h>
17
18 #include "slap.h"
19 #include "back-ldbm.h"
20
21 DBCache *
22 ldbm_cache_open(
23     Backend     *be,
24     const char  *name,
25     const char  *suffix,
26     int         flags
27 )
28 {
29         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
30         int             i, lru;
31         time_t          oldtime, curtime;
32         char            buf[MAXPATHLEN];
33 #ifdef HAVE_ST_BLKSIZE
34         struct stat     st;
35 #endif
36
37         sprintf( buf, "%s" LDAP_DIRSEP "%s%s",
38                 li->li_directory, name, suffix );
39
40         if( li->li_dblocking ) {
41                 flags |= LDBM_LOCKING;
42         } else {
43                 flags |= LDBM_NOLOCKING;
44         }
45         
46         if( li->li_dbwritesync ) {
47                 flags |= LDBM_SYNC;
48         } else {
49                 flags |= LDBM_NOSYNC;
50         }
51         
52         Debug( LDAP_DEBUG_TRACE, "=> ldbm_cache_open( \"%s\", %d, %o )\n", buf,
53             flags, li->li_mode );
54
55         lru = 0;
56         curtime = slap_get_time();
57         oldtime = curtime;
58
59         ldap_pvt_thread_mutex_lock( &li->li_dbcache_mutex );
60         for ( i = 0; i < MAXDBCACHE && li->li_dbcache[i].dbc_name != NULL;
61             i++ ) {
62                 /* already open - return it */
63                 if ( strcmp( li->li_dbcache[i].dbc_name, buf ) == 0 ) {
64                         li->li_dbcache[i].dbc_refcnt++;
65                         Debug( LDAP_DEBUG_TRACE,
66                             "<= ldbm_cache_open (cache %d)\n", i, 0, 0 );
67                         ldap_pvt_thread_mutex_unlock( &li->li_dbcache_mutex );
68                         return( &li->li_dbcache[i] );
69                 }
70
71                 /* keep track of lru db */
72                 if ( li->li_dbcache[i].dbc_lastref < oldtime &&
73                     li->li_dbcache[i].dbc_refcnt == 0 ) {
74                         lru = i;
75                         oldtime = li->li_dbcache[i].dbc_lastref;
76                 }
77         }
78
79         /* no empty slots, not already open - close lru and use that slot */
80         if ( i == MAXDBCACHE ) {
81                 i = lru;
82                 if ( li->li_dbcache[i].dbc_refcnt != 0 ) {
83                         Debug( LDAP_DEBUG_ANY,
84                             "ldbm_cache_open no unused db to close - waiting\n",
85                             0, 0, 0 );
86                         lru = -1;
87                         while ( lru == -1 ) {
88                                 ldap_pvt_thread_cond_wait( &li->li_dbcache_cv,
89                                     &li->li_dbcache_mutex );
90                                 for ( i = 0; i < MAXDBCACHE; i++ ) {
91                                         if ( li->li_dbcache[i].dbc_refcnt
92                                             == 0 ) {
93                                                 lru = i;
94                                                 break;
95                                         }
96                                 }
97                         }
98                         i = lru;
99                 }
100                 ldbm_close( li->li_dbcache[i].dbc_db );
101                 free( li->li_dbcache[i].dbc_name );
102                 li->li_dbcache[i].dbc_name = NULL;
103         }
104
105         if ( (li->li_dbcache[i].dbc_db = ldbm_open( buf, flags, li->li_mode,
106             li->li_dbcachesize )) == NULL ) {
107                 int err = errno;
108                 Debug( LDAP_DEBUG_TRACE,
109                     "<= ldbm_cache_open NULL \"%s\" errno=%d reason=\"%s\")\n",
110                     buf, err, err > -1 && err < sys_nerr ?
111                     sys_errlist[err] : "unknown" );
112                 ldap_pvt_thread_mutex_unlock( &li->li_dbcache_mutex );
113                 return( NULL );
114         }
115         li->li_dbcache[i].dbc_name = ch_strdup( buf );
116         li->li_dbcache[i].dbc_refcnt = 1;
117         li->li_dbcache[i].dbc_lastref = curtime;
118 #ifdef HAVE_ST_BLKSIZE
119         if ( stat( buf, &st ) == 0 ) {
120                 li->li_dbcache[i].dbc_blksize = st.st_blksize;
121         } else
122 #endif
123         {
124                 li->li_dbcache[i].dbc_blksize = DEFAULT_BLOCKSIZE;
125         }
126         li->li_dbcache[i].dbc_maxids = (li->li_dbcache[i].dbc_blksize /
127             sizeof(ID)) - ID_BLOCK_IDS_OFFSET;
128         li->li_dbcache[i].dbc_maxindirect = (SLAPD_LDBM_MIN_MAXIDS /
129             li->li_dbcache[i].dbc_maxids) + 1;
130
131         Debug( LDAP_DEBUG_ARGS,
132             "ldbm_cache_open (blksize %ld) (maxids %d) (maxindirect %d)\n",
133             li->li_dbcache[i].dbc_blksize, li->li_dbcache[i].dbc_maxids,
134             li->li_dbcache[i].dbc_maxindirect );
135         Debug( LDAP_DEBUG_TRACE, "<= ldbm_cache_open (opened %d)\n", i, 0, 0 );
136         ldap_pvt_thread_mutex_unlock( &li->li_dbcache_mutex );
137         return( &li->li_dbcache[i] );
138 }
139
140 void
141 ldbm_cache_close( Backend *be, DBCache *db )
142 {
143         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
144
145         if( li->li_dbwritesync ) {
146                 ldbm_sync( db->dbc_db );
147         }
148
149         ldap_pvt_thread_mutex_lock( &li->li_dbcache_mutex );
150         if ( --db->dbc_refcnt == 0 ) {
151                 ldap_pvt_thread_cond_signal( &li->li_dbcache_cv );
152         }
153         ldap_pvt_thread_mutex_unlock( &li->li_dbcache_mutex );
154 }
155
156 void
157 ldbm_cache_really_close( Backend *be, DBCache *db )
158 {
159         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
160
161         ldap_pvt_thread_mutex_lock( &li->li_dbcache_mutex );
162         if ( --db->dbc_refcnt == 0 ) {
163                 ldap_pvt_thread_cond_signal( &li->li_dbcache_cv );
164                 ldbm_close( db->dbc_db );
165                 free( db->dbc_name );
166                 db->dbc_name = NULL;
167         }
168         ldap_pvt_thread_mutex_unlock( &li->li_dbcache_mutex );
169 }
170
171 void
172 ldbm_cache_flush_all( Backend *be )
173 {
174         struct ldbminfo *li = (struct ldbminfo *) be->be_private;
175         int             i;
176
177         ldap_pvt_thread_mutex_lock( &li->li_dbcache_mutex );
178         for ( i = 0; i < MAXDBCACHE; i++ ) {
179                 if ( li->li_dbcache[i].dbc_name != NULL ) {
180                         Debug( LDAP_DEBUG_TRACE, "ldbm flushing db (%s)\n",
181                             li->li_dbcache[i].dbc_name, 0, 0 );
182                         ldbm_sync( li->li_dbcache[i].dbc_db );
183                         if ( li->li_dbcache[i].dbc_refcnt != 0 ) {
184                                 Debug( LDAP_DEBUG_TRACE,
185                                        "refcnt = %d, couldn't close db (%s)\n",
186                                        li->li_dbcache[i].dbc_refcnt,
187                                        li->li_dbcache[i].dbc_name, 0 );
188                         } else {
189                                 Debug( LDAP_DEBUG_TRACE,
190                                        "ldbm closing db (%s)\n",
191                                        li->li_dbcache[i].dbc_name, 0, 0 );
192                                 ldap_pvt_thread_cond_signal( &li->li_dbcache_cv );
193                                 ldbm_close( li->li_dbcache[i].dbc_db );
194                                 free( li->li_dbcache[i].dbc_name );
195                                 li->li_dbcache[i].dbc_name = NULL;
196                         }
197                 }
198         }
199         ldap_pvt_thread_mutex_unlock( &li->li_dbcache_mutex );
200 }
201
202 Datum
203 ldbm_cache_fetch(
204     DBCache     *db,
205     Datum               key
206 )
207 {
208         Datum   data;
209
210         return ldbm_fetch( db->dbc_db, key );
211
212         return( data );
213 }
214
215 int
216 ldbm_cache_store(
217     DBCache     *db,
218     Datum               key,
219     Datum               data,
220     int                 flags
221 )
222 {
223         int     rc;
224
225 #ifdef LDBM_DEBUG
226         Statslog( LDAP_DEBUG_STATS,
227                 "=> ldbm_cache_store(): key.dptr=%s, key.dsize=%d\n",
228                 key.dptr, key.dsize, 0, 0, 0 );
229
230         Statslog( LDAP_DEBUG_STATS,
231                 "=> ldbm_cache_store(): key.dptr=0x%08x, data.dptr=0x%0 8x\n",
232                 key.dptr, data.dptr, 0, 0, 0 );
233
234         Statslog( LDAP_DEBUG_STATS,
235                 "=> ldbm_cache_store(): data.dptr=%s, data.dsize=%d\n",
236                 data.dptr, data.dsize, 0, 0, 0 );
237
238         Statslog( LDAP_DEBUG_STATS,
239                 "=> ldbm_cache_store(): flags=0x%08x\n",
240                 flags, 0, 0, 0, 0 );
241 #endif /* LDBM_DEBUG */
242
243         rc = ldbm_store( db->dbc_db, key, data, flags );
244
245         return( rc );
246 }
247
248 int
249 ldbm_cache_delete(
250     DBCache     *db,
251     Datum               key
252 )
253 {
254         int     rc;
255
256         rc = ldbm_delete( db->dbc_db, key );
257
258         return( rc );
259 }