This is the thirteenth series of patches to convert to struct object_id and the_hash_algo. The series adds an oidread function to read object IDs from a buffer, removes unused structure members (which therefore don't require conversion), converts various functions to struct object_id, and improves usage of the_hash_algo. It also makes empty_blob_oid and empty_tree_oid static, exposed only through the hash algorithm abstraction, and updates all the hard-coded instances of the empty blob and empty tree object IDs in scripts (excepting the testsuite). Outside of the testsuite, these are the only changes required to use a different 160-bit hash algorithm. To get the testsuite working will require two additional sets of patches, one of which I will send out soon. I expect part 14 to be the last (or next to it) of the object_id series. I'm starting work on testing the codebase with a 256-bit hash[0], and I expect that part 14 (or possibly a 15) will include the final pieces necessary to make it pass the testsuite with a 256-bit hash (sans multi-hash support). [0] I can synthesize blobs, trees, and commits, but things are currently totally broken, which is, I suppose, to be expected. brian m. carlson (41): cache: add a function to read an object ID from a buffer server-info: remove unused members from struct pack_info Remove unused member in struct object_context packfile: remove unused member from struct pack_entry packfile: convert has_sha1_pack to object_id sha1_file: convert freshen functions to object_id packfile: convert find_pack_entry to object_id packfile: abstract away hash constant values pack-objects: abstract away hash algorithm pack-redundant: abstract away hash algorithm tree-walk: avoid hard-coded 20 constant tree-walk: convert get_tree_entry_follow_symlinks to object_id fsck: convert static functions to struct object_id submodule-config: convert structures to object_id split-index: convert struct split_index to object_id Update struct index_state to use struct object_id pack-redundant: convert linked lists to use struct object_id index-pack: abstract away hash function constant commit: convert uses of get_sha1_hex to get_oid_hex dir: convert struct untracked_cache_dir to object_id http: eliminate hard-coded constants revision: replace use of hard-coded constants upload-pack: replace use of several hard-coded constants diff: specify abbreviation size in terms of the_hash_algo builtin/receive-pack: avoid hard-coded constants for push certs builtin/am: convert uses of EMPTY_TREE_SHA1_BIN to the_hash_algo builtin/merge: switch tree functions to use object_id merge: convert empty tree constant to the_hash_algo sequencer: convert one use of EMPTY_TREE_SHA1_HEX submodule: convert several uses of EMPTY_TREE_SHA1_HEX wt-status: convert two uses of EMPTY_TREE_SHA1_HEX builtin/receive-pack: convert one use of EMPTY_TREE_SHA1_HEX builtin/reset: convert use of EMPTY_TREE_SHA1_BIN sha1_file: convert cached object code to struct object_id cache-tree: use is_empty_tree_oid sequencer: use the_hash_algo for empty tree object ID dir: use the_hash_algo for empty blob object ID sha1_file: only expose empty object constants through git_hash_algo Update shell scripts to compute empty tree object ID add--interactive: compute the empty tree value merge-one-file: compute empty blob object ID builtin/am.c | 8 +-- builtin/count-objects.c | 2 +- builtin/fsck.c | 2 +- builtin/index-pack.c | 3 +- builtin/merge.c | 14 ++--- builtin/pack-objects.c | 32 +++++------ builtin/pack-redundant.c | 62 ++++++++++++---------- builtin/prune-packed.c | 2 +- builtin/receive-pack.c | 8 +-- builtin/reset.c | 2 +- builtin/rev-parse.c | 4 +- cache-tree.c | 4 +- cache.h | 25 +++------ commit.c | 4 +- diff.c | 20 ++++--- dir.c | 25 ++++----- dir.h | 5 +- fsck.c | 20 +++---- git-add--interactive.perl | 11 +++- git-filter-branch.sh | 4 +- git-merge-one-file.sh | 2 +- git-rebase--interactive.sh | 4 +- http.c | 11 ++-- merge.c | 5 +- packfile.c | 79 +++++++++++++++------------- packfile.h | 4 +- read-cache.c | 34 ++++++------ resolve-undo.c | 2 +- revision.c | 7 +-- sequencer.c | 5 +- server-info.c | 3 -- sha1_file.c | 69 +++++++++++++----------- sha1_name.c | 5 +- split-index.c | 10 ++-- split-index.h | 4 +- submodule-config.c | 66 +++++++++++------------ submodule-config.h | 7 +-- submodule.c | 6 +-- t/helper/test-dump-split-index.c | 4 +- t/helper/test-dump-untracked-cache.c | 2 +- templates/hooks--pre-commit.sample | 2 +- tree-walk.c | 18 +++---- tree-walk.h | 2 +- unpack-trees.c | 2 +- upload-pack.c | 18 +++---- wt-status.c | 6 ++- 46 files changed, 333 insertions(+), 301 deletions(-)