Mercurial > hg-stable
diff hgext/convert/subversion.py @ 5139:18abf13064cb
Move debugsvnlog to subversion module.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 07 Aug 2007 09:49:07 +0200 |
parents | 9cda2315c7a9 |
children | 792c1d979097 |
line wrap: on
line diff
--- a/hgext/convert/subversion.py Tue Aug 07 09:42:32 2007 +0200 +++ b/hgext/convert/subversion.py Tue Aug 07 09:49:07 2007 +0200 @@ -15,6 +15,7 @@ import locale import os +import sys import cPickle as pickle from mercurial import util @@ -24,7 +25,7 @@ from cStringIO import StringIO -from common import NoRepo, commit, converter_source, encodeargs +from common import NoRepo, commit, converter_source, encodeargs, decodeargs try: from svn.core import SubversionException, Pool @@ -82,6 +83,15 @@ pickle.dump(None, fp, protocol) fp.close() +def debugsvnlog(ui, **opts): + """Fetch SVN log in a subprocess and channel them back to parent to + avoid memory collection issues. + """ + util.set_binary(sys.stdin) + util.set_binary(sys.stdout) + args = decodeargs(sys.stdin.read()) + get_log_child(sys.stdout, *args) + # SVN conversion code stolen from bzr-svn and tailor class convert_svn(converter_source): def __init__(self, ui, url, rev=None):