/* Copyright 2020 Google LLC Use of this source code is governed by a BSD-style license that can be found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd */ #ifndef REFTABLE_RECORD_H #define REFTABLE_RECORD_H #include "hash.h" #include <stdint.h> /* * Basic data types * * Reftables store the state of each ref in struct reftable_ref_record, and they * store a sequence of reflog updates in struct reftable_log_record. */ /* reftable_ref_record holds a ref database entry target_value */ struct reftable_ref_record { … }; /* Returns the first hash, or NULL if `rec` is not of type * REFTABLE_REF_VAL1 or REFTABLE_REF_VAL2. */ const unsigned char *reftable_ref_record_val1(const struct reftable_ref_record *rec); /* Returns the second hash, or NULL if `rec` is not of type * REFTABLE_REF_VAL2. */ const unsigned char *reftable_ref_record_val2(const struct reftable_ref_record *rec); /* returns whether 'ref' represents a deletion */ int reftable_ref_record_is_deletion(const struct reftable_ref_record *ref); /* frees and nulls all pointer values inside `ref`. */ void reftable_ref_record_release(struct reftable_ref_record *ref); /* returns whether two reftable_ref_records are the same. Useful for testing. */ int reftable_ref_record_equal(const struct reftable_ref_record *a, const struct reftable_ref_record *b, int hash_size); /* reftable_log_record holds a reflog entry */ struct reftable_log_record { … }; /* returns whether 'ref' represents the deletion of a log record. */ int reftable_log_record_is_deletion(const struct reftable_log_record *log); /* frees and nulls all pointer values. */ void reftable_log_record_release(struct reftable_log_record *log); /* returns whether two records are equal. Useful for testing. */ int reftable_log_record_equal(const struct reftable_log_record *a, const struct reftable_log_record *b, int hash_size); #endif