Merge branch 'jt/de-global-bulk-checkin' into jt/odb-transaction
* jt/de-global-bulk-checkin: bulk-checkin: use repository variable from transaction bulk-checkin: require transaction for index_blob_bulk_checkin() bulk-checkin: remove global transaction state bulk-checkin: introduce object database transaction structure
This commit is contained in:
@@ -389,6 +389,7 @@ int cmd_add(int argc,
|
||||
char *seen = NULL;
|
||||
char *ps_matched = NULL;
|
||||
struct lock_file lock_file = LOCK_INIT;
|
||||
struct odb_transaction *transaction;
|
||||
|
||||
repo_config(repo, add_config, NULL);
|
||||
|
||||
@@ -574,7 +575,7 @@ int cmd_add(int argc,
|
||||
string_list_clear(&only_match_skip_worktree, 0);
|
||||
}
|
||||
|
||||
begin_odb_transaction();
|
||||
transaction = begin_odb_transaction(repo->objects);
|
||||
|
||||
ps_matched = xcalloc(pathspec.nr, 1);
|
||||
if (add_renormalize)
|
||||
@@ -593,7 +594,7 @@ int cmd_add(int argc,
|
||||
|
||||
if (chmod_arg && pathspec.nr)
|
||||
exit_status |= chmod_pathspec(repo, &pathspec, chmod_arg[0], show_only);
|
||||
end_odb_transaction();
|
||||
end_odb_transaction(transaction);
|
||||
|
||||
finish:
|
||||
if (write_locked_index(repo->index, &lock_file,
|
||||
|
||||
@@ -584,6 +584,7 @@ static void unpack_all(void)
|
||||
{
|
||||
int i;
|
||||
unsigned char *hdr = fill(sizeof(struct pack_header));
|
||||
struct odb_transaction *transaction;
|
||||
|
||||
if (get_be32(hdr) != PACK_SIGNATURE)
|
||||
die("bad pack file");
|
||||
@@ -599,12 +600,12 @@ static void unpack_all(void)
|
||||
progress = start_progress(the_repository,
|
||||
_("Unpacking objects"), nr_objects);
|
||||
CALLOC_ARRAY(obj_list, nr_objects);
|
||||
begin_odb_transaction();
|
||||
transaction = begin_odb_transaction(the_repository->objects);
|
||||
for (i = 0; i < nr_objects; i++) {
|
||||
unpack_one(i);
|
||||
display_progress(progress, i + 1);
|
||||
}
|
||||
end_odb_transaction();
|
||||
end_odb_transaction(transaction);
|
||||
stop_progress(&progress);
|
||||
|
||||
if (delta_list)
|
||||
|
||||
@@ -77,7 +77,7 @@ static void report(const char *fmt, ...)
|
||||
* objects invisible while a transaction is active, so flush the
|
||||
* transaction here before reporting a change made by update-index.
|
||||
*/
|
||||
flush_odb_transaction();
|
||||
flush_odb_transaction(the_repository->objects->transaction);
|
||||
va_start(vp, fmt);
|
||||
vprintf(fmt, vp);
|
||||
putchar('\n');
|
||||
@@ -940,6 +940,7 @@ int cmd_update_index(int argc,
|
||||
strbuf_getline_fn getline_fn;
|
||||
int parseopt_state = PARSE_OPT_UNKNOWN;
|
||||
struct repository *r = the_repository;
|
||||
struct odb_transaction *transaction;
|
||||
struct option options[] = {
|
||||
OPT_BIT('q', NULL, &refresh_args.flags,
|
||||
N_("continue refresh even when index needs update"),
|
||||
@@ -1130,7 +1131,7 @@ int cmd_update_index(int argc,
|
||||
* Allow the object layer to optimize adding multiple objects in
|
||||
* a batch.
|
||||
*/
|
||||
begin_odb_transaction();
|
||||
transaction = begin_odb_transaction(the_repository->objects);
|
||||
while (ctx.argc) {
|
||||
if (parseopt_state != PARSE_OPT_DONE)
|
||||
parseopt_state = parse_options_step(&ctx, options,
|
||||
@@ -1213,7 +1214,7 @@ int cmd_update_index(int argc,
|
||||
/*
|
||||
* By now we have added all of the new objects
|
||||
*/
|
||||
end_odb_transaction();
|
||||
end_odb_transaction(transaction);
|
||||
|
||||
if (split_index > 0) {
|
||||
if (repo_config_get_split_index(the_repository) == 0)
|
||||
|
||||
Reference in New Issue
Block a user