assert( text->bv_val );
assert( text->bv_val[0] == '\0' );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ARGS,
+ "=> bdb_tool_entry_put( %ld, \"%s\" )\n",
+ (long) e->e_id, e->e_dn ));
+#else
Debug( LDAP_DEBUG_TRACE, "=> bdb_tool_entry_put( %ld, \"%s\" )\n",
(long) e->e_id, e->e_dn, 0 );
+#endif
rc = TXN_BEGIN( bdb->bi_dbenv, NULL, &tid,
bdb->bi_db_opflags );
snprintf( text->bv_val, text->bv_len,
"txn_begin failed: %s (%d)",
db_strerror(rc), rc );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_put: %s\n", text->bv_val ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_put: %s\n",
text->bv_val, 0, 0 );
+#endif
return NOID;
}
snprintf( text->bv_val, text->bv_len,
"next_id failed: %s (%d)",
db_strerror(rc), rc );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_put: %s\n", text->bv_val ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
+#endif
goto done;
}
snprintf( text->bv_val, text->bv_len,
"dn2id_add failed: %s (%d)",
db_strerror(rc), rc );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_put: %s\n", text->bv_val ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
+#endif
goto done;
}
snprintf( text->bv_val, text->bv_len,
"id2entry_add failed: %s (%d)",
db_strerror(rc), rc );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_put: %s\n", text->bv_val ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
+#endif
goto done;
}
snprintf( text->bv_val, text->bv_len,
"index_entry_add failed: %s (%d)",
db_strerror(rc), rc );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_put: %s\n", text->bv_val ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_put: %s\n", text->bv_val, 0, 0 );
+#endif
goto done;
}
snprintf( text->bv_val, text->bv_len,
"txn_commit failed: %s (%d)",
db_strerror(rc), rc );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_put: %s\n", text->bv_val ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_put: %s\n",
text->bv_val, 0, 0 );
+#endif
e->e_id = NOID;
}
snprintf( text->bv_val, text->bv_len,
"txn_aborted! %s (%d)",
db_strerror(rc), rc );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_put: %s\n", text->bv_val ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_put: %s\n",
text->bv_val, 0, 0 );
+#endif
e->e_id = NOID;
}
DB_TXN *tid = NULL;
struct berval pdn;
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ARGS,
+ "=> bdb_tool_entry_reindex( %ld )\n", (long) id ));
+#else
Debug( LDAP_DEBUG_ARGS, "=> bdb_tool_entry_reindex( %ld )\n",
(long) id, 0, 0 );
+#endif
e = bdb_tool_entry_get( be, id );
if( e == NULL ) {
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_DETAIL1,
+ "bdb_tool_entry_reindex:: could not locate id=%ld\n",
+ (long) id ));
+#else
Debug( LDAP_DEBUG_ANY,
"bdb_tool_entry_reindex:: could not locate id=%ld\n",
(long) id, 0, 0 );
+#endif
return -1;
}
rc = TXN_BEGIN( bi->bi_dbenv, NULL, &tid, bi->bi_db_opflags );
if( rc != 0 ) {
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_reindex: txn_begin failed: %s (%d)\n",
+ db_strerror(rc), rc ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_reindex: txn_begin failed: %s (%d)\n",
db_strerror(rc), rc, 0 );
+#endif
goto done;
}
*
*/
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_reindex( %ld, \"%s\" )\n",
+ (long) id, e->e_dn ));
+#else
Debug( LDAP_DEBUG_TRACE, "=> bdb_tool_entry_reindex( %ld, \"%s\" )\n",
(long) id, e->e_dn, 0 );
+#endif
/* add dn2id indices */
if ( be_issuffix( be, &e->e_nname ) ) {
}
rc = bdb_dn2id_add( be, tid, &pdn, e );
if( rc != 0 && rc != DB_KEYEXIST ) {
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_reindex: dn2id_add failed: %s (%d)\n",
+ db_strerror(rc), rc ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_reindex: dn2id_add failed: %s (%d)\n",
db_strerror(rc), rc, 0 );
+#endif
goto done;
}
if( rc == 0 ) {
rc = TXN_COMMIT( tid, 0 );
if( rc != 0 ) {
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_ERR,
+ "=> bdb_tool_entry_reindex: txn_commit failed: %s (%d)\n",
+ db_strerror(rc), rc ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_reindex: txn_commit failed: %s (%d)\n",
db_strerror(rc), rc, 0 );
+#endif
e->e_id = NOID;
}
} else {
TXN_ABORT( tid );
+#ifdef NEW_LOGGING
+ LDAP_LOG (( "tools", LDAP_LEVEL_DETAIL1,
+ "=> bdb_tool_entry_reindex: txn_aborted! %s (%d)\n",
+ db_strerror(rc), rc ));
+#else
Debug( LDAP_DEBUG_ANY,
"=> bdb_tool_entry_reindex: txn_aborted! %s (%d)\n",
db_strerror(rc), rc, 0 );
+#endif
e->e_id = NOID;
}