# HG changeset patch # User Patrick Mezard # Date 2012-04-26 12:24:46 # Node ID 592701c8eac6bab07ceefb22122562c8bb8d900f # Parent 4bce649a2b0f49653b2caad0c9294a4303392609 revset: fix adds/modifies/removes and patterns (issue3403) The fast path was triggered if the argument was not like "type:value", with type a known pattern type. This is wrong for several reasons: - path:value is valid for the fast path - '*' is interpreted as a glob by default and is not valid for fast path Fast path detection is now done after the pattern is parsed, and the normalized path is extracted for direct comparison. All this seems a bit complicated, it is tempting to drop the fast path completely. Also, the hasfile() revset does something similar (only check .files()), without a fast path. If the fast path is really that efficient maybe it should be used there too. Note that: $ log 'modifies("set:modified()")' is different from: $ log 'modifies("*")' because of the usual merge ctx.files()/status(ctx.p1(), ctx) differences. Reported by Steffen Eichenberg diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -341,23 +341,26 @@ def branch(repo, subset, x): def checkstatus(repo, subset, pat, field): m = None s = [] - fast = not matchmod.patkind(pat) + hasset = matchmod.patkind(pat) == 'set' + fname = None for r in subset: c = repo[r] - if fast: - if pat not in c.files(): + if not m or hasset: + m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c) + if not m.anypats() and len(m.files()) == 1: + fname = m.files()[0] + if fname is not None: + if fname not in c.files(): continue else: - if not m or matchmod.patkind(pat) == 'set': - m = matchmod.match(repo.root, repo.getcwd(), [pat], ctx=c) for f in c.files(): if m(f): break else: continue files = repo.status(c.p1().node(), c.node())[field] - if fast: - if pat in files: + if fname is not None: + if fname in files: s.append(r) else: for f in files: diff --git a/tests/test-revset.t b/tests/test-revset.t --- a/tests/test-revset.t +++ b/tests/test-revset.t @@ -305,6 +305,13 @@ quoting needed 6 $ log 'modifies(b)' 4 + $ log 'modifies("path:b")' + 4 + $ log 'modifies("*")' + 4 + 6 + $ log 'modifies("set:modified()")' + 4 $ log 'id(5)' 2 $ log 'outgoing()'