localrepo.py
1865 lines
| 69.1 KiB
| text/x-python
|
PythonLexer
/ mercurial / localrepo.py
mpm@selenic.com
|
r1089 | # localrepo.py - read/write repository class for mercurial | ||
# | ||||
Vadim Gelfer
|
r2859 | # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | ||
mpm@selenic.com
|
r1089 | # | ||
# This software may be used and distributed according to the terms | ||||
# of the GNU General Public License, incorporated herein by reference. | ||||
mpm@selenic.com
|
r1100 | from node import * | ||
Benoit Boissinot
|
r1400 | from i18n import gettext as _ | ||
mpm@selenic.com
|
r1089 | from demandload import * | ||
Vadim Gelfer
|
r2612 | import repo | ||
Vadim Gelfer
|
r1998 | demandload(globals(), "appendfile changegroup") | ||
Vadim Gelfer
|
r2612 | demandload(globals(), "changelog dirstate filelog manifest context") | ||
Vadim Gelfer
|
r2155 | demandload(globals(), "re lock transaction tempfile stat mdiff errno ui") | ||
Vadim Gelfer
|
r2612 | demandload(globals(), "os revlog time util") | ||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2612 | class localrepository(repo.repository): | ||
Eric Hopper
|
r3448 | capabilities = ('lookup', 'changegroupsubset') | ||
Benoit Boissinot
|
r3853 | supported = ('revlogv1', 'store') | ||
Vadim Gelfer
|
r2439 | |||
mason@suse.com
|
r1806 | def __del__(self): | ||
self.transhandle = None | ||||
Thomas Arendsen Hein
|
r1839 | def __init__(self, parentui, path=None, create=0): | ||
Vadim Gelfer
|
r2612 | repo.repository.__init__(self) | ||
mpm@selenic.com
|
r1101 | if not path: | ||
p = os.getcwd() | ||||
while not os.path.isdir(os.path.join(p, ".hg")): | ||||
oldp = p | ||||
p = os.path.dirname(p) | ||||
Thomas Arendsen Hein
|
r1615 | if p == oldp: | ||
Thomas Arendsen Hein
|
r3079 | raise repo.RepoError(_("There is no Mercurial repository" | ||
" here (.hg not found)")) | ||||
mpm@selenic.com
|
r1101 | path = p | ||
Benoit Boissinot
|
r3850 | |||
mpm@selenic.com
|
r1101 | self.path = os.path.join(path, ".hg") | ||
Benoit Boissinot
|
r3850 | self.root = os.path.realpath(path) | ||
self.origroot = path | ||||
self.opener = util.opener(self.path) | ||||
self.wopener = util.opener(self.root) | ||||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r3035 | if not os.path.isdir(self.path): | ||
if create: | ||||
if not os.path.exists(path): | ||||
os.mkdir(path) | ||||
os.mkdir(self.path) | ||||
Benoit Boissinot
|
r3853 | os.mkdir(os.path.join(self.path, "store")) | ||
requirements = ("revlogv1", "store") | ||||
Benoit Boissinot
|
r3851 | reqfile = self.opener("requires", "w") | ||
for r in requirements: | ||||
reqfile.write("%s\n" % r) | ||||
reqfile.close() | ||||
Benoit Boissinot
|
r3853 | # create an invalid changelog | ||
Thomas Arendsen Hein
|
r3861 | self.opener("00changelog.i", "a").write( | ||
'\0\0\0\2' # represents revlogv2 | ||||
' dummy changelog to prevent using the old repo layout' | ||||
) | ||||
Benoit Boissinot
|
r3035 | else: | ||
raise repo.RepoError(_("repository %s not found") % path) | ||||
elif create: | ||||
raise repo.RepoError(_("repository %s already exists") % path) | ||||
Benoit Boissinot
|
r3851 | else: | ||
# find requirements | ||||
try: | ||||
requirements = self.opener("requires").read().splitlines() | ||||
except IOError, inst: | ||||
if inst.errno != errno.ENOENT: | ||||
raise | ||||
requirements = [] | ||||
# check them | ||||
for r in requirements: | ||||
if r not in self.supported: | ||||
raise repo.RepoError(_("requirement '%s' not supported") % r) | ||||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r3850 | # setup store | ||
Benoit Boissinot
|
r3853 | if "store" in requirements: | ||
self.encodefn = util.encodefilename | ||||
self.decodefn = util.decodefilename | ||||
self.spath = os.path.join(self.path, "store") | ||||
else: | ||||
self.encodefn = lambda x: x | ||||
self.decodefn = lambda x: x | ||||
self.spath = self.path | ||||
self.sopener = util.encodedopener(util.opener(self.spath), self.encodefn) | ||||
Benoit Boissinot
|
r3850 | |||
Thomas Arendsen Hein
|
r1839 | self.ui = ui.ui(parentui=parentui) | ||
mason@suse.com
|
r2072 | try: | ||
self.ui.readconfig(self.join("hgrc"), self.root) | ||||
except IOError: | ||||
pass | ||||
Alexis S. L. Carvalho
|
r3340 | v = self.ui.configrevlog() | ||
mason@suse.com
|
r2222 | self.revlogversion = int(v.get('format', revlog.REVLOG_DEFAULT_FORMAT)) | ||
Thomas Arendsen Hein
|
r2152 | self.revlogv1 = self.revlogversion != revlog.REVLOGV0 | ||
mason@suse.com
|
r2222 | fl = v.get('flags', None) | ||
mason@suse.com
|
r2073 | flags = 0 | ||
mason@suse.com
|
r2222 | if fl != None: | ||
for x in fl.split(): | ||||
flags |= revlog.flagstr(x) | ||||
elif self.revlogv1: | ||||
flags = revlog.REVLOG_DEFAULT_FLAGS | ||||
mason@suse.com
|
r2073 | |||
v = self.revlogversion | flags | ||||
Matt Mackall
|
r3457 | self.manifest = manifest.manifest(self.sopener, v) | ||
self.changelog = changelog.changelog(self.sopener, v) | ||||
mason@suse.com
|
r2072 | |||
Alexis S. L. Carvalho
|
r3835 | fallback = self.ui.config('ui', 'fallbackencoding') | ||
if fallback: | ||||
util._fallbackencoding = fallback | ||||
mason@suse.com
|
r2073 | # the changelog might not have the inline index flag | ||
# on. If the format of the changelog is the same as found in | ||||
# .hgrc, apply any flags found in the .hgrc as well. | ||||
# Otherwise, just version from the changelog | ||||
v = self.changelog.version | ||||
if v == self.revlogversion: | ||||
v |= flags | ||||
self.revlogversion = v | ||||
mpm@selenic.com
|
r1089 | self.tagscache = None | ||
Matt Mackall
|
r3417 | self.branchcache = None | ||
mpm@selenic.com
|
r1089 | self.nodetagscache = None | ||
mpm@selenic.com
|
r1258 | self.encodepats = None | ||
self.decodepats = None | ||||
mason@suse.com
|
r1806 | self.transhandle = None | ||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r1839 | self.dirstate = dirstate.dirstate(self.opener, self.ui, self.root) | ||
Vadim Gelfer
|
r2155 | |||
Vadim Gelfer
|
r2673 | def url(self): | ||
return 'file:' + self.root | ||||
Vadim Gelfer
|
r1718 | def hook(self, name, throw=False, **args): | ||
Vadim Gelfer
|
r2155 | def callhook(hname, funcname): | ||
'''call python hook. hook is callable object, looked up as | ||||
name in python module. if callable returns "true", hook | ||||
Vadim Gelfer
|
r2221 | fails, else passes. if hook raises exception, treated as | ||
hook failure. exception propagates if throw is "true". | ||||
reason for "true" meaning "hook failed" is so that | ||||
unmodified commands (e.g. mercurial.commands.update) can | ||||
be run as hooks without wrappers to convert return values.''' | ||||
Vadim Gelfer
|
r2155 | |||
self.ui.note(_("calling hook %s: %s\n") % (hname, funcname)) | ||||
d = funcname.rfind('.') | ||||
if d == -1: | ||||
raise util.Abort(_('%s hook is invalid ("%s" not in a module)') | ||||
% (hname, funcname)) | ||||
modname = funcname[:d] | ||||
try: | ||||
obj = __import__(modname) | ||||
except ImportError: | ||||
Benoit Boissinot
|
r2581 | try: | ||
# extensions are loaded with hgext_ prefix | ||||
obj = __import__("hgext_%s" % modname) | ||||
except ImportError: | ||||
raise util.Abort(_('%s hook is invalid ' | ||||
'(import of "%s" failed)') % | ||||
(hname, modname)) | ||||
Vadim Gelfer
|
r2155 | try: | ||
for p in funcname.split('.')[1:]: | ||||
obj = getattr(obj, p) | ||||
except AttributeError, err: | ||||
raise util.Abort(_('%s hook is invalid ' | ||||
'("%s" is not defined)') % | ||||
(hname, funcname)) | ||||
if not callable(obj): | ||||
raise util.Abort(_('%s hook is invalid ' | ||||
'("%s" is not callable)') % | ||||
(hname, funcname)) | ||||
try: | ||||
Vadim Gelfer
|
r2190 | r = obj(ui=self.ui, repo=self, hooktype=name, **args) | ||
Vadim Gelfer
|
r2155 | except (KeyboardInterrupt, util.SignalInterrupt): | ||
raise | ||||
except Exception, exc: | ||||
if isinstance(exc, util.Abort): | ||||
self.ui.warn(_('error: %s hook failed: %s\n') % | ||||
Thomas Arendsen Hein
|
r3072 | (hname, exc.args[0])) | ||
Vadim Gelfer
|
r2155 | else: | ||
self.ui.warn(_('error: %s hook raised an exception: ' | ||||
'%s\n') % (hname, exc)) | ||||
if throw: | ||||
raise | ||||
Vadim Gelfer
|
r2335 | self.ui.print_exc() | ||
Vadim Gelfer
|
r2221 | return True | ||
if r: | ||||
Vadim Gelfer
|
r2155 | if throw: | ||
raise util.Abort(_('%s hook failed') % hname) | ||||
Vadim Gelfer
|
r2221 | self.ui.warn(_('warning: %s hook failed\n') % hname) | ||
Vadim Gelfer
|
r2155 | return r | ||
Benoit Boissinot
|
r1480 | def runhook(name, cmd): | ||
self.ui.note(_("running hook %s: %s\n") % (name, cmd)) | ||||
Vadim Gelfer
|
r2288 | env = dict([('HG_' + k.upper(), v) for k, v in args.iteritems()]) | ||
Vadim Gelfer
|
r1882 | r = util.system(cmd, environ=env, cwd=self.root) | ||
mpm@selenic.com
|
r1089 | if r: | ||
Vadim Gelfer
|
r1718 | desc, r = util.explain_exit(r) | ||
if throw: | ||||
raise util.Abort(_('%s hook %s') % (name, desc)) | ||||
Vadim Gelfer
|
r2221 | self.ui.warn(_('warning: %s hook %s\n') % (name, desc)) | ||
return r | ||||
Benoit Boissinot
|
r1480 | |||
Vadim Gelfer
|
r2221 | r = False | ||
Thomas Arendsen Hein
|
r1838 | hooks = [(hname, cmd) for hname, cmd in self.ui.configitems("hooks") | ||
if hname.split(".", 1)[0] == name and cmd] | ||||
hooks.sort() | ||||
for hname, cmd in hooks: | ||||
Vadim Gelfer
|
r2155 | if cmd.startswith('python:'): | ||
Vadim Gelfer
|
r2221 | r = callhook(hname, cmd[7:].strip()) or r | ||
Vadim Gelfer
|
r2155 | else: | ||
Vadim Gelfer
|
r2221 | r = runhook(hname, cmd) or r | ||
Benoit Boissinot
|
r1480 | return r | ||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2601 | tag_disallowed = ':\r\n' | ||
Matt Mackall
|
r2967 | def tag(self, name, node, message, local, user, date): | ||
Vadim Gelfer
|
r2601 | '''tag a revision with a symbolic name. | ||
if local is True, the tag is stored in a per-repository file. | ||||
otherwise, it is stored in the .hgtags file, and a new | ||||
changeset is committed with the change. | ||||
keyword arguments: | ||||
local: whether to store tag in non-version-controlled file | ||||
(default False) | ||||
message: commit message to use if committing | ||||
user: name of user to use if committing | ||||
date: date tuple to use if committing''' | ||||
for c in self.tag_disallowed: | ||||
if c in name: | ||||
raise util.Abort(_('%r cannot be used in a tag name') % c) | ||||
Matt Mackall
|
r2967 | self.hook('pretag', throw=True, node=hex(node), tag=name, local=local) | ||
Vadim Gelfer
|
r2601 | |||
if local: | ||||
Matt Mackall
|
r3772 | # local tags are stored in the current charset | ||
Matt Mackall
|
r2967 | self.opener('localtags', 'a').write('%s %s\n' % (hex(node), name)) | ||
self.hook('tag', node=hex(node), tag=name, local=local) | ||||
Vadim Gelfer
|
r2601 | return | ||
Vadim Gelfer
|
r2875 | for x in self.status()[:5]: | ||
Vadim Gelfer
|
r2601 | if '.hgtags' in x: | ||
raise util.Abort(_('working copy of .hgtags is changed ' | ||||
'(please commit .hgtags manually)')) | ||||
Matt Mackall
|
r3772 | # committed tags are stored in UTF-8 | ||
line = '%s %s\n' % (hex(node), util.fromlocal(name)) | ||||
self.wfile('.hgtags', 'ab').write(line) | ||||
Vadim Gelfer
|
r2601 | if self.dirstate.state('.hgtags') == '?': | ||
self.add(['.hgtags']) | ||||
self.commit(['.hgtags'], message, user, date) | ||||
Matt Mackall
|
r2967 | self.hook('tag', node=hex(node), tag=name, local=local) | ||
Vadim Gelfer
|
r2601 | |||
mpm@selenic.com
|
r1089 | def tags(self): | ||
'''return a mapping of tag to node''' | ||||
if not self.tagscache: | ||||
self.tagscache = {} | ||||
Benoit Boissinot
|
r1986 | def parsetag(line, context): | ||
if not line: | ||||
return | ||||
s = l.split(" ", 1) | ||||
if len(s) != 2: | ||||
Vadim Gelfer
|
r2320 | self.ui.warn(_("%s: cannot parse entry\n") % context) | ||
Benoit Boissinot
|
r1986 | return | ||
node, key = s | ||||
Matt Mackall
|
r3772 | key = util.tolocal(key.strip()) # stored in UTF-8 | ||
Benoit Boissinot
|
r1986 | try: | ||
bin_n = bin(node) | ||||
except TypeError: | ||||
Vadim Gelfer
|
r2320 | self.ui.warn(_("%s: node '%s' is not well formed\n") % | ||
(context, node)) | ||||
Benoit Boissinot
|
r1986 | return | ||
if bin_n not in self.changelog.nodemap: | ||||
Vadim Gelfer
|
r2320 | self.ui.warn(_("%s: tag '%s' refers to unknown node\n") % | ||
(context, key)) | ||||
Benoit Boissinot
|
r1986 | return | ||
Vadim Gelfer
|
r2320 | self.tagscache[key] = bin_n | ||
Benoit Boissinot
|
r1986 | |||
Vadim Gelfer
|
r2320 | # read the tags file from each head, ending with the tip, | ||
Benoit Boissinot
|
r1986 | # and add each tag found to the map, with "newer" ones | ||
# taking precedence | ||||
Alexis S. L. Carvalho
|
r3577 | f = None | ||
for rev, node, fnode in self._hgtagsnodes(): | ||||
f = (f and f.filectx(fnode) or | ||||
self.filectx('.hgtags', fileid=fnode)) | ||||
Benoit Boissinot
|
r1986 | count = 0 | ||
Matt Mackall
|
r3455 | for l in f.data().splitlines(): | ||
Benoit Boissinot
|
r1986 | count += 1 | ||
Matt Mackall
|
r3455 | parsetag(l, _("%s, line %d") % (str(f), count)) | ||
Matt Mackall
|
r3456 | |||
mpm@selenic.com
|
r1089 | try: | ||
f = self.opener("localtags") | ||||
Benoit Boissinot
|
r1986 | count = 0 | ||
mpm@selenic.com
|
r1089 | for l in f: | ||
Matt Mackall
|
r3772 | # localtags are stored in the local character set | ||
# while the internal tag table is stored in UTF-8 | ||||
l = util.fromlocal(l) | ||||
Benoit Boissinot
|
r1986 | count += 1 | ||
Vadim Gelfer
|
r2320 | parsetag(l, _("localtags, line %d") % count) | ||
mpm@selenic.com
|
r1089 | except IOError: | ||
pass | ||||
self.tagscache['tip'] = self.changelog.tip() | ||||
return self.tagscache | ||||
Alexis S. L. Carvalho
|
r3577 | def _hgtagsnodes(self): | ||
heads = self.heads() | ||||
heads.reverse() | ||||
last = {} | ||||
ret = [] | ||||
for node in heads: | ||||
c = self.changectx(node) | ||||
rev = c.rev() | ||||
try: | ||||
fnode = c.filenode('.hgtags') | ||||
except repo.LookupError: | ||||
continue | ||||
ret.append((rev, node, fnode)) | ||||
if fnode in last: | ||||
ret[last[fnode]] = None | ||||
last[fnode] = len(ret) - 1 | ||||
return [item for item in ret if item] | ||||
mpm@selenic.com
|
r1089 | def tagslist(self): | ||
'''return a list of tags ordered by revision''' | ||||
l = [] | ||||
for t, n in self.tags().items(): | ||||
try: | ||||
r = self.changelog.rev(n) | ||||
except: | ||||
r = -2 # sort to the beginning of the list if unknown | ||||
Thomas Arendsen Hein
|
r1615 | l.append((r, t, n)) | ||
mpm@selenic.com
|
r1089 | l.sort() | ||
Thomas Arendsen Hein
|
r1615 | return [(t, n) for r, t, n in l] | ||
mpm@selenic.com
|
r1089 | |||
def nodetags(self, node): | ||||
'''return the tags associated with a node''' | ||||
if not self.nodetagscache: | ||||
self.nodetagscache = {} | ||||
Thomas Arendsen Hein
|
r1615 | for t, n in self.tags().items(): | ||
self.nodetagscache.setdefault(n, []).append(t) | ||||
mpm@selenic.com
|
r1089 | return self.nodetagscache.get(node, []) | ||
Alexis S. L. Carvalho
|
r3826 | def _branchtags(self): | ||
Alexis S. L. Carvalho
|
r3491 | partial, last, lrev = self._readbranchcache() | ||
tiprev = self.changelog.count() - 1 | ||||
if lrev != tiprev: | ||||
self._updatebranchcache(partial, lrev+1, tiprev+1) | ||||
self._writebranchcache(partial, self.changelog.tip(), tiprev) | ||||
Alexis S. L. Carvalho
|
r3826 | return partial | ||
def branchtags(self): | ||||
if self.branchcache is not None: | ||||
return self.branchcache | ||||
self.branchcache = {} # avoid recursion in changectx | ||||
partial = self._branchtags() | ||||
Matt Mackall
|
r3773 | # the branch cache is stored on disk as UTF-8, but in the local | ||
# charset internally | ||||
for k, v in partial.items(): | ||||
self.branchcache[util.tolocal(k)] = v | ||||
Alexis S. L. Carvalho
|
r3491 | return self.branchcache | ||
def _readbranchcache(self): | ||||
partial = {} | ||||
Matt Mackall
|
r3417 | try: | ||
f = self.opener("branches.cache") | ||||
Alexis S. L. Carvalho
|
r3668 | lines = f.read().split('\n') | ||
f.close() | ||||
last, lrev = lines.pop(0).rstrip().split(" ", 1) | ||||
Matt Mackall
|
r3417 | last, lrev = bin(last), int(lrev) | ||
Alexis S. L. Carvalho
|
r3761 | if not (lrev < self.changelog.count() and | ||
self.changelog.node(lrev) == last): # sanity check | ||||
# invalidate the cache | ||||
raise ValueError('Invalid branch cache: unknown tip') | ||||
for l in lines: | ||||
if not l: continue | ||||
node, label = l.rstrip().split(" ", 1) | ||||
partial[label] = bin(node) | ||||
except (KeyboardInterrupt, util.SignalInterrupt): | ||||
raise | ||||
except Exception, inst: | ||||
if self.ui.debugflag: | ||||
self.ui.warn(str(inst), '\n') | ||||
partial, last, lrev = {}, nullid, nullrev | ||||
Alexis S. L. Carvalho
|
r3491 | return partial, last, lrev | ||
Matt Mackall
|
r3417 | |||
Alexis S. L. Carvalho
|
r3491 | def _writebranchcache(self, branches, tip, tiprev): | ||
Matt Mackall
|
r3452 | try: | ||
f = self.opener("branches.cache", "w") | ||||
Alexis S. L. Carvalho
|
r3491 | f.write("%s %s\n" % (hex(tip), tiprev)) | ||
for label, node in branches.iteritems(): | ||||
Matt Mackall
|
r3452 | f.write("%s %s\n" % (hex(node), label)) | ||
except IOError: | ||||
pass | ||||
Matt Mackall
|
r3417 | |||
Alexis S. L. Carvalho
|
r3491 | def _updatebranchcache(self, partial, start, end): | ||
for r in xrange(start, end): | ||||
c = self.changectx(r) | ||||
b = c.branch() | ||||
if b: | ||||
partial[b] = c.node() | ||||
mpm@selenic.com
|
r1089 | def lookup(self, key): | ||
Matt Mackall
|
r3418 | if key == '.': | ||
key = self.dirstate.parents()[0] | ||||
if key == nullid: | ||||
raise repo.RepoError(_("no revision checked out")) | ||||
Brendan Cully
|
r3801 | elif key == 'null': | ||
return nullid | ||||
Matt Mackall
|
r3453 | n = self.changelog._match(key) | ||
if n: | ||||
return n | ||||
Matt Mackall
|
r3418 | if key in self.tags(): | ||
mpm@selenic.com
|
r1089 | return self.tags()[key] | ||
Matt Mackall
|
r3418 | if key in self.branchtags(): | ||
return self.branchtags()[key] | ||||
Matt Mackall
|
r3453 | n = self.changelog._partialmatch(key) | ||
if n: | ||||
return n | ||||
raise repo.RepoError(_("unknown revision '%s'") % key) | ||||
mpm@selenic.com
|
r1089 | |||
def dev(self): | ||||
Vadim Gelfer
|
r2448 | return os.lstat(self.path).st_dev | ||
mpm@selenic.com
|
r1089 | |||
def local(self): | ||||
mpm@selenic.com
|
r1101 | return True | ||
mpm@selenic.com
|
r1089 | |||
def join(self, f): | ||||
return os.path.join(self.path, f) | ||||
Matt Mackall
|
r3457 | def sjoin(self, f): | ||
Benoit Boissinot
|
r3853 | f = self.encodefn(f) | ||
Benoit Boissinot
|
r3791 | return os.path.join(self.spath, f) | ||
Matt Mackall
|
r3457 | |||
mpm@selenic.com
|
r1089 | def wjoin(self, f): | ||
return os.path.join(self.root, f) | ||||
def file(self, f): | ||||
Thomas Arendsen Hein
|
r1615 | if f[0] == '/': | ||
f = f[1:] | ||||
Matt Mackall
|
r3457 | return filelog.filelog(self.sopener, f, self.revlogversion) | ||
mpm@selenic.com
|
r1089 | |||
Brendan Cully
|
r3132 | def changectx(self, changeid=None): | ||
Matt Mackall
|
r2564 | return context.changectx(self, changeid) | ||
Matt Mackall
|
r3218 | def workingctx(self): | ||
return context.workingctx(self) | ||||
Matt Mackall
|
r3163 | def parents(self, changeid=None): | ||
''' | ||||
get list of changectxs for parents of changeid or working directory | ||||
''' | ||||
if changeid is None: | ||||
pl = self.dirstate.parents() | ||||
else: | ||||
n = self.changelog.lookup(changeid) | ||||
pl = self.changelog.parents(n) | ||||
Matt Mackall
|
r3164 | if pl[1] == nullid: | ||
return [self.changectx(pl[0])] | ||||
return [self.changectx(pl[0]), self.changectx(pl[1])] | ||||
Matt Mackall
|
r3163 | |||
Matt Mackall
|
r2564 | def filectx(self, path, changeid=None, fileid=None): | ||
"""changeid can be a changeset revision, node, or tag. | ||||
fileid can be a file revision or node.""" | ||||
return context.filectx(self, path, changeid, fileid) | ||||
mpm@selenic.com
|
r1089 | def getcwd(self): | ||
return self.dirstate.getcwd() | ||||
def wfile(self, f, mode='r'): | ||||
return self.wopener(f, mode) | ||||
def wread(self, filename): | ||||
mpm@selenic.com
|
r1258 | if self.encodepats == None: | ||
l = [] | ||||
for pat, cmd in self.ui.configitems("encode"): | ||||
Benoit Boissinot
|
r1947 | mf = util.matcher(self.root, "", [pat], [], [])[1] | ||
mpm@selenic.com
|
r1258 | l.append((mf, cmd)) | ||
self.encodepats = l | ||||
data = self.wopener(filename, 'r').read() | ||||
for mf, cmd in self.encodepats: | ||||
if mf(filename): | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("filtering %s through %s\n") % (filename, cmd)) | ||
mpm@selenic.com
|
r1258 | data = util.filter(data, cmd) | ||
break | ||||
return data | ||||
mpm@selenic.com
|
r1089 | |||
def wwrite(self, filename, data, fd=None): | ||||
mpm@selenic.com
|
r1258 | if self.decodepats == None: | ||
l = [] | ||||
for pat, cmd in self.ui.configitems("decode"): | ||||
Benoit Boissinot
|
r1947 | mf = util.matcher(self.root, "", [pat], [], [])[1] | ||
mpm@selenic.com
|
r1258 | l.append((mf, cmd)) | ||
self.decodepats = l | ||||
for mf, cmd in self.decodepats: | ||||
if mf(filename): | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("filtering %s through %s\n") % (filename, cmd)) | ||
mpm@selenic.com
|
r1258 | data = util.filter(data, cmd) | ||
break | ||||
mpm@selenic.com
|
r1089 | if fd: | ||
return fd.write(data) | ||||
return self.wopener(filename, 'w').write(data) | ||||
def transaction(self): | ||||
mason@suse.com
|
r1806 | tr = self.transhandle | ||
if tr != None and tr.running(): | ||||
return tr.nest() | ||||
Thomas Arendsen Hein
|
r2362 | # save dirstate for rollback | ||
mpm@selenic.com
|
r1089 | try: | ||
ds = self.opener("dirstate").read() | ||||
except IOError: | ||||
ds = "" | ||||
self.opener("journal.dirstate", "w").write(ds) | ||||
Benoit Boissinot
|
r3790 | renames = [(self.sjoin("journal"), self.sjoin("undo")), | ||
(self.join("journal.dirstate"), self.join("undo.dirstate"))] | ||||
Matt Mackall
|
r3457 | tr = transaction.transaction(self.ui.warn, self.sopener, | ||
self.sjoin("journal"), | ||||
Benoit Boissinot
|
r3790 | aftertrans(renames)) | ||
mason@suse.com
|
r1806 | self.transhandle = tr | ||
return tr | ||||
mpm@selenic.com
|
r1089 | |||
def recover(self): | ||||
Benoit Boissinot
|
r1749 | l = self.lock() | ||
Matt Mackall
|
r3457 | if os.path.exists(self.sjoin("journal")): | ||
Benoit Boissinot
|
r1402 | self.ui.status(_("rolling back interrupted transaction\n")) | ||
Matt Mackall
|
r3457 | transaction.rollback(self.sopener, self.sjoin("journal")) | ||
Benoit Boissinot
|
r1784 | self.reload() | ||
Matt Mackall
|
r1516 | return True | ||
mpm@selenic.com
|
r1089 | else: | ||
Benoit Boissinot
|
r1402 | self.ui.warn(_("no interrupted transaction available\n")) | ||
Matt Mackall
|
r1516 | return False | ||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r2362 | def rollback(self, wlock=None): | ||
mason@suse.com
|
r1712 | if not wlock: | ||
wlock = self.wlock() | ||||
Benoit Boissinot
|
r1749 | l = self.lock() | ||
Matt Mackall
|
r3457 | if os.path.exists(self.sjoin("undo")): | ||
Benoit Boissinot
|
r1402 | self.ui.status(_("rolling back last transaction\n")) | ||
Matt Mackall
|
r3457 | transaction.rollback(self.sopener, self.sjoin("undo")) | ||
mpm@selenic.com
|
r1089 | util.rename(self.join("undo.dirstate"), self.join("dirstate")) | ||
Benoit Boissinot
|
r1784 | self.reload() | ||
self.wreload() | ||||
mpm@selenic.com
|
r1089 | else: | ||
Thomas Arendsen Hein
|
r2362 | self.ui.warn(_("no rollback information available\n")) | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r1784 | def wreload(self): | ||
self.dirstate.read() | ||||
def reload(self): | ||||
self.changelog.load() | ||||
self.manifest.load() | ||||
self.tagscache = None | ||||
self.nodetagscache = None | ||||
Vadim Gelfer
|
r2016 | def do_lock(self, lockname, wait, releasefn=None, acquirefn=None, | ||
desc=None): | ||||
mpm@selenic.com
|
r1089 | try: | ||
Matt Mackall
|
r3457 | l = lock.lock(lockname, 0, releasefn, desc=desc) | ||
Benoit Boissinot
|
r1531 | except lock.LockHeld, inst: | ||
if not wait: | ||||
Vadim Gelfer
|
r2016 | raise | ||
Thomas Arendsen Hein
|
r3688 | self.ui.warn(_("waiting for lock on %s held by %r\n") % | ||
(desc, inst.locker)) | ||||
Vadim Gelfer
|
r2016 | # default to 600 seconds timeout | ||
Matt Mackall
|
r3457 | l = lock.lock(lockname, int(self.ui.config("ui", "timeout", "600")), | ||
Vadim Gelfer
|
r2016 | releasefn, desc=desc) | ||
Benoit Boissinot
|
r1751 | if acquirefn: | ||
acquirefn() | ||||
return l | ||||
def lock(self, wait=1): | ||||
Matt Mackall
|
r3457 | return self.do_lock(self.sjoin("lock"), wait, acquirefn=self.reload, | ||
Vadim Gelfer
|
r2016 | desc=_('repository %s') % self.origroot) | ||
Benoit Boissinot
|
r1751 | |||
def wlock(self, wait=1): | ||||
Matt Mackall
|
r3457 | return self.do_lock(self.join("wlock"), wait, self.dirstate.write, | ||
Vadim Gelfer
|
r2016 | self.wreload, | ||
desc=_('working directory of %s') % self.origroot) | ||||
Benoit Boissinot
|
r1531 | |||
Matt Mackall
|
r3294 | def filecommit(self, fn, manifest1, manifest2, linkrev, transaction, changelist): | ||
Matt Mackall
|
r3292 | """ | ||
Matt Mackall
|
r3294 | commit an individual file as part of a larger transaction | ||
""" | ||||
Matt Mackall
|
r3292 | |||
Matt Mackall
|
r3294 | t = self.wread(fn) | ||
fl = self.file(fn) | ||||
fp1 = manifest1.get(fn, nullid) | ||||
fp2 = manifest2.get(fn, nullid) | ||||
Matt Mackall
|
r1716 | |||
Matt Mackall
|
r3292 | meta = {} | ||
Matt Mackall
|
r3294 | cp = self.dirstate.copied(fn) | ||
Matt Mackall
|
r3292 | if cp: | ||
meta["copy"] = cp | ||||
if not manifest2: # not a branch merge | ||||
meta["copyrev"] = hex(manifest1.get(cp, nullid)) | ||||
fp2 = nullid | ||||
elif fp2 != nullid: # copied on remote side | ||||
meta["copyrev"] = hex(manifest1.get(cp, nullid)) | ||||
Matt Mackall
|
r3733 | elif fp1 != nullid: # copied on local side, reversed | ||
Matt Mackall
|
r3292 | meta["copyrev"] = hex(manifest2.get(cp)) | ||
fp2 = nullid | ||||
Matt Mackall
|
r3733 | else: # directory rename | ||
meta["copyrev"] = hex(manifest1.get(cp, nullid)) | ||||
Matt Mackall
|
r3292 | self.ui.debug(_(" %s: copy %s:%s\n") % | ||
Matt Mackall
|
r3294 | (fn, cp, meta["copyrev"])) | ||
Matt Mackall
|
r3292 | fp1 = nullid | ||
elif fp2 != nullid: | ||||
Matt Mackall
|
r1716 | # is one parent an ancestor of the other? | ||
Matt Mackall
|
r3294 | fpa = fl.ancestor(fp1, fp2) | ||
Matt Mackall
|
r1716 | if fpa == fp1: | ||
fp1, fp2 = fp2, nullid | ||||
elif fpa == fp2: | ||||
fp2 = nullid | ||||
# is the file unmodified from the parent? report existing entry | ||||
Matt Mackall
|
r3294 | if fp2 == nullid and not fl.cmp(fp1, t): | ||
return fp1 | ||||
Matt Mackall
|
r1716 | |||
Matt Mackall
|
r3294 | changelist.append(fn) | ||
return fl.add(t, meta, transaction, linkrev, fp1, fp2) | ||||
Matt Mackall
|
r1716 | |||
mason@suse.com
|
r1712 | def rawcommit(self, files, text, user, date, p1=None, p2=None, wlock=None): | ||
Benoit Boissinot
|
r3621 | if p1 is None: | ||
p1, p2 = self.dirstate.parents() | ||||
return self.commit(files=files, text=text, user=user, date=date, | ||||
p1=p1, p2=p2, wlock=wlock) | ||||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r1615 | def commit(self, files=None, text="", user=None, date=None, | ||
john.levon@sun.com
|
r2267 | match=util.always, force=False, lock=None, wlock=None, | ||
Brendan Cully
|
r3664 | force_editor=False, p1=None, p2=None, extra={}): | ||
Benoit Boissinot
|
r3621 | |||
mpm@selenic.com
|
r1089 | commit = [] | ||
remove = [] | ||||
changed = [] | ||||
Benoit Boissinot
|
r3621 | use_dirstate = (p1 is None) # not rawcommit | ||
Brendan Cully
|
r3664 | extra = extra.copy() | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r3621 | if use_dirstate: | ||
if files: | ||||
for f in files: | ||||
s = self.dirstate.state(f) | ||||
if s in 'nmai': | ||||
commit.append(f) | ||||
elif s == 'r': | ||||
remove.append(f) | ||||
else: | ||||
self.ui.warn(_("%s not tracked!\n") % f) | ||||
else: | ||||
changes = self.status(match=match)[:5] | ||||
modified, added, removed, deleted, unknown = changes | ||||
commit = modified + added | ||||
remove = removed | ||||
mpm@selenic.com
|
r1089 | else: | ||
Benoit Boissinot
|
r3621 | commit = files | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r3621 | if use_dirstate: | ||
p1, p2 = self.dirstate.parents() | ||||
update_dirstate = True | ||||
else: | ||||
p1, p2 = p1, p2 or nullid | ||||
update_dirstate = (self.dirstate.parents()[0] == p1) | ||||
mpm@selenic.com
|
r1089 | c1 = self.changelog.read(p1) | ||
c2 = self.changelog.read(p2) | ||||
Matt Mackall
|
r2840 | m1 = self.manifest.read(c1[0]).copy() | ||
mpm@selenic.com
|
r1089 | m2 = self.manifest.read(c2[0]) | ||
Benoit Boissinot
|
r3621 | if use_dirstate: | ||
Alexis S. L. Carvalho
|
r3862 | branchname = self.workingctx().branch() | ||
try: | ||||
branchname = branchname.decode('UTF-8').encode('UTF-8') | ||||
except UnicodeDecodeError: | ||||
raise util.Abort(_('branch name not in UTF-8!')) | ||||
Benoit Boissinot
|
r3621 | else: | ||
branchname = "" | ||||
Matt Mackall
|
r3419 | |||
Benoit Boissinot
|
r3621 | if use_dirstate: | ||
Matt Mackall
|
r3773 | oldname = c1[5].get("branch", "") # stored in UTF-8 | ||
Benoit Boissinot
|
r3621 | if not commit and not remove and not force and p2 == nullid and \ | ||
branchname == oldname: | ||||
self.ui.status(_("nothing changed\n")) | ||||
return None | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r1721 | xp1 = hex(p1) | ||
if p2 == nullid: xp2 = '' | ||||
else: xp2 = hex(p2) | ||||
Vadim Gelfer
|
r1727 | self.hook("precommit", throw=True, parent1=xp1, parent2=xp2) | ||
mpm@selenic.com
|
r1089 | |||
mason@suse.com
|
r1712 | if not wlock: | ||
wlock = self.wlock() | ||||
mason@suse.com
|
r1807 | if not lock: | ||
lock = self.lock() | ||||
mpm@selenic.com
|
r1089 | tr = self.transaction() | ||
# check in files | ||||
Alexis S. L. Carvalho
|
r3675 | new = {} | ||
mpm@selenic.com
|
r1089 | linkrev = self.changelog.count() | ||
commit.sort() | ||||
for f in commit: | ||||
self.ui.note(f + "\n") | ||||
try: | ||||
Alexis S. L. Carvalho
|
r3675 | new[f] = self.filecommit(f, m1, m2, linkrev, tr, changed) | ||
Matt Mackall
|
r2840 | m1.set(f, util.is_exec(self.wjoin(f), m1.execf(f))) | ||
mpm@selenic.com
|
r1089 | except IOError: | ||
Benoit Boissinot
|
r3621 | if use_dirstate: | ||
self.ui.warn(_("trouble committing %s!\n") % f) | ||||
raise | ||||
else: | ||||
remove.append(f) | ||||
mpm@selenic.com
|
r1089 | |||
# update manifest | ||||
Alexis S. L. Carvalho
|
r3675 | m1.update(new) | ||
Benoit Boissinot
|
r3620 | remove.sort() | ||
mpm@selenic.com
|
r1089 | for f in remove: | ||
if f in m1: | ||||
del m1[f] | ||||
Matt Mackall
|
r3294 | mn = self.manifest.add(m1, tr, linkrev, c1[0], c2[0], (new, remove)) | ||
mpm@selenic.com
|
r1089 | |||
# add changeset | ||||
Alexis S. L. Carvalho
|
r3675 | new = new.keys() | ||
new.sort() | ||||
Thomas Arendsen Hein
|
r1983 | user = user or self.ui.username() | ||
john.levon@sun.com
|
r2267 | if not text or force_editor: | ||
edittext = [] | ||||
if text: | ||||
edittext.append(text) | ||||
edittext.append("") | ||||
Benoit Boissinot
|
r3721 | edittext.append("HG: user: %s" % user) | ||
mpm@selenic.com
|
r1089 | if p2 != nullid: | ||
Thomas Arendsen Hein
|
r1709 | edittext.append("HG: branch merge") | ||
edittext.extend(["HG: changed %s" % f for f in changed]) | ||||
edittext.extend(["HG: removed %s" % f for f in remove]) | ||||
mpm@selenic.com
|
r1089 | if not changed and not remove: | ||
Thomas Arendsen Hein
|
r1709 | edittext.append("HG: no files changed") | ||
edittext.append("") | ||||
Thomas Arendsen Hein
|
r1706 | # run editor in the repository root | ||
olddir = os.getcwd() | ||||
os.chdir(self.root) | ||||
Thomas Arendsen Hein
|
r2301 | text = self.ui.edit("\n".join(edittext), user) | ||
Thomas Arendsen Hein
|
r1706 | os.chdir(olddir) | ||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r2301 | lines = [line.rstrip() for line in text.rstrip().splitlines()] | ||
while lines and not lines[0]: | ||||
del lines[0] | ||||
if not lines: | ||||
return None | ||||
text = '\n'.join(lines) | ||||
Matt Mackall
|
r3419 | if branchname: | ||
extra["branch"] = branchname | ||||
n = self.changelog.add(mn, changed + remove, text, tr, p1, p2, | ||||
user, date, extra) | ||||
Vadim Gelfer
|
r1727 | self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1, | ||
parent2=xp2) | ||||
mpm@selenic.com
|
r1089 | tr.close() | ||
Benoit Boissinot
|
r3621 | if use_dirstate or update_dirstate: | ||
self.dirstate.setparents(n) | ||||
if use_dirstate: | ||||
self.dirstate.update(new, "n") | ||||
self.dirstate.forget(remove) | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r1727 | self.hook("commit", node=hex(n), parent1=xp1, parent2=xp2) | ||
mpm@selenic.com
|
r1089 | return n | ||
Vadim Gelfer
|
r2029 | def walk(self, node=None, files=[], match=util.always, badmatch=None): | ||
Matt Mackall
|
r3532 | ''' | ||
walk recursively through the directory tree or a given | ||||
changeset, finding all files matched by the match | ||||
function | ||||
results are yielded in a tuple (src, filename), where src | ||||
is one of: | ||||
'f' the file was found in the directory tree | ||||
'm' the file was only in the dirstate and not in the tree | ||||
'b' file was not found and matched badmatch | ||||
''' | ||||
mpm@selenic.com
|
r1089 | if node: | ||
Benoit Boissinot
|
r1582 | fdict = dict.fromkeys(files) | ||
mpm@selenic.com
|
r1089 | for fn in self.manifest.read(self.changelog.read(node)[0]): | ||
Benoit Boissinot
|
r3019 | for ffn in fdict: | ||
# match if the file is the exact name or a directory | ||||
if ffn == fn or fn.startswith("%s/" % ffn): | ||||
del fdict[ffn] | ||||
break | ||||
Benoit Boissinot
|
r1582 | if match(fn): | ||
yield 'm', fn | ||||
for fn in fdict: | ||||
Vadim Gelfer
|
r2029 | if badmatch and badmatch(fn): | ||
if match(fn): | ||||
yield 'b', fn | ||||
else: | ||||
self.ui.warn(_('%s: No such file in rev %s\n') % ( | ||||
util.pathto(self.getcwd(), fn), short(node))) | ||||
mpm@selenic.com
|
r1089 | else: | ||
Vadim Gelfer
|
r2042 | for src, fn in self.dirstate.walk(files, match, badmatch=badmatch): | ||
mpm@selenic.com
|
r1089 | yield src, fn | ||
Vadim Gelfer
|
r2661 | def status(self, node1=None, node2=None, files=[], match=util.always, | ||
wlock=None, list_ignored=False, list_clean=False): | ||||
"""return status of files between two nodes or node and working directory | ||||
Thomas Arendsen Hein
|
r1616 | |||
If node1 is None, use the first dirstate parent instead. | ||||
If node2 is None, compare node1 with working directory. | ||||
""" | ||||
mpm@selenic.com
|
r1089 | |||
def fcmp(fn, mf): | ||||
t1 = self.wread(fn) | ||||
Matt Mackall
|
r2887 | return self.file(fn).cmp(mf.get(fn, nullid), t1) | ||
mpm@selenic.com
|
r1089 | |||
def mfmatches(node): | ||||
Thomas Arendsen Hein
|
r1616 | change = self.changelog.read(node) | ||
Benoit Boissinot
|
r3322 | mf = self.manifest.read(change[0]).copy() | ||
mpm@selenic.com
|
r1089 | for fn in mf.keys(): | ||
if not match(fn): | ||||
del mf[fn] | ||||
return mf | ||||
Vadim Gelfer
|
r2661 | modified, added, removed, deleted, unknown = [], [], [], [], [] | ||
ignored, clean = [], [] | ||||
Chris Mason
|
r2474 | compareworking = False | ||
Chris Mason
|
r2491 | if not node1 or (not node2 and node1 == self.dirstate.parents()[0]): | ||
Chris Mason
|
r2474 | compareworking = True | ||
if not compareworking: | ||||
Alexis S. L. Carvalho
|
r1802 | # read the manifest from node1 before the manifest from node2, | ||
# so that we'll hit the manifest cache if we're going through | ||||
# all the revisions in parent->child order. | ||||
mf1 = mfmatches(node1) | ||||
mpm@selenic.com
|
r1089 | # are we comparing the working directory? | ||
if not node2: | ||||
mason@suse.com
|
r1712 | if not wlock: | ||
try: | ||||
wlock = self.wlock(wait=0) | ||||
Benoit Boissinot
|
r1754 | except lock.LockException: | ||
mason@suse.com
|
r1712 | wlock = None | ||
Vadim Gelfer
|
r2661 | (lookup, modified, added, removed, deleted, unknown, | ||
ignored, clean) = self.dirstate.status(files, match, | ||||
list_ignored, list_clean) | ||||
mpm@selenic.com
|
r1089 | |||
# are we comparing working dir against its parent? | ||||
Chris Mason
|
r2474 | if compareworking: | ||
Thomas Arendsen Hein
|
r1616 | if lookup: | ||
mpm@selenic.com
|
r1089 | # do a full compare of any files that might have changed | ||
Thomas Arendsen Hein
|
r1616 | mf2 = mfmatches(self.dirstate.parents()[0]) | ||
for f in lookup: | ||||
mpm@selenic.com
|
r1089 | if fcmp(f, mf2): | ||
Thomas Arendsen Hein
|
r1616 | modified.append(f) | ||
Alexis S. L. Carvalho
|
r2961 | else: | ||
clean.append(f) | ||||
if wlock is not None: | ||||
self.dirstate.update([f], "n") | ||||
Thomas Arendsen Hein
|
r1616 | else: | ||
# we are comparing working dir against non-parent | ||||
# generate a pseudo-manifest for the working dir | ||||
Benoit Boissinot
|
r3322 | # XXX: create it in dirstate.py ? | ||
Thomas Arendsen Hein
|
r1616 | mf2 = mfmatches(self.dirstate.parents()[0]) | ||
for f in lookup + modified + added: | ||||
mf2[f] = "" | ||||
Benoit Boissinot
|
r3322 | mf2.set(f, execf=util.is_exec(self.wjoin(f), mf2.execf(f))) | ||
Thomas Arendsen Hein
|
r1617 | for f in removed: | ||
Thomas Arendsen Hein
|
r1616 | if f in mf2: | ||
del mf2[f] | ||||
mpm@selenic.com
|
r1089 | else: | ||
Thomas Arendsen Hein
|
r1616 | # we are comparing two revisions | ||
mf2 = mfmatches(node2) | ||||
mpm@selenic.com
|
r1089 | |||
Chris Mason
|
r2474 | if not compareworking: | ||
Thomas Arendsen Hein
|
r1616 | # flush lists from dirstate before comparing manifests | ||
Vadim Gelfer
|
r2661 | modified, added, clean = [], [], [] | ||
mpm@selenic.com
|
r1089 | |||
Chris Mason
|
r2474 | # make sure to sort the files so we talk to the disk in a | ||
# reasonable order | ||||
mf2keys = mf2.keys() | ||||
mf2keys.sort() | ||||
for fn in mf2keys: | ||||
Thomas Arendsen Hein
|
r1616 | if mf1.has_key(fn): | ||
Benoit Boissinot
|
r3322 | if mf1.flags(fn) != mf2.flags(fn) or \ | ||
(mf1[fn] != mf2[fn] and (mf2[fn] != "" or fcmp(fn, mf1))): | ||||
Thomas Arendsen Hein
|
r1616 | modified.append(fn) | ||
Vadim Gelfer
|
r2661 | elif list_clean: | ||
clean.append(fn) | ||||
Thomas Arendsen Hein
|
r1616 | del mf1[fn] | ||
else: | ||||
added.append(fn) | ||||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r1617 | removed = mf1.keys() | ||
Thomas Arendsen Hein
|
r1616 | # sort and return results: | ||
Vadim Gelfer
|
r2661 | for l in modified, added, removed, deleted, unknown, ignored, clean: | ||
mpm@selenic.com
|
r1089 | l.sort() | ||
Vadim Gelfer
|
r2661 | return (modified, added, removed, deleted, unknown, ignored, clean) | ||
mason@suse.com
|
r1712 | def add(self, list, wlock=None): | ||
if not wlock: | ||||
wlock = self.wlock() | ||||
mpm@selenic.com
|
r1089 | for f in list: | ||
p = self.wjoin(f) | ||||
if not os.path.exists(p): | ||||
Benoit Boissinot
|
r1402 | self.ui.warn(_("%s does not exist!\n") % f) | ||
mpm@selenic.com
|
r1089 | elif not os.path.isfile(p): | ||
Thomas Arendsen Hein
|
r1615 | self.ui.warn(_("%s not added: only files supported currently\n") | ||
% f) | ||||
mpm@selenic.com
|
r1089 | elif self.dirstate.state(f) in 'an': | ||
Benoit Boissinot
|
r1402 | self.ui.warn(_("%s already tracked!\n") % f) | ||
mpm@selenic.com
|
r1089 | else: | ||
self.dirstate.update([f], "a") | ||||
mason@suse.com
|
r1712 | def forget(self, list, wlock=None): | ||
if not wlock: | ||||
wlock = self.wlock() | ||||
mpm@selenic.com
|
r1089 | for f in list: | ||
if self.dirstate.state(f) not in 'ai': | ||||
Benoit Boissinot
|
r1402 | self.ui.warn(_("%s not added!\n") % f) | ||
mpm@selenic.com
|
r1089 | else: | ||
self.dirstate.forget([f]) | ||||
mason@suse.com
|
r1712 | def remove(self, list, unlink=False, wlock=None): | ||
Benoit Boissinot
|
r1415 | if unlink: | ||
for f in list: | ||||
try: | ||||
util.unlink(self.wjoin(f)) | ||||
except OSError, inst: | ||||
Thomas Arendsen Hein
|
r1615 | if inst.errno != errno.ENOENT: | ||
raise | ||||
mason@suse.com
|
r1712 | if not wlock: | ||
wlock = self.wlock() | ||||
mpm@selenic.com
|
r1089 | for f in list: | ||
p = self.wjoin(f) | ||||
if os.path.exists(p): | ||||
Benoit Boissinot
|
r1402 | self.ui.warn(_("%s still exists!\n") % f) | ||
mpm@selenic.com
|
r1089 | elif self.dirstate.state(f) == 'a': | ||
self.dirstate.forget([f]) | ||||
elif f not in self.dirstate: | ||||
Benoit Boissinot
|
r1402 | self.ui.warn(_("%s not tracked!\n") % f) | ||
mpm@selenic.com
|
r1089 | else: | ||
self.dirstate.update([f], "r") | ||||
mason@suse.com
|
r1712 | def undelete(self, list, wlock=None): | ||
Matt Mackall
|
r1448 | p = self.dirstate.parents()[0] | ||
Benoit Boissinot
|
r1447 | mn = self.changelog.read(p)[0] | ||
m = self.manifest.read(mn) | ||||
mason@suse.com
|
r1712 | if not wlock: | ||
wlock = self.wlock() | ||||
Benoit Boissinot
|
r1447 | for f in list: | ||
if self.dirstate.state(f) not in "r": | ||||
self.ui.warn("%s not removed!\n" % f) | ||||
else: | ||||
t = self.file(f).read(m[f]) | ||||
Benoit Boissinot
|
r1477 | self.wwrite(f, t) | ||
Matt Mackall
|
r2840 | util.set_exec(self.wjoin(f), m.execf(f)) | ||
Benoit Boissinot
|
r1447 | self.dirstate.update([f], "n") | ||
mason@suse.com
|
r1712 | def copy(self, source, dest, wlock=None): | ||
mpm@selenic.com
|
r1089 | p = self.wjoin(dest) | ||
if not os.path.exists(p): | ||||
Benoit Boissinot
|
r1402 | self.ui.warn(_("%s does not exist!\n") % dest) | ||
mpm@selenic.com
|
r1089 | elif not os.path.isfile(p): | ||
Benoit Boissinot
|
r1402 | self.ui.warn(_("copy failed: %s is not a file\n") % dest) | ||
mpm@selenic.com
|
r1089 | else: | ||
mason@suse.com
|
r1712 | if not wlock: | ||
wlock = self.wlock() | ||||
mpm@selenic.com
|
r1089 | if self.dirstate.state(dest) == '?': | ||
self.dirstate.update([dest], "a") | ||||
self.dirstate.copy(source, dest) | ||||
Thomas Arendsen Hein
|
r1551 | def heads(self, start=None): | ||
Benoit Boissinot
|
r1550 | heads = self.changelog.heads(start) | ||
# sort the output in rev descending order | ||||
heads = [(-self.changelog.rev(h), h) for h in heads] | ||||
heads.sort() | ||||
return [n for (r, n) in heads] | ||||
mpm@selenic.com
|
r1089 | |||
def branches(self, nodes): | ||||
Thomas Arendsen Hein
|
r1615 | if not nodes: | ||
nodes = [self.changelog.tip()] | ||||
mpm@selenic.com
|
r1089 | b = [] | ||
for n in nodes: | ||||
t = n | ||||
Benoit Boissinot
|
r2345 | while 1: | ||
mpm@selenic.com
|
r1089 | p = self.changelog.parents(n) | ||
if p[1] != nullid or p[0] == nullid: | ||||
b.append((t, n, p[0], p[1])) | ||||
break | ||||
n = p[0] | ||||
return b | ||||
def between(self, pairs): | ||||
r = [] | ||||
for top, bottom in pairs: | ||||
n, l, i = top, [], 0 | ||||
f = 1 | ||||
while n != bottom: | ||||
p = self.changelog.parents(n)[0] | ||||
if i == f: | ||||
l.append(n) | ||||
f = f * 2 | ||||
n = p | ||||
i += 1 | ||||
r.append(l) | ||||
return r | ||||
Vadim Gelfer
|
r1959 | def findincoming(self, remote, base=None, heads=None, force=False): | ||
Benoit Boissinot
|
r2339 | """Return list of roots of the subsets of missing nodes from remote | ||
If base dict is specified, assume that these nodes and their parents | ||||
exist on the remote side and that no child of a node of base exists | ||||
in both remote and self. | ||||
Furthermore base will be updated to include the nodes that exists | ||||
in self and remote but no children exists in self and remote. | ||||
If a list of heads is specified, return only nodes which are heads | ||||
or ancestors of these heads. | ||||
All the ancestors of base are in self and in remote. | ||||
All the descendants of the list returned are missing in self. | ||||
(and so we know that the rest of the nodes are missing in remote, see | ||||
outgoing) | ||||
""" | ||||
mpm@selenic.com
|
r1089 | m = self.changelog.nodemap | ||
search = [] | ||||
fetch = {} | ||||
seen = {} | ||||
seenbranch = {} | ||||
if base == None: | ||||
base = {} | ||||
Matt Mackall
|
r2108 | if not heads: | ||
heads = remote.heads() | ||||
if self.changelog.tip() == nullid: | ||||
Benoit Boissinot
|
r2339 | base[nullid] = 1 | ||
Matt Mackall
|
r2108 | if heads != [nullid]: | ||
return [nullid] | ||||
return [] | ||||
mpm@selenic.com
|
r1089 | # assume we're closer to the tip than the root | ||
# and start by examining the heads | ||||
Benoit Boissinot
|
r1402 | self.ui.status(_("searching for changes\n")) | ||
mpm@selenic.com
|
r1089 | |||
unknown = [] | ||||
for h in heads: | ||||
if h not in m: | ||||
unknown.append(h) | ||||
else: | ||||
base[h] = 1 | ||||
if not unknown: | ||||
Benoit Boissinot
|
r1895 | return [] | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r2339 | req = dict.fromkeys(unknown) | ||
mpm@selenic.com
|
r1089 | reqcnt = 0 | ||
# search through remote branches | ||||
# a 'branch' here is a linear segment of history, with four parts: | ||||
# head, root, first parent, second parent | ||||
# (a branch always has two parents (or none) by definition) | ||||
unknown = remote.branches(unknown) | ||||
while unknown: | ||||
r = [] | ||||
while unknown: | ||||
n = unknown.pop(0) | ||||
if n[0] in seen: | ||||
continue | ||||
Thomas Arendsen Hein
|
r1615 | self.ui.debug(_("examining %s:%s\n") | ||
% (short(n[0]), short(n[1]))) | ||||
Benoit Boissinot
|
r2339 | if n[0] == nullid: # found the end of the branch | ||
pass | ||||
elif n in seenbranch: | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("branch already found\n")) | ||
mpm@selenic.com
|
r1089 | continue | ||
Benoit Boissinot
|
r2339 | elif n[1] and n[1] in m: # do we know the base? | ||
Benoit Boissinot
|
r1402 | self.ui.debug(_("found incomplete branch %s:%s\n") | ||
mpm@selenic.com
|
r1089 | % (short(n[0]), short(n[1]))) | ||
search.append(n) # schedule branch range for scanning | ||||
seenbranch[n] = 1 | ||||
else: | ||||
if n[1] not in seen and n[1] not in fetch: | ||||
if n[2] in m and n[3] in m: | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("found new changeset %s\n") % | ||
mpm@selenic.com
|
r1089 | short(n[1])) | ||
fetch[n[1]] = 1 # earliest unknown | ||||
Benoit Boissinot
|
r2339 | for p in n[2:4]: | ||
if p in m: | ||||
base[p] = 1 # latest known | ||||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r2339 | for p in n[2:4]: | ||
if p not in req and p not in m: | ||||
r.append(p) | ||||
req[p] = 1 | ||||
mpm@selenic.com
|
r1089 | seen[n[0]] = 1 | ||
if r: | ||||
reqcnt += 1 | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("request %d: %s\n") % | ||
mpm@selenic.com
|
r1089 | (reqcnt, " ".join(map(short, r)))) | ||
Benoit Boissinot
|
r3473 | for p in xrange(0, len(r), 10): | ||
mpm@selenic.com
|
r1089 | for b in remote.branches(r[p:p+10]): | ||
Benoit Boissinot
|
r1402 | self.ui.debug(_("received %s:%s\n") % | ||
mpm@selenic.com
|
r1089 | (short(b[0]), short(b[1]))) | ||
Benoit Boissinot
|
r2339 | unknown.append(b) | ||
mpm@selenic.com
|
r1089 | |||
# do binary search on the branches we found | ||||
while search: | ||||
n = search.pop(0) | ||||
reqcnt += 1 | ||||
l = remote.between([(n[0], n[1])])[0] | ||||
l.append(n[1]) | ||||
p = n[0] | ||||
f = 1 | ||||
for i in l: | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("narrowing %d:%d %s\n") % (f, len(l), short(i))) | ||
mpm@selenic.com
|
r1089 | if i in m: | ||
if f <= 2: | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("found new branch changeset %s\n") % | ||
mpm@selenic.com
|
r1089 | short(p)) | ||
fetch[p] = 1 | ||||
base[i] = 1 | ||||
else: | ||||
Benoit Boissinot
|
r1402 | self.ui.debug(_("narrowed branch search to %s:%s\n") | ||
mpm@selenic.com
|
r1089 | % (short(p), short(i))) | ||
search.append((p, i)) | ||||
break | ||||
p, f = i, f * 2 | ||||
# sanity check our fetch list | ||||
for f in fetch.keys(): | ||||
if f in m: | ||||
Benoit Boissinot
|
r1402 | raise repo.RepoError(_("already have changeset ") + short(f[:4])) | ||
mpm@selenic.com
|
r1089 | |||
if base.keys() == [nullid]: | ||||
Vadim Gelfer
|
r1959 | if force: | ||
self.ui.warn(_("warning: repository is unrelated\n")) | ||||
else: | ||||
raise util.Abort(_("repository is unrelated")) | ||||
mpm@selenic.com
|
r1089 | |||
Matt Mackall
|
r2965 | self.ui.debug(_("found new changesets starting at ") + | ||
mpm@selenic.com
|
r1089 | " ".join([short(f) for f in fetch]) + "\n") | ||
Benoit Boissinot
|
r1402 | self.ui.debug(_("%d total queries\n") % reqcnt) | ||
mpm@selenic.com
|
r1089 | |||
return fetch.keys() | ||||
Vadim Gelfer
|
r1959 | def findoutgoing(self, remote, base=None, heads=None, force=False): | ||
Thomas Arendsen Hein
|
r2021 | """Return list of nodes that are roots of subsets not in remote | ||
If base dict is specified, assume that these nodes and their parents | ||||
exist on the remote side. | ||||
If a list of heads is specified, return only nodes which are heads | ||||
or ancestors of these heads, and return a second element which | ||||
contains all remote heads which get new children. | ||||
""" | ||||
mpm@selenic.com
|
r1089 | if base == None: | ||
base = {} | ||||
Vadim Gelfer
|
r1959 | self.findincoming(remote, base, heads, force=force) | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r1402 | self.ui.debug(_("common changesets up to ") | ||
mpm@selenic.com
|
r1089 | + " ".join(map(short, base.keys())) + "\n") | ||
remain = dict.fromkeys(self.changelog.nodemap) | ||||
# prune everything remote has from the tree | ||||
del remain[nullid] | ||||
remove = base.keys() | ||||
while remove: | ||||
n = remove.pop(0) | ||||
if n in remain: | ||||
del remain[n] | ||||
for p in self.changelog.parents(n): | ||||
remove.append(p) | ||||
# find every node whose parents have been pruned | ||||
subset = [] | ||||
Thomas Arendsen Hein
|
r2021 | # find every remote head that will get new children | ||
updated_heads = {} | ||||
mpm@selenic.com
|
r1089 | for n in remain: | ||
p1, p2 = self.changelog.parents(n) | ||||
if p1 not in remain and p2 not in remain: | ||||
subset.append(n) | ||||
Thomas Arendsen Hein
|
r2021 | if heads: | ||
if p1 in heads: | ||||
updated_heads[p1] = True | ||||
if p2 in heads: | ||||
updated_heads[p2] = True | ||||
mpm@selenic.com
|
r1089 | |||
# this is the set of all roots we have to push | ||||
Thomas Arendsen Hein
|
r2021 | if heads: | ||
return subset, updated_heads.keys() | ||||
else: | ||||
return subset | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2827 | def pull(self, remote, heads=None, force=False, lock=None): | ||
mylock = False | ||||
if not lock: | ||||
lock = self.lock() | ||||
mylock = True | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2827 | try: | ||
fetch = self.findincoming(remote, force=force) | ||||
if fetch == [nullid]: | ||||
self.ui.status(_("requesting all changes\n")) | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2827 | if not fetch: | ||
self.ui.status(_("no changes found\n")) | ||||
return 0 | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2827 | if heads is None: | ||
cg = remote.changegroup(fetch, 'pull') | ||||
else: | ||||
Eric Hopper
|
r3448 | if 'changegroupsubset' not in remote.capabilities: | ||
raise util.Abort(_("Partial pull cannot be done because other repository doesn't support changegroupsubset.")) | ||||
Vadim Gelfer
|
r2827 | cg = remote.changegroupsubset(fetch, heads, 'pull') | ||
return self.addchangegroup(cg, 'pull', remote.url()) | ||||
finally: | ||||
if mylock: | ||||
lock.release() | ||||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r1781 | def push(self, remote, force=False, revs=None): | ||
Vadim Gelfer
|
r2439 | # there are two ways to push to remote repo: | ||
# | ||||
# addchangegroup assumes local user can lock remote | ||||
# repo (local filesystem, old ssh servers). | ||||
# | ||||
# unbundle assumes local user cannot lock remote repo (new ssh | ||||
# servers, http servers). | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2612 | if remote.capable('unbundle'): | ||
Vadim Gelfer
|
r2463 | return self.push_unbundle(remote, force, revs) | ||
return self.push_addchangegroup(remote, force, revs) | ||||
Vadim Gelfer
|
r2439 | |||
def prepush(self, remote, force, revs): | ||||
mpm@selenic.com
|
r1089 | base = {} | ||
Thomas Arendsen Hein
|
r2021 | remote_heads = remote.heads() | ||
inc = self.findincoming(remote, base, remote_heads, force=force) | ||||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r2021 | update, updated_heads = self.findoutgoing(remote, base, remote_heads) | ||
Benoit Boissinot
|
r1781 | if revs is not None: | ||
msng_cl, bases, heads = self.changelog.nodesbetween(update, revs) | ||||
else: | ||||
bases, heads = update, self.changelog.heads() | ||||
if not bases: | ||||
Benoit Boissinot
|
r1402 | self.ui.status(_("no changes found\n")) | ||
Vadim Gelfer
|
r2439 | return None, 1 | ||
mpm@selenic.com
|
r1089 | elif not force: | ||
Matt Mackall
|
r3684 | # check if we're creating new remote heads | ||
# to be a remote head after push, node must be either | ||||
# - unknown locally | ||||
# - a local outgoing head descended from update | ||||
# - a remote head that's known locally and not | ||||
# ancestral to an outgoing head | ||||
warn = 0 | ||||
if remote_heads == [nullid]: | ||||
warn = 0 | ||||
elif not revs and len(heads) > len(remote_heads): | ||||
warn = 1 | ||||
else: | ||||
newheads = list(heads) | ||||
for r in remote_heads: | ||||
if r in self.changelog.nodemap: | ||||
desc = self.changelog.heads(r) | ||||
l = [h for h in heads if h in desc] | ||||
if not l: | ||||
newheads.append(r) | ||||
else: | ||||
newheads.append(r) | ||||
if len(newheads) > len(remote_heads): | ||||
warn = 1 | ||||
if warn: | ||||
Benoit Boissinot
|
r1402 | self.ui.warn(_("abort: push creates new remote branches!\n")) | ||
self.ui.status(_("(did you forget to merge?" | ||||
" use push -f to force)\n")) | ||||
Vadim Gelfer
|
r2439 | return None, 1 | ||
Matt Mackall
|
r3684 | elif inc: | ||
self.ui.warn(_("note: unsynced remote changes!\n")) | ||||
mpm@selenic.com
|
r1089 | |||
Matt Mackall
|
r3682 | |||
Benoit Boissinot
|
r1781 | if revs is None: | ||
Benoit Boissinot
|
r1782 | cg = self.changegroup(update, 'push') | ||
Benoit Boissinot
|
r1781 | else: | ||
Benoit Boissinot
|
r1782 | cg = self.changegroupsubset(update, revs, 'push') | ||
Vadim Gelfer
|
r2439 | return cg, remote_heads | ||
def push_addchangegroup(self, remote, force, revs): | ||||
lock = remote.lock() | ||||
ret = self.prepush(remote, force, revs) | ||||
if ret[0] is not None: | ||||
cg, remote_heads = ret | ||||
Vadim Gelfer
|
r2673 | return remote.addchangegroup(cg, 'push', self.url()) | ||
Vadim Gelfer
|
r2439 | return ret[1] | ||
def push_unbundle(self, remote, force, revs): | ||||
# local repo finds heads on server, finds out what revs it | ||||
# must push. once revs transferred, if server finds it has | ||||
# different heads (someone else won commit/push race), server | ||||
# aborts. | ||||
ret = self.prepush(remote, force, revs) | ||||
if ret[0] is not None: | ||||
cg, remote_heads = ret | ||||
if force: remote_heads = ['force'] | ||||
return remote.unbundle(cg, remote_heads, 'push') | ||||
return ret[1] | ||||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r3513 | def changegroupinfo(self, nodes): | ||
self.ui.note(_("%d changesets found\n") % len(nodes)) | ||||
if self.ui.debugflag: | ||||
self.ui.debug(_("List of changesets:\n")) | ||||
for node in nodes: | ||||
self.ui.debug("%s\n" % hex(node)) | ||||
Vadim Gelfer
|
r1736 | def changegroupsubset(self, bases, heads, source): | ||
Eric Hopper
|
r1466 | """This function generates a changegroup consisting of all the nodes | ||
that are descendents of any of the bases, and ancestors of any of | ||||
the heads. | ||||
It is fairly complex as determining which filenodes and which | ||||
manifest nodes need to be included for the changeset to be complete | ||||
is non-trivial. | ||||
Another wrinkle is doing the reverse, figuring out which changeset in | ||||
the changegroup a particular filenode or manifestnode belongs to.""" | ||||
Vadim Gelfer
|
r1736 | self.hook('preoutgoing', throw=True, source=source) | ||
Eric Hopper
|
r1466 | # Set up some initial variables | ||
# Make it easy to refer to self.changelog | ||||
Eric Hopper
|
r1458 | cl = self.changelog | ||
Eric Hopper
|
r1466 | # msng is short for missing - compute the list of changesets in this | ||
# changegroup. | ||||
Eric Hopper
|
r1460 | msng_cl_lst, bases, heads = cl.nodesbetween(bases, heads) | ||
Thomas Arendsen Hein
|
r3513 | self.changegroupinfo(msng_cl_lst) | ||
Eric Hopper
|
r1466 | # Some bases may turn out to be superfluous, and some heads may be | ||
# too. nodesbetween will return the minimal set of bases and heads | ||||
# necessary to re-create the changegroup. | ||||
# Known heads are the list of heads that it is assumed the recipient | ||||
# of this changegroup will know about. | ||||
Eric Hopper
|
r1458 | knownheads = {} | ||
Eric Hopper
|
r1466 | # We assume that all parents of bases are known heads. | ||
Eric Hopper
|
r1460 | for n in bases: | ||
Eric Hopper
|
r1458 | for p in cl.parents(n): | ||
if p != nullid: | ||||
knownheads[p] = 1 | ||||
knownheads = knownheads.keys() | ||||
Eric Hopper
|
r1460 | if knownheads: | ||
Eric Hopper
|
r1466 | # Now that we know what heads are known, we can compute which | ||
# changesets are known. The recipient must know about all | ||||
# changesets required to reach the known heads from the null | ||||
# changeset. | ||||
Eric Hopper
|
r1460 | has_cl_set, junk, junk = cl.nodesbetween(None, knownheads) | ||
Eric Hopper
|
r1466 | junk = None | ||
# Transform the list into an ersatz set. | ||||
Eric Hopper
|
r1464 | has_cl_set = dict.fromkeys(has_cl_set) | ||
Eric Hopper
|
r1460 | else: | ||
Eric Hopper
|
r1466 | # If there were no known heads, the recipient cannot be assumed to | ||
# know about any changesets. | ||||
Eric Hopper
|
r1460 | has_cl_set = {} | ||
Eric Hopper
|
r1458 | |||
Eric Hopper
|
r1466 | # Make it easy to refer to self.manifest | ||
Eric Hopper
|
r1458 | mnfst = self.manifest | ||
Eric Hopper
|
r1466 | # We don't know which manifests are missing yet | ||
Eric Hopper
|
r1458 | msng_mnfst_set = {} | ||
Eric Hopper
|
r1466 | # Nor do we know which filenodes are missing. | ||
Eric Hopper
|
r1458 | msng_filenode_set = {} | ||
Eric Hopper
|
r1460 | junk = mnfst.index[mnfst.count() - 1] # Get around a bug in lazyindex | ||
junk = None | ||||
Eric Hopper
|
r1466 | # A changeset always belongs to itself, so the changenode lookup | ||
# function for a changenode is identity. | ||||
Eric Hopper
|
r1458 | def identity(x): | ||
return x | ||||
Eric Hopper
|
r1466 | # A function generating function. Sets up an environment for the | ||
# inner function. | ||||
Eric Hopper
|
r1458 | def cmp_by_rev_func(revlog): | ||
Eric Hopper
|
r1466 | # Compare two nodes by their revision number in the environment's | ||
# revision history. Since the revision number both represents the | ||||
# most efficient order to read the nodes in, and represents a | ||||
# topological sorting of the nodes, this function is often useful. | ||||
def cmp_by_rev(a, b): | ||||
Eric Hopper
|
r1458 | return cmp(revlog.rev(a), revlog.rev(b)) | ||
Eric Hopper
|
r1466 | return cmp_by_rev | ||
Eric Hopper
|
r1458 | |||
Eric Hopper
|
r1466 | # If we determine that a particular file or manifest node must be a | ||
# node that the recipient of the changegroup will already have, we can | ||||
# also assume the recipient will have all the parents. This function | ||||
# prunes them from the set of missing nodes. | ||||
Eric Hopper
|
r1458 | def prune_parents(revlog, hasset, msngset): | ||
haslst = hasset.keys() | ||||
haslst.sort(cmp_by_rev_func(revlog)) | ||||
for node in haslst: | ||||
parentlst = [p for p in revlog.parents(node) if p != nullid] | ||||
while parentlst: | ||||
n = parentlst.pop() | ||||
if n not in hasset: | ||||
hasset[n] = 1 | ||||
p = [p for p in revlog.parents(n) if p != nullid] | ||||
parentlst.extend(p) | ||||
for n in hasset: | ||||
msngset.pop(n, None) | ||||
Eric Hopper
|
r1466 | # This is a function generating function used to set up an environment | ||
# for the inner function to execute in. | ||||
Eric Hopper
|
r1458 | def manifest_and_file_collector(changedfileset): | ||
Eric Hopper
|
r1466 | # This is an information gathering function that gathers | ||
# information from each changeset node that goes out as part of | ||||
# the changegroup. The information gathered is a list of which | ||||
# manifest nodes are potentially required (the recipient may | ||||
# already have them) and total list of all files which were | ||||
# changed in any changeset in the changegroup. | ||||
# | ||||
# We also remember the first changenode we saw any manifest | ||||
# referenced by so we can later determine which changenode 'owns' | ||||
# the manifest. | ||||
Eric Hopper
|
r1458 | def collect_manifests_and_files(clnode): | ||
c = cl.read(clnode) | ||||
for f in c[3]: | ||||
# This is to make sure we only have one instance of each | ||||
# filename string for each filename. | ||||
Eric Hopper
|
r1460 | changedfileset.setdefault(f, f) | ||
msng_mnfst_set.setdefault(c[0], clnode) | ||||
Eric Hopper
|
r1458 | return collect_manifests_and_files | ||
Eric Hopper
|
r1466 | # Figure out which manifest nodes (of the ones we think might be part | ||
# of the changegroup) the recipient must know about and remove them | ||||
# from the changegroup. | ||||
Eric Hopper
|
r1458 | def prune_manifests(): | ||
has_mnfst_set = {} | ||||
for n in msng_mnfst_set: | ||||
Eric Hopper
|
r1466 | # If a 'missing' manifest thinks it belongs to a changenode | ||
# the recipient is assumed to have, obviously the recipient | ||||
# must have that manifest. | ||||
Eric Hopper
|
r1458 | linknode = cl.node(mnfst.linkrev(n)) | ||
if linknode in has_cl_set: | ||||
has_mnfst_set[n] = 1 | ||||
prune_parents(mnfst, has_mnfst_set, msng_mnfst_set) | ||||
Eric Hopper
|
r1466 | # Use the information collected in collect_manifests_and_files to say | ||
# which changenode any manifestnode belongs to. | ||||
Eric Hopper
|
r1458 | def lookup_manifest_link(mnfstnode): | ||
return msng_mnfst_set[mnfstnode] | ||||
Eric Hopper
|
r1466 | # A function generating function that sets up the initial environment | ||
# the inner function. | ||||
Eric Hopper
|
r1458 | def filenode_collector(changedfiles): | ||
Eric Hopper
|
r1462 | next_rev = [0] | ||
Eric Hopper
|
r1466 | # This gathers information from each manifestnode included in the | ||
# changegroup about which filenodes the manifest node references | ||||
# so we can include those in the changegroup too. | ||||
# | ||||
# It also remembers which changenode each filenode belongs to. It | ||||
# does this by assuming the a filenode belongs to the changenode | ||||
# the first manifest that references it belongs to. | ||||
Eric Hopper
|
r1458 | def collect_msng_filenodes(mnfstnode): | ||
Eric Hopper
|
r1462 | r = mnfst.rev(mnfstnode) | ||
if r == next_rev[0]: | ||||
# If the last rev we looked at was the one just previous, | ||||
# we only need to see a diff. | ||||
delta = mdiff.patchtext(mnfst.delta(mnfstnode)) | ||||
Eric Hopper
|
r1466 | # For each line in the delta | ||
Eric Hopper
|
r1462 | for dline in delta.splitlines(): | ||
Eric Hopper
|
r1466 | # get the filename and filenode for that line | ||
Eric Hopper
|
r1462 | f, fnode = dline.split('\0') | ||
fnode = bin(fnode[:40]) | ||||
f = changedfiles.get(f, None) | ||||
Eric Hopper
|
r1466 | # And if the file is in the list of files we care | ||
# about. | ||||
Eric Hopper
|
r1462 | if f is not None: | ||
Eric Hopper
|
r1466 | # Get the changenode this manifest belongs to | ||
clnode = msng_mnfst_set[mnfstnode] | ||||
# Create the set of filenodes for the file if | ||||
# there isn't one already. | ||||
ndset = msng_filenode_set.setdefault(f, {}) | ||||
# And set the filenode's changelog node to the | ||||
# manifest's if it hasn't been set already. | ||||
ndset.setdefault(fnode, clnode) | ||||
else: | ||||
# Otherwise we need a full manifest. | ||||
m = mnfst.read(mnfstnode) | ||||
# For every file in we care about. | ||||
for f in changedfiles: | ||||
fnode = m.get(f, None) | ||||
# If it's in the manifest | ||||
if fnode is not None: | ||||
# See comments above. | ||||
Eric Hopper
|
r1462 | clnode = msng_mnfst_set[mnfstnode] | ||
ndset = msng_filenode_set.setdefault(f, {}) | ||||
ndset.setdefault(fnode, clnode) | ||||
Eric Hopper
|
r1466 | # Remember the revision we hope to see next. | ||
Eric Hopper
|
r1462 | next_rev[0] = r + 1 | ||
Eric Hopper
|
r1460 | return collect_msng_filenodes | ||
Eric Hopper
|
r1458 | |||
Eric Hopper
|
r1466 | # We have a list of filenodes we think we need for a file, lets remove | ||
# all those we now the recipient must have. | ||||
Eric Hopper
|
r1458 | def prune_filenodes(f, filerevlog): | ||
msngset = msng_filenode_set[f] | ||||
hasset = {} | ||||
Eric Hopper
|
r1466 | # If a 'missing' filenode thinks it belongs to a changenode we | ||
# assume the recipient must have, then the recipient must have | ||||
# that filenode. | ||||
Eric Hopper
|
r1458 | for n in msngset: | ||
clnode = cl.node(filerevlog.linkrev(n)) | ||||
if clnode in has_cl_set: | ||||
hasset[n] = 1 | ||||
prune_parents(filerevlog, hasset, msngset) | ||||
Eric Hopper
|
r1466 | # A function generator function that sets up the a context for the | ||
# inner function. | ||||
Eric Hopper
|
r1458 | def lookup_filenode_link_func(fname): | ||
msngset = msng_filenode_set[fname] | ||||
Eric Hopper
|
r1466 | # Lookup the changenode the filenode belongs to. | ||
Eric Hopper
|
r1458 | def lookup_filenode_link(fnode): | ||
return msngset[fnode] | ||||
return lookup_filenode_link | ||||
mpm@selenic.com
|
r1089 | |||
Eric Hopper
|
r1466 | # Now that we have all theses utility functions to help out and | ||
# logically divide up the task, generate the group. | ||||
mpm@selenic.com
|
r1089 | def gengroup(): | ||
Eric Hopper
|
r1466 | # The set of changed files starts empty. | ||
Eric Hopper
|
r1458 | changedfiles = {} | ||
Eric Hopper
|
r1466 | # Create a changenode group generator that will call our functions | ||
# back to lookup the owning changenode and collect information. | ||||
Eric Hopper
|
r1458 | group = cl.group(msng_cl_lst, identity, | ||
manifest_and_file_collector(changedfiles)) | ||||
for chnk in group: | ||||
yield chnk | ||||
Eric Hopper
|
r1466 | |||
# The list of manifests has been collected by the generator | ||||
# calling our functions back. | ||||
Eric Hopper
|
r1458 | prune_manifests() | ||
msng_mnfst_lst = msng_mnfst_set.keys() | ||||
Eric Hopper
|
r1466 | # Sort the manifestnodes by revision number. | ||
Eric Hopper
|
r1458 | msng_mnfst_lst.sort(cmp_by_rev_func(mnfst)) | ||
Eric Hopper
|
r1466 | # Create a generator for the manifestnodes that calls our lookup | ||
# and data collection functions back. | ||||
Eric Hopper
|
r1460 | group = mnfst.group(msng_mnfst_lst, lookup_manifest_link, | ||
Eric Hopper
|
r1458 | filenode_collector(changedfiles)) | ||
for chnk in group: | ||||
yield chnk | ||||
Eric Hopper
|
r1466 | |||
# These are no longer needed, dereference and toss the memory for | ||||
# them. | ||||
Eric Hopper
|
r1458 | msng_mnfst_lst = None | ||
msng_mnfst_set.clear() | ||||
Eric Hopper
|
r1466 | |||
Eric Hopper
|
r1462 | changedfiles = changedfiles.keys() | ||
changedfiles.sort() | ||||
Eric Hopper
|
r1466 | # Go through all our files in order sorted by name. | ||
Eric Hopper
|
r1458 | for fname in changedfiles: | ||
filerevlog = self.file(fname) | ||||
Eric Hopper
|
r1466 | # Toss out the filenodes that the recipient isn't really | ||
# missing. | ||||
Eric Hopper
|
r1630 | if msng_filenode_set.has_key(fname): | ||
prune_filenodes(fname, filerevlog) | ||||
msng_filenode_lst = msng_filenode_set[fname].keys() | ||||
else: | ||||
msng_filenode_lst = [] | ||||
Eric Hopper
|
r1466 | # If any filenodes are left, generate the group for them, | ||
# otherwise don't bother. | ||||
Eric Hopper
|
r1458 | if len(msng_filenode_lst) > 0: | ||
Thomas Arendsen Hein
|
r1981 | yield changegroup.genchunk(fname) | ||
Eric Hopper
|
r1466 | # Sort the filenodes by their revision # | ||
Eric Hopper
|
r1458 | msng_filenode_lst.sort(cmp_by_rev_func(filerevlog)) | ||
Eric Hopper
|
r1466 | # Create a group generator and only pass in a changenode | ||
# lookup function as we need to collect no information | ||||
# from filenodes. | ||||
Eric Hopper
|
r1458 | group = filerevlog.group(msng_filenode_lst, | ||
Eric Hopper
|
r1460 | lookup_filenode_link_func(fname)) | ||
Eric Hopper
|
r1458 | for chnk in group: | ||
yield chnk | ||||
Eric Hopper
|
r1630 | if msng_filenode_set.has_key(fname): | ||
# Don't need this anymore, toss it to free memory. | ||||
del msng_filenode_set[fname] | ||||
Eric Hopper
|
r1466 | # Signal that no more groups are left. | ||
Thomas Arendsen Hein
|
r1981 | yield changegroup.closechunk() | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r2150 | if msng_cl_lst: | ||
Vincent Danjean
|
r2149 | self.hook('outgoing', node=hex(msng_cl_lst[0]), source=source) | ||
Vadim Gelfer
|
r1736 | |||
Eric Hopper
|
r1458 | return util.chunkbuffer(gengroup()) | ||
Vadim Gelfer
|
r1736 | def changegroup(self, basenodes, source): | ||
Eric Hopper
|
r1466 | """Generate a changegroup of all nodes that we have that a recipient | ||
doesn't. | ||||
This is much easier than the previous function as we can assume that | ||||
the recipient has any changenode we aren't sending them.""" | ||||
Vadim Gelfer
|
r1736 | |||
self.hook('preoutgoing', throw=True, source=source) | ||||
Eric Hopper
|
r1458 | cl = self.changelog | ||
nodes = cl.nodesbetween(basenodes, None)[0] | ||||
revset = dict.fromkeys([cl.rev(n) for n in nodes]) | ||||
Thomas Arendsen Hein
|
r3513 | self.changegroupinfo(nodes) | ||
Eric Hopper
|
r1458 | |||
def identity(x): | ||||
return x | ||||
mpm@selenic.com
|
r1089 | |||
Eric Hopper
|
r1458 | def gennodelst(revlog): | ||
for r in xrange(0, revlog.count()): | ||||
n = revlog.node(r) | ||||
if revlog.linkrev(n) in revset: | ||||
yield n | ||||
def changed_file_collector(changedfileset): | ||||
def collect_changed_files(clnode): | ||||
c = cl.read(clnode) | ||||
for fname in c[3]: | ||||
changedfileset[fname] = 1 | ||||
return collect_changed_files | ||||
def lookuprevlink_func(revlog): | ||||
def lookuprevlink(n): | ||||
return cl.node(revlog.linkrev(n)) | ||||
return lookuprevlink | ||||
def gengroup(): | ||||
mpm@selenic.com
|
r1089 | # construct a list of all changed files | ||
Eric Hopper
|
r1458 | changedfiles = {} | ||
for chnk in cl.group(nodes, identity, | ||||
changed_file_collector(changedfiles)): | ||||
yield chnk | ||||
changedfiles = changedfiles.keys() | ||||
changedfiles.sort() | ||||
mpm@selenic.com
|
r1089 | |||
Eric Hopper
|
r1458 | mnfst = self.manifest | ||
nodeiter = gennodelst(mnfst) | ||||
for chnk in mnfst.group(nodeiter, lookuprevlink_func(mnfst)): | ||||
yield chnk | ||||
mpm@selenic.com
|
r1089 | |||
Eric Hopper
|
r1458 | for fname in changedfiles: | ||
filerevlog = self.file(fname) | ||||
nodeiter = gennodelst(filerevlog) | ||||
nodeiter = list(nodeiter) | ||||
if nodeiter: | ||||
Thomas Arendsen Hein
|
r1981 | yield changegroup.genchunk(fname) | ||
Eric Hopper
|
r1458 | lookup = lookuprevlink_func(filerevlog) | ||
for chnk in filerevlog.group(nodeiter, lookup): | ||||
yield chnk | ||||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r1981 | yield changegroup.closechunk() | ||
Matt Mackall
|
r2107 | |||
if nodes: | ||||
self.hook('outgoing', node=hex(nodes[0]), source=source) | ||||
mpm@selenic.com
|
r1089 | |||
Eric Hopper
|
r1458 | return util.chunkbuffer(gengroup()) | ||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2673 | def addchangegroup(self, source, srctype, url): | ||
Vadim Gelfer
|
r2019 | """add changegroup to repo. | ||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r3803 | return values: | ||
- nothing changed or no source: 0 | ||||
- more heads than before: 1+added heads (2..n) | ||||
- less heads than before: -1-removed heads (-2..-n) | ||||
- number of heads stays the same: 1 | ||||
""" | ||||
mpm@selenic.com
|
r1089 | def csmap(x): | ||
Benoit Boissinot
|
r1402 | self.ui.debug(_("add changeset %s\n") % short(x)) | ||
Vadim Gelfer
|
r1998 | return cl.count() | ||
mpm@selenic.com
|
r1089 | |||
def revmap(x): | ||||
Vadim Gelfer
|
r1998 | return cl.rev(x) | ||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r1615 | if not source: | ||
Vadim Gelfer
|
r2019 | return 0 | ||
Vadim Gelfer
|
r1730 | |||
Vadim Gelfer
|
r2673 | self.hook('prechangegroup', throw=True, source=srctype, url=url) | ||
Vadim Gelfer
|
r1730 | |||
mpm@selenic.com
|
r1089 | changesets = files = revisions = 0 | ||
tr = self.transaction() | ||||
Benoit Boissinot
|
r2395 | # write changelog data to temp files so concurrent readers will not see | ||
# inconsistent view | ||||
Thomas Arendsen Hein
|
r2232 | cl = None | ||
try: | ||||
Matt Mackall
|
r3457 | cl = appendfile.appendchangelog(self.sopener, | ||
self.changelog.version) | ||||
Vadim Gelfer
|
r1998 | |||
Thomas Arendsen Hein
|
r2232 | oldheads = len(cl.heads()) | ||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r2232 | # pull off the changeset group | ||
self.ui.status(_("adding changesets\n")) | ||||
Benoit Boissinot
|
r2347 | cor = cl.count() - 1 | ||
Thomas Arendsen Hein
|
r2232 | chunkiter = changegroup.chunkiter(source) | ||
Thomas Arendsen Hein
|
r2354 | if cl.addgroup(chunkiter, csmap, tr, 1) is None: | ||
raise util.Abort(_("received changelog group is empty")) | ||||
Benoit Boissinot
|
r2347 | cnr = cl.count() - 1 | ||
Thomas Arendsen Hein
|
r2232 | changesets = cnr - cor | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r2395 | # pull off the manifest group | ||
self.ui.status(_("adding manifests\n")) | ||||
chunkiter = changegroup.chunkiter(source) | ||||
# no need to check for empty manifest group here: | ||||
# if the result of the merge of 1 and 2 is the same in 3 and 4, | ||||
# no new manifest will be created and the manifest group will | ||||
# be empty during the pull | ||||
self.manifest.addgroup(chunkiter, revmap, tr) | ||||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r2395 | # process the files | ||
self.ui.status(_("adding file changes\n")) | ||||
while 1: | ||||
f = changegroup.getchunk(source) | ||||
if not f: | ||||
break | ||||
self.ui.debug(_("adding %s revisions\n") % f) | ||||
fl = self.file(f) | ||||
o = fl.count() | ||||
chunkiter = changegroup.chunkiter(source) | ||||
if fl.addgroup(chunkiter, revmap, tr) is None: | ||||
raise util.Abort(_("received file revlog group is empty")) | ||||
revisions += fl.count() - o | ||||
files += 1 | ||||
mpm@selenic.com
|
r1089 | |||
Thomas Arendsen Hein
|
r2232 | cl.writedata() | ||
finally: | ||||
if cl: | ||||
cl.cleanup() | ||||
Vadim Gelfer
|
r1998 | |||
Benoit Boissinot
|
r2395 | # make changelog see real files again | ||
Matt Mackall
|
r3457 | self.changelog = changelog.changelog(self.sopener, | ||
self.changelog.version) | ||||
mason@suse.com
|
r2075 | self.changelog.checkinlinesize(tr) | ||
Vadim Gelfer
|
r1998 | |||
mpm@selenic.com
|
r1089 | newheads = len(self.changelog.heads()) | ||
heads = "" | ||||
Thomas Arendsen Hein
|
r2424 | if oldheads and newheads != oldheads: | ||
heads = _(" (%+d heads)") % (newheads - oldheads) | ||||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r1402 | self.ui.status(_("added %d changesets" | ||
" with %d changes to %d files%s\n") | ||||
% (changesets, revisions, files, heads)) | ||||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r2259 | if changesets > 0: | ||
self.hook('pretxnchangegroup', throw=True, | ||||
Vadim Gelfer
|
r2673 | node=hex(self.changelog.node(cor+1)), source=srctype, | ||
url=url) | ||||
Vadim Gelfer
|
r1730 | |||
mpm@selenic.com
|
r1089 | tr.close() | ||
Benoit Boissinot
|
r1375 | if changesets > 0: | ||
Vadim Gelfer
|
r2229 | self.hook("changegroup", node=hex(self.changelog.node(cor+1)), | ||
Vadim Gelfer
|
r2673 | source=srctype, url=url) | ||
mpm@selenic.com
|
r1089 | |||
Benoit Boissinot
|
r3473 | for i in xrange(cor + 1, cnr + 1): | ||
Vadim Gelfer
|
r2229 | self.hook("incoming", node=hex(self.changelog.node(i)), | ||
Vadim Gelfer
|
r2673 | source=srctype, url=url) | ||
mpm@selenic.com
|
r1316 | |||
Thomas Arendsen Hein
|
r3803 | # never return 0 here: | ||
if newheads < oldheads: | ||||
return newheads - oldheads - 1 | ||||
else: | ||||
return newheads - oldheads + 1 | ||||
Vadim Gelfer
|
r2019 | |||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2612 | def stream_in(self, remote): | ||
Vadim Gelfer
|
r2621 | fp = remote.stream_out() | ||
Thomas Arendsen Hein
|
r3564 | l = fp.readline() | ||
try: | ||||
resp = int(l) | ||||
except ValueError: | ||||
raise util.UnexpectedOutput( | ||||
_('Unexpected response from remote server:'), l) | ||||
Thomas Arendsen Hein
|
r3687 | if resp == 1: | ||
Vadim Gelfer
|
r2621 | raise util.Abort(_('operation forbidden by server')) | ||
Thomas Arendsen Hein
|
r3687 | elif resp == 2: | ||
raise util.Abort(_('locking the remote repository failed')) | ||||
elif resp != 0: | ||||
raise util.Abort(_('the server sent an unknown error code')) | ||||
Vadim Gelfer
|
r2612 | self.ui.status(_('streaming all changes\n')) | ||
Thomas Arendsen Hein
|
r3564 | l = fp.readline() | ||
try: | ||||
total_files, total_bytes = map(int, l.split(' ', 1)) | ||||
except ValueError, TypeError: | ||||
raise util.UnexpectedOutput( | ||||
_('Unexpected response from remote server:'), l) | ||||
Vadim Gelfer
|
r2612 | self.ui.status(_('%d files to transfer, %s of data\n') % | ||
(total_files, util.bytecount(total_bytes))) | ||||
start = time.time() | ||||
for i in xrange(total_files): | ||||
Benoit Boissinot
|
r3720 | # XXX doesn't support '\n' or '\r' in filenames | ||
Thomas Arendsen Hein
|
r3564 | l = fp.readline() | ||
try: | ||||
name, size = l.split('\0', 1) | ||||
size = int(size) | ||||
except ValueError, TypeError: | ||||
raise util.UnexpectedOutput( | ||||
_('Unexpected response from remote server:'), l) | ||||
Vadim Gelfer
|
r2612 | self.ui.debug('adding %s (%s)\n' % (name, util.bytecount(size))) | ||
Matt Mackall
|
r3457 | ofp = self.sopener(name, 'w') | ||
Vadim Gelfer
|
r2612 | for chunk in util.filechunkiter(fp, limit=size): | ||
ofp.write(chunk) | ||||
ofp.close() | ||||
elapsed = time.time() - start | ||||
self.ui.status(_('transferred %s in %.1f seconds (%s/sec)\n') % | ||||
(util.bytecount(total_bytes), elapsed, | ||||
util.bytecount(total_bytes / elapsed))) | ||||
self.reload() | ||||
return len(self.heads()) + 1 | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2613 | def clone(self, remote, heads=[], stream=False): | ||
Vadim Gelfer
|
r2612 | '''clone remote repository. | ||
Matt Mackall
|
r1382 | |||
Vadim Gelfer
|
r2612 | keyword arguments: | ||
heads: list of revs to clone (forces use of pull) | ||||
Vadim Gelfer
|
r2621 | stream: use streaming clone if possible''' | ||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2621 | # now, all clients that can request uncompressed clones can | ||
# read repo formats supported by all servers that can serve | ||||
# them. | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2612 | # if revlog format changes, client will have to check version | ||
Vadim Gelfer
|
r2621 | # and format flags on "stream" capability, and use | ||
# uncompressed only if compatible. | ||||
mpm@selenic.com
|
r1089 | |||
Vadim Gelfer
|
r2613 | if stream and not heads and remote.capable('stream'): | ||
Vadim Gelfer
|
r2612 | return self.stream_in(remote) | ||
return self.pull(remote, heads) | ||||
mason@suse.com
|
r1806 | |||
# used to avoid circular references so destructors work | ||||
Benoit Boissinot
|
r3790 | def aftertrans(files): | ||
renamefiles = [tuple(t) for t in files] | ||||
mason@suse.com
|
r1806 | def a(): | ||
Benoit Boissinot
|
r3790 | for src, dest in renamefiles: | ||
util.rename(src, dest) | ||||
mason@suse.com
|
r1806 | return a | ||
Vadim Gelfer
|
r2740 | def instance(ui, path, create): | ||
return localrepository(ui, util.drop_scheme('file', path), create) | ||||
Thomas Arendsen Hein
|
r3223 | |||
Vadim Gelfer
|
r2740 | def islocal(path): | ||
return True | ||||