]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldbm/nextid.c
Change slapd/delete stats message for consistency.
[openldap] / servers / slapd / back-ldbm / nextid.c
index 63c7ed4d89e62cfbd146dea13c5dced424ab5825..25841ca86d9fdef58247e9c85c8095ef987619c7 100644 (file)
 #include "slap.h"
 #include "back-ldbm.h"
 
+static ID
+next_id_read( Backend *be )
+{
+       struct ldbminfo *li = (struct ldbminfo *) be->be_private;
+       ID      id;
+       char    buf[20];
+       char*   file = li->li_nextid_file; 
+       FILE*   fp;
+
+       if ( (fp = fopen( file, "r" )) == NULL ) {
+               Debug( LDAP_DEBUG_ANY,
+                   "next_id_read: could not open \"%s\"\n",
+                   file, 0, 0 );
+               return NOID;
+       }
+
+       if ( fgets( buf, sizeof(buf), fp ) == NULL ) {
+               Debug( LDAP_DEBUG_ANY,
+                  "next_id_read: could not fgets nextid from \"%s\"\n",
+                   file, 0, 0 );
+               fclose( fp );
+               return NOID;
+       }
+
+       id = atol( buf );
+       fclose( fp );
+
+       if(id < 1) {
+               Debug( LDAP_DEBUG_ANY,
+                       "next_id_read %lu: atol(%s) return non-positive integer\n",
+                       id, buf, 0 );
+               return NOID;
+       }
+
+       return id;
+}
+
+static int
+next_id_write( Backend *be, ID id )
+{
+       struct ldbminfo *li = (struct ldbminfo *) be->be_private;
+       char    buf[20];
+       char*   file = li->li_nextid_file; 
+       FILE*   fp;
+       int             rc;
+
+       if ( (fp = fopen( file, "w" )) == NULL ) {
+               Debug( LDAP_DEBUG_ANY, "next_id_write(%lu): could not open \"%s\"\n",
+                   id, file, 0 );
+               return -1;
+       } 
+
+       rc = 0;
+
+       if ( fprintf( fp, "%ld\n", id ) == EOF ) {
+               Debug( LDAP_DEBUG_ANY, "next_id_write(%lu): cannot fprintf\n",
+                   id, 0, 0 );
+               rc = -1;
+       }
+
+       if( fclose( fp ) != 0 ) {
+               Debug( LDAP_DEBUG_ANY, "next_id_write %lu: cannot fclose\n",
+                   id, 0, 0 );
+               rc = -1;
+       }
+
+       return rc;
+}
+
+int
+next_id_save( Backend *be )
+{
+       struct ldbminfo *li = (struct ldbminfo *) be->be_private;
+       ID id = next_id_get( be );
+       int rc = next_id_write( be, id );
+
+       if (rc == 0) {
+               li->li_nextid_wrote = id;
+       }
+
+       return rc;
+}
+
 ID
 next_id( Backend *be )
 {
        struct ldbminfo *li = (struct ldbminfo *) be->be_private;
-       char            buf[MAXPATHLEN];
-       char            buf2[20];
-       FILE            *fp;
        ID              id;
 
-       sprintf( buf, "%s/NEXTID", li->li_directory );
-
-       pthread_mutex_lock( &li->li_nextid_mutex );
+       ldap_pvt_thread_mutex_lock( &li->li_nextid_mutex );
 
        /* first time in here since startup - try to read the nexid */
-       if ( li->li_nextid == -1 ) {
-               if ( (fp = fopen( buf, "r" )) == NULL ) {
-                       Debug( LDAP_DEBUG_ANY,
-                           "next_id %lu: could not open \"%s\"\n",
-                           li->li_nextid, buf, 0 );
-                       li->li_nextid = 1;
+       if ( li->li_nextid == NOID ) {
+               li->li_nextid = next_id_read( be );
 
-               } else {
-                       if ( fgets( buf2, sizeof(buf2), fp ) != NULL ) {
-                               li->li_nextid = atol( buf2 );
-
-                               if(li->li_nextid < 1) {
-                                       /* protect against bad data */
-                                       Debug( LDAP_DEBUG_ANY,
-                                       "next_id %lu: atol(%s) return non-positive integer\n",
-                                               li->li_nextid, buf2, 0 );
-                                       li->li_nextid = 1;
-                               }
-
-                       } else {
-                               Debug( LDAP_DEBUG_ANY,
-                          "next_id %lu: could not fgets nextid from \"%s\"\n",
-                                   li->li_nextid, buf2, 0 );
-                               li->li_nextid = 1;
-                       }
-
-                       fclose( fp );
+               if ( li->li_nextid == NOID ) {
+                       li->li_nextid = 1;
                }
+
+#if SLAPD_NEXTID_CHUNK > 1
+               li->li_nextid_wrote = li->li_nextid;
+#endif
        }
 
        id = li->li_nextid++;
 
-       if ( (fp = fopen( buf, "w" )) == NULL ) {
-               Debug( LDAP_DEBUG_ANY, "next_id %lu: could not open \"%s\"\n",
-                   li->li_nextid, buf, 0 );
-       } else {
-               if ( fprintf( fp, "%ld\n", li->li_nextid ) == EOF ) {
-                       Debug( LDAP_DEBUG_ANY, "next_id %lu: cannot fprintf\n",
-                           li->li_nextid, 0, 0 );
-               }
-               if( fclose( fp ) != 0 ) {
-                       Debug( LDAP_DEBUG_ANY, "next_id %lu: cannot fclose\n",
-                           li->li_nextid, 0, 0 );
-               }
+#if SLAPD_NEXTID_CHUNK > 1
+       if ( li->li_nextid > li->li_nextid_wrote ) {
+               li->li_nextid_wrote += SLAPD_NEXTID_CHUNK;
+               (void) next_id_write( be, li->li_nextid_wrote );
        }
+#else
+       (void) next_id_write( be, li->li_nextid );
+#endif
 
-       pthread_mutex_unlock( &li->li_nextid_mutex );
+       ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );
        return( id );
 }
 
 void
 next_id_return( Backend *be, ID id )
 {
+#ifdef SLAPD_NEXTID_RETURN
        struct ldbminfo *li = (struct ldbminfo *) be->be_private;
-       char            buf[MAXPATHLEN];
-       FILE            *fp;
 
-       pthread_mutex_lock( &li->li_nextid_mutex );
+       ldap_pvt_thread_mutex_lock( &li->li_nextid_mutex );
 
        if ( id != li->li_nextid - 1 ) {
-               pthread_mutex_unlock( &li->li_nextid_mutex );
+               ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );
                return;
        }
 
-       sprintf( buf, "%s/NEXTID", li->li_directory );
-
        li->li_nextid--;
-       if ( (fp = fopen( buf, "w" )) == NULL ) {
-               Debug( LDAP_DEBUG_ANY,
-                 "next_id_return of %lu: could not open \"%s\" next id %lu\n",
-                   id, buf, li->li_nextid );
-       } else {
-               if ( fprintf( fp, "%ld\n", li->li_nextid ) == EOF ) {
-                       Debug( LDAP_DEBUG_ANY,
-                 "next_id_return of %lu: cannot fprintf \"%s\" next id %lu\n",
-                           id, buf, li->li_nextid );
-               }
-               if( fclose( fp ) != 0 ) {
-                       Debug( LDAP_DEBUG_ANY,
-                 "next_id_return of %lu: cannot fclose \"%s\" next id %lu\n",
-                           id, buf, li->li_nextid );
-               }
-       }
-       pthread_mutex_unlock( &li->li_nextid_mutex );
+
+#if !( SLAPD_NEXTID_CHUCK > 1 )
+       (void) next_id_write( be, li->li_nextid );
+#endif
+
+       ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );
+#endif
 }
 
 ID
 next_id_get( Backend *be )
 {
        struct ldbminfo *li = (struct ldbminfo *) be->be_private;
-       char            buf[MAXPATHLEN];
-       char            buf2[20];
-       FILE            *fp;
        ID              id;
 
-       sprintf( buf, "%s/NEXTID", li->li_directory );
-
-       pthread_mutex_lock( &li->li_nextid_mutex );
+       ldap_pvt_thread_mutex_lock( &li->li_nextid_mutex );
 
        /* first time in here since startup - try to read the nexid */
-       if ( li->li_nextid == -1 ) {
-               if ( (fp = fopen( buf, "r" )) == NULL ) {
-                       Debug( LDAP_DEBUG_ANY,
-                           "next_id_get %lu: could not open \"%s\"\n",
-                           li->li_nextid, buf, 0 );
-                       li->li_nextid = 1;
+       if ( li->li_nextid == NOID ) {
+               li->li_nextid = next_id_read( be );
 
-               } else {
-                       if ( fgets( buf2, sizeof(buf2), fp ) != NULL ) {
-                               li->li_nextid = atol( buf2 );
-
-                               if(li->li_nextid < 1) {
-                                       /* protect against bad data */
-                                       Debug( LDAP_DEBUG_ANY,
-                                       "next_id_get %lu: atol(%s) return non-positive integer\n",
-                                               li->li_nextid, buf2, 0 );
-                                       li->li_nextid = 1;
-                               }
-
-                       } else {
-                               Debug( LDAP_DEBUG_ANY,
-                           "next_id_get %lu: cannot fgets nextid from \"%s\"\n",
-                                   li->li_nextid, buf2, 0 );
-                               li->li_nextid = 1;
-                       }
-                       fclose( fp );
+               if ( li->li_nextid == NOID ) {
+                       li->li_nextid = 1;
                }
+
+#if SLAPD_NEXTID_CHUNK > 1
+               li->li_nextid_wrote = li->li_nextid;
+#endif
        }
 
        id = li->li_nextid;
 
-       pthread_mutex_unlock( &li->li_nextid_mutex );
+       ldap_pvt_thread_mutex_unlock( &li->li_nextid_mutex );
 
        return( id );
 }