]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/traverse.c
tdb2: remove zero-length write optimization.
[ccan] / ccan / tdb2 / traverse.c
1  /*
2    Trivial Database 2: traverse function.
3    Copyright (C) Rusty Russell 2010
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 3 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 */
18 #include "private.h"
19 #include <ccan/likely/likely.h>
20
21 int64_t tdb_traverse(struct tdb_context *tdb, tdb_traverse_func fn, void *p)
22 {
23         enum TDB_ERROR ecode;
24         struct traverse_info tinfo;
25         struct tdb_data k, d;
26         int64_t count = 0;
27
28         k.dptr = NULL;
29         for (ecode = first_in_hash(tdb, &tinfo, &k, &d.dsize);
30              ecode == TDB_SUCCESS;
31              ecode = next_in_hash(tdb, &tinfo, &k, &d.dsize)) {
32                 d.dptr = k.dptr + k.dsize;
33                 
34                 count++;
35                 if (fn && fn(tdb, k, d, p)) {
36                         free(k.dptr);
37                         return count;
38                 }
39                 free(k.dptr);
40         }
41
42         if (ecode != TDB_ERR_NOEXIST) {
43                 return ecode;
44         }
45         return count;
46 }
47         
48 enum TDB_ERROR tdb_firstkey(struct tdb_context *tdb, struct tdb_data *key)
49 {
50         struct traverse_info tinfo;
51
52         return first_in_hash(tdb, &tinfo, key, NULL);
53 }
54
55 /* We lock twice, not very efficient.  We could keep last key & tinfo cached. */
56 enum TDB_ERROR tdb_nextkey(struct tdb_context *tdb, struct tdb_data *key)
57 {
58         struct traverse_info tinfo;
59         struct hash_info h;
60         struct tdb_used_record rec;
61
62         tinfo.prev = find_and_lock(tdb, *key, F_RDLCK, &h, &rec, &tinfo);
63         free(key->dptr);
64         if (TDB_OFF_IS_ERR(tinfo.prev)) {
65                 return tinfo.prev;
66         }
67         tdb_unlock_hashes(tdb, h.hlock_start, h.hlock_range, F_RDLCK);
68
69         return next_in_hash(tdb, &tinfo, key, NULL);
70 }