
We use the lockfile subsystem to write lockfiles for "tables.list". As with the tempfile subsystem, the lockfile subsystem also hooks into our infrastructure to prune stale locks via atexit(3p) or signal handlers. Furthermore, the lockfile subsystem also handles locking timeouts, which do add quite a bit of logic. Having to reimplement that in the context of Git wouldn't make a whole lot of sense, and it is quite likely that downstream users of the reftable library may have a better idea for how exactly to implement timeouts. So again, provide a thin wrapper for the lockfile subsystem instead such that the compatibility shim is fully self-contained. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
154 lines
3.6 KiB
C
154 lines
3.6 KiB
C
/*
|
|
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
|
|
*/
|
|
|
|
#include "test-lib.h"
|
|
#include "reftable/constants.h"
|
|
#include "reftable/pq.h"
|
|
#include "strbuf.h"
|
|
|
|
static void merged_iter_pqueue_check(const struct merged_iter_pqueue *pq)
|
|
{
|
|
for (size_t i = 1; i < pq->len; i++) {
|
|
size_t parent = (i - 1) / 2;
|
|
check(pq_less(&pq->heap[parent], &pq->heap[i]));
|
|
}
|
|
}
|
|
|
|
static int pq_entry_equal(struct pq_entry *a, struct pq_entry *b)
|
|
{
|
|
return !reftable_record_cmp(a->rec, b->rec) && (a->index == b->index);
|
|
}
|
|
|
|
static void t_pq_record(void)
|
|
{
|
|
struct merged_iter_pqueue pq = { 0 };
|
|
struct reftable_record recs[54];
|
|
size_t N = ARRAY_SIZE(recs) - 1, i;
|
|
char *last = NULL;
|
|
|
|
for (i = 0; i < N; i++) {
|
|
reftable_record_init(&recs[i], BLOCK_TYPE_REF);
|
|
recs[i].u.ref.refname = xstrfmt("%02"PRIuMAX, (uintmax_t)i);
|
|
}
|
|
|
|
i = 1;
|
|
do {
|
|
struct pq_entry e = {
|
|
.rec = &recs[i],
|
|
};
|
|
|
|
merged_iter_pqueue_add(&pq, &e);
|
|
merged_iter_pqueue_check(&pq);
|
|
i = (i * 7) % N;
|
|
} while (i != 1);
|
|
|
|
while (!merged_iter_pqueue_is_empty(pq)) {
|
|
struct pq_entry top = merged_iter_pqueue_top(pq);
|
|
struct pq_entry e = merged_iter_pqueue_remove(&pq);
|
|
merged_iter_pqueue_check(&pq);
|
|
|
|
check(pq_entry_equal(&top, &e));
|
|
check(reftable_record_type(e.rec) == BLOCK_TYPE_REF);
|
|
if (last)
|
|
check_int(strcmp(last, e.rec->u.ref.refname), <, 0);
|
|
last = e.rec->u.ref.refname;
|
|
}
|
|
|
|
for (i = 0; i < N; i++)
|
|
reftable_record_release(&recs[i]);
|
|
merged_iter_pqueue_release(&pq);
|
|
}
|
|
|
|
static void t_pq_index(void)
|
|
{
|
|
struct merged_iter_pqueue pq = { 0 };
|
|
struct reftable_record recs[13];
|
|
char *last = NULL;
|
|
size_t N = ARRAY_SIZE(recs), i;
|
|
|
|
for (i = 0; i < N; i++) {
|
|
reftable_record_init(&recs[i], BLOCK_TYPE_REF);
|
|
recs[i].u.ref.refname = (char *) "refs/heads/master";
|
|
}
|
|
|
|
i = 1;
|
|
do {
|
|
struct pq_entry e = {
|
|
.rec = &recs[i],
|
|
.index = i,
|
|
};
|
|
|
|
merged_iter_pqueue_add(&pq, &e);
|
|
merged_iter_pqueue_check(&pq);
|
|
i = (i * 7) % N;
|
|
} while (i != 1);
|
|
|
|
for (i = N - 1; i > 0; i--) {
|
|
struct pq_entry top = merged_iter_pqueue_top(pq);
|
|
struct pq_entry e = merged_iter_pqueue_remove(&pq);
|
|
merged_iter_pqueue_check(&pq);
|
|
|
|
check(pq_entry_equal(&top, &e));
|
|
check(reftable_record_type(e.rec) == BLOCK_TYPE_REF);
|
|
check_int(e.index, ==, i);
|
|
if (last)
|
|
check_str(last, e.rec->u.ref.refname);
|
|
last = e.rec->u.ref.refname;
|
|
}
|
|
|
|
merged_iter_pqueue_release(&pq);
|
|
}
|
|
|
|
static void t_merged_iter_pqueue_top(void)
|
|
{
|
|
struct merged_iter_pqueue pq = { 0 };
|
|
struct reftable_record recs[13];
|
|
size_t N = ARRAY_SIZE(recs), i;
|
|
|
|
for (i = 0; i < N; i++) {
|
|
reftable_record_init(&recs[i], BLOCK_TYPE_REF);
|
|
recs[i].u.ref.refname = (char *) "refs/heads/master";
|
|
}
|
|
|
|
i = 1;
|
|
do {
|
|
struct pq_entry e = {
|
|
.rec = &recs[i],
|
|
.index = i,
|
|
};
|
|
|
|
merged_iter_pqueue_add(&pq, &e);
|
|
merged_iter_pqueue_check(&pq);
|
|
i = (i * 7) % N;
|
|
} while (i != 1);
|
|
|
|
for (i = N - 1; i > 0; i--) {
|
|
struct pq_entry top = merged_iter_pqueue_top(pq);
|
|
struct pq_entry e = merged_iter_pqueue_remove(&pq);
|
|
|
|
merged_iter_pqueue_check(&pq);
|
|
check(pq_entry_equal(&top, &e));
|
|
check(reftable_record_equal(top.rec, &recs[i], REFTABLE_HASH_SIZE_SHA1));
|
|
for (size_t j = 0; i < pq.len; j++) {
|
|
check(pq_less(&top, &pq.heap[j]));
|
|
check_int(top.index, >, j);
|
|
}
|
|
}
|
|
|
|
merged_iter_pqueue_release(&pq);
|
|
}
|
|
|
|
int cmd_main(int argc UNUSED, const char *argv[] UNUSED)
|
|
{
|
|
TEST(t_pq_record(), "pq works with record-based comparison");
|
|
TEST(t_pq_index(), "pq works with index-based comparison");
|
|
TEST(t_merged_iter_pqueue_top(), "merged_iter_pqueue_top works");
|
|
|
|
return test_done();
|
|
}
|