Skip to content

Commit a6a3f2c

Browse files
committed
peel_onion(): teach $foo^{object} peeler
A string that names an object can be suffixed with ^{type} peeler to say "I have this object name; peel it until you get this type. If you cannot do so, it is an error". v1.8.2^{commit} asks for a commit that is pointed at an annotated tag v1.8.2; v1.8.2^{tree} unwraps it further to the top-level tree object. A special suffix ^{} (i.e. no type specified) means "I do not care what it unwraps to; just peel annotated tag until you get something that is not a tag". When you have a random user-supplied string, you can turn it to a bare 40-hex object name, and cause it to error out if such an object does not exist, with: git rev-parse --verify "$userstring^{}" for most objects, but this does not yield the tag object name when $userstring refers to an annotated tag. Introduce a new suffix, ^{object}, that only makes sure the given name refers to an existing object. Then git rev-parse --verify "$userstring^{object}" becomes a way to make sure $userstring refers to an existing object. This is necessary because the plumbing "rev-parse --verify" is only about "make sure the argument is something we can feed to get_sha1() and turn it into a raw 20-byte object name SHA-1" and is not about "make sure that 20-byte object name SHA-1 refers to an object that exists in our object store". When the given $userstring is already a 40-hex, by definition "rev-parse --verify $userstring" can turn it into a raw 20-byte object name. With "$userstring^{object}", we can make sure that the 40-hex string names an object that exists in our object store before "--verify" kicks in. Signed-off-by: Junio C Hamano <[email protected]>
1 parent ed1ca60 commit a6a3f2c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Documentation/revisions.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@ some output processing may assume ref names in UTF-8.
116116
object of that type is found or the object cannot be
117117
dereferenced anymore (in which case, barf). '<rev>{caret}0'
118118
is a short-hand for '<rev>{caret}\{commit\}'.
119+
+
120+
'rev{caret}\{object\}' can be used to make sure 'rev' names an
121+
object that exists, without requiring 'rev' to be a tag, and
122+
without dereferencing 'rev'; because a tag is already an object,
123+
it does not have to be dereferenced even once to get to an object.
119124

120125
'<rev>{caret}\{\}', e.g. 'v0.99.8{caret}\{\}'::
121126
A suffix '{caret}' followed by an empty brace pair

sha1_name.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ struct object *peel_to_type(const char *name, int namelen,
594594
while (1) {
595595
if (!o || (!o->parsed && !parse_object(o->sha1)))
596596
return NULL;
597-
if (o->type == expected_type)
597+
if (expected_type == OBJ_ANY || o->type == expected_type)
598598
return o;
599599
if (o->type == OBJ_TAG)
600600
o = ((struct tag*) o)->tagged;
@@ -645,6 +645,8 @@ static int peel_onion(const char *name, int len, unsigned char *sha1)
645645
expected_type = OBJ_TREE;
646646
else if (!strncmp(blob_type, sp, 4) && sp[4] == '}')
647647
expected_type = OBJ_BLOB;
648+
else if (!prefixcmp(sp, "object}"))
649+
expected_type = OBJ_ANY;
648650
else if (sp[0] == '}')
649651
expected_type = OBJ_NONE;
650652
else if (sp[0] == '/')

0 commit comments

Comments
 (0)