object-store: rename and expand packed_git's sha1 member

This member is used to represent the pack checksum of the pack in
question.  Expand this member to be GIT_MAX_RAWSZ bytes in length so it
works with longer hashes and rename it to be "hash" instead of "sha1".
This transformation was made with a change to the definition and the
following semantic patch:

@@
struct packed_git *E1;
@@
- E1->sha1
+ E1->hash

@@
struct packed_git E1;
@@
- E1.sha1
+ E1.hash

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
brian m. carlson 2019-02-19 00:05:03 +00:00 committed by Junio C Hamano
parent 0dbc6462ee
commit 538b152324
7 changed files with 24 additions and 21 deletions

View File

@ -641,7 +641,7 @@ int cmd_pack_redundant(int argc, const char **argv, const char *prefix)
pl = red = pack_list_difference(local_packs, min); pl = red = pack_list_difference(local_packs, min);
while (pl) { while (pl) {
printf("%s\n%s\n", printf("%s\n%s\n",
sha1_pack_index_name(pl->pack->sha1), sha1_pack_index_name(pl->pack->hash),
pl->pack->pack_name); pl->pack->pack_name);
pl = pl->next; pl = pl->next;
} }

View File

@ -742,7 +742,8 @@ static const char *create_index(void)
if (c != last) if (c != last)
die("internal consistency error creating the index"); die("internal consistency error creating the index");
tmpfile = write_idx_file(NULL, idx, object_count, &pack_idx_opts, pack_data->sha1); tmpfile = write_idx_file(NULL, idx, object_count, &pack_idx_opts,
pack_data->hash);
free(idx); free(idx);
return tmpfile; return tmpfile;
} }
@ -753,7 +754,7 @@ static char *keep_pack(const char *curr_index_name)
struct strbuf name = STRBUF_INIT; struct strbuf name = STRBUF_INIT;
int keep_fd; int keep_fd;
odb_pack_name(&name, pack_data->sha1, "keep"); odb_pack_name(&name, pack_data->hash, "keep");
keep_fd = odb_pack_keep(name.buf); keep_fd = odb_pack_keep(name.buf);
if (keep_fd < 0) if (keep_fd < 0)
die_errno("cannot create keep file"); die_errno("cannot create keep file");
@ -761,11 +762,11 @@ static char *keep_pack(const char *curr_index_name)
if (close(keep_fd)) if (close(keep_fd))
die_errno("failed to write keep file"); die_errno("failed to write keep file");
odb_pack_name(&name, pack_data->sha1, "pack"); odb_pack_name(&name, pack_data->hash, "pack");
if (finalize_object_file(pack_data->pack_name, name.buf)) if (finalize_object_file(pack_data->pack_name, name.buf))
die("cannot store pack file"); die("cannot store pack file");
odb_pack_name(&name, pack_data->sha1, "idx"); odb_pack_name(&name, pack_data->hash, "idx");
if (finalize_object_file(curr_index_name, name.buf)) if (finalize_object_file(curr_index_name, name.buf))
die("cannot store index file"); die("cannot store index file");
free((void *)curr_index_name); free((void *)curr_index_name);
@ -779,7 +780,7 @@ static void unkeep_all_packs(void)
for (k = 0; k < pack_id; k++) { for (k = 0; k < pack_id; k++) {
struct packed_git *p = all_packs[k]; struct packed_git *p = all_packs[k];
odb_pack_name(&name, p->sha1, "keep"); odb_pack_name(&name, p->hash, "keep");
unlink_or_warn(name.buf); unlink_or_warn(name.buf);
} }
strbuf_release(&name); strbuf_release(&name);
@ -821,9 +822,9 @@ static void end_packfile(void)
close_pack_windows(pack_data); close_pack_windows(pack_data);
finalize_hashfile(pack_file, cur_pack_oid.hash, 0); finalize_hashfile(pack_file, cur_pack_oid.hash, 0);
fixup_pack_header_footer(pack_data->pack_fd, pack_data->sha1, fixup_pack_header_footer(pack_data->pack_fd, pack_data->hash,
pack_data->pack_name, object_count, pack_data->pack_name, object_count,
cur_pack_oid.hash, pack_size); cur_pack_oid.hash, pack_size);
if (object_count <= unpack_limit) { if (object_count <= unpack_limit) {
if (!loosen_small_pack(pack_data)) { if (!loosen_small_pack(pack_data)) {

View File

@ -315,7 +315,8 @@ static void start_fetch_packed(struct transfer_request *request)
return; return;
} }
fprintf(stderr, "Fetching pack %s\n", sha1_to_hex(target->sha1)); fprintf(stderr, "Fetching pack %s\n",
sha1_to_hex(target->hash));
fprintf(stderr, " which contains %s\n", oid_to_hex(&request->obj->oid)); fprintf(stderr, " which contains %s\n", oid_to_hex(&request->obj->oid));
preq = new_http_pack_request(target, repo->url); preq = new_http_pack_request(target, repo->url);

View File

@ -434,7 +434,7 @@ static int http_fetch_pack(struct walker *walker, struct alt_base *repo, unsigne
if (walker->get_verbosely) { if (walker->get_verbosely) {
fprintf(stderr, "Getting pack %s\n", fprintf(stderr, "Getting pack %s\n",
sha1_to_hex(target->sha1)); sha1_to_hex(target->hash));
fprintf(stderr, " which contains %s\n", fprintf(stderr, " which contains %s\n",
sha1_to_hex(sha1)); sha1_to_hex(sha1));
} }

13
http.c
View File

@ -2236,10 +2236,10 @@ int finish_http_pack_request(struct http_pack_request *preq)
return -1; return -1;
} }
unlink(sha1_pack_index_name(p->sha1)); unlink(sha1_pack_index_name(p->hash));
if (finalize_object_file(preq->tmpfile.buf, sha1_pack_name(p->sha1)) if (finalize_object_file(preq->tmpfile.buf, sha1_pack_name(p->hash))
|| finalize_object_file(tmp_idx, sha1_pack_index_name(p->sha1))) { || finalize_object_file(tmp_idx, sha1_pack_index_name(p->hash))) {
free(tmp_idx); free(tmp_idx);
return -1; return -1;
} }
@ -2262,10 +2262,10 @@ struct http_pack_request *new_http_pack_request(
end_url_with_slash(&buf, base_url); end_url_with_slash(&buf, base_url);
strbuf_addf(&buf, "objects/pack/pack-%s.pack", strbuf_addf(&buf, "objects/pack/pack-%s.pack",
sha1_to_hex(target->sha1)); sha1_to_hex(target->hash));
preq->url = strbuf_detach(&buf, NULL); preq->url = strbuf_detach(&buf, NULL);
strbuf_addf(&preq->tmpfile, "%s.temp", sha1_pack_name(target->sha1)); strbuf_addf(&preq->tmpfile, "%s.temp", sha1_pack_name(target->hash));
preq->packfile = fopen(preq->tmpfile.buf, "a"); preq->packfile = fopen(preq->tmpfile.buf, "a");
if (!preq->packfile) { if (!preq->packfile) {
error("Unable to open local file %s for pack", error("Unable to open local file %s for pack",
@ -2289,7 +2289,8 @@ struct http_pack_request *new_http_pack_request(
if (http_is_verbose) if (http_is_verbose)
fprintf(stderr, fprintf(stderr,
"Resuming fetch of pack %s at byte %"PRIuMAX"\n", "Resuming fetch of pack %s at byte %"PRIuMAX"\n",
sha1_to_hex(target->sha1), (uintmax_t)prev_posn); sha1_to_hex(target->hash),
(uintmax_t)prev_posn);
http_opt_request_remainder(preq->slot->curl, prev_posn); http_opt_request_remainder(preq->slot->curl, prev_posn);
} }

View File

@ -77,7 +77,7 @@ struct packed_git {
freshened:1, freshened:1,
do_not_close:1, do_not_close:1,
pack_promisor:1; pack_promisor:1;
unsigned char sha1[20]; unsigned char hash[GIT_MAX_RAWSZ];
struct revindex_entry *revindex; struct revindex_entry *revindex;
/* something like ".git/objects/pack/xxxxx.pack" */ /* something like ".git/objects/pack/xxxxx.pack" */
char pack_name[FLEX_ARRAY]; /* more */ char pack_name[FLEX_ARRAY]; /* more */

View File

@ -235,7 +235,7 @@ struct packed_git *parse_pack_index(unsigned char *sha1, const char *idx_path)
struct packed_git *p = alloc_packed_git(alloc); struct packed_git *p = alloc_packed_git(alloc);
memcpy(p->pack_name, path, alloc); /* includes NUL */ memcpy(p->pack_name, path, alloc); /* includes NUL */
hashcpy(p->sha1, sha1); hashcpy(p->hash, sha1);
if (check_packed_git_idx(idx_path, p)) { if (check_packed_git_idx(idx_path, p)) {
free(p); free(p);
return NULL; return NULL;
@ -722,8 +722,8 @@ struct packed_git *add_packed_git(const char *path, size_t path_len, int local)
p->pack_local = local; p->pack_local = local;
p->mtime = st.st_mtime; p->mtime = st.st_mtime;
if (path_len < the_hash_algo->hexsz || if (path_len < the_hash_algo->hexsz ||
get_sha1_hex(path + path_len - the_hash_algo->hexsz, p->sha1)) get_sha1_hex(path + path_len - the_hash_algo->hexsz, p->hash))
hashclr(p->sha1); hashclr(p->hash);
return p; return p;
} }