hg.py
299 lines
| 9.8 KiB
| text/x-python
|
PythonLexer
/ mercurial / hg.py
mpm@selenic.com
|
r0 | # hg.py - repository classes for mercurial | ||
# | ||||
Thomas Arendsen Hein
|
r4635 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | ||
Vadim Gelfer
|
r2859 | # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | ||
mpm@selenic.com
|
r0 | # | ||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
# GNU General Public License version 2, incorporated herein by reference. | ||||
mpm@selenic.com
|
r0 | |||
Matt Mackall
|
r3891 | from i18n import _ | ||
Ronny Pfannschmidt
|
r8109 | from lock import release | ||
Matt Mackall
|
r3877 | import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo | ||
Simon Heimberg
|
r8312 | import lock, util, extensions, error | ||
Matt Mackall
|
r3877 | import merge as _merge | ||
import verify as _verify | ||||
Simon Heimberg
|
r8312 | import errno, os, shutil | ||
mpm@selenic.com
|
r0 | |||
Vadim Gelfer
|
r2740 | def _local(path): | ||
Brendan Cully
|
r3195 | return (os.path.isfile(util.drop_scheme('file', path)) and | ||
Vadim Gelfer
|
r2768 | bundlerepo or localrepo) | ||
Vadim Gelfer
|
r2469 | |||
Bryan O'Sullivan
|
r6525 | def parseurl(url, revs=[]): | ||
Matt Mackall
|
r5177 | '''parse url#branch, returning url, branch + revs''' | ||
if '#' not in url: | ||||
Dirkjan Ochtman
|
r7045 | return url, (revs or None), revs and revs[-1] or None | ||
Matt Mackall
|
r5177 | |||
Dirkjan Ochtman
|
r7045 | url, branch = url.split('#', 1) | ||
checkout = revs and revs[-1] or branch | ||||
Martijn Pieters
|
r8174 | return url, (revs or []) + [branch], checkout | ||
Matt Mackall
|
r5177 | |||
Vadim Gelfer
|
r2472 | schemes = { | ||
Vadim Gelfer
|
r2740 | 'bundle': bundlerepo, | ||
'file': _local, | ||||
'http': httprepo, | ||||
'https': httprepo, | ||||
'ssh': sshrepo, | ||||
'static-http': statichttprepo, | ||||
Thomas Arendsen Hein
|
r4853 | } | ||
Vadim Gelfer
|
r2469 | |||
Vadim Gelfer
|
r2740 | def _lookup(path): | ||
scheme = 'file' | ||||
if path: | ||||
c = path.find(':') | ||||
if c > 0: | ||||
scheme = path[:c] | ||||
thing = schemes.get(scheme) or schemes['file'] | ||||
try: | ||||
return thing(path) | ||||
except TypeError: | ||||
return thing | ||||
Matt Mackall
|
r2775 | |||
Vadim Gelfer
|
r2719 | def islocal(repo): | ||
'''return true if repo or path is local''' | ||||
if isinstance(repo, str): | ||||
Vadim Gelfer
|
r2740 | try: | ||
return _lookup(repo).islocal(repo) | ||||
except AttributeError: | ||||
return False | ||||
Vadim Gelfer
|
r2719 | return repo.local() | ||
Brendan Cully
|
r3195 | def repository(ui, path='', create=False): | ||
Matt Mackall
|
r2774 | """return a repository object for the specified path""" | ||
Vadim Gelfer
|
r2847 | repo = _lookup(path).instance(ui, path, create) | ||
Alexis S. L. Carvalho
|
r4074 | ui = getattr(repo, "ui", ui) | ||
Alexis S. L. Carvalho
|
r5192 | for name, module in extensions.extensions(): | ||
hook = getattr(module, 'reposetup', None) | ||||
if hook: | ||||
hook(ui, repo) | ||||
Vadim Gelfer
|
r2847 | return repo | ||
Vadim Gelfer
|
r2597 | |||
Vadim Gelfer
|
r2719 | def defaultdest(source): | ||
'''return default destination of clone if none is given''' | ||||
return os.path.basename(os.path.normpath(source)) | ||||
Matt Mackall
|
r2774 | |||
Bryan O'Sullivan
|
r6524 | def localpath(path): | ||
if path.startswith('file://localhost/'): | ||||
return path[16:] | ||||
if path.startswith('file://'): | ||||
return path[7:] | ||||
if path.startswith('file:'): | ||||
return path[5:] | ||||
return path | ||||
Vadim Gelfer
|
r2613 | def clone(ui, source, dest=None, pull=False, rev=None, update=True, | ||
stream=False): | ||||
Vadim Gelfer
|
r2597 | """Make a copy of an existing repository. | ||
Create a copy of an existing repository in a new directory. The | ||||
source and destination are URLs, as passed to the repository | ||||
function. Returns a pair of repository objects, the source and | ||||
newly created destination. | ||||
The location of the source is added to the new repository's | ||||
.hg/hgrc file, as the default to be used for future pulls and | ||||
pushes. | ||||
If an exception is raised, the partly cloned/updated destination | ||||
repository will be deleted. | ||||
Vadim Gelfer
|
r2600 | |||
Vadim Gelfer
|
r2719 | Arguments: | ||
source: repository object or URL | ||||
Vadim Gelfer
|
r2597 | |||
dest: URL of destination repository to create (defaults to base | ||||
name of source repository) | ||||
pull: always pull from source repository, even in local case | ||||
Vadim Gelfer
|
r2621 | stream: stream raw data uncompressed from repository (fast over | ||
LAN, slow over WAN) | ||||
Vadim Gelfer
|
r2613 | |||
Vadim Gelfer
|
r2597 | rev: revision to clone up to (implies pull=True) | ||
update: update working directory after clone completes, if | ||||
Bryan O'Sullivan
|
r6526 | destination is local repository (True means update to default rev, | ||
anything else is treated as a revision) | ||||
Vadim Gelfer
|
r2597 | """ | ||
Matt Mackall
|
r4478 | |||
Vadim Gelfer
|
r2719 | if isinstance(source, str): | ||
Alexis S. L. Carvalho
|
r6089 | origsource = ui.expandpath(source) | ||
source, rev, checkout = parseurl(origsource, rev) | ||||
Vadim Gelfer
|
r2719 | src_repo = repository(ui, source) | ||
else: | ||||
src_repo = source | ||||
Alexis S. L. Carvalho
|
r6089 | origsource = source = src_repo.url() | ||
Dirkjan Ochtman
|
r7045 | checkout = rev and rev[-1] or None | ||
Vadim Gelfer
|
r2719 | |||
Vadim Gelfer
|
r2597 | if dest is None: | ||
Vadim Gelfer
|
r2719 | dest = defaultdest(source) | ||
Thomas Arendsen Hein
|
r3841 | ui.status(_("destination directory: %s\n") % dest) | ||
Vadim Gelfer
|
r2719 | |||
dest = localpath(dest) | ||||
source = localpath(source) | ||||
Vadim Gelfer
|
r2597 | |||
if os.path.exists(dest): | ||||
Steve Borho
|
r7927 | if not os.path.isdir(dest): | ||
raise util.Abort(_("destination '%s' already exists") % dest) | ||||
elif os.listdir(dest): | ||||
raise util.Abort(_("destination '%s' is not empty") % dest) | ||||
Vadim Gelfer
|
r2597 | |||
class DirCleanup(object): | ||||
def __init__(self, dir_): | ||||
self.rmtree = shutil.rmtree | ||||
self.dir_ = dir_ | ||||
def close(self): | ||||
self.dir_ = None | ||||
Ronny Pfannschmidt
|
r8110 | def cleanup(self): | ||
Vadim Gelfer
|
r2597 | if self.dir_: | ||
self.rmtree(self.dir_, True) | ||||
Matt Mackall
|
r4915 | src_lock = dest_lock = dir_cleanup = None | ||
try: | ||||
if islocal(dest): | ||||
dir_cleanup = DirCleanup(dest) | ||||
Vadim Gelfer
|
r2597 | |||
Matt Mackall
|
r4915 | abspath = origsource | ||
copy = False | ||||
Matt Mackall
|
r6315 | if src_repo.cancopy() and islocal(dest): | ||
Alexis S. L. Carvalho
|
r5248 | abspath = os.path.abspath(util.drop_scheme('file', origsource)) | ||
Matt Mackall
|
r4915 | copy = not pull and not rev | ||
Vadim Gelfer
|
r2597 | |||
Matt Mackall
|
r4915 | if copy: | ||
try: | ||||
# we use a lock here because if we race with commit, we | ||||
# can end up with extra data in the cloned revlogs that's | ||||
# not pointed to by changesets, thus causing verify to | ||||
# fail | ||||
Benoit Boissinot
|
r8649 | src_lock = src_repo.lock(wait=False) | ||
Matt Mackall
|
r7640 | except error.LockError: | ||
Matt Mackall
|
r4915 | copy = False | ||
Vadim Gelfer
|
r2597 | |||
Matt Mackall
|
r4915 | if copy: | ||
Steve Borho
|
r7935 | hgdir = os.path.realpath(os.path.join(dest, ".hg")) | ||
Matt Mackall
|
r4915 | if not os.path.exists(dest): | ||
os.mkdir(dest) | ||||
Steve Borho
|
r7935 | else: | ||
# only clean up directories we create ourselves | ||||
dir_cleanup.dir_ = hgdir | ||||
Matt Mackall
|
r5569 | try: | ||
Steve Borho
|
r7935 | dest_path = hgdir | ||
Matt Mackall
|
r5569 | os.mkdir(dest_path) | ||
except OSError, inst: | ||||
if inst.errno == errno.EEXIST: | ||||
dir_cleanup.close() | ||||
raise util.Abort(_("destination '%s' already exists") | ||||
% dest) | ||||
raise | ||||
Vadim Gelfer
|
r2597 | |||
Matt Mackall
|
r6903 | for f in src_repo.store.copylist(): | ||
src = os.path.join(src_repo.path, f) | ||||
Benoit Boissinot
|
r6944 | dst = os.path.join(dest_path, f) | ||
dstbase = os.path.dirname(dst) | ||||
if dstbase and not os.path.exists(dstbase): | ||||
os.mkdir(dstbase) | ||||
Matt Mackall
|
r6903 | if os.path.exists(src): | ||
if dst.endswith('data'): | ||||
# lock to avoid premature writing to the target | ||||
dest_lock = lock.lock(os.path.join(dstbase, "lock")) | ||||
util.copyfiles(src, dst) | ||||
Vadim Gelfer
|
r2597 | |||
Matt Mackall
|
r4915 | # we need to re-init the repo after manually copying the data | ||
# into it | ||||
dest_repo = repository(ui, dest) | ||||
else: | ||||
Matt Mackall
|
r5569 | try: | ||
dest_repo = repository(ui, dest, create=True) | ||||
except OSError, inst: | ||||
if inst.errno == errno.EEXIST: | ||||
dir_cleanup.close() | ||||
raise util.Abort(_("destination '%s' already exists") | ||||
% dest) | ||||
raise | ||||
Vadim Gelfer
|
r2597 | |||
Matt Mackall
|
r4915 | revs = None | ||
if rev: | ||||
if 'lookup' not in src_repo.capabilities: | ||||
raise util.Abort(_("src repository does not support revision " | ||||
"lookup and so doesn't support clone by " | ||||
"revision")) | ||||
revs = [src_repo.lookup(r) for r in rev] | ||||
Brett Carter
|
r8417 | checkout = revs[0] | ||
Matt Mackall
|
r4915 | if dest_repo.local(): | ||
dest_repo.clone(src_repo, heads=revs, stream=stream) | ||||
elif src_repo.local(): | ||||
src_repo.push(dest_repo, revs=revs) | ||||
else: | ||||
raise util.Abort(_("clone from remote to remote not supported")) | ||||
Vadim Gelfer
|
r2597 | |||
Benoit Boissinot
|
r5186 | if dir_cleanup: | ||
dir_cleanup.close() | ||||
Vadim Gelfer
|
r2597 | |||
if dest_repo.local(): | ||||
Matt Mackall
|
r4915 | fp = dest_repo.opener("hgrc", "w", text=True) | ||
fp.write("[paths]\n") | ||||
Matt Mackall
|
r8179 | fp.write("default = %s\n" % abspath) | ||
Matt Mackall
|
r4915 | fp.close() | ||
Benoit Boissinot
|
r5185 | |||
Matt Mackall
|
r4915 | if update: | ||
Adrian Buehlmann
|
r6338 | dest_repo.ui.status(_("updating working directory\n")) | ||
Bryan O'Sullivan
|
r6526 | if update is not True: | ||
checkout = update | ||||
Dirkjan Ochtman
|
r7045 | for test in (checkout, 'default', 'tip'): | ||
Alexis S. L. Carvalho
|
r5248 | try: | ||
Dirkjan Ochtman
|
r7045 | uprev = dest_repo.lookup(test) | ||
break | ||||
Alexis S. L. Carvalho
|
r5248 | except: | ||
Dirkjan Ochtman
|
r7045 | continue | ||
_update(dest_repo, uprev) | ||||
Vadim Gelfer
|
r2597 | |||
Matt Mackall
|
r4915 | return src_repo, dest_repo | ||
finally: | ||||
Ronny Pfannschmidt
|
r8109 | release(src_lock, dest_lock) | ||
Ronny Pfannschmidt
|
r8110 | if dir_cleanup is not None: | ||
dir_cleanup.cleanup() | ||||
Matt Mackall
|
r2775 | |||
Matt Mackall
|
r3316 | def _showstats(repo, stats): | ||
stats = ((stats[0], _("updated")), | ||||
(stats[1], _("merged")), | ||||
(stats[2], _("removed")), | ||||
(stats[3], _("unresolved"))) | ||||
note = ", ".join([_("%d files %s") % s for s in stats]) | ||||
repo.ui.status("%s\n" % note) | ||||
Matt Mackall
|
r2808 | def update(repo, node): | ||
"""update the working directory to node, merging linear changes""" | ||||
Matt Mackall
|
r4917 | stats = _merge.update(repo, node, False, False, None) | ||
Matt Mackall
|
r3316 | _showstats(repo, stats) | ||
if stats[3]: | ||||
Matt Mackall
|
r6518 | repo.ui.status(_("use 'hg resolve' to retry unresolved file merges\n")) | ||
Matt Mackall
|
r5635 | return stats[3] > 0 | ||
Matt Mackall
|
r2775 | |||
Benoit Boissinot
|
r7546 | # naming conflict in clone() | ||
_update = update | ||||
Matt Mackall
|
r4917 | def clean(repo, node, show_stats=True): | ||
Matt Mackall
|
r2808 | """forcibly switch the working directory to node, clobbering changes""" | ||
Matt Mackall
|
r4917 | stats = _merge.update(repo, node, False, True, None) | ||
Matt Mackall
|
r3316 | if show_stats: _showstats(repo, stats) | ||
Matt Mackall
|
r5635 | return stats[3] > 0 | ||
Matt Mackall
|
r2775 | |||
Matt Mackall
|
r4917 | def merge(repo, node, force=None, remind=True): | ||
Matt Mackall
|
r2808 | """branch merge with node, resolving changes""" | ||
Matt Mackall
|
r4917 | stats = _merge.update(repo, node, True, force, False) | ||
Matt Mackall
|
r3316 | _showstats(repo, stats) | ||
if stats[3]: | ||||
Augie Fackler
|
r7821 | repo.ui.status(_("use 'hg resolve' to retry unresolved file merges " | ||
"or 'hg up --clean' to abandon\n")) | ||||
Matt Mackall
|
r3316 | elif remind: | ||
repo.ui.status(_("(branch merge, don't forget to commit)\n")) | ||||
Matt Mackall
|
r5635 | return stats[3] > 0 | ||
Matt Mackall
|
r2808 | |||
Matt Mackall
|
r4917 | def revert(repo, node, choose): | ||
Matt Mackall
|
r2808 | """revert changes to revision in node without updating dirstate""" | ||
Matt Mackall
|
r5635 | return _merge.update(repo, node, False, True, choose)[3] > 0 | ||
Matt Mackall
|
r2778 | |||
def verify(repo): | ||||
"""verify the consistency of a repository""" | ||||
return _verify.verify(repo) | ||||