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
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
19 struct reftable_iterator
{
20 struct reftable_iterator_vtable
*ops
;
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
,
31 /* reads the next reftable_ref_record. Returns < 0 for error, 0 for OK and > 0:
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
,
51 /* reads the next reftable_log_record. Returns < 0 for error, 0 for OK and > 0:
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
);