Merge branch 'ps/object-wo-the-repository' into ps/object-file-cleanup
* ps/object-wo-the-repository: hash: stop depending on `the_repository` in `null_oid()` hash: fix "-Wsign-compare" warnings object-file: split out logic regarding hash algorithms delta-islands: stop depending on `the_repository` object-file-convert: stop depending on `the_repository` pack-bitmap-write: stop depending on `the_repository` pack-revindex: stop depending on `the_repository` pack-check: stop depending on `the_repository` environment: move access to "core.bigFileThreshold" into repo settings pack-write: stop depending on `the_repository` and `the_hash_algo` object: stop depending on `the_repository` csum-file: stop depending on `the_repository`
This commit is contained in:
@@ -500,7 +500,8 @@ static unsigned long write_no_reuse_object(struct hashfile *f, struct object_ent
|
||||
|
||||
if (!usable_delta) {
|
||||
if (oe_type(entry) == OBJ_BLOB &&
|
||||
oe_size_greater_than(&to_pack, entry, big_file_threshold) &&
|
||||
oe_size_greater_than(&to_pack, entry,
|
||||
repo_settings_get_big_file_threshold(the_repository)) &&
|
||||
(st = open_istream(the_repository, &entry->idx.oid, &type,
|
||||
&size, NULL)) != NULL)
|
||||
buf = NULL;
|
||||
@@ -1312,9 +1313,10 @@ static void write_pack_file(void)
|
||||
char *pack_tmp_name = NULL;
|
||||
|
||||
if (pack_to_stdout)
|
||||
f = hashfd_throughput(1, "<stdout>", progress_state);
|
||||
f = hashfd_throughput(the_repository->hash_algo, 1,
|
||||
"<stdout>", progress_state);
|
||||
else
|
||||
f = create_tmp_packfile(&pack_tmp_name);
|
||||
f = create_tmp_packfile(the_repository, &pack_tmp_name);
|
||||
|
||||
offset = write_pack_header(f, nr_remaining);
|
||||
|
||||
@@ -1407,7 +1409,7 @@ static void write_pack_file(void)
|
||||
if (cruft)
|
||||
pack_idx_opts.flags |= WRITE_MTIMES;
|
||||
|
||||
stage_tmp_packfiles(the_hash_algo, &tmpname,
|
||||
stage_tmp_packfiles(the_repository, &tmpname,
|
||||
pack_tmp_name, written_list,
|
||||
nr_written, &to_pack,
|
||||
&pack_idx_opts, hash,
|
||||
@@ -2535,7 +2537,8 @@ static void get_object_details(void)
|
||||
struct object_entry *entry = sorted_by_offset[i];
|
||||
check_object(entry, i);
|
||||
if (entry->type_valid &&
|
||||
oe_size_greater_than(&to_pack, entry, big_file_threshold))
|
||||
oe_size_greater_than(&to_pack, entry,
|
||||
repo_settings_get_big_file_threshold(the_repository)))
|
||||
entry->no_try_delta = 1;
|
||||
display_progress(progress_state, i + 1);
|
||||
}
|
||||
@@ -3928,7 +3931,7 @@ static void show_commit(struct commit *commit, void *data UNUSED)
|
||||
index_commit_for_bitmap(commit);
|
||||
|
||||
if (use_delta_islands)
|
||||
propagate_island_marks(commit);
|
||||
propagate_island_marks(the_repository, commit);
|
||||
}
|
||||
|
||||
static void show_object(struct object *obj, const char *name,
|
||||
@@ -4244,7 +4247,7 @@ static int mark_bitmap_preferred_tip(const char *refname,
|
||||
if (!peel_iterated_oid(the_repository, oid, &peeled))
|
||||
oid = &peeled;
|
||||
|
||||
object = parse_object_or_die(oid, refname);
|
||||
object = parse_object_or_die(the_repository, oid, refname);
|
||||
if (object->type == OBJ_COMMIT)
|
||||
object->flags |= NEEDS_BITMAP;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user