scmutil.py
970 lines
| 31.0 KiB
| text/x-python
|
PythonLexer
/ mercurial / scmutil.py
Adrian Buehlmann
|
r13962 | # scmutil.py - Mercurial core utility functions | ||
# | ||||
# Copyright Matt Mackall <mpm@selenic.com> | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
# GNU General Public License version 2 or any later version. | ||||
from i18n import _ | ||||
Sean Farley
|
r18466 | from mercurial.node import nullrev | ||
Bryan O'Sullivan
|
r18900 | import util, error, osutil, revset, similar, encoding, phases, parsers | ||
Augie Fackler
|
r20033 | import pathutil | ||
Matt Mackall
|
r14320 | import match as matchmod | ||
FUJIWARA Katsunori
|
r20980 | import os, errno, re, glob, tempfile | ||
Kevin Bullock
|
r18690 | |||
if os.name == 'nt': | ||||
import scmwindows as scmplatform | ||||
else: | ||||
import scmposix as scmplatform | ||||
systemrcpath = scmplatform.systemrcpath | ||||
userrcpath = scmplatform.userrcpath | ||||
Adrian Buehlmann
|
r13962 | |||
Augie Fackler
|
r20392 | def itersubrepos(ctx1, ctx2): | ||
"""find subrepos in ctx1 or ctx2""" | ||||
# Create a (subpath, ctx) mapping where we prefer subpaths from | ||||
# ctx1. The subpaths from ctx2 are important when the .hgsub file | ||||
# has been modified (in ctx2) but not yet committed (in ctx1). | ||||
subpaths = dict.fromkeys(ctx2.substate, ctx2) | ||||
subpaths.update(dict.fromkeys(ctx1.substate, ctx1)) | ||||
for subpath, ctx in sorted(subpaths.iteritems()): | ||||
yield subpath, ctx.sub(subpath) | ||||
Patrick Mezard
|
r17248 | def nochangesfound(ui, repo, excluded=None): | ||
'''Report no changes for push/pull, excluded is None or a list of | ||||
nodes excluded from the push/pull. | ||||
''' | ||||
secretlist = [] | ||||
if excluded: | ||||
for n in excluded: | ||||
Pierre-Yves David
|
r18617 | if n not in repo: | ||
# discovery should not have included the filtered revision, | ||||
# we have to explicitly exclude it until discovery is cleanup. | ||||
continue | ||||
Patrick Mezard
|
r17248 | ctx = repo[n] | ||
if ctx.phase() >= phases.secret and not ctx.extinct(): | ||||
secretlist.append(n) | ||||
Matt Mackall
|
r15993 | if secretlist: | ||
ui.status(_("no changes found (ignored %d secret changesets)\n") | ||||
% len(secretlist)) | ||||
else: | ||||
ui.status(_("no changes found\n")) | ||||
Kevin Bullock
|
r17821 | def checknewlabel(repo, lbl, kind): | ||
Durham Goode
|
r19070 | # Do not use the "kind" parameter in ui output. | ||
# It makes strings difficult to translate. | ||||
Kevin Bullock
|
r17817 | if lbl in ['tip', '.', 'null']: | ||
raise util.Abort(_("the name '%s' is reserved") % lbl) | ||||
Kevin Bullock
|
r17821 | for c in (':', '\0', '\n', '\r'): | ||
if c in lbl: | ||||
Wagner Bruna
|
r17850 | raise util.Abort(_("%r cannot be used in a name") % c) | ||
Durham Goode
|
r18566 | try: | ||
int(lbl) | ||||
Durham Goode
|
r19070 | raise util.Abort(_("cannot use an integer as a name")) | ||
Durham Goode
|
r18566 | except ValueError: | ||
pass | ||||
Kevin Bullock
|
r17817 | |||
Adrian Buehlmann
|
r13974 | def checkfilename(f): | ||
'''Check that the filename f is an acceptable filename for a tracked file''' | ||||
if '\r' in f or '\n' in f: | ||||
raise util.Abort(_("'\\n' and '\\r' disallowed in filenames: %r") % f) | ||||
Adrian Buehlmann
|
r13962 | def checkportable(ui, f): | ||
'''Check if filename f is portable and warn or abort depending on config''' | ||||
Adrian Buehlmann
|
r13974 | checkfilename(f) | ||
Adrian Buehlmann
|
r14138 | abort, warn = checkportabilityalert(ui) | ||
if abort or warn: | ||||
Adrian Buehlmann
|
r13962 | msg = util.checkwinfilename(f) | ||
if msg: | ||||
Adrian Buehlmann
|
r14138 | msg = "%s: %r" % (msg, f) | ||
if abort: | ||||
raise util.Abort(msg) | ||||
ui.warn(_("warning: %s\n") % msg) | ||||
Kevin Gessner
|
r14068 | |||
Kevin Gessner
|
r14067 | def checkportabilityalert(ui): | ||
'''check if the user's config requests nothing, a warning, or abort for | ||||
non-portable filenames''' | ||||
val = ui.config('ui', 'portablefilenames', 'warn') | ||||
lval = val.lower() | ||||
bval = util.parsebool(val) | ||||
abort = os.name == 'nt' or lval == 'abort' | ||||
warn = bval or lval == 'warn' | ||||
if bval is None and not (warn or abort or lval == 'ignore'): | ||||
Adrian Buehlmann
|
r13962 | raise error.ConfigError( | ||
_("ui.portablefilenames value is invalid ('%s')") % val) | ||||
Kevin Gessner
|
r14067 | return abort, warn | ||
Adrian Buehlmann
|
r14138 | class casecollisionauditor(object): | ||
Joshua Redstone
|
r17201 | def __init__(self, ui, abort, dirstate): | ||
Adrian Buehlmann
|
r14138 | self._ui = ui | ||
self._abort = abort | ||||
Joshua Redstone
|
r17201 | allfiles = '\0'.join(dirstate._map) | ||
self._loweredfiles = set(encoding.lower(allfiles).split('\0')) | ||||
self._dirstate = dirstate | ||||
# The purpose of _newfiles is so that we don't complain about | ||||
# case collisions if someone were to call this object with the | ||||
# same filename twice. | ||||
self._newfiles = set() | ||||
Kevin Gessner
|
r14067 | |||
Adrian Buehlmann
|
r14138 | def __call__(self, f): | ||
FUJIWARA Katsunori
|
r20006 | if f in self._newfiles: | ||
return | ||||
FUJIWARA Katsunori
|
r14980 | fl = encoding.lower(f) | ||
FUJIWARA Katsunori
|
r20006 | if fl in self._loweredfiles and f not in self._dirstate: | ||
Adrian Buehlmann
|
r14138 | msg = _('possible case-folding collision for %s') % f | ||
if self._abort: | ||||
raise util.Abort(msg) | ||||
self._ui.warn(_("warning: %s\n") % msg) | ||||
Joshua Redstone
|
r17201 | self._loweredfiles.add(fl) | ||
self._newfiles.add(f) | ||||
Adrian Buehlmann
|
r13970 | |||
FUJIWARA Katsunori
|
r17649 | class abstractvfs(object): | ||
Dan Villiom Podlaski Christiansen
|
r14089 | """Abstract base class; cannot be instantiated""" | ||
def __init__(self, *args, **kwargs): | ||||
'''Prevent instantiation; don't call this from subclasses.''' | ||||
raise NotImplementedError('attempted instantiating ' + str(type(self))) | ||||
Matt Mackall
|
r16455 | def tryread(self, path): | ||
Thomas Arendsen Hein
|
r16479 | '''gracefully return an empty string for missing files''' | ||
Matt Mackall
|
r16455 | try: | ||
return self.read(path) | ||||
except IOError, inst: | ||||
if inst.errno != errno.ENOENT: | ||||
raise | ||||
return "" | ||||
FUJIWARA Katsunori
|
r19897 | def open(self, path, mode="r", text=False, atomictemp=False): | ||
self.open = self.__call__ | ||||
return self.__call__(path, mode, text, atomictemp) | ||||
Dan Villiom Podlaski Christiansen
|
r14167 | def read(self, path): | ||
fp = self(path, 'rb') | ||||
Dan Villiom Podlaski Christiansen
|
r14097 | try: | ||
return fp.read() | ||||
finally: | ||||
fp.close() | ||||
Dan Villiom Podlaski Christiansen
|
r14167 | def write(self, path, data): | ||
fp = self(path, 'wb') | ||||
try: | ||||
return fp.write(data) | ||||
finally: | ||||
fp.close() | ||||
def append(self, path, data): | ||||
fp = self(path, 'ab') | ||||
Dan Villiom Podlaski Christiansen
|
r14097 | try: | ||
return fp.write(data) | ||||
finally: | ||||
fp.close() | ||||
FUJIWARA Katsunori
|
r20086 | def chmod(self, path, mode): | ||
return os.chmod(self.join(path), mode) | ||||
FUJIWARA Katsunori
|
r17161 | def exists(self, path=None): | ||
return os.path.exists(self.join(path)) | ||||
FUJIWARA Katsunori
|
r19899 | def fstat(self, fp): | ||
return util.fstat(fp) | ||||
FUJIWARA Katsunori
|
r17161 | def isdir(self, path=None): | ||
return os.path.isdir(self.join(path)) | ||||
FUJIWARA Katsunori
|
r20085 | def isfile(self, path=None): | ||
return os.path.isfile(self.join(path)) | ||||
FUJIWARA Katsunori
|
r18949 | def islink(self, path=None): | ||
return os.path.islink(self.join(path)) | ||||
Chinmay Joshi
|
r21563 | def lexists(self, path=None): | ||
return os.path.lexists(self.join(path)) | ||||
FUJIWARA Katsunori
|
r19900 | def lstat(self, path=None): | ||
return os.lstat(self.join(path)) | ||||
Chinmay Joshi
|
r21799 | def listdir(self, path=None): | ||
return os.listdir(self.join(path)) | ||||
FUJIWARA Katsunori
|
r17161 | def makedir(self, path=None, notindexed=True): | ||
return util.makedir(self.join(path), notindexed) | ||||
def makedirs(self, path=None, mode=None): | ||||
return util.makedirs(self.join(path), mode) | ||||
FUJIWARA Katsunori
|
r20090 | def makelock(self, info, path): | ||
return util.makelock(info, self.join(path)) | ||||
FUJIWARA Katsunori
|
r17723 | def mkdir(self, path=None): | ||
return os.mkdir(self.join(path)) | ||||
FUJIWARA Katsunori
|
r20980 | def mkstemp(self, suffix='', prefix='tmp', dir=None, text=False): | ||
fd, name = tempfile.mkstemp(suffix=suffix, prefix=prefix, | ||||
dir=self.join(dir), text=text) | ||||
dname, fname = util.split(name) | ||||
if dir: | ||||
return fd, os.path.join(dir, fname) | ||||
else: | ||||
return fd, fname | ||||
FUJIWARA Katsunori
|
r17747 | def readdir(self, path=None, stat=None, skip=None): | ||
return osutil.listdir(self.join(path), stat, skip) | ||||
FUJIWARA Katsunori
|
r20090 | def readlock(self, path): | ||
return util.readlock(self.join(path)) | ||||
FUJIWARA Katsunori
|
r18948 | def rename(self, src, dst): | ||
return util.rename(self.join(src), self.join(dst)) | ||||
FUJIWARA Katsunori
|
r18950 | def readlink(self, path): | ||
return os.readlink(self.join(path)) | ||||
FUJIWARA Katsunori
|
r18951 | def setflags(self, path, l, x): | ||
return util.setflags(self.join(path), l, x) | ||||
FUJIWARA Katsunori
|
r17726 | def stat(self, path=None): | ||
return os.stat(self.join(path)) | ||||
FUJIWARA Katsunori
|
r19895 | def unlink(self, path=None): | ||
return util.unlink(self.join(path)) | ||||
Chinmay Joshi
|
r21716 | def unlinkpath(self, path=None, ignoremissing=False): | ||
return util.unlinkpath(self.join(path), ignoremissing) | ||||
FUJIWARA Katsunori
|
r19896 | def utime(self, path=None, t=None): | ||
return os.utime(self.join(path), t) | ||||
FUJIWARA Katsunori
|
r17649 | class vfs(abstractvfs): | ||
'''Operate files relative to a base directory | ||||
Adrian Buehlmann
|
r13970 | |||
This class is used to hide the details of COW semantics and | ||||
remote file access from higher level code. | ||||
''' | ||||
FUJIWARA Katsunori
|
r18945 | def __init__(self, base, audit=True, expandpath=False, realpath=False): | ||
if expandpath: | ||||
base = util.expandpath(base) | ||||
if realpath: | ||||
base = os.path.realpath(base) | ||||
Adrian Buehlmann
|
r13970 | self.base = base | ||
Bryan O'Sullivan
|
r17554 | self._setmustaudit(audit) | ||
self.createmode = None | ||||
self._trustnlink = None | ||||
def _getmustaudit(self): | ||||
return self._audit | ||||
def _setmustaudit(self, onoff): | ||||
self._audit = onoff | ||||
if onoff: | ||||
Augie Fackler
|
r20033 | self.audit = pathutil.pathauditor(self.base) | ||
Adrian Buehlmann
|
r13970 | else: | ||
Mads Kiilerich
|
r18327 | self.audit = util.always | ||
Bryan O'Sullivan
|
r17554 | |||
mustaudit = property(_getmustaudit, _setmustaudit) | ||||
Adrian Buehlmann
|
r13970 | |||
@util.propertycache | ||||
Adrian Buehlmann
|
r14261 | def _cansymlink(self): | ||
Adrian Buehlmann
|
r13970 | return util.checklink(self.base) | ||
Matt Mackall
|
r18192 | @util.propertycache | ||
def _chmod(self): | ||||
return util.checkexec(self.base) | ||||
Matt Mackall
|
r17763 | def _fixfilemode(self, name): | ||
Matt Mackall
|
r18192 | if self.createmode is None or not self._chmod: | ||
Adrian Buehlmann
|
r13970 | return | ||
Matt Mackall
|
r17763 | os.chmod(name, self.createmode & 0666) | ||
Adrian Buehlmann
|
r13970 | |||
def __call__(self, path, mode="r", text=False, atomictemp=False): | ||||
Adrian Buehlmann
|
r14720 | if self._audit: | ||
r = util.checkosfilename(path) | ||||
if r: | ||||
raise util.Abort("%s: %r" % (r, path)) | ||||
Mads Kiilerich
|
r18327 | self.audit(path) | ||
Idan Kamara
|
r16199 | f = self.join(path) | ||
Adrian Buehlmann
|
r13970 | |||
if not text and "b" not in mode: | ||||
mode += "b" # for that other OS | ||||
nlink = -1 | ||||
Adrian Buehlmann
|
r17937 | if mode not in ('r', 'rb'): | ||
dirname, basename = util.split(f) | ||||
# If basename is empty, then the path is malformed because it points | ||||
# to a directory. Let the posixfile() call below raise IOError. | ||||
if basename: | ||||
if atomictemp: | ||||
Bryan O'Sullivan
|
r18678 | util.ensuredirs(dirname, self.createmode) | ||
Adrian Buehlmann
|
r17937 | return util.atomictempfile(f, mode, self.createmode) | ||
try: | ||||
if 'w' in mode: | ||||
util.unlink(f) | ||||
nlink = 0 | ||||
else: | ||||
# nlinks() may behave differently for files on Windows | ||||
# shares if the file is open. | ||||
fd = util.posixfile(f) | ||||
nlink = util.nlinks(f) | ||||
if nlink < 1: | ||||
nlink = 2 # force mktempcopy (issue1922) | ||||
fd.close() | ||||
except (OSError, IOError), e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
Adrian Buehlmann
|
r13970 | nlink = 0 | ||
Bryan O'Sullivan
|
r18678 | util.ensuredirs(dirname, self.createmode) | ||
Adrian Buehlmann
|
r17937 | if nlink > 0: | ||
if self._trustnlink is None: | ||||
self._trustnlink = nlink > 1 or util.checknlink(f) | ||||
if nlink > 1 or not self._trustnlink: | ||||
util.rename(util.mktempcopy(f), f) | ||||
Adrian Buehlmann
|
r13970 | fp = util.posixfile(f, mode) | ||
if nlink == 0: | ||||
Matt Mackall
|
r17763 | self._fixfilemode(f) | ||
Adrian Buehlmann
|
r13970 | return fp | ||
def symlink(self, src, dst): | ||||
Mads Kiilerich
|
r18327 | self.audit(dst) | ||
Idan Kamara
|
r16199 | linkname = self.join(dst) | ||
Adrian Buehlmann
|
r13970 | try: | ||
os.unlink(linkname) | ||||
except OSError: | ||||
pass | ||||
Bryan O'Sullivan
|
r18678 | util.ensuredirs(os.path.dirname(linkname), self.createmode) | ||
Adrian Buehlmann
|
r13970 | |||
Adrian Buehlmann
|
r14261 | if self._cansymlink: | ||
Adrian Buehlmann
|
r13970 | try: | ||
os.symlink(src, linkname) | ||||
except OSError, err: | ||||
raise OSError(err.errno, _('could not symlink to %r: %s') % | ||||
(src, err.strerror), linkname) | ||||
else: | ||||
Matt Mackall
|
r17768 | self.write(dst, src) | ||
Adrian Buehlmann
|
r13971 | |||
Idan Kamara
|
r16199 | def join(self, path): | ||
FUJIWARA Katsunori
|
r17161 | if path: | ||
Matt Mackall
|
r17681 | return os.path.join(self.base, path) | ||
else: | ||||
return self.base | ||||
Idan Kamara
|
r16199 | |||
FUJIWARA Katsunori
|
r17649 | opener = vfs | ||
Bryan O'Sullivan
|
r17845 | class auditvfs(object): | ||
def __init__(self, vfs): | ||||
self.vfs = vfs | ||||
def _getmustaudit(self): | ||||
return self.vfs.mustaudit | ||||
def _setmustaudit(self, onoff): | ||||
self.vfs.mustaudit = onoff | ||||
mustaudit = property(_getmustaudit, _setmustaudit) | ||||
Bryan O'Sullivan
|
r17846 | class filtervfs(abstractvfs, auditvfs): | ||
FUJIWARA Katsunori
|
r17649 | '''Wrapper vfs for filtering filenames with a function.''' | ||
Dan Villiom Podlaski Christiansen
|
r14090 | |||
Bryan O'Sullivan
|
r17846 | def __init__(self, vfs, filter): | ||
auditvfs.__init__(self, vfs) | ||||
Dan Villiom Podlaski Christiansen
|
r14090 | self._filter = filter | ||
def __call__(self, path, *args, **kwargs): | ||||
Bryan O'Sullivan
|
r17846 | return self.vfs(self._filter(path), *args, **kwargs) | ||
Dan Villiom Podlaski Christiansen
|
r14090 | |||
FUJIWARA Katsunori
|
r17725 | def join(self, path): | ||
if path: | ||||
Bryan O'Sullivan
|
r17846 | return self.vfs.join(self._filter(path)) | ||
FUJIWARA Katsunori
|
r17725 | else: | ||
Bryan O'Sullivan
|
r17846 | return self.vfs.join(path) | ||
FUJIWARA Katsunori
|
r17725 | |||
FUJIWARA Katsunori
|
r17649 | filteropener = filtervfs | ||
Pierre-Yves David
|
r18213 | class readonlyvfs(abstractvfs, auditvfs): | ||
'''Wrapper vfs preventing any writing.''' | ||||
def __init__(self, vfs): | ||||
auditvfs.__init__(self, vfs) | ||||
def __call__(self, path, mode='r', *args, **kw): | ||||
if mode not in ('r', 'rb'): | ||||
raise util.Abort('this vfs is read only') | ||||
return self.vfs(path, mode, *args, **kw) | ||||
Adrian Buehlmann
|
r13975 | def walkrepos(path, followsym=False, seen_dirs=None, recurse=False): | ||
Mads Kiilerich
|
r17104 | '''yield every hg repository under path, always recursively. | ||
The recurse flag will only control recursion into repo working dirs''' | ||||
Adrian Buehlmann
|
r13975 | def errhandler(err): | ||
if err.filename == path: | ||||
raise err | ||||
Augie Fackler
|
r14961 | samestat = getattr(os.path, 'samestat', None) | ||
if followsym and samestat is not None: | ||||
Adrian Buehlmann
|
r14227 | def adddir(dirlst, dirname): | ||
Adrian Buehlmann
|
r13975 | match = False | ||
dirstat = os.stat(dirname) | ||||
for lstdirstat in dirlst: | ||||
if samestat(dirstat, lstdirstat): | ||||
match = True | ||||
break | ||||
if not match: | ||||
dirlst.append(dirstat) | ||||
return not match | ||||
else: | ||||
followsym = False | ||||
if (seen_dirs is None) and followsym: | ||||
seen_dirs = [] | ||||
Adrian Buehlmann
|
r14227 | adddir(seen_dirs, path) | ||
Adrian Buehlmann
|
r13975 | for root, dirs, files in os.walk(path, topdown=True, onerror=errhandler): | ||
dirs.sort() | ||||
if '.hg' in dirs: | ||||
yield root # found a repository | ||||
qroot = os.path.join(root, '.hg', 'patches') | ||||
if os.path.isdir(os.path.join(qroot, '.hg')): | ||||
yield qroot # we have a patch queue repo here | ||||
if recurse: | ||||
# avoid recursing inside the .hg directory | ||||
dirs.remove('.hg') | ||||
else: | ||||
dirs[:] = [] # don't descend further | ||||
elif followsym: | ||||
newdirs = [] | ||||
for d in dirs: | ||||
fname = os.path.join(root, d) | ||||
Adrian Buehlmann
|
r14227 | if adddir(seen_dirs, fname): | ||
Adrian Buehlmann
|
r13975 | if os.path.islink(fname): | ||
for hgname in walkrepos(fname, True, seen_dirs): | ||||
yield hgname | ||||
else: | ||||
newdirs.append(d) | ||||
dirs[:] = newdirs | ||||
Adrian Buehlmann
|
r13984 | |||
Adrian Buehlmann
|
r14224 | def osrcpath(): | ||
Adrian Buehlmann
|
r13985 | '''return default os-specific hgrc search path''' | ||
Adrian Buehlmann
|
r14225 | path = systemrcpath() | ||
Adrian Buehlmann
|
r14226 | path.extend(userrcpath()) | ||
Adrian Buehlmann
|
r13985 | path = [os.path.normpath(f) for f in path] | ||
return path | ||||
Adrian Buehlmann
|
r13984 | _rcpath = None | ||
def rcpath(): | ||||
'''return hgrc search path. if env var HGRCPATH is set, use it. | ||||
for each item in path, if directory, use files ending in .rc, | ||||
else use item. | ||||
make HGRCPATH empty to only look in .hg/hgrc of current repo. | ||||
if no HGRCPATH, use default os-specific path.''' | ||||
global _rcpath | ||||
if _rcpath is None: | ||||
if 'HGRCPATH' in os.environ: | ||||
_rcpath = [] | ||||
for p in os.environ['HGRCPATH'].split(os.pathsep): | ||||
if not p: | ||||
continue | ||||
p = util.expandpath(p) | ||||
if os.path.isdir(p): | ||||
for f, kind in osutil.listdir(p): | ||||
if f.endswith('.rc'): | ||||
_rcpath.append(os.path.join(p, f)) | ||||
else: | ||||
_rcpath.append(p) | ||||
else: | ||||
Adrian Buehlmann
|
r14224 | _rcpath = osrcpath() | ||
Adrian Buehlmann
|
r13984 | return _rcpath | ||
Adrian Buehlmann
|
r13986 | |||
Matt Mackall
|
r14319 | def revsingle(repo, revspec, default='.'): | ||
Matt Mackall
|
r19509 | if not revspec and revspec != 0: | ||
Matt Mackall
|
r14319 | return repo[default] | ||
l = revrange(repo, [revspec]) | ||||
if len(l) < 1: | ||||
raise util.Abort(_('empty revision set')) | ||||
return repo[l[-1]] | ||||
def revpair(repo, revs): | ||||
if not revs: | ||||
return repo.dirstate.p1(), None | ||||
l = revrange(repo, revs) | ||||
Pierre-Yves David
|
r20862 | if not l: | ||
first = second = None | ||||
elif l.isascending(): | ||||
first = l.min() | ||||
second = l.max() | ||||
elif l.isdescending(): | ||||
first = l.max() | ||||
second = l.min() | ||||
else: | ||||
l = list(l) | ||||
first = l[0] | ||||
second = l[-1] | ||||
if first is None: | ||||
Pierre-Yves David
|
r20819 | raise util.Abort(_('empty revision range')) | ||
Matt Mackall
|
r14319 | |||
Pierre-Yves David
|
r20862 | if first == second and len(revs) == 1 and _revrangesep not in revs[0]: | ||
return repo.lookup(first), None | ||||
Matt Mackall
|
r14319 | |||
Pierre-Yves David
|
r20862 | return repo.lookup(first), repo.lookup(second) | ||
Matt Mackall
|
r14319 | |||
_revrangesep = ':' | ||||
def revrange(repo, revs): | ||||
"""Yield revision as strings from a list of revision specifications.""" | ||||
def revfix(repo, val, defval): | ||||
if not val and val != 0 and defval is not None: | ||||
return defval | ||||
Matt Mackall
|
r16379 | return repo[val].rev() | ||
Matt Mackall
|
r14319 | |||
Lucas Moscovicz
|
r20559 | seen, l = set(), revset.baseset([]) | ||
Matt Mackall
|
r14319 | for spec in revs: | ||
Bryan O'Sullivan
|
r16390 | if l and not seen: | ||
seen = set(l) | ||||
Matt Mackall
|
r14319 | # attempt to parse old-style ranges first to deal with | ||
# things like old-tag which contain query metacharacters | ||||
try: | ||||
if isinstance(spec, int): | ||||
seen.add(spec) | ||||
Durham Goode
|
r20798 | l = l + revset.baseset([spec]) | ||
Matt Mackall
|
r14319 | continue | ||
if _revrangesep in spec: | ||||
start, end = spec.split(_revrangesep, 1) | ||||
start = revfix(repo, start, 0) | ||||
end = revfix(repo, end, len(repo) - 1) | ||||
Cristian Zamfir
|
r20699 | if end == nullrev and start < 0: | ||
Sean Farley
|
r18466 | start = nullrev | ||
Pierre-Yves David
|
r17992 | rangeiter = repo.changelog.revs(start, end) | ||
Bryan O'Sullivan
|
r16390 | if not seen and not l: | ||
# by far the most common case: revs = ["-1:0"] | ||||
Lucas Moscovicz
|
r20559 | l = revset.baseset(rangeiter) | ||
Bryan O'Sullivan
|
r16390 | # defer syncing seen until next iteration | ||
continue | ||||
Pierre-Yves David
|
r17992 | newrevs = set(rangeiter) | ||
Bryan O'Sullivan
|
r16390 | if seen: | ||
newrevs.difference_update(seen) | ||||
Bryan O'Sullivan
|
r16814 | seen.update(newrevs) | ||
Bryan O'Sullivan
|
r16390 | else: | ||
seen = newrevs | ||||
Durham Goode
|
r20798 | l = l + revset.baseset(sorted(newrevs, reverse=start > end)) | ||
Matt Mackall
|
r14319 | continue | ||
elif spec and spec in repo: # single unquoted rev | ||||
rev = revfix(repo, spec, None) | ||||
if rev in seen: | ||||
continue | ||||
seen.add(rev) | ||||
Durham Goode
|
r20798 | l = l + revset.baseset([rev]) | ||
Matt Mackall
|
r14319 | continue | ||
except error.RepoLookupError: | ||||
pass | ||||
# fall through to new-style queries if old-style fails | ||||
Matt Mackall
|
r20781 | m = revset.match(repo.ui, spec, repo) | ||
Lucas Moscovicz
|
r20551 | if seen or l: | ||
dl = [r for r in m(repo, revset.spanset(repo)) if r not in seen] | ||||
Durham Goode
|
r20798 | l = l + revset.baseset(dl) | ||
Lucas Moscovicz
|
r20551 | seen.update(dl) | ||
else: | ||||
l = m(repo, revset.spanset(repo)) | ||||
Matt Mackall
|
r14319 | |||
return l | ||||
Matt Mackall
|
r14320 | |||
def expandpats(pats): | ||||
Mads Kiilerich
|
r21111 | '''Expand bare globs when running on windows. | ||
On posix we assume it already has already been done by sh.''' | ||||
Matt Mackall
|
r14320 | if not util.expandglobs: | ||
return list(pats) | ||||
ret = [] | ||||
Mads Kiilerich
|
r21111 | for kindpat in pats: | ||
kind, pat = matchmod._patsplit(kindpat, None) | ||||
Matt Mackall
|
r14320 | if kind is None: | ||
try: | ||||
Mads Kiilerich
|
r21111 | globbed = glob.glob(pat) | ||
Matt Mackall
|
r14320 | except re.error: | ||
Mads Kiilerich
|
r21111 | globbed = [pat] | ||
Matt Mackall
|
r14320 | if globbed: | ||
ret.extend(globbed) | ||||
continue | ||||
Mads Kiilerich
|
r21111 | ret.append(kindpat) | ||
Matt Mackall
|
r14320 | return ret | ||
Patrick Mezard
|
r16171 | def matchandpats(ctx, pats=[], opts={}, globbed=False, default='relpath'): | ||
Mads Kiilerich
|
r21111 | '''Return a matcher and the patterns that were used. | ||
The matcher will warn about bad matches.''' | ||||
Matt Mackall
|
r14320 | if pats == ("",): | ||
pats = [] | ||||
if not globbed and default == 'relpath': | ||||
pats = expandpats(pats or []) | ||||
Matt Mackall
|
r14670 | |||
m = ctx.match(pats, opts.get('include'), opts.get('exclude'), | ||||
Matt Mackall
|
r14669 | default) | ||
Matt Mackall
|
r14320 | def badfn(f, msg): | ||
Matt Mackall
|
r14671 | ctx._repo.ui.warn("%s: %s\n" % (m.rel(f), msg)) | ||
Matt Mackall
|
r14320 | m.bad = badfn | ||
Patrick Mezard
|
r16171 | return m, pats | ||
def match(ctx, pats=[], opts={}, globbed=False, default='relpath'): | ||||
Mads Kiilerich
|
r21111 | '''Return a matcher that will warn about bad matches.''' | ||
Patrick Mezard
|
r16171 | return matchandpats(ctx, pats, opts, globbed, default)[0] | ||
Matt Mackall
|
r14320 | |||
def matchall(repo): | ||||
Mads Kiilerich
|
r21111 | '''Return a matcher that will efficiently match everything.''' | ||
Matt Mackall
|
r14320 | return matchmod.always(repo.root, repo.getcwd()) | ||
def matchfiles(repo, files): | ||||
Mads Kiilerich
|
r21111 | '''Return a matcher that will efficiently match exactly these files.''' | ||
Matt Mackall
|
r14320 | return matchmod.exact(repo.root, repo.getcwd(), files) | ||
def addremove(repo, pats=[], opts={}, dry_run=None, similarity=None): | ||||
if dry_run is None: | ||||
dry_run = opts.get('dry_run') | ||||
if similarity is None: | ||||
similarity = float(opts.get('similarity') or 0) | ||||
# we'd use status here, except handling of symlinks and ignore is tricky | ||||
Matt Mackall
|
r14671 | m = match(repo[None], pats, opts) | ||
Matt Mackall
|
r16167 | rejected = [] | ||
m.bad = lambda x, y: rejected.append(x) | ||||
Siddharth Agarwal
|
r19150 | added, unknown, deleted, removed = _interestingfiles(repo, m) | ||
Siddharth Agarwal
|
r18863 | |||
unknownset = set(unknown) | ||||
toprint = unknownset.copy() | ||||
toprint.update(deleted) | ||||
for abs in sorted(toprint): | ||||
if repo.ui.verbose or not m.exact(abs): | ||||
rel = m.rel(abs) | ||||
if abs in unknownset: | ||||
status = _('adding %s\n') % ((pats and rel) or abs) | ||||
else: | ||||
status = _('removing %s\n') % ((pats and rel) or abs) | ||||
repo.ui.status(status) | ||||
Siddharth Agarwal
|
r19152 | renames = _findrenames(repo, m, added + unknown, removed + deleted, | ||
similarity) | ||||
Matt Mackall
|
r14320 | |||
if not dry_run: | ||||
Siddharth Agarwal
|
r19153 | _markchanges(repo, unknown, deleted, renames) | ||
Matt Mackall
|
r14320 | |||
Matt Mackall
|
r16167 | for f in rejected: | ||
if f in m.files(): | ||||
return 1 | ||||
return 0 | ||||
Siddharth Agarwal
|
r19154 | def marktouched(repo, files, similarity=0.0): | ||
'''Assert that files have somehow been operated upon. files are relative to | ||||
the repo root.''' | ||||
m = matchfiles(repo, files) | ||||
rejected = [] | ||||
m.bad = lambda x, y: rejected.append(x) | ||||
added, unknown, deleted, removed = _interestingfiles(repo, m) | ||||
if repo.ui.verbose: | ||||
unknownset = set(unknown) | ||||
toprint = unknownset.copy() | ||||
toprint.update(deleted) | ||||
for abs in sorted(toprint): | ||||
if abs in unknownset: | ||||
status = _('adding %s\n') % abs | ||||
else: | ||||
status = _('removing %s\n') % abs | ||||
repo.ui.status(status) | ||||
renames = _findrenames(repo, m, added + unknown, removed + deleted, | ||||
similarity) | ||||
_markchanges(repo, unknown, deleted, renames) | ||||
for f in rejected: | ||||
if f in m.files(): | ||||
return 1 | ||||
return 0 | ||||
Siddharth Agarwal
|
r19150 | def _interestingfiles(repo, matcher): | ||
'''Walk dirstate with matcher, looking for files that addremove would care | ||||
about. | ||||
This is different from dirstate.status because it doesn't care about | ||||
whether files are modified or clean.''' | ||||
added, unknown, deleted, removed = [], [], [], [] | ||||
Augie Fackler
|
r20033 | audit_path = pathutil.pathauditor(repo.root) | ||
Siddharth Agarwal
|
r19150 | |||
ctx = repo[None] | ||||
dirstate = repo.dirstate | ||||
Siddharth Agarwal
|
r19655 | walkresults = dirstate.walk(matcher, sorted(ctx.substate), True, False, | ||
full=False) | ||||
Siddharth Agarwal
|
r19150 | for abs, st in walkresults.iteritems(): | ||
dstate = dirstate[abs] | ||||
if dstate == '?' and audit_path.check(abs): | ||||
unknown.append(abs) | ||||
elif dstate != 'r' and not st: | ||||
deleted.append(abs) | ||||
# for finding renames | ||||
elif dstate == 'r': | ||||
removed.append(abs) | ||||
elif dstate == 'a': | ||||
added.append(abs) | ||||
return added, unknown, deleted, removed | ||||
Siddharth Agarwal
|
r19152 | def _findrenames(repo, matcher, added, removed, similarity): | ||
'''Find renames from removed files to added ones.''' | ||||
renames = {} | ||||
if similarity > 0: | ||||
for old, new, score in similar.findrenames(repo, added, removed, | ||||
similarity): | ||||
if (repo.ui.verbose or not matcher.exact(old) | ||||
or not matcher.exact(new)): | ||||
repo.ui.status(_('recording removal of %s as rename to %s ' | ||||
'(%d%% similar)\n') % | ||||
(matcher.rel(old), matcher.rel(new), | ||||
score * 100)) | ||||
renames[new] = old | ||||
return renames | ||||
Siddharth Agarwal
|
r19153 | def _markchanges(repo, unknown, deleted, renames): | ||
'''Marks the files in unknown as added, the files in deleted as removed, | ||||
and the files in renames as copied.''' | ||||
wctx = repo[None] | ||||
wlock = repo.wlock() | ||||
try: | ||||
wctx.forget(deleted) | ||||
wctx.add(unknown) | ||||
for new, old in renames.iteritems(): | ||||
wctx.copy(old, new) | ||||
finally: | ||||
wlock.release() | ||||
Matt Mackall
|
r14320 | def dirstatecopy(ui, repo, wctx, src, dst, dryrun=False, cwd=None): | ||
"""Update the dirstate to reflect the intent of copying src to dst. For | ||||
different reasons it might not end with dst being marked as copied from src. | ||||
""" | ||||
origsrc = repo.dirstate.copied(src) or src | ||||
if dst == origsrc: # copying back a copy? | ||||
if repo.dirstate[dst] not in 'mn' and not dryrun: | ||||
repo.dirstate.normallookup(dst) | ||||
else: | ||||
if repo.dirstate[origsrc] == 'a' and origsrc == src: | ||||
if not ui.quiet: | ||||
ui.warn(_("%s has not been committed yet, so no copy " | ||||
"data will be stored for %s.\n") | ||||
% (repo.pathto(origsrc, cwd), repo.pathto(dst, cwd))) | ||||
if repo.dirstate[dst] in '?r' and not dryrun: | ||||
wctx.add([dst]) | ||||
elif not dryrun: | ||||
wctx.copy(origsrc, dst) | ||||
Adrian Buehlmann
|
r14482 | |||
def readrequires(opener, supported): | ||||
'''Reads and parses .hg/requires and checks if all entries found | ||||
are in the list of supported features.''' | ||||
requirements = set(opener.read("requires").splitlines()) | ||||
Pierre-Yves David
|
r14746 | missings = [] | ||
Adrian Buehlmann
|
r14482 | for r in requirements: | ||
if r not in supported: | ||||
Matt Mackall
|
r14484 | if not r or not r[0].isalnum(): | ||
raise error.RequirementError(_(".hg/requires file is corrupt")) | ||||
Pierre-Yves David
|
r14746 | missings.append(r) | ||
missings.sort() | ||||
if missings: | ||||
Brodie Rao
|
r16683 | raise error.RequirementError( | ||
Mads Kiilerich
|
r20820 | _("repository requires features unknown to this Mercurial: %s") | ||
% " ".join(missings), | ||||
Pierre-Yves David
|
r20715 | hint=_("see http://mercurial.selenic.com/wiki/MissingRequirement" | ||
Mads Kiilerich
|
r20820 | " for more information")) | ||
Adrian Buehlmann
|
r14482 | return requirements | ||
Idan Kamara
|
r14928 | |||
Siddharth Agarwal
|
r20043 | class filecachesubentry(object): | ||
Siddharth Agarwal
|
r20042 | def __init__(self, path, stat): | ||
Idan Kamara
|
r14928 | self.path = path | ||
Idan Kamara
|
r18315 | self.cachestat = None | ||
self._cacheable = None | ||||
Idan Kamara
|
r14928 | |||
Idan Kamara
|
r18315 | if stat: | ||
Siddharth Agarwal
|
r20043 | self.cachestat = filecachesubentry.stat(self.path) | ||
Idan Kamara
|
r18315 | |||
if self.cachestat: | ||||
self._cacheable = self.cachestat.cacheable() | ||||
else: | ||||
# None means we don't know yet | ||||
self._cacheable = None | ||||
Idan Kamara
|
r14928 | |||
def refresh(self): | ||||
if self.cacheable(): | ||||
Siddharth Agarwal
|
r20043 | self.cachestat = filecachesubentry.stat(self.path) | ||
Idan Kamara
|
r14928 | |||
def cacheable(self): | ||||
if self._cacheable is not None: | ||||
return self._cacheable | ||||
# we don't know yet, assume it is for now | ||||
return True | ||||
def changed(self): | ||||
# no point in going further if we can't cache it | ||||
if not self.cacheable(): | ||||
return True | ||||
Siddharth Agarwal
|
r20043 | newstat = filecachesubentry.stat(self.path) | ||
Idan Kamara
|
r14928 | |||
# we may not know if it's cacheable yet, check again now | ||||
if newstat and self._cacheable is None: | ||||
self._cacheable = newstat.cacheable() | ||||
# check again | ||||
if not self._cacheable: | ||||
return True | ||||
if self.cachestat != newstat: | ||||
self.cachestat = newstat | ||||
return True | ||||
else: | ||||
return False | ||||
@staticmethod | ||||
def stat(path): | ||||
try: | ||||
return util.cachestat(path) | ||||
except OSError, e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
Siddharth Agarwal
|
r20044 | class filecacheentry(object): | ||
def __init__(self, paths, stat=True): | ||||
self._entries = [] | ||||
for path in paths: | ||||
self._entries.append(filecachesubentry(path, stat)) | ||||
def changed(self): | ||||
'''true if any entry has changed''' | ||||
for entry in self._entries: | ||||
if entry.changed(): | ||||
return True | ||||
return False | ||||
def refresh(self): | ||||
for entry in self._entries: | ||||
entry.refresh() | ||||
Idan Kamara
|
r14928 | class filecache(object): | ||
Siddharth Agarwal
|
r20045 | '''A property like decorator that tracks files under .hg/ for updates. | ||
Idan Kamara
|
r14928 | |||
Records stat info when called in _filecache. | ||||
Siddharth Agarwal
|
r20045 | On subsequent calls, compares old stat info with new info, and recreates the | ||
object when any of the files changes, updating the new stat info in | ||||
_filecache. | ||||
Idan Kamara
|
r14928 | |||
Mercurial either atomic renames or appends for files under .hg, | ||||
so to ensure the cache is reliable we need the filesystem to be able | ||||
to tell us if a file has been replaced. If it can't, we fallback to | ||||
recreating the object on every call (essentially the same behaviour as | ||||
Siddharth Agarwal
|
r20045 | propertycache). | ||
''' | ||||
def __init__(self, *paths): | ||||
self.paths = paths | ||||
Idan Kamara
|
r16198 | |||
def join(self, obj, fname): | ||||
Siddharth Agarwal
|
r20045 | """Used to compute the runtime path of a cached file. | ||
Idan Kamara
|
r16198 | |||
Users should subclass filecache and provide their own version of this | ||||
function to call the appropriate join function on 'obj' (an instance | ||||
of the class that its member function was decorated). | ||||
""" | ||||
return obj.join(fname) | ||||
Idan Kamara
|
r14928 | |||
def __call__(self, func): | ||||
self.func = func | ||||
self.name = func.__name__ | ||||
return self | ||||
def __get__(self, obj, type=None): | ||||
Idan Kamara
|
r16115 | # do we need to check if the file changed? | ||
if self.name in obj.__dict__: | ||||
Idan Kamara
|
r18316 | assert self.name in obj._filecache, self.name | ||
Idan Kamara
|
r16115 | return obj.__dict__[self.name] | ||
Idan Kamara
|
r14928 | entry = obj._filecache.get(self.name) | ||
if entry: | ||||
if entry.changed(): | ||||
entry.obj = self.func(obj) | ||||
else: | ||||
Siddharth Agarwal
|
r20045 | paths = [self.join(obj, path) for path in self.paths] | ||
Idan Kamara
|
r14928 | |||
# We stat -before- creating the object so our cache doesn't lie if | ||||
# a writer modified between the time we read and stat | ||||
Siddharth Agarwal
|
r20045 | entry = filecacheentry(paths, True) | ||
Idan Kamara
|
r14928 | entry.obj = self.func(obj) | ||
obj._filecache[self.name] = entry | ||||
Idan Kamara
|
r16115 | obj.__dict__[self.name] = entry.obj | ||
Idan Kamara
|
r14928 | return entry.obj | ||
Idan Kamara
|
r16115 | |||
def __set__(self, obj, value): | ||||
Idan Kamara
|
r18316 | if self.name not in obj._filecache: | ||
# we add an entry for the missing value because X in __dict__ | ||||
# implies X in _filecache | ||||
Siddharth Agarwal
|
r20045 | paths = [self.join(obj, path) for path in self.paths] | ||
ce = filecacheentry(paths, False) | ||||
Idan Kamara
|
r18316 | obj._filecache[self.name] = ce | ||
else: | ||||
ce = obj._filecache[self.name] | ||||
ce.obj = value # update cached copy | ||||
Idan Kamara
|
r16115 | obj.__dict__[self.name] = value # update copy returned by obj.x | ||
def __delete__(self, obj): | ||||
try: | ||||
del obj.__dict__[self.name] | ||||
except KeyError: | ||||
Augie Fackler
|
r18177 | raise AttributeError(self.name) | ||
Bryan O'Sullivan
|
r18897 | |||
Bryan O'Sullivan
|
r18898 | class dirs(object): | ||
'''a multiset of directory names from a dirstate or manifest''' | ||||
def __init__(self, map, skip=None): | ||||
self._dirs = {} | ||||
addpath = self.addpath | ||||
if util.safehasattr(map, 'iteritems') and skip is not None: | ||||
for f, s in map.iteritems(): | ||||
if s[0] != skip: | ||||
addpath(f) | ||||
else: | ||||
for f in map: | ||||
addpath(f) | ||||
def addpath(self, path): | ||||
dirs = self._dirs | ||||
for base in finddirs(path): | ||||
if base in dirs: | ||||
dirs[base] += 1 | ||||
return | ||||
dirs[base] = 1 | ||||
def delpath(self, path): | ||||
dirs = self._dirs | ||||
for base in finddirs(path): | ||||
if dirs[base] > 1: | ||||
dirs[base] -= 1 | ||||
return | ||||
del dirs[base] | ||||
def __iter__(self): | ||||
return self._dirs.iterkeys() | ||||
def __contains__(self, d): | ||||
return d in self._dirs | ||||
Bryan O'Sullivan
|
r18900 | if util.safehasattr(parsers, 'dirs'): | ||
dirs = parsers.dirs | ||||
Bryan O'Sullivan
|
r18897 | def finddirs(path): | ||
pos = path.rfind('/') | ||||
while pos != -1: | ||||
yield path[:pos] | ||||
pos = path.rfind('/', 0, pos) | ||||