]> git.ipfire.org Git - thirdparty/git.git/commitdiff
reftable/writer: simplify writing index records
authorPatrick Steinhardt <ps@pks.im>
Thu, 1 Feb 2024 07:52:04 +0000 (08:52 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 1 Feb 2024 19:11:32 +0000 (11:11 -0800)
When finishing the current section some index records might be written
for the section to the table. The logic that adds these records to the
writer duplicates what we already have in `writer_add_record()`, making
this more complicated than it really has to be.

Simplify the code by using `writer_add_record()` instead. While at it,
drop the unneeded braces around a loop to make the code conform to our
code style better.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
reftable/writer.c

index 5a0b87b40665a6e16181084ffaf954bac5f26bbc..b5bcce029225d486647ac16534883a92301814fa 100644 (file)
@@ -412,26 +412,14 @@ static int writer_finish_section(struct reftable_writer *w)
                                        .idx = idx[i],
                                },
                        };
-                       if (block_writer_add(w->block_writer, &rec) == 0) {
-                               continue;
-                       }
 
-                       err = writer_flush_block(w);
+                       err = writer_add_record(w, &rec);
                        if (err < 0)
                                return err;
-
-                       writer_reinit_block_writer(w, BLOCK_TYPE_INDEX);
-
-                       err = block_writer_add(w->block_writer, &rec);
-                       if (err != 0) {
-                               /* write into fresh block should always succeed
-                                */
-                               abort();
-                       }
                }
-               for (i = 0; i < idx_len; i++) {
+
+               for (i = 0; i < idx_len; i++)
                        strbuf_release(&idx[i].last_key);
-               }
                reftable_free(idx);
        }