convcmd.py
618 lines
| 21.4 KiB
| text/x-python
|
PythonLexer
Patrick Mezard
|
r5621 | # convcmd - convert extension commands definition | ||
# | ||||
# Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
timeless
|
r28409 | from __future__ import absolute_import | ||
Patrick Mezard
|
r5621 | |||
Gregory Szorc
|
r35797 | import collections | ||
timeless
|
r28409 | import os | ||
import shlex | ||||
import shutil | ||||
Yuya Nishihara
|
r29205 | from mercurial.i18n import _ | ||
timeless
|
r28409 | from mercurial import ( | ||
encoding, | ||||
error, | ||||
hg, | ||||
Augie Fackler
|
r36150 | pycompat, | ||
Matt Harbison
|
r35169 | scmutil, | ||
timeless
|
r28409 | util, | ||
) | ||||
Patrick Mezard
|
r5621 | |||
timeless
|
r28409 | from . import ( | ||
bzr, | ||||
common, | ||||
cvs, | ||||
darcs, | ||||
filemap, | ||||
git, | ||||
gnuarch, | ||||
hg as hgconvert, | ||||
monotone, | ||||
p4, | ||||
subversion, | ||||
) | ||||
mapfile = common.mapfile | ||||
MissingTool = common.MissingTool | ||||
NoRepo = common.NoRepo | ||||
SKIPREV = common.SKIPREV | ||||
bzr_source = bzr.bzr_source | ||||
convert_cvs = cvs.convert_cvs | ||||
convert_git = git.convert_git | ||||
darcs_source = darcs.darcs_source | ||||
gnuarch_source = gnuarch.gnuarch_source | ||||
mercurial_sink = hgconvert.mercurial_sink | ||||
mercurial_source = hgconvert.mercurial_source | ||||
monotone_source = monotone.monotone_source | ||||
p4_source = p4.p4_source | ||||
svn_sink = subversion.svn_sink | ||||
svn_source = subversion.svn_source | ||||
Patrick Mezard
|
r5621 | |||
Patrick Mezard
|
r6131 | orig_encoding = 'ascii' | ||
def recode(s): | ||||
if isinstance(s, unicode): | ||||
Augie Fackler
|
r36150 | return s.encode(pycompat.sysstr(orig_encoding), 'replace') | ||
Patrick Mezard
|
r6131 | else: | ||
Augie Fackler
|
r36150 | return s.decode('utf-8').encode( | ||
pycompat.sysstr(orig_encoding), 'replace') | ||||
Patrick Mezard
|
r6131 | |||
Eugene Baranov
|
r25805 | def mapbranch(branch, branchmap): | ||
''' | ||||
Yuya Nishihara
|
r34133 | >>> bmap = {b'default': b'branch1'} | ||
>>> for i in [b'', None]: | ||||
Eugene Baranov
|
r25805 | ... mapbranch(i, bmap) | ||
'branch1' | ||||
'branch1' | ||||
Yuya Nishihara
|
r34133 | >>> bmap = {b'None': b'branch2'} | ||
>>> for i in [b'', None]: | ||||
Eugene Baranov
|
r25805 | ... mapbranch(i, bmap) | ||
'branch2' | ||||
'branch2' | ||||
Yuya Nishihara
|
r34133 | >>> bmap = {b'None': b'branch3', b'default': b'branch4'} | ||
>>> for i in [b'None', b'', None, b'default', b'branch5']: | ||||
Eugene Baranov
|
r25805 | ... mapbranch(i, bmap) | ||
'branch3' | ||||
'branch4' | ||||
'branch4' | ||||
'branch4' | ||||
'branch5' | ||||
''' | ||||
# If branch is None or empty, this commit is coming from the source | ||||
# repository's default branch and destined for the default branch in the | ||||
# destination repository. For such commits, using a literal "default" | ||||
# in branchmap below allows the user to map "default" to an alternate | ||||
# default branch in the destination repository. | ||||
branch = branchmap.get(branch or 'default', branch) | ||||
# At some point we used "None" literal to denote the default branch, | ||||
# attempt to use that for backward compatibility. | ||||
if (not branch): | ||||
Yuya Nishihara
|
r34355 | branch = branchmap.get('None', branch) | ||
Eugene Baranov
|
r25805 | return branch | ||
Patrick Mezard
|
r5621 | source_converters = [ | ||
Patrick Mezard
|
r8692 | ('cvs', convert_cvs, 'branchsort'), | ||
('git', convert_git, 'branchsort'), | ||||
('svn', svn_source, 'branchsort'), | ||||
('hg', mercurial_source, 'sourcesort'), | ||||
('darcs', darcs_source, 'branchsort'), | ||||
('mtn', monotone_source, 'branchsort'), | ||||
('gnuarch', gnuarch_source, 'branchsort'), | ||||
('bzr', bzr_source, 'branchsort'), | ||||
('p4', p4_source, 'branchsort'), | ||||
Patrick Mezard
|
r5621 | ] | ||
sink_converters = [ | ||||
('hg', mercurial_sink), | ||||
Patrick Mezard
|
r5631 | ('svn', svn_sink), | ||
Patrick Mezard
|
r5621 | ] | ||
Durham Goode
|
r25748 | def convertsource(ui, path, type, revs): | ||
Patrick Mezard
|
r5621 | exceptions = [] | ||
Patrick Mezard
|
r9962 | if type and type not in [s[0] for s in source_converters]: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('%s: invalid source repository type') % type) | ||
Patrick Mezard
|
r8692 | for name, source, sortmode in source_converters: | ||
Patrick Mezard
|
r5621 | try: | ||
if not type or name == type: | ||||
Matt Harbison
|
r35168 | return source(ui, name, path, revs), sortmode | ||
Gregory Szorc
|
r25660 | except (NoRepo, MissingTool) as inst: | ||
Patrick Mezard
|
r5621 | exceptions.append(inst) | ||
if not ui.quiet: | ||||
for inst in exceptions: | ||||
Martin Geisler
|
r6913 | ui.write("%s\n" % inst) | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('%s: missing or unsupported repository') % path) | ||
Patrick Mezard
|
r5621 | |||
def convertsink(ui, path, type): | ||||
Patrick Mezard
|
r9962 | if type and type not in [s[0] for s in sink_converters]: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('%s: invalid destination repository type') % type) | ||
Patrick Mezard
|
r5621 | for name, sink in sink_converters: | ||
try: | ||||
if not type or name == type: | ||||
Matt Harbison
|
r35168 | return sink(ui, name, path) | ||
Gregory Szorc
|
r25660 | except NoRepo as inst: | ||
Patrick Mezard
|
r5621 | ui.note(_("convert: %s\n") % inst) | ||
Gregory Szorc
|
r25660 | except MissingTool as inst: | ||
Pierre-Yves David
|
r26587 | raise error.Abort('%s\n' % inst) | ||
raise error.Abort(_('%s: unknown repository type') % path) | ||||
Patrick Mezard
|
r5621 | |||
Patrick Mezard
|
r11136 | class progresssource(object): | ||
def __init__(self, ui, source, filecount): | ||||
self.ui = ui | ||||
self.source = source | ||||
self.filecount = filecount | ||||
self.retrieved = 0 | ||||
def getfile(self, file, rev): | ||||
self.retrieved += 1 | ||||
timeless
|
r11731 | self.ui.progress(_('getting files'), self.retrieved, | ||
r28470 | item=file, total=self.filecount, unit=_('files')) | |||
Patrick Mezard
|
r11136 | return self.source.getfile(file, rev) | ||
Durham Goode
|
r26035 | def targetfilebelongstosource(self, targetfilename): | ||
return self.source.targetfilebelongstosource(targetfilename) | ||||
Patrick Mezard
|
r11136 | def lookuprev(self, rev): | ||
return self.source.lookuprev(rev) | ||||
def close(self): | ||||
timeless
|
r11731 | self.ui.progress(_('getting files'), None) | ||
Patrick Mezard
|
r11136 | |||
Patrick Mezard
|
r5621 | class converter(object): | ||
def __init__(self, ui, source, dest, revmapfile, opts): | ||||
self.source = source | ||||
self.dest = dest | ||||
self.ui = ui | ||||
self.opts = opts | ||||
self.commitcache = {} | ||||
self.authors = {} | ||||
self.authorfile = None | ||||
Greg Ward
|
r8444 | # Record converted revisions persistently: maps source revision | ||
Dirkjan Ochtman
|
r8843 | # ID to target revision ID (both strings). (This is how | ||
Greg Ward
|
r8444 | # incremental conversions work.) | ||
Patrick Mezard
|
r5631 | self.map = mapfile(ui, revmapfile) | ||
Patrick Mezard
|
r5621 | |||
# Read first the dst author map if any | ||||
authorfile = self.dest.authorfile() | ||||
if authorfile and os.path.exists(authorfile): | ||||
self.readauthormap(authorfile) | ||||
# Extend/Override with new author map if necessary | ||||
Martin Geisler
|
r12198 | if opts.get('authormap'): | ||
self.readauthormap(opts.get('authormap')) | ||||
Patrick Mezard
|
r5621 | self.authorfile = self.dest.authorfile() | ||
Ben Goswami
|
r19119 | self.splicemap = self.parsesplicemap(opts.get('splicemap')) | ||
Michael J. Pedersen
|
r8377 | self.branchmap = mapfile(ui, opts.get('branchmap')) | ||
Bryan O'Sullivan
|
r5996 | |||
Ben Goswami
|
r19120 | def parsesplicemap(self, path): | ||
""" check and validate the splicemap format and | ||||
return a child/parents dictionary. | ||||
Format checking has two parts. | ||||
1. generic format which is same across all source types | ||||
2. specific format checking which may be different for | ||||
different source type. This logic is implemented in | ||||
checkrevformat function in source files like | ||||
hg.py, subversion.py etc. | ||||
""" | ||||
Ben Goswami
|
r19119 | |||
if not path: | ||||
return {} | ||||
m = {} | ||||
try: | ||||
Augie Fackler
|
r36149 | fp = open(path, 'rb') | ||
Jun Wu
|
r30400 | for i, line in enumerate(util.iterfile(fp)): | ||
Ben Goswami
|
r19119 | line = line.splitlines()[0].rstrip() | ||
if not line: | ||||
# Ignore blank lines | ||||
continue | ||||
Szymon Wroblewski
|
r19181 | # split line | ||
lex = shlex.shlex(line, posix=True) | ||||
lex.whitespace_split = True | ||||
lex.whitespace += ',' | ||||
line = list(lex) | ||||
# check number of parents | ||||
if not (2 <= len(line) <= 3): | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('syntax error in %s(%d): child parent1' | ||
Szymon Wroblewski
|
r19181 | '[,parent2] expected') % (path, i + 1)) | ||
for part in line: | ||||
self.source.checkrevformat(part) | ||||
child, p1, p2 = line[0], line[1:2], line[2:] | ||||
if p1 == p2: | ||||
m[child] = p1 | ||||
else: | ||||
m[child] = p1 + p2 | ||||
Ben Goswami
|
r19120 | # if file does not exist or error reading, exit | ||
except IOError: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('splicemap file not found or error reading %s:') | ||
Ben Goswami
|
r19120 | % path) | ||
Ben Goswami
|
r19119 | return m | ||
Patrick Mezard
|
r5621 | def walktree(self, heads): | ||
'''Return a mapping that identifies the uncommitted parents of every | ||||
uncommitted changeset.''' | ||||
visit = heads | ||||
Benoit Boissinot
|
r8456 | known = set() | ||
Patrick Mezard
|
r5621 | parents = {} | ||
Augie Fackler
|
r22411 | numcommits = self.source.numcommits() | ||
Patrick Mezard
|
r5621 | while visit: | ||
n = visit.pop(0) | ||||
Mads Kiilerich
|
r21636 | if n in known: | ||
Matt Mackall
|
r10282 | continue | ||
Mads Kiilerich
|
r21636 | if n in self.map: | ||
m = self.map[n] | ||||
if m == SKIPREV or self.dest.hascommitfrommap(m): | ||||
continue | ||||
Benoit Boissinot
|
r8456 | known.add(n) | ||
Augie Fackler
|
r22411 | self.ui.progress(_('scanning'), len(known), unit=_('revisions'), | ||
total=numcommits) | ||||
Patrick Mezard
|
r5621 | commit = self.cachecommit(n) | ||
parents[n] = [] | ||||
for p in commit.parents: | ||||
parents[n].append(p) | ||||
visit.append(p) | ||||
Patrick Mezard
|
r11135 | self.ui.progress(_('scanning'), None) | ||
Patrick Mezard
|
r5621 | |||
return parents | ||||
Patrick Mezard
|
r16106 | def mergesplicemap(self, parents, splicemap): | ||
"""A splicemap redefines child/parent relationships. Check the | ||||
map contains valid revision identifiers and merge the new | ||||
links in the source graph. | ||||
""" | ||||
Mads Kiilerich
|
r18372 | for c in sorted(splicemap): | ||
Patrick Mezard
|
r16106 | if c not in parents: | ||
Mads Kiilerich
|
r21634 | if not self.dest.hascommitforsplicemap(self.map.get(c, c)): | ||
Patrick Mezard
|
r16106 | # Could be in source but not converted during this run | ||
self.ui.warn(_('splice map revision %s is not being ' | ||||
'converted, ignoring\n') % c) | ||||
continue | ||||
pc = [] | ||||
for p in splicemap[c]: | ||||
# We do not have to wait for nodes already in dest. | ||||
Mads Kiilerich
|
r21634 | if self.dest.hascommitforsplicemap(self.map.get(p, p)): | ||
Patrick Mezard
|
r16106 | continue | ||
# Parent is not in dest and not being converted, not good | ||||
if p not in parents: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('unknown splice map parent: %s') % p) | ||
Patrick Mezard
|
r16106 | pc.append(p) | ||
parents[c] = pc | ||||
Patrick Mezard
|
r8689 | def toposort(self, parents, sortmode): | ||
Patrick Mezard
|
r5621 | '''Return an ordering such that every uncommitted changeset is | ||
Mads Kiilerich
|
r17424 | preceded by all its uncommitted ancestors.''' | ||
Patrick Mezard
|
r8688 | |||
def mapchildren(parents): | ||||
"""Return a (children, roots) tuple where 'children' maps parent | ||||
revision identifiers to children ones, and 'roots' is the list of | ||||
revisions without parents. 'parents' must be a mapping of revision | ||||
identifier to its parents ones. | ||||
""" | ||||
Gregory Szorc
|
r35797 | visit = collections.deque(sorted(parents)) | ||
Patrick Mezard
|
r8688 | seen = set() | ||
children = {} | ||||
roots = [] | ||||
Patrick Mezard
|
r5621 | |||
Patrick Mezard
|
r8688 | while visit: | ||
Gregory Szorc
|
r35797 | n = visit.popleft() | ||
Patrick Mezard
|
r8688 | if n in seen: | ||
continue | ||||
seen.add(n) | ||||
# Ensure that nodes without parents are present in the | ||||
# 'children' mapping. | ||||
children.setdefault(n, []) | ||||
hasparent = False | ||||
for p in parents[n]: | ||||
Brodie Rao
|
r16686 | if p not in self.map: | ||
Patrick Mezard
|
r8688 | visit.append(p) | ||
hasparent = True | ||||
children.setdefault(p, []).append(n) | ||||
if not hasparent: | ||||
roots.append(n) | ||||
return children, roots | ||||
Patrick Mezard
|
r6100 | |||
Patrick Mezard
|
r8688 | # Sort functions are supposed to take a list of revisions which | ||
# can be converted immediately and pick one | ||||
Patrick Mezard
|
r6100 | |||
Patrick Mezard
|
r8688 | def makebranchsorter(): | ||
"""If the previously converted revision has a child in the | ||||
eligible revisions list, pick it. Return the list head | ||||
otherwise. Branch sort attempts to minimize branch | ||||
switching, which is harmful for Mercurial backend | ||||
compression. | ||||
""" | ||||
prev = [None] | ||||
def picknext(nodes): | ||||
next = nodes[0] | ||||
for n in nodes: | ||||
if prev[0] in parents[n]: | ||||
next = n | ||||
break | ||||
prev[0] = next | ||||
return next | ||||
return picknext | ||||
Patrick Mezard
|
r8690 | def makesourcesorter(): | ||
"""Source specific sort.""" | ||||
keyfn = lambda n: self.commitcache[n].sortkey | ||||
def picknext(nodes): | ||||
return sorted(nodes, key=keyfn)[0] | ||||
return picknext | ||||
Constantine Linnick
|
r18819 | def makeclosesorter(): | ||
"""Close order sort.""" | ||||
keyfn = lambda n: ('close' not in self.commitcache[n].extra, | ||||
self.commitcache[n].sortkey) | ||||
def picknext(nodes): | ||||
return sorted(nodes, key=keyfn)[0] | ||||
return picknext | ||||
Patrick Mezard
|
r8688 | def makedatesorter(): | ||
"""Sort revisions by date.""" | ||||
Patrick Mezard
|
r6100 | dates = {} | ||
def getdate(n): | ||||
if n not in dates: | ||||
dates[n] = util.parsedate(self.commitcache[n].date) | ||||
return dates[n] | ||||
def picknext(nodes): | ||||
return min([(getdate(n), n) for n in nodes])[1] | ||||
Patrick Mezard
|
r8688 | |||
return picknext | ||||
Patrick Mezard
|
r8689 | if sortmode == 'branchsort': | ||
picknext = makebranchsorter() | ||||
elif sortmode == 'datesort': | ||||
Patrick Mezard
|
r8688 | picknext = makedatesorter() | ||
Patrick Mezard
|
r8690 | elif sortmode == 'sourcesort': | ||
picknext = makesourcesorter() | ||||
Constantine Linnick
|
r18819 | elif sortmode == 'closesort': | ||
picknext = makeclosesorter() | ||||
Patrick Mezard
|
r6100 | else: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('unknown sort mode: %s') % sortmode) | ||
Patrick Mezard
|
r8688 | |||
children, actives = mapchildren(parents) | ||||
Patrick Mezard
|
r5621 | |||
s = [] | ||||
Patrick Mezard
|
r6100 | pendings = {} | ||
while actives: | ||||
n = picknext(actives) | ||||
actives.remove(n) | ||||
s.append(n) | ||||
Patrick Mezard
|
r5621 | |||
Patrick Mezard
|
r6100 | # Update dependents list | ||
for c in children.get(n, []): | ||||
if c not in pendings: | ||||
pendings[c] = [p for p in parents[c] if p not in self.map] | ||||
Patrick Mezard
|
r6131 | try: | ||
pendings[c].remove(n) | ||||
except ValueError: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('cycle detected between %s and %s') | ||
Patrick Mezard
|
r6131 | % (recode(c), recode(n))) | ||
Patrick Mezard
|
r6100 | if not pendings[c]: | ||
# Parents are converted, node is eligible | ||||
actives.insert(0, c) | ||||
pendings[c] = None | ||||
Patrick Mezard
|
r5621 | |||
Patrick Mezard
|
r6100 | if len(s) != len(parents): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_("not all revisions were sorted")) | ||
Patrick Mezard
|
r5621 | |||
return s | ||||
def writeauthormap(self): | ||||
authorfile = self.authorfile | ||||
if authorfile: | ||||
Martin Geisler
|
r16925 | self.ui.status(_('writing author map file %s\n') % authorfile) | ||
Augie Fackler
|
r36149 | ofile = open(authorfile, 'wb+') | ||
Peter Arrenbrecht
|
r7877 | for author in self.authors: | ||
Yuya Nishihara
|
r36166 | ofile.write(util.tonativeeol("%s=%s\n" | ||
% (author, self.authors[author]))) | ||||
Peter Arrenbrecht
|
r7877 | ofile.close() | ||
Patrick Mezard
|
r5621 | |||
def readauthormap(self, authorfile): | ||||
Augie Fackler
|
r36149 | afile = open(authorfile, 'rb') | ||
Patrick Mezard
|
r5621 | for line in afile: | ||
Marti Raudsepp
|
r7962 | |||
Marti Raudsepp
|
r7968 | line = line.strip() | ||
if not line or line.startswith('#'): | ||||
Marti Raudsepp
|
r6184 | continue | ||
Marti Raudsepp
|
r7962 | |||
Patrick Mezard
|
r5621 | try: | ||
Marti Raudsepp
|
r6186 | srcauthor, dstauthor = line.split('=', 1) | ||
Marti Raudsepp
|
r7962 | except ValueError: | ||
Martin Geisler
|
r16925 | msg = _('ignoring bad line in author map file %s: %s\n') | ||
Marti Raudsepp
|
r7962 | self.ui.warn(msg % (authorfile, line.rstrip())) | ||
continue | ||||
srcauthor = srcauthor.strip() | ||||
dstauthor = dstauthor.strip() | ||||
if self.authors.get(srcauthor) in (None, dstauthor): | ||||
msg = _('mapping author %s to %s\n') | ||||
self.ui.debug(msg % (srcauthor, dstauthor)) | ||||
self.authors[srcauthor] = dstauthor | ||||
continue | ||||
m = _('overriding mapping for author %s, was %s, will be %s\n') | ||||
self.ui.status(m % (srcauthor, self.authors[srcauthor], dstauthor)) | ||||
Patrick Mezard
|
r5621 | afile.close() | ||
def cachecommit(self, rev): | ||||
commit = self.source.getcommit(rev) | ||||
commit.author = self.authors.get(commit.author, commit.author) | ||||
Eugene Baranov
|
r25805 | commit.branch = mapbranch(commit.branch, self.branchmap) | ||
Patrick Mezard
|
r5621 | self.commitcache[rev] = commit | ||
return commit | ||||
def copy(self, rev): | ||||
commit = self.commitcache[rev] | ||||
Mads Kiilerich
|
r22300 | full = self.opts.get('full') | ||
changes = self.source.getchanges(rev, full) | ||||
Pulkit Goyal
|
r35198 | if isinstance(changes, bytes): | ||
Patrick Mezard
|
r5621 | if changes == SKIPREV: | ||
dest = SKIPREV | ||||
else: | ||||
dest = self.map[changes] | ||||
Patrick Mezard
|
r5631 | self.map[rev] = dest | ||
Patrick Mezard
|
r5621 | return | ||
Mads Kiilerich
|
r24395 | files, copies, cleanp2 = changes | ||
Patrick Mezard
|
r5934 | pbranches = [] | ||
Patrick Mezard
|
r5621 | if commit.parents: | ||
Patrick Mezard
|
r5934 | for prev in commit.parents: | ||
if prev not in self.commitcache: | ||||
self.cachecommit(prev) | ||||
Thomas Arendsen Hein
|
r6210 | pbranches.append((self.map[prev], | ||
Patrick Mezard
|
r5934 | self.commitcache[prev].branch)) | ||
self.dest.setbranch(commit.branch, pbranches) | ||||
Bryan O'Sullivan
|
r5996 | try: | ||
Patrick Mezard
|
r16105 | parents = self.splicemap[rev] | ||
Martin Geisler
|
r6956 | self.ui.status(_('spliced in %s as parents of %s\n') % | ||
Mads Kiilerich
|
r26812 | (_(' and ').join(parents), rev)) | ||
Bryan O'Sullivan
|
r6143 | parents = [self.map.get(p, p) for p in parents] | ||
Bryan O'Sullivan
|
r5996 | except KeyError: | ||
parents = [b[0] for b in pbranches] | ||||
Mads Kiilerich
|
r28900 | parents.extend(self.map[x] | ||
for x in commit.optparents | ||||
if x in self.map) | ||||
Mads Kiilerich
|
r24395 | if len(pbranches) != 2: | ||
cleanp2 = set() | ||||
Augie Fackler
|
r24328 | if len(parents) < 3: | ||
source = progresssource(self.ui, self.source, len(files)) | ||||
else: | ||||
# For an octopus merge, we end up traversing the list of | ||||
# changed files N-1 times. This tweak to the number of | ||||
# files makes it so the progress bar doesn't overflow | ||||
# itself. | ||||
source = progresssource(self.ui, self.source, | ||||
len(files) * (len(parents) - 1)) | ||||
Dirkjan Ochtman
|
r8843 | newnode = self.dest.putcommit(files, copies, parents, commit, | ||
Mads Kiilerich
|
r24395 | source, self.map, full, cleanp2) | ||
Patrick Mezard
|
r11136 | source.close() | ||
Patrick Mezard
|
r5631 | self.source.converted(rev, newnode) | ||
self.map[rev] = newnode | ||||
Patrick Mezard
|
r5621 | |||
Patrick Mezard
|
r8689 | def convert(self, sortmode): | ||
Patrick Mezard
|
r5621 | try: | ||
self.source.before() | ||||
self.dest.before() | ||||
Patrick Mezard
|
r5631 | self.source.setrevmap(self.map) | ||
Martin Geisler
|
r6956 | self.ui.status(_("scanning source...\n")) | ||
Patrick Mezard
|
r5621 | heads = self.source.getheads() | ||
parents = self.walktree(heads) | ||||
Patrick Mezard
|
r16106 | self.mergesplicemap(parents, self.splicemap) | ||
Martin Geisler
|
r6956 | self.ui.status(_("sorting...\n")) | ||
Patrick Mezard
|
r8689 | t = self.toposort(parents, sortmode) | ||
Patrick Mezard
|
r5621 | num = len(t) | ||
c = None | ||||
Martin Geisler
|
r6956 | self.ui.status(_("converting...\n")) | ||
timeless
|
r12769 | for i, c in enumerate(t): | ||
Patrick Mezard
|
r5621 | num -= 1 | ||
desc = self.commitcache[c].desc | ||||
if "\n" in desc: | ||||
desc = desc.splitlines()[0] | ||||
Shun-ichi GOTO
|
r5794 | # convert log message to local encoding without using | ||
timeless
|
r12768 | # tolocal() because the encoding.encoding convert() | ||
# uses is 'utf-8' | ||||
Patrick Mezard
|
r5954 | self.ui.status("%d %s\n" % (num, recode(desc))) | ||
Martin Geisler
|
r6913 | self.ui.note(_("source: %s\n") % recode(c)) | ||
Patrick Mezard
|
r11135 | self.ui.progress(_('converting'), i, unit=_('revisions'), | ||
total=len(t)) | ||||
Patrick Mezard
|
r5621 | self.copy(c) | ||
Patrick Mezard
|
r11135 | self.ui.progress(_('converting'), None) | ||
Patrick Mezard
|
r5621 | |||
Durham Goode
|
r25741 | if not self.ui.configbool('convert', 'skiptags'): | ||
tags = self.source.gettags() | ||||
ctags = {} | ||||
for k in tags: | ||||
v = tags[k] | ||||
if self.map.get(v, SKIPREV) != SKIPREV: | ||||
ctags[k] = self.map[v] | ||||
Patrick Mezard
|
r5621 | |||
Durham Goode
|
r25741 | if c and ctags: | ||
nrev, tagsparent = self.dest.puttags(ctags) | ||||
if nrev and tagsparent: | ||||
# write another hash correspondence to override the | ||||
# previous one so we don't end up with extra tag heads | ||||
tagsparents = [e for e in self.map.iteritems() | ||||
if e[1] == tagsparent] | ||||
if tagsparents: | ||||
self.map[tagsparents[0][0]] = nrev | ||||
Patrick Mezard
|
r5621 | |||
Edouard Gomez
|
r13745 | bookmarks = self.source.getbookmarks() | ||
cbookmarks = {} | ||||
for k in bookmarks: | ||||
v = bookmarks[k] | ||||
if self.map.get(v, SKIPREV) != SKIPREV: | ||||
cbookmarks[k] = self.map[v] | ||||
if c and cbookmarks: | ||||
self.dest.putbookmarks(cbookmarks) | ||||
Patrick Mezard
|
r5621 | self.writeauthormap() | ||
finally: | ||||
self.cleanup() | ||||
def cleanup(self): | ||||
try: | ||||
self.dest.after() | ||||
finally: | ||||
self.source.after() | ||||
Patrick Mezard
|
r5631 | self.map.close() | ||
Patrick Mezard
|
r5621 | |||
def convert(ui, src, dest=None, revmapfile=None, **opts): | ||||
Pulkit Goyal
|
r36347 | opts = pycompat.byteskwargs(opts) | ||
Shun-ichi GOTO
|
r5794 | global orig_encoding | ||
Matt Mackall
|
r7948 | orig_encoding = encoding.encoding | ||
encoding.encoding = 'UTF-8' | ||||
Patrick Mezard
|
r5621 | |||
Martin Geisler
|
r12198 | # support --authors as an alias for --authormap | ||
if not opts.get('authormap'): | ||||
opts['authormap'] = opts.get('authors') | ||||
Patrick Mezard
|
r5621 | if not dest: | ||
dest = hg.defaultdest(src) + "-hg" | ||||
Martin Geisler
|
r6956 | ui.status(_("assuming destination %s\n") % dest) | ||
Patrick Mezard
|
r5621 | |||
destc = convertsink(ui, dest, opts.get('dest_type')) | ||||
Matt Harbison
|
r35169 | destc = scmutil.wrapconvertsink(destc) | ||
Patrick Mezard
|
r5621 | |||
try: | ||||
Patrick Mezard
|
r8692 | srcc, defaultsort = convertsource(ui, src, opts.get('source_type'), | ||
opts.get('rev')) | ||||
Patrick Mezard
|
r5621 | except Exception: | ||
for path in destc.created: | ||||
shutil.rmtree(path, True) | ||||
raise | ||||
Constantine Linnick
|
r18819 | sortmodes = ('branchsort', 'datesort', 'sourcesort', 'closesort') | ||
Patrick Mezard
|
r8690 | sortmode = [m for m in sortmodes if opts.get(m)] | ||
if len(sortmode) > 1: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('more than one sort mode specified')) | ||
Jordi GutiƩrrez Hermoso
|
r24306 | if sortmode: | ||
sortmode = sortmode[0] | ||||
else: | ||||
sortmode = defaultsort | ||||
Patrick Mezard
|
r8691 | if sortmode == 'sourcesort' and not srcc.hasnativeorder(): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('--sourcesort is not supported by this data source') | ||
) | ||||
Constantine Linnick
|
r18819 | if sortmode == 'closesort' and not srcc.hasnativeclose(): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('--closesort is not supported by this data source')) | ||
Patrick Mezard
|
r8689 | |||
Patrick Mezard
|
r5621 | fmap = opts.get('filemap') | ||
if fmap: | ||||
srcc = filemap.filemap_source(ui, srcc, fmap) | ||||
destc.setfilemapmode(True) | ||||
if not revmapfile: | ||||
Mads Kiilerich
|
r19889 | revmapfile = destc.revmapfile() | ||
Patrick Mezard
|
r5621 | |||
c = converter(ui, srcc, destc, revmapfile, opts) | ||||
Patrick Mezard
|
r8689 | c.convert(sortmode) | ||