Post 2.46-rc0 batch #1
[git.git] / reftable / reftable-iterator.h
blobe3bf688d53dfe91373d9301e710598a389c222a7
1 /*
2 Copyright 2020 Google LLC
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
9 #ifndef REFTABLE_ITERATOR_H
10 #define REFTABLE_ITERATOR_H
12 #include "reftable-record.h"
14 struct reftable_iterator_vtable;
16 /* iterator is the generic interface for walking over data stored in a
17 * reftable.
19 struct reftable_iterator {
20 struct reftable_iterator_vtable *ops;
21 void *iter_arg;
25 * Position the iterator at the ref record with given name such that the next
26 * call to `next_ref()` would yield the record.
28 int reftable_iterator_seek_ref(struct reftable_iterator *it,
29 const char *name);
31 /* reads the next reftable_ref_record. Returns < 0 for error, 0 for OK and > 0:
32 * end of iteration.
34 int reftable_iterator_next_ref(struct reftable_iterator *it,
35 struct reftable_ref_record *ref);
38 * Position the iterator at the log record with given name and update index
39 * such that the next call to `next_log()` would yield the record.
41 int reftable_iterator_seek_log_at(struct reftable_iterator *it,
42 const char *name, uint64_t update_index);
45 * Position the iterator at the newest log record with given name such that the
46 * next call to `next_log()` would yield the record.
48 int reftable_iterator_seek_log(struct reftable_iterator *it,
49 const char *name);
51 /* reads the next reftable_log_record. Returns < 0 for error, 0 for OK and > 0:
52 * end of iteration.
54 int reftable_iterator_next_log(struct reftable_iterator *it,
55 struct reftable_log_record *log);
57 /* releases resources associated with an iterator. */
58 void reftable_iterator_destroy(struct reftable_iterator *it);
60 #endif