summaryrefslogtreecommitdiff
path: root/reftable/reftable-fsck.h
blob: 007a392cf906c7a69fdafc883deb8cc8ff386d49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef REFTABLE_FSCK_H
#define REFTABLE_FSCK_H

#include "reftable-stack.h"

enum reftable_fsck_error {
	/* Invalid table name */
	REFTABLE_FSCK_ERROR_TABLE_NAME = 0,
	/* Used for bounds checking, must be last */
	REFTABLE_FSCK_MAX_VALUE,
};

/* Represents an individual error encountered during the FSCK checks. */
struct reftable_fsck_info {
	enum reftable_fsck_error error;
	const char *msg;
	const char *path;
};

typedef int reftable_fsck_report_fn(struct reftable_fsck_info *info,
				    void *cb_data);
typedef void reftable_fsck_verbose_fn(const char *msg, void *cb_data);

/*
 * Given a reftable stack, perform consistency checks on the stack.
 *
 * If an issue is encountered, the issue is reported to the callee via the
 * provided 'report_fn'. If the issue is non-recoverable the flow will not
 * continue. If it is recoverable, the flow will continue and further issues
 * will be reported as identified.
 *
 * The 'verbose_fn' will be invoked to provide verbose information about
 * the progress and state of the consistency checks.
 */
int reftable_fsck_check(struct reftable_stack *stack,
			reftable_fsck_report_fn report_fn,
			reftable_fsck_verbose_fn verbose_fn,
			void *cb_data);

#endif /* REFTABLE_FSCK_H */