Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 8709:b9e0ddb04c5c
commit: move explicit file checking into repo.commit
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 01 Jun 2009 21:51:00 -0500 |
parents | 0550dfe4fca1 |
children | bcb6e5bebd93 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Mon Jun 01 20:25:01 2009 -0500 +++ b/mercurial/localrepo.py Mon Jun 01 21:51:00 2009 -0500 @@ -14,7 +14,7 @@ import match as match_ import merge as merge_ from lock import release -import weakref, stat, errno, os, time, inspect +import weakref, stat, errno, os, time, inspect, bisect propertycache = util.propertycache class localrepository(repo.repository): @@ -781,6 +781,7 @@ match can be used to filter the committed files. If editor is supplied, it is called to get a commit message. """ + wlock = self.wlock() try: p1, p2 = self.dirstate.parents() @@ -790,10 +791,38 @@ raise util.Abort(_('cannot partially commit a merge ' '(do not specify files or patterns)')) + def fail(f, msg): + raise util.Abort('%s: %s' % (f, msg)) + + if not match: + match = match_.always(self.root, '') + + if not force: + vdirs = [] + match.dir = vdirs.append + match.bad = fail + changes = self.status(match=match, clean=force) if force: changes[0].extend(changes[6]) # mq may commit unchanged files + # make sure all explicit patterns are matched + if not force and match.files(): + files = sorted(changes[0] + changes[1] + changes[2]) + + for f in match.files(): + if f == '.' or f in files: # matched + continue + if f in changes[3]: # missing + fail(f, _('file not found!')) + if f in vdirs: # visited directory + d = f + '/' + i = bisect.bisect(files, d) + if i >= len(files) or not files[i].startswith(d): + fail(f, _("no match under directory!")) + elif f not in self.dirstate: + fail(f, _("file not tracked!")) + if (not force and not extra.get("close") and p2 == nullid and not (changes[0] or changes[1] or changes[2]) and self[None].branch() == self['.'].branch()):