sha1_file: make packed_object_info public
commitca79c985727653656443da8d92c9f5c2b4da93ed
authorJeff King <peff@peff.net>
Thu, 11 Aug 2016 09:25:32 +0000 (11 05:25 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 11 Aug 2016 17:43:24 +0000 (11 10:43 -0700)
tree2d96eeda177a2e92f3cffa244463ab9782b7e84f
parent27b5c1a0653026645bd6908ee5abfdceb1c95082
sha1_file: make packed_object_info public

Some code may have a pack/offset pair for an object, but
would like to look up more information. Using
sha1_object_info() is too heavy-weight; it starts from the
sha1 and has to find the pack again (so not only does it waste
time, it might not even find the same instance).

In some cases, this problem is solved by helpers like
get_size_from_delta(), which is used by pack-objects to take
a shortcut for objects whose packed representation has
already been found. But there's no similar function for
getting the object type, for instance. Rather than introduce
one, let's just make the whole packed_object_info() available.
It is smart enough to spend effort only on the items the
caller wants.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
cache.h
sha1_file.c