openldap/libraries/liblmdb/mtest2.c

118 lines
3.0 KiB
C
Raw Normal View History

2011-08-12 04:43:01 +08:00
/* mtest2.c - memory-mapped database tester/toy */
2011-08-11 15:33:27 +08:00
/*
* Copyright 2011 Howard Chu, Symas Corp.
* 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>.
*/
2011-08-12 04:43:01 +08:00
/* Just like mtest.c, but using a subDB instead of the main DB */
2011-08-11 15:33:27 +08:00
#define _XOPEN_SOURCE 500 /* srandom(), random() */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "lmdb.h"
2011-08-11 15:33:27 +08:00
int main(int argc,char * argv[])
{
int i = 0, j = 0, rc;
MDB_env *env;
MDB_dbi dbi;
MDB_val key, data;
MDB_txn *txn;
MDB_stat mst;
2011-08-11 19:46:14 +08:00
MDB_cursor *cursor;
2011-08-11 15:33:27 +08:00
int count;
int *values;
char sval[32];
srandom(time(NULL));
count = (random()%384) + 64;
values = (int *)malloc(count*sizeof(int));
for(i = 0;i<count;i++) {
values[i] = random()%1024;
}
2011-08-12 12:14:29 +08:00
rc = mdb_env_create(&env);
rc = mdb_env_set_mapsize(env, 10485760);
rc = mdb_env_set_maxdbs(env, 4);
rc = mdb_env_open(env, "./testdb", MDB_FIXEDMAP|MDB_NOSYNC, 0664);
2011-09-21 03:57:05 +08:00
rc = mdb_txn_begin(env, NULL, 0, &txn);
2011-08-11 15:33:27 +08:00
rc = mdb_open(txn, "id1", MDB_CREATE, &dbi);
key.mv_size = sizeof(int);
key.mv_data = sval;
data.mv_size = sizeof(sval);
data.mv_data = sval;
printf("Adding %d values\n", count);
for (i=0;i<count;i++) {
sprintf(sval, "%03x %d foo bar", values[i], values[i]);
rc = mdb_put(txn, dbi, &key, &data, MDB_NOOVERWRITE);
if (rc) j++;
}
if (j) printf("%d duplicates skipped\n", j);
rc = mdb_txn_commit(txn);
2011-08-12 12:14:29 +08:00
rc = mdb_env_stat(env, &mst);
2011-08-11 15:33:27 +08:00
2011-09-21 03:57:05 +08:00
rc = mdb_txn_begin(env, NULL, 1, &txn);
2011-08-11 15:33:27 +08:00
rc = mdb_cursor_open(txn, dbi, &cursor);
while ((rc = mdb_cursor_get(cursor, &key, &data, MDB_NEXT)) == 0) {
printf("key: %p %.*s, data: %p %.*s\n",
key.mv_data, (int) key.mv_size, (char *) key.mv_data,
data.mv_data, (int) data.mv_size, (char *) data.mv_data);
}
mdb_cursor_close(cursor);
mdb_txn_abort(txn);
j=0;
key.mv_data = sval;
for (i= count - 1; i > -1; i-= (random()%5)) {
j++;
txn=NULL;
2011-09-21 03:57:05 +08:00
rc = mdb_txn_begin(env, NULL, 0, &txn);
2011-08-11 15:33:27 +08:00
sprintf(sval, "%03x ", values[i]);
rc = mdb_del(txn, dbi, &key, NULL);
2011-08-11 15:33:27 +08:00
if (rc) {
j--;
mdb_txn_abort(txn);
} else {
rc = mdb_txn_commit(txn);
}
}
free(values);
printf("Deleted %d values\n", j);
2011-08-12 12:14:29 +08:00
rc = mdb_env_stat(env, &mst);
2011-09-21 03:57:05 +08:00
rc = mdb_txn_begin(env, NULL, 1, &txn);
2011-08-11 15:33:27 +08:00
rc = mdb_cursor_open(txn, dbi, &cursor);
printf("Cursor next\n");
while ((rc = mdb_cursor_get(cursor, &key, &data, MDB_NEXT)) == 0) {
printf("key: %.*s, data: %.*s\n",
(int) key.mv_size, (char *) key.mv_data,
(int) data.mv_size, (char *) data.mv_data);
}
printf("Cursor prev\n");
while ((rc = mdb_cursor_get(cursor, &key, &data, MDB_PREV)) == 0) {
printf("key: %.*s, data: %.*s\n",
(int) key.mv_size, (char *) key.mv_data,
(int) data.mv_size, (char *) data.mv_data);
}
mdb_cursor_close(cursor);
mdb_close(env, dbi);
2011-08-11 15:33:27 +08:00
mdb_txn_abort(txn);
2011-08-12 12:14:29 +08:00
mdb_env_close(env);
2011-08-11 15:33:27 +08:00
return 0;
}