1 #include <ccan/tdb2/tdb.c>
2 #include <ccan/tdb2/free.c>
3 #include <ccan/tdb2/lock.c>
4 #include <ccan/tdb2/io.c>
5 #include <ccan/tdb2/hash.c>
6 #include <ccan/tdb2/transaction.c>
7 #include <ccan/tdb2/check.c>
8 #include <ccan/tap/tap.h>
11 static uint64_t myhash(const void *key, size_t len, uint64_t seed, void *priv)
13 return *(uint64_t *)key;
16 static void add_bits(uint64_t *val, unsigned new, unsigned new_bits,
20 *val |= ((uint64_t)new << (64 - *done));
23 static uint64_t make_key(unsigned topgroup, unsigned topbucket,
24 unsigned subgroup1, unsigned subbucket1,
25 unsigned subgroup2, unsigned subbucket2)
30 add_bits(&key, topgroup, TDB_TOPLEVEL_HASH_BITS - TDB_HASH_GROUP_BITS,
32 add_bits(&key, topbucket, TDB_HASH_GROUP_BITS, &done);
33 add_bits(&key, subgroup1, TDB_SUBLEVEL_HASH_BITS - TDB_HASH_GROUP_BITS,
35 add_bits(&key, subbucket1, TDB_HASH_GROUP_BITS, &done);
36 add_bits(&key, subgroup2, TDB_SUBLEVEL_HASH_BITS - TDB_HASH_GROUP_BITS,
38 add_bits(&key, subbucket2, TDB_HASH_GROUP_BITS, &done);
42 int main(int argc, char *argv[])
45 struct tdb_context *tdb;
47 struct tdb_used_record rec;
48 struct tdb_data key = { (unsigned char *)&kdata, sizeof(kdata) };
49 struct tdb_data dbuf = { (unsigned char *)&kdata, sizeof(kdata) };
50 union tdb_attribute hattr = { .hash = { .base = { TDB_ATTRIBUTE_HASH },
51 .hash_fn = myhash } };
52 int flags[] = { TDB_INTERNAL, TDB_DEFAULT, TDB_NOMMAP,
53 TDB_INTERNAL|TDB_CONVERT, TDB_CONVERT,
54 TDB_NOMMAP|TDB_CONVERT,
57 hattr.base.next = &tap_log_attr;
59 plan_tests(sizeof(flags) / sizeof(flags[0])
60 * (9 + (20 + 2 * ((1 << TDB_HASH_GROUP_BITS) - 2))
61 * (1 << TDB_HASH_GROUP_BITS)) + 1);
62 for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
65 tdb = tdb_open("run-04-basichash.tdb", flags[i],
66 O_RDWR|O_CREAT|O_TRUNC, 0600, &hattr);
72 for (j = 0; j < (1 << TDB_HASH_GROUP_BITS); j++) {
73 kdata = make_key(0, j, 0, 0, 0, 0);
74 ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0);
76 ok1(tdb_check(tdb, NULL, NULL) == 0);
78 /* Check first still exists. */
79 kdata = make_key(0, 0, 0, 0, 0, 0);
80 ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL) != 0);
81 /* Should have created correct hash. */
82 ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize));
83 /* Should have located space in group 0, bucket 0. */
84 ok1(h.group_start == offsetof(struct tdb_header, hashtable));
85 ok1(h.home_bucket == 0);
86 ok1(h.found_bucket == 0);
87 ok1(h.hash_used == TDB_TOPLEVEL_HASH_BITS);
88 /* Entire group should be full! */
89 for (j = 0; j < (1 << TDB_HASH_GROUP_BITS); j++)
92 ok1(tdb_unlock_hashes(tdb, h.hlock_start, h.hlock_range,
95 /* Now, add one more to each should expand (that) bucket. */
96 for (j = 0; j < (1 << TDB_HASH_GROUP_BITS); j++) {
98 kdata = make_key(0, j, 0, 1, 0, 0);
99 ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0);
100 ok1(tdb_check(tdb, NULL, NULL) == 0);
102 ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL));
103 /* Should have created correct hash. */
104 ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize));
105 /* Should have moved to subhash */
106 ok1(h.group_start >= sizeof(struct tdb_header));
107 ok1(h.home_bucket == 1);
108 ok1(h.found_bucket == 1);
109 ok1(h.hash_used == TDB_TOPLEVEL_HASH_BITS
110 + TDB_SUBLEVEL_HASH_BITS);
111 ok1(tdb_unlock_hashes(tdb, h.hlock_start, h.hlock_range,
114 /* Keep adding, make it expand again. */
115 for (k = 2; k < (1 << TDB_HASH_GROUP_BITS); k++) {
116 kdata = make_key(0, j, 0, k, 0, 0);
117 ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0);
118 ok1(tdb_check(tdb, NULL, NULL) == 0);
121 /* This should tip it over to sub-sub-hash. */
122 kdata = make_key(0, j, 0, 0, 0, 1);
123 ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0);
124 ok1(tdb_check(tdb, NULL, NULL) == 0);
126 ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL));
127 /* Should have created correct hash. */
128 ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize));
129 /* Should have moved to subhash */
130 ok1(h.group_start >= sizeof(struct tdb_header));
131 ok1(h.home_bucket == 1);
132 ok1(h.found_bucket == 1);
133 ok1(h.hash_used == TDB_TOPLEVEL_HASH_BITS
134 + TDB_SUBLEVEL_HASH_BITS + TDB_SUBLEVEL_HASH_BITS);
135 ok1(tdb_unlock_hashes(tdb, h.hlock_start, h.hlock_range,
141 ok1(tap_log_messages == 0);
142 return exit_status();