~ubuntu-branches/ubuntu/wily/lmdb/wily

« back to all changes in this revision

Viewing changes to libraries/liblmdb/mtest.c

  • Committer: Package Import Robot
  • Author(s): Ondřej Surý
  • Date: 2015-07-01 13:55:39 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20150701135539-dde820kbwioyq0re
Tags: 0.9.15-1
* New upstream version 0.9.15
* Update patched upstream Makefile
* Make the builds reproducible by setting HTML_TIMESTAMP=NO in Doxyfile
  (Courtesy of Maria Valentina Marin) (Closes: #789087)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* mtest.c - memory-mapped database tester/toy */
2
2
/*
3
 
 * Copyright 2011-2014 Howard Chu, Symas Corp.
 
3
 * Copyright 2011-2015 Howard Chu, Symas Corp.
4
4
 * All rights reserved.
5
5
 *
6
6
 * Redistribution and use in source and binary forms, with or without
45
45
            }
46
46
    
47
47
                E(mdb_env_create(&env));
 
48
                E(mdb_env_set_maxreaders(env, 1));
48
49
                E(mdb_env_set_mapsize(env, 10485760));
49
50
                E(mdb_env_open(env, "./testdb", MDB_FIXEDMAP /*|MDB_NOSYNC*/, 0664));
 
51
 
50
52
                E(mdb_txn_begin(env, NULL, 0, &txn));
51
 
                E(mdb_open(txn, NULL, 0, &dbi));
 
53
                E(mdb_dbi_open(txn, NULL, 0, &dbi));
52
54
   
53
55
                key.mv_size = sizeof(int);
54
56
                key.mv_data = sval;
55
 
                data.mv_size = sizeof(sval);
56
 
                data.mv_data = sval;
57
57
 
58
58
                printf("Adding %d values\n", count);
59
59
            for (i=0;i<count;i++) {     
60
60
                        sprintf(sval, "%03x %d foo bar", values[i], values[i]);
 
61
                        /* Set <data> in each iteration, since MDB_NOOVERWRITE may modify it */
 
62
                        data.mv_size = sizeof(sval);
 
63
                        data.mv_data = sval;
61
64
                        if (RES(MDB_KEYEXIST, mdb_put(txn, dbi, &key, &data, MDB_NOOVERWRITE))) {
62
65
                                j++;
63
66
                                data.mv_size = sizeof(sval);
68
71
                E(mdb_txn_commit(txn));
69
72
                E(mdb_env_stat(env, &mst));
70
73
 
71
 
                E(mdb_txn_begin(env, NULL, 1, &txn));
 
74
                E(mdb_txn_begin(env, NULL, MDB_RDONLY, &txn));
72
75
                E(mdb_cursor_open(txn, dbi, &cursor));
73
76
                while ((rc = mdb_cursor_get(cursor, &key, &data, MDB_NEXT)) == 0) {
74
77
                        printf("key: %p %.*s, data: %p %.*s\n",
97
100
                printf("Deleted %d values\n", j);
98
101
 
99
102
                E(mdb_env_stat(env, &mst));
100
 
                E(mdb_txn_begin(env, NULL, 1, &txn));
 
103
                E(mdb_txn_begin(env, NULL, MDB_RDONLY, &txn));
101
104
                E(mdb_cursor_open(txn, dbi, &cursor));
102
105
                printf("Cursor next\n");
103
106
                while ((rc = mdb_cursor_get(cursor, &key, &data, MDB_NEXT)) == 0) {
128
131
                                (int) key.mv_size,  (char *) key.mv_data,
129
132
                                (int) data.mv_size, (char *) data.mv_data);
130
133
 
 
134
                mdb_cursor_close(cursor);
131
135
                mdb_txn_abort(txn);
132
136
 
133
137
                printf("Deleting with cursor\n");
164
168
                                data.mv_data, (int) data.mv_size, (char *) data.mv_data);
165
169
                }
166
170
                mdb_cursor_close(cursor);
167
 
                mdb_close(env, dbi);
 
171
                mdb_txn_abort(txn);
168
172
 
169
 
                mdb_txn_abort(txn);
 
173
                mdb_dbi_close(env, dbi);
170
174
                mdb_env_close(env);
171
175
 
172
176
        return 0;