Skip to content

Commit 3c20bf0

Browse files
pks-tgitster
authored andcommitted
builtin/update-ref: skip ambiguity checks when parsing object IDs
Most of the commands in git-update-ref(1) accept an old and/or new object ID to update a specific reference to. These object IDs get parsed via `repo_get_oid()`, which not only handles plain object IDs, but also those that have a suffix like "~" or "^2". More surprisingly though, it even knows to resolve arbitrary revisions, despite the fact that its manpage does not mention this fact even once. One consequence of this is that we also check for ambiguous references: when parsing a full object ID where the DWIM mechanism would also cause us to resolve it as a branch, we'd end up printing a warning. While this check makes sense to have in general, it is arguably less useful in the context of git-update-ref(1). This is due to multiple reasons: - The manpage is explicitly structured around object IDs. So if we see a fully blown object ID, the intent should be quite clear in general. - The command is part of our plumbing layer and not a tool that users would generally use in interactive workflows. As such, the warning will likely not be visible to anybody in the first place. - Users can and should use the fully-qualified refname in case there is any potential for ambiguity. And given that this command is part of our plumbing layer, one should always try to be as defensive as possible and use fully-qualified refnames. Furthermore, this check can be quite expensive when updating lots of references via `--stdin`, because we try to read multiple references per object ID that we parse according to the DWIM rules. This effect can be seen both with the "files" and "reftable" backend. The issue is not unique to git-update-ref(1), but was also an issue in git-cat-file(1), where it was addressed by disabling the ambiguity check in 25fba78 (cat-file: disable object/refname ambiguity check for batch mode, 2013-07-12). Disable the warning in git-update-ref(1), which provides a significant speedup with both backends. The user-visible outcome is unchanged even when ambiguity exists, except that we don't show the warning anymore. The following benchmark creates 10000 new references with a 100000 preexisting refs with the "files" backend: Benchmark 1: update-ref: create many refs (refformat = files, preexisting = 100000, new = 10000, revision = HEAD~) Time (mean ± σ): 467.3 ms ± 5.1 ms [User: 100.0 ms, System: 365.1 ms] Range (min … max): 461.9 ms … 479.3 ms 10 runs Benchmark 2: update-ref: create many refs (refformat = files, preexisting = 100000, new = 10000, revision = HEAD) Time (mean ± σ): 394.1 ms ± 5.8 ms [User: 63.3 ms, System: 327.6 ms] Range (min … max): 384.9 ms … 405.7 ms 10 runs Summary update-ref: create many refs (refformat = files, preexisting = 100000, new = 10000, revision = HEAD) ran 1.19 ± 0.02 times faster than update-ref: create many refs (refformat = files, preexisting = 100000, new = 10000, revision = HEAD~) And with the "reftable" backend: Benchmark 1: update-ref: create many refs (refformat = reftable, preexisting = 100000, new = 10000, revision = HEAD~) Time (mean ± σ): 146.9 ms ± 2.2 ms [User: 90.4 ms, System: 56.0 ms] Range (min … max): 142.7 ms … 150.8 ms 19 runs Benchmark 2: update-ref: create many refs (refformat = reftable, preexisting = 100000, new = 10000, revision = HEAD) Time (mean ± σ): 63.2 ms ± 1.1 ms [User: 41.0 ms, System: 21.8 ms] Range (min … max): 61.1 ms … 66.6 ms 41 runs Summary update-ref: create many refs (refformat = reftable, preexisting = 100000, new = 10000, revision = HEAD) ran 2.32 ± 0.05 times faster than update-ref: create many refs (refformat = reftable, preexisting = 100000, new = 10000, revision = HEAD~) Note that the absolute improvement with both backends is roughly in the same ballpark, but the relative improvement for the "reftable" backend is more significant because writing the new table to disk is faster in the first place. Signed-off-by: Patrick Steinhardt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 46a2b52 commit 3c20bf0

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

builtin/update-ref.c

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ static int parse_next_oid(const char **next, const char *end,
179179
(*next)++;
180180
*next = parse_arg(*next, &arg);
181181
if (arg.len) {
182-
if (repo_get_oid(the_repository, arg.buf, oid))
182+
if (repo_get_oid_with_flags(the_repository, arg.buf, oid,
183+
GET_OID_SKIP_AMBIGUITY_CHECK))
183184
goto invalid;
184185
} else {
185186
/* Without -z, an empty value means all zeros: */
@@ -197,7 +198,8 @@ static int parse_next_oid(const char **next, const char *end,
197198
*next += arg.len;
198199

199200
if (arg.len) {
200-
if (repo_get_oid(the_repository, arg.buf, oid))
201+
if (repo_get_oid_with_flags(the_repository, arg.buf, oid,
202+
GET_OID_SKIP_AMBIGUITY_CHECK))
201203
goto invalid;
202204
} else if (flags & PARSE_SHA1_ALLOW_EMPTY) {
203205
/* With -z, treat an empty value as all zeros: */
@@ -299,7 +301,8 @@ static void parse_cmd_symref_update(struct ref_transaction *transaction,
299301
die("symref-update %s: expected old value", refname);
300302

301303
if (!strcmp(old_arg, "oid")) {
302-
if (repo_get_oid(the_repository, old_target, &old_oid))
304+
if (repo_get_oid_with_flags(the_repository, old_target, &old_oid,
305+
GET_OID_SKIP_AMBIGUITY_CHECK))
303306
die("symref-update %s: invalid oid: %s", refname, old_target);
304307

305308
have_old_oid = 1;
@@ -772,7 +775,8 @@ int cmd_update_ref(int argc,
772775
refname = argv[0];
773776
value = argv[1];
774777
oldval = argv[2];
775-
if (repo_get_oid(the_repository, value, &oid))
778+
if (repo_get_oid_with_flags(the_repository, value, &oid,
779+
GET_OID_SKIP_AMBIGUITY_CHECK))
776780
die("%s: not a valid SHA1", value);
777781
}
778782

@@ -783,7 +787,8 @@ int cmd_update_ref(int argc,
783787
* must not already exist:
784788
*/
785789
oidclr(&oldoid, the_repository->hash_algo);
786-
else if (repo_get_oid(the_repository, oldval, &oldoid))
790+
else if (repo_get_oid_with_flags(the_repository, oldval, &oldoid,
791+
GET_OID_SKIP_AMBIGUITY_CHECK))
787792
die("%s: not a valid old SHA1", oldval);
788793
}
789794

0 commit comments

Comments
 (0)