Message ID | 7acfe4fecc54beaa71d65f04c92e31ebe95aa1a0.1723640107.git.ps@pks.im (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | reftable: drop generic `reftable_table` interface | expand |
Patrick Steinhardt <ps@pks.im> writes: > Move `reftable_stack_print_directory()` into the "dump-reftable" helper. > This follows the same reasoning as the preceding commit. > > Signed-off-by: Patrick Steinhardt <ps@pks.im> > --- > reftable/reftable-stack.h | 3 --- > reftable/stack.c | 20 -------------------- > reftable/stack_test.c | 7 ------- > t/helper/test-reftable.c | 23 ++++++++++++++++++++++- > 4 files changed, 22 insertions(+), 31 deletions(-) > > diff --git a/reftable/reftable-stack.h b/reftable/reftable-stack.h > index 09e97c9991..f4f8cabc7f 100644 > --- a/reftable/reftable-stack.h > +++ b/reftable/reftable-stack.h > @@ -140,7 +140,4 @@ struct reftable_compaction_stats { > struct reftable_compaction_stats * > reftable_stack_compaction_stats(struct reftable_stack *st); > > -/* print the entire stack represented by the directory */ > -int reftable_stack_print_directory(const char *stackdir, uint32_t hash_id); > - > #endif > diff --git a/reftable/stack.c b/reftable/stack.c > index d08ec00959..bedd503e7e 100644 > --- a/reftable/stack.c > +++ b/reftable/stack.c > @@ -1603,23 +1603,3 @@ int reftable_stack_clean(struct reftable_stack *st) > reftable_addition_destroy(add); > return err; > } > - > -int reftable_stack_print_directory(const char *stackdir, uint32_t hash_id) > -{ > - struct reftable_stack *stack = NULL; > - struct reftable_write_options opts = { .hash_id = hash_id }; > - struct reftable_merged_table *merged = NULL; > - struct reftable_table table = { NULL }; > - > - int err = reftable_new_stack(&stack, stackdir, &opts); > - if (err < 0) > - goto done; > - > - merged = reftable_stack_merged_table(stack); > - reftable_table_from_merged_table(&table, merged); > - err = reftable_table_print(&table); > -done: > - if (stack) > - reftable_stack_destroy(stack); > - return err; > -} > diff --git a/reftable/stack_test.c b/reftable/stack_test.c > index dbca9eaf4a..42044ed8a3 100644 > --- a/reftable/stack_test.c > +++ b/reftable/stack_test.c > @@ -179,13 +179,6 @@ static void test_reftable_stack_add_one(void) > EXPECT(0 == strcmp("master", dest.value.symref)); > EXPECT(st->readers_len > 0); > > - printf("testing print functionality:\n"); > - err = reftable_stack_print_directory(dir, GIT_SHA1_FORMAT_ID); > - EXPECT_ERR(err); > - > - err = reftable_stack_print_directory(dir, GIT_SHA256_FORMAT_ID); > - EXPECT(err == REFTABLE_FORMAT_ERROR); > - > We loose this test due to the movement. It is okay, because the code that it is testing, is now only available in the testing section and is a test-helper. But it would be nice to mention this in the commit message. [snip]
On Tue, Aug 20, 2024 at 09:34:21AM +0200, karthik nayak wrote: > Patrick Steinhardt <ps@pks.im> writes: > > > Move `reftable_stack_print_directory()` into the "dump-reftable" helper. > > This follows the same reasoning as the preceding commit. > > > > Signed-off-by: Patrick Steinhardt <ps@pks.im> > > --- > > reftable/reftable-stack.h | 3 --- > > reftable/stack.c | 20 -------------------- > > reftable/stack_test.c | 7 ------- > > t/helper/test-reftable.c | 23 ++++++++++++++++++++++- > > 4 files changed, 22 insertions(+), 31 deletions(-) > > > > diff --git a/reftable/reftable-stack.h b/reftable/reftable-stack.h > > index 09e97c9991..f4f8cabc7f 100644 > > --- a/reftable/reftable-stack.h > > +++ b/reftable/reftable-stack.h > > @@ -140,7 +140,4 @@ struct reftable_compaction_stats { > > struct reftable_compaction_stats * > > reftable_stack_compaction_stats(struct reftable_stack *st); > > > > -/* print the entire stack represented by the directory */ > > -int reftable_stack_print_directory(const char *stackdir, uint32_t hash_id); > > - > > #endif > > diff --git a/reftable/stack.c b/reftable/stack.c > > index d08ec00959..bedd503e7e 100644 > > --- a/reftable/stack.c > > +++ b/reftable/stack.c > > @@ -1603,23 +1603,3 @@ int reftable_stack_clean(struct reftable_stack *st) > > reftable_addition_destroy(add); > > return err; > > } > > - > > -int reftable_stack_print_directory(const char *stackdir, uint32_t hash_id) > > -{ > > - struct reftable_stack *stack = NULL; > > - struct reftable_write_options opts = { .hash_id = hash_id }; > > - struct reftable_merged_table *merged = NULL; > > - struct reftable_table table = { NULL }; > > - > > - int err = reftable_new_stack(&stack, stackdir, &opts); > > - if (err < 0) > > - goto done; > > - > > - merged = reftable_stack_merged_table(stack); > > - reftable_table_from_merged_table(&table, merged); > > - err = reftable_table_print(&table); > > -done: > > - if (stack) > > - reftable_stack_destroy(stack); > > - return err; > > -} > > diff --git a/reftable/stack_test.c b/reftable/stack_test.c > > index dbca9eaf4a..42044ed8a3 100644 > > --- a/reftable/stack_test.c > > +++ b/reftable/stack_test.c > > @@ -179,13 +179,6 @@ static void test_reftable_stack_add_one(void) > > EXPECT(0 == strcmp("master", dest.value.symref)); > > EXPECT(st->readers_len > 0); > > > > - printf("testing print functionality:\n"); > > - err = reftable_stack_print_directory(dir, GIT_SHA1_FORMAT_ID); > > - EXPECT_ERR(err); > > - > > - err = reftable_stack_print_directory(dir, GIT_SHA256_FORMAT_ID); > > - EXPECT(err == REFTABLE_FORMAT_ERROR); > > - > > > > We loose this test due to the movement. It is okay, because the code > that it is testing, is now only available in the testing section and is > a test-helper. But it would be nice to mention this in the commit > message. Ah, good point, I'll mention that. The test was basically worthless anyway as we didn't very anything -- only that it doesn't crash. Patrick
diff --git a/reftable/reftable-stack.h b/reftable/reftable-stack.h index 09e97c9991..f4f8cabc7f 100644 --- a/reftable/reftable-stack.h +++ b/reftable/reftable-stack.h @@ -140,7 +140,4 @@ struct reftable_compaction_stats { struct reftable_compaction_stats * reftable_stack_compaction_stats(struct reftable_stack *st); -/* print the entire stack represented by the directory */ -int reftable_stack_print_directory(const char *stackdir, uint32_t hash_id); - #endif diff --git a/reftable/stack.c b/reftable/stack.c index d08ec00959..bedd503e7e 100644 --- a/reftable/stack.c +++ b/reftable/stack.c @@ -1603,23 +1603,3 @@ int reftable_stack_clean(struct reftable_stack *st) reftable_addition_destroy(add); return err; } - -int reftable_stack_print_directory(const char *stackdir, uint32_t hash_id) -{ - struct reftable_stack *stack = NULL; - struct reftable_write_options opts = { .hash_id = hash_id }; - struct reftable_merged_table *merged = NULL; - struct reftable_table table = { NULL }; - - int err = reftable_new_stack(&stack, stackdir, &opts); - if (err < 0) - goto done; - - merged = reftable_stack_merged_table(stack); - reftable_table_from_merged_table(&table, merged); - err = reftable_table_print(&table); -done: - if (stack) - reftable_stack_destroy(stack); - return err; -} diff --git a/reftable/stack_test.c b/reftable/stack_test.c index dbca9eaf4a..42044ed8a3 100644 --- a/reftable/stack_test.c +++ b/reftable/stack_test.c @@ -179,13 +179,6 @@ static void test_reftable_stack_add_one(void) EXPECT(0 == strcmp("master", dest.value.symref)); EXPECT(st->readers_len > 0); - printf("testing print functionality:\n"); - err = reftable_stack_print_directory(dir, GIT_SHA1_FORMAT_ID); - EXPECT_ERR(err); - - err = reftable_stack_print_directory(dir, GIT_SHA256_FORMAT_ID); - EXPECT(err == REFTABLE_FORMAT_ERROR); - #ifndef GIT_WINDOWS_NATIVE strbuf_addstr(&scratch, dir); strbuf_addstr(&scratch, "/tables.list"); diff --git a/t/helper/test-reftable.c b/t/helper/test-reftable.c index 19367c25f9..db62ea8dc3 100644 --- a/t/helper/test-reftable.c +++ b/t/helper/test-reftable.c @@ -1,6 +1,7 @@ #include "reftable/system.h" #include "reftable/reftable-error.h" #include "reftable/reftable-generic.h" +#include "reftable/reftable-merged.h" #include "reftable/reftable-reader.h" #include "reftable/reftable-stack.h" #include "reftable/reftable-tests.h" @@ -29,6 +30,26 @@ static void print_help(void) "\n"); } +static int dump_stack(const char *stackdir, uint32_t hash_id) +{ + struct reftable_stack *stack = NULL; + struct reftable_write_options opts = { .hash_id = hash_id }; + struct reftable_merged_table *merged = NULL; + struct reftable_table table = { NULL }; + + int err = reftable_new_stack(&stack, stackdir, &opts); + if (err < 0) + goto done; + + merged = reftable_stack_merged_table(stack); + reftable_table_from_merged_table(&table, merged); + err = reftable_table_print(&table); +done: + if (stack) + reftable_stack_destroy(stack); + return err; +} + static int dump_reftable(const char *tablename) { struct reftable_block_source src = { NULL }; @@ -87,7 +108,7 @@ int cmd__dump_reftable(int argc, const char **argv) } else if (opt_dump_table) { err = dump_reftable(arg); } else if (opt_dump_stack) { - err = reftable_stack_print_directory(arg, opt_hash_id); + err = dump_stack(arg, opt_hash_id); } if (err < 0) {
Move `reftable_stack_print_directory()` into the "dump-reftable" helper. This follows the same reasoning as the preceding commit. Signed-off-by: Patrick Steinhardt <ps@pks.im> --- reftable/reftable-stack.h | 3 --- reftable/stack.c | 20 -------------------- reftable/stack_test.c | 7 ------- t/helper/test-reftable.c | 23 ++++++++++++++++++++++- 4 files changed, 22 insertions(+), 31 deletions(-)