common.py
591 lines
| 17.7 KiB
| text/x-python
|
PythonLexer
Martin Geisler
|
r8250 | # common.py - common code for the convert extension | ||
# | ||||
# Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others | ||||
# | ||||
# 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
|
r28410 | from __future__ import absolute_import | ||
Martin Geisler
|
r8250 | |||
timeless
|
r28410 | import base64 | ||
import datetime | ||||
import errno | ||||
import os | ||||
import re | ||||
Augie Fackler
|
r36575 | import shlex | ||
timeless
|
r28410 | import subprocess | ||
Yuya Nishihara
|
r29205 | from mercurial.i18n import _ | ||
Gregory Szorc
|
r43355 | from mercurial.pycompat import open | ||
timeless
|
r28410 | from mercurial import ( | ||
Augie Fackler
|
r34024 | encoding, | ||
timeless
|
r28410 | error, | ||
phases, | ||||
Pulkit Goyal
|
r36347 | pycompat, | ||
timeless
|
r28410 | util, | ||
) | ||||
Augie Fackler
|
r43346 | from mercurial.utils import procutil | ||
Patrick Mezard
|
r5127 | |||
Pulkit Goyal
|
r29324 | pickle = util.pickle | ||
Patrick Mezard
|
r15606 | propertycache = util.propertycache | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r36575 | def _encodeornone(d): | ||
if d is None: | ||||
return | ||||
return d.encode('latin1') | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r36575 | class _shlexpy3proxy(object): | ||
def __init__(self, l): | ||||
self._l = l | ||||
def __iter__(self): | ||||
return (_encodeornone(v) for v in self._l) | ||||
def get_token(self): | ||||
return _encodeornone(self._l.get_token()) | ||||
@property | ||||
def infile(self): | ||||
Augie Fackler
|
r43347 | return self._l.infile or b'<unknown>' | ||
Augie Fackler
|
r36575 | |||
@property | ||||
def lineno(self): | ||||
return self._l.lineno | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r36575 | def shlexer(data=None, filepath=None, wordchars=None, whitespace=None): | ||
if data is None: | ||||
if pycompat.ispy3: | ||||
Augie Fackler
|
r43906 | data = open(filepath, b'r', encoding='latin1') | ||
Augie Fackler
|
r36575 | else: | ||
Augie Fackler
|
r43347 | data = open(filepath, b'r') | ||
Augie Fackler
|
r36575 | else: | ||
if filepath is not None: | ||||
raise error.ProgrammingError( | ||||
Augie Fackler
|
r43347 | b'shlexer only accepts data or filepath, not both' | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r36575 | if pycompat.ispy3: | ||
data = data.decode('latin1') | ||||
l = shlex.shlex(data, infile=filepath, posix=True) | ||||
if whitespace is not None: | ||||
l.whitespace_split = True | ||||
if pycompat.ispy3: | ||||
l.whitespace += whitespace.decode('latin1') | ||||
else: | ||||
l.whitespace += whitespace | ||||
if wordchars is not None: | ||||
if pycompat.ispy3: | ||||
l.wordchars += wordchars.decode('latin1') | ||||
else: | ||||
l.wordchars += wordchars | ||||
if pycompat.ispy3: | ||||
return _shlexpy3proxy(l) | ||||
return l | ||||
Augie Fackler
|
r43346 | |||
Patrick Mezard
|
r5127 | def encodeargs(args): | ||
def encodearg(s): | ||||
lines = base64.encodestring(s) | ||||
lines = [l.splitlines()[0] for l in lines] | ||||
Augie Fackler
|
r43347 | return b''.join(lines) | ||
Thomas Arendsen Hein
|
r5143 | |||
Patrick Mezard
|
r5127 | s = pickle.dumps(args) | ||
return encodearg(s) | ||||
Augie Fackler
|
r43346 | |||
Patrick Mezard
|
r5127 | def decodeargs(s): | ||
s = base64.decodestring(s) | ||||
return pickle.loads(s) | ||||
Brendan Cully
|
r4536 | |||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r10282 | class MissingTool(Exception): | ||
pass | ||||
Patrick Mezard
|
r6332 | |||
Augie Fackler
|
r43346 | |||
Patrick Mezard
|
r6332 | def checktool(exe, name=None, abort=True): | ||
Patrick Mezard
|
r5497 | name = name or exe | ||
Yuya Nishihara
|
r37138 | if not procutil.findexe(exe): | ||
Jordi Gutiérrez Hermoso
|
r24306 | if abort: | ||
Pierre-Yves David
|
r26587 | exc = error.Abort | ||
Jordi Gutiérrez Hermoso
|
r24306 | else: | ||
exc = MissingTool | ||||
Augie Fackler
|
r43347 | raise exc(_(b'cannot find required "%s" tool') % name) | ||
Patrick Mezard
|
r5497 | |||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r10282 | class NoRepo(Exception): | ||
pass | ||||
Brendan Cully
|
r4536 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | SKIPREV = b'SKIP' | ||
Alexis S. L. Carvalho
|
r5374 | |||
Augie Fackler
|
r43346 | |||
Brendan Cully
|
r4536 | class commit(object): | ||
Augie Fackler
|
r43346 | def __init__( | ||
self, | ||||
author, | ||||
date, | ||||
desc, | ||||
parents, | ||||
branch=None, | ||||
rev=None, | ||||
extra=None, | ||||
sortkey=None, | ||||
saverev=True, | ||||
phase=phases.draft, | ||||
optparents=None, | ||||
ctx=None, | ||||
): | ||||
Augie Fackler
|
r43347 | self.author = author or b'unknown' | ||
self.date = date or b'0 0' | ||||
Bryan O'Sullivan
|
r5024 | self.desc = desc | ||
Augie Fackler
|
r43346 | self.parents = parents # will be converted and used as parents | ||
self.optparents = optparents or [] # will be used if already converted | ||||
Bryan O'Sullivan
|
r5012 | self.branch = branch | ||
self.rev = rev | ||||
Gregory Szorc
|
r30659 | self.extra = extra or {} | ||
Patrick Mezard
|
r8690 | self.sortkey = sortkey | ||
Matt Harbison
|
r25570 | self.saverev = saverev | ||
Matt Harbison
|
r25571 | self.phase = phase | ||
Augie Fackler
|
r43346 | self.ctx = ctx # for hg to hg conversions | ||
Brendan Cully
|
r4536 | |||
class converter_source(object): | ||||
"""Conversion source interface""" | ||||
Matt Harbison
|
r35168 | def __init__(self, ui, repotype, path=None, revs=None): | ||
Brendan Cully
|
r4536 | """Initialize conversion source (or raise NoRepo("message") | ||
exception if path is not a valid repository)""" | ||||
Brendan Cully
|
r4810 | self.ui = ui | ||
self.path = path | ||||
Durham Goode
|
r25748 | self.revs = revs | ||
Matt Harbison
|
r35168 | self.repotype = repotype | ||
Brendan Cully
|
r4810 | |||
Augie Fackler
|
r43347 | self.encoding = b'utf-8' | ||
Brendan Cully
|
r4812 | |||
Augie Fackler
|
r43347 | def checkhexformat(self, revstr, mapname=b'splicemap'): | ||
Ben Goswami
|
r19120 | """ fails if revstr is not a 40 byte hex. mercurial and git both uses | ||
such format for their revision numbering | ||||
""" | ||||
Pulkit Goyal
|
r37600 | if not re.match(br'[0-9a-fA-F]{40,40}$', revstr): | ||
Augie Fackler
|
r43346 | raise error.Abort( | ||
Martin von Zweigbergk
|
r43387 | _(b'%s entry %s is not a valid revision identifier') | ||
Augie Fackler
|
r43346 | % (mapname, revstr) | ||
) | ||||
Ben Goswami
|
r19120 | |||
Bryan O'Sullivan
|
r5356 | def before(self): | ||
pass | ||||
def after(self): | ||||
pass | ||||
Durham Goode
|
r26035 | def targetfilebelongstosource(self, targetfilename): | ||
"""Returns true if the given targetfile belongs to the source repo. This | ||||
is useful when only a subdirectory of the target belongs to the source | ||||
repo.""" | ||||
# For normal full repo converts, this is always True. | ||||
return True | ||||
Bryan O'Sullivan
|
r5510 | def setrevmap(self, revmap): | ||
"""set the map of already-converted revisions""" | ||||
Brendan Cully
|
r4536 | |||
def getheads(self): | ||||
"""Return a list of this repository's heads""" | ||||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Brendan Cully
|
r4536 | |||
def getfile(self, name, rev): | ||||
Patrick Mezard
|
r11134 | """Return a pair (data, mode) where data is the file content | ||
as a string and mode one of '', 'x' or 'l'. rev is the | ||||
Mads Kiilerich
|
r22296 | identifier returned by a previous call to getchanges(). | ||
Data is None if file is missing/deleted in rev. | ||||
Patrick Mezard
|
r7055 | """ | ||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Brendan Cully
|
r4536 | |||
Mads Kiilerich
|
r22300 | def getchanges(self, version, full): | ||
Mads Kiilerich
|
r24395 | """Returns a tuple of (files, copies, cleanp2). | ||
Patrick Mezard
|
r7055 | |||
files is a sorted list of (filename, id) tuples for all files | ||||
Greg Ward
|
r8444 | changed between version and its first parent returned by | ||
Mads Kiilerich
|
r22300 | getcommit(). If full, all files in that revision is returned. | ||
id is the source revision id of the file. | ||||
Brendan Cully
|
r4536 | |||
Brendan Cully
|
r5121 | copies is a dictionary of dest: source | ||
Mads Kiilerich
|
r24395 | |||
cleanp2 is the set of files filenames that are clean against p2. | ||||
(Files that are clean against p1 are already not in files (unless | ||||
full). This makes it possible to handle p2 clean files similarly.) | ||||
Brendan Cully
|
r5121 | """ | ||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Brendan Cully
|
r4536 | |||
def getcommit(self, version): | ||||
"""Return the commit object for version""" | ||||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Brendan Cully
|
r4536 | |||
Augie Fackler
|
r22411 | def numcommits(self): | ||
"""Return the number of commits in this source. | ||||
If unknown, return None. | ||||
""" | ||||
return None | ||||
Brendan Cully
|
r4536 | def gettags(self): | ||
Patrick Mezard
|
r8887 | """Return the tags as a dictionary of name: revision | ||
Tag names must be UTF-8 strings. | ||||
""" | ||||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Brendan Cully
|
r4536 | |||
Brendan Cully
|
r4759 | def recode(self, s, encoding=None): | ||
if not encoding: | ||||
Augie Fackler
|
r43347 | encoding = self.encoding or b'utf-8' | ||
Thomas Arendsen Hein
|
r4957 | |||
Pulkit Goyal
|
r38332 | if isinstance(s, pycompat.unicode): | ||
Thomas Arendsen Hein
|
r5287 | return s.encode("utf-8") | ||
Brendan Cully
|
r4759 | try: | ||
Pulkit Goyal
|
r37640 | return s.decode(pycompat.sysstr(encoding)).encode("utf-8") | ||
Brodie Rao
|
r16688 | except UnicodeError: | ||
Brendan Cully
|
r4759 | try: | ||
return s.decode("latin-1").encode("utf-8") | ||||
Brodie Rao
|
r16688 | except UnicodeError: | ||
Augie Fackler
|
r43346 | return s.decode(pycompat.sysstr(encoding), "replace").encode( | ||
"utf-8" | ||||
) | ||||
Brendan Cully
|
r4759 | |||
Alexis S. L. Carvalho
|
r5377 | def getchangedfiles(self, rev, i): | ||
"""Return the files changed by rev compared to parent[i]. | ||||
Thomas Arendsen Hein
|
r5760 | |||
Alexis S. L. Carvalho
|
r5377 | i is an index selecting one of the parents of rev. The return | ||
value should be the list of files that are different in rev and | ||||
this parent. | ||||
If rev has no parents, i is None. | ||||
Thomas Arendsen Hein
|
r5760 | |||
Alexis S. L. Carvalho
|
r5377 | This function is only needed to support --filemap | ||
""" | ||||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Alexis S. L. Carvalho
|
r5377 | |||
Bryan O'Sullivan
|
r5554 | def converted(self, rev, sinkrev): | ||
'''Notify the source that a revision has been converted.''' | ||||
Patrick Mezard
|
r8691 | def hasnativeorder(self): | ||
"""Return true if this source has a meaningful, native revision | ||||
order. For instance, Mercurial revisions are store sequentially | ||||
while there is no such global ordering with Darcs. | ||||
""" | ||||
return False | ||||
Constantine Linnick
|
r18819 | def hasnativeclose(self): | ||
"""Return true if this source has ability to close branch. | ||||
""" | ||||
return False | ||||
Patrick Mezard
|
r8693 | def lookuprev(self, rev): | ||
"""If rev is a meaningful revision reference in source, return | ||||
the referenced identifier in the same format used by getcommit(). | ||||
return None otherwise. | ||||
""" | ||||
return None | ||||
Bryan O'Sullivan
|
r5554 | |||
Edouard Gomez
|
r13744 | def getbookmarks(self): | ||
"""Return the bookmarks as a dictionary of name: revision | ||||
Bookmark names are to be UTF-8 strings. | ||||
""" | ||||
return {} | ||||
Augie Fackler
|
r43347 | def checkrevformat(self, revstr, mapname=b'splicemap'): | ||
Ben Goswami
|
r19120 | """revstr is a string that describes a revision in the given | ||
source control system. Return true if revstr has correct | ||||
format. | ||||
""" | ||||
return True | ||||
Augie Fackler
|
r43346 | |||
Brendan Cully
|
r4536 | class converter_sink(object): | ||
"""Conversion sink (target) interface""" | ||||
Matt Harbison
|
r35168 | def __init__(self, ui, repotype, path): | ||
Brendan Cully
|
r4536 | """Initialize conversion sink (or raise NoRepo("message") | ||
Bryan O'Sullivan
|
r5441 | exception if path is not a valid repository) | ||
created is a list of paths to remove if a fatal error occurs | ||||
later""" | ||||
self.ui = ui | ||||
Bryan O'Sullivan
|
r5440 | self.path = path | ||
Bryan O'Sullivan
|
r5441 | self.created = [] | ||
Matt Harbison
|
r35168 | self.repotype = repotype | ||
Brendan Cully
|
r4536 | |||
Bryan O'Sullivan
|
r5011 | def revmapfile(self): | ||
Brendan Cully
|
r4536 | """Path to a file that will contain lines | ||
source_rev_id sink_rev_id | ||||
mapping equivalent revision identifiers for each system.""" | ||||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Brendan Cully
|
r4536 | |||
Edouard Gomez
|
r4589 | def authorfile(self): | ||
"""Path to a file that will contain lines | ||||
srcauthor=dstauthor | ||||
mapping equivalent authors identifiers for each system.""" | ||||
Brendan Cully
|
r4590 | return None | ||
Edouard Gomez
|
r4589 | |||
Augie Fackler
|
r43346 | def putcommit( | ||
self, files, copies, parents, commit, source, revmap, full, cleanp2 | ||||
): | ||||
Brendan Cully
|
r4536 | """Create a revision with all changed files listed in 'files' | ||
Patrick Mezard
|
r8693 | and having listed parents. 'commit' is a commit object | ||
containing at a minimum the author, date, and message for this | ||||
changeset. 'files' is a list of (path, version) tuples, | ||||
'copies' is a dictionary mapping destinations to sources, | ||||
'source' is the source repository, and 'revmap' is a mapfile | ||||
Patrick Mezard
|
r11134 | of source revisions to converted revisions. Only getfile() and | ||
Mads Kiilerich
|
r22300 | lookuprev() should be called on 'source'. 'full' means that 'files' | ||
is complete and all other files should be removed. | ||||
Mads Kiilerich
|
r24395 | 'cleanp2' is a set of the filenames that are unchanged from p2 | ||
(only in the common merge case where there two parents). | ||||
Patrick Mezard
|
r6716 | |||
Note that the sink repository is not told to update itself to | ||||
a particular revision (or even what that revision would be) | ||||
before it receives the file data. | ||||
""" | ||||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Brendan Cully
|
r4536 | |||
def puttags(self, tags): | ||||
"""Put tags into sink. | ||||
Patrick Mezard
|
r8887 | |||
tags: {tagname: sink_rev_id, ...} where tagname is an UTF-8 string. | ||||
Patrick Mezard
|
r9431 | Return a pair (tag_revision, tag_parent_revision), or (None, None) | ||
if nothing was changed. | ||||
Patrick Mezard
|
r8887 | """ | ||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Patrick Mezard
|
r5127 | |||
Patrick Mezard
|
r5934 | def setbranch(self, branch, pbranches): | ||
Patrick Mezard
|
r6716 | """Set the current branch name. Called before the first putcommit | ||
Brendan Cully
|
r5173 | on the branch. | ||
branch: branch name for subsequent commits | ||||
Patrick Mezard
|
r5934 | pbranches: (converted parent revision, parent branch) tuples""" | ||
Alexis S. L. Carvalho
|
r5378 | |||
def setfilemapmode(self, active): | ||||
"""Tell the destination that we're using a filemap | ||||
Some converter_sources (svn in particular) can claim that a file | ||||
was changed in a revision, even if there was no change. This method | ||||
tells the destination that we're using a filemap and that it should | ||||
filter empty revisions. | ||||
""" | ||||
Bryan O'Sullivan
|
r5510 | |||
Bryan O'Sullivan
|
r5512 | def before(self): | ||
pass | ||||
def after(self): | ||||
pass | ||||
Edouard Gomez
|
r13744 | def putbookmarks(self, bookmarks): | ||
"""Put bookmarks into sink. | ||||
bookmarks: {bookmarkname: sink_rev_id, ...} | ||||
where bookmarkname is an UTF-8 string. | ||||
""" | ||||
Bryan O'Sullivan
|
r5512 | |||
Mads Kiilerich
|
r21635 | def hascommitfrommap(self, rev): | ||
"""Return False if a rev mentioned in a filemap is known to not be | ||||
present.""" | ||||
raise NotImplementedError | ||||
Mads Kiilerich
|
r21634 | def hascommitforsplicemap(self, rev): | ||
"""This method is for the special needs for splicemap handling and not | ||||
for general use. Returns True if the sink contains rev, aborts on some | ||||
special cases.""" | ||||
Brodie Rao
|
r16687 | raise NotImplementedError | ||
Patrick Mezard
|
r16106 | |||
Augie Fackler
|
r43346 | |||
Bryan O'Sullivan
|
r5512 | class commandline(object): | ||
def __init__(self, ui, command): | ||||
self.ui = ui | ||||
self.command = command | ||||
def prerun(self): | ||||
pass | ||||
def postrun(self): | ||||
pass | ||||
Patrick Mezard
|
r17413 | def _cmdline(self, cmd, *args, **kwargs): | ||
Pulkit Goyal
|
r36347 | kwargs = pycompat.byteskwargs(kwargs) | ||
Bryan O'Sullivan
|
r5512 | cmdline = [self.command, cmd] + list(args) | ||
Gregory Szorc
|
r43375 | for k, v in pycompat.iteritems(kwargs): | ||
Bryan O'Sullivan
|
r5512 | if len(k) == 1: | ||
Augie Fackler
|
r43347 | cmdline.append(b'-' + k) | ||
Bryan O'Sullivan
|
r5512 | else: | ||
Augie Fackler
|
r43347 | cmdline.append(b'--' + k.replace(b'_', b'-')) | ||
Bryan O'Sullivan
|
r5512 | try: | ||
if len(k) == 1: | ||||
Augie Fackler
|
r43347 | cmdline.append(b'' + v) | ||
Bryan O'Sullivan
|
r5512 | else: | ||
Augie Fackler
|
r43347 | cmdline[-1] += b'=' + v | ||
Bryan O'Sullivan
|
r5512 | except TypeError: | ||
pass | ||||
Yuya Nishihara
|
r37138 | cmdline = [procutil.shellquote(arg) for arg in cmdline] | ||
Patrick Mezard
|
r7611 | if not self.ui.debugflag: | ||
Augie Fackler
|
r43347 | cmdline += [b'2>', pycompat.bytestr(os.devnull)] | ||
cmdline = b' '.join(cmdline) | ||||
Maxim Dounin
|
r5832 | return cmdline | ||
Bryan O'Sullivan
|
r5512 | |||
Maxim Dounin
|
r5832 | def _run(self, cmd, *args, **kwargs): | ||
Patrick Mezard
|
r17413 | def popen(cmdline): | ||
Augie Fackler
|
r43346 | p = subprocess.Popen( | ||
procutil.tonativestr(cmdline), | ||||
shell=True, | ||||
bufsize=-1, | ||||
close_fds=procutil.closefds, | ||||
stdout=subprocess.PIPE, | ||||
) | ||||
Patrick Mezard
|
r17413 | return p | ||
Augie Fackler
|
r43346 | |||
Patrick Mezard
|
r17413 | return self._dorun(popen, cmd, *args, **kwargs) | ||
Daniel Atallah
|
r13759 | |||
def _run2(self, cmd, *args, **kwargs): | ||||
Yuya Nishihara
|
r37138 | return self._dorun(procutil.popen2, cmd, *args, **kwargs) | ||
Daniel Atallah
|
r13759 | |||
Mateusz Kwapich
|
r28662 | def _run3(self, cmd, *args, **kwargs): | ||
Yuya Nishihara
|
r37138 | return self._dorun(procutil.popen3, cmd, *args, **kwargs) | ||
Mateusz Kwapich
|
r28662 | |||
Augie Fackler
|
r43346 | def _dorun(self, openfunc, cmd, *args, **kwargs): | ||
Patrick Mezard
|
r17413 | cmdline = self._cmdline(cmd, *args, **kwargs) | ||
Augie Fackler
|
r43347 | self.ui.debug(b'running: %s\n' % (cmdline,)) | ||
Bryan O'Sullivan
|
r5512 | self.prerun() | ||
try: | ||||
Daniel Atallah
|
r13759 | return openfunc(cmdline) | ||
Bryan O'Sullivan
|
r5512 | finally: | ||
self.postrun() | ||||
def run(self, cmd, *args, **kwargs): | ||||
Patrick Mezard
|
r17413 | p = self._run(cmd, *args, **kwargs) | ||
output = p.communicate()[0] | ||||
Bryan O'Sullivan
|
r5512 | self.ui.debug(output) | ||
Patrick Mezard
|
r17413 | return output, p.returncode | ||
Bryan O'Sullivan
|
r5512 | |||
Aleix Conchillo Flaque
|
r6035 | def runlines(self, cmd, *args, **kwargs): | ||
Patrick Mezard
|
r17413 | p = self._run(cmd, *args, **kwargs) | ||
output = p.stdout.readlines() | ||||
p.wait() | ||||
Augie Fackler
|
r43347 | self.ui.debug(b''.join(output)) | ||
Patrick Mezard
|
r17413 | return output, p.returncode | ||
Aleix Conchillo Flaque
|
r6035 | |||
Augie Fackler
|
r43347 | def checkexit(self, status, output=b''): | ||
Bryan O'Sullivan
|
r5512 | if status: | ||
if output: | ||||
Augie Fackler
|
r43347 | self.ui.warn(_(b'%s error:\n') % self.command) | ||
Bryan O'Sullivan
|
r5512 | self.ui.warn(output) | ||
Yuya Nishihara
|
r37481 | msg = procutil.explainexit(status) | ||
Augie Fackler
|
r43347 | raise error.Abort(b'%s %s' % (self.command, msg)) | ||
Bryan O'Sullivan
|
r5512 | |||
def run0(self, cmd, *args, **kwargs): | ||||
output, status = self.run(cmd, *args, **kwargs) | ||||
self.checkexit(status, output) | ||||
return output | ||||
Aleix Conchillo Flaque
|
r6035 | def runlines0(self, cmd, *args, **kwargs): | ||
output, status = self.runlines(cmd, *args, **kwargs) | ||||
Augie Fackler
|
r43347 | self.checkexit(status, b''.join(output)) | ||
Aleix Conchillo Flaque
|
r6035 | return output | ||
Patrick Mezard
|
r15606 | @propertycache | ||
def argmax(self): | ||||
Maxim Dounin
|
r5832 | # POSIX requires at least 4096 bytes for ARG_MAX | ||
Patrick Mezard
|
r15606 | argmax = 4096 | ||
Maxim Dounin
|
r5832 | try: | ||
Augie Fackler
|
r43809 | argmax = os.sysconf("SC_ARG_MAX") | ||
Brodie Rao
|
r16688 | except (AttributeError, ValueError): | ||
Maxim Dounin
|
r5832 | pass | ||
# Windows shells impose their own limits on command line length, | ||||
# down to 2047 bytes for cmd.exe under Windows NT/2k and 2500 bytes | ||||
# for older 4nt.exe. See http://support.microsoft.com/kb/830473 for | ||||
# details about cmd.exe limitations. | ||||
# Since ARG_MAX is for command line _and_ environment, lower our limit | ||||
# (and make happy Windows shells while doing this). | ||||
Martin Geisler
|
r15791 | return argmax // 2 - 1 | ||
Maxim Dounin
|
r5832 | |||
Patrick Mezard
|
r17412 | def _limit_arglist(self, arglist, cmd, *args, **kwargs): | ||
cmdlen = len(self._cmdline(cmd, *args, **kwargs)) | ||||
Patrick Mezard
|
r15606 | limit = self.argmax - cmdlen | ||
Pulkit Goyal
|
r36349 | numbytes = 0 | ||
Maxim Dounin
|
r5832 | fl = [] | ||
for fn in arglist: | ||||
b = len(fn) + 3 | ||||
Pulkit Goyal
|
r36349 | if numbytes + b < limit or len(fl) == 0: | ||
Maxim Dounin
|
r5832 | fl.append(fn) | ||
Pulkit Goyal
|
r36349 | numbytes += b | ||
Maxim Dounin
|
r5832 | else: | ||
yield fl | ||||
fl = [fn] | ||||
Pulkit Goyal
|
r36349 | numbytes = b | ||
Maxim Dounin
|
r5832 | if fl: | ||
yield fl | ||||
def xargs(self, arglist, cmd, *args, **kwargs): | ||||
Patrick Mezard
|
r17412 | for l in self._limit_arglist(arglist, cmd, *args, **kwargs): | ||
Maxim Dounin
|
r5832 | self.run0(cmd, *(list(args) + l), **kwargs) | ||
Bryan O'Sullivan
|
r5510 | |||
Augie Fackler
|
r43346 | |||
Bryan O'Sullivan
|
r5510 | class mapfile(dict): | ||
def __init__(self, ui, path): | ||||
super(mapfile, self).__init__() | ||||
self.ui = ui | ||||
self.path = path | ||||
self.fp = None | ||||
self.order = [] | ||||
self._read() | ||||
def _read(self): | ||||
Stefan Rusek
|
r7774 | if not self.path: | ||
Bryan O'Sullivan
|
r5996 | return | ||
Bryan O'Sullivan
|
r5510 | try: | ||
Augie Fackler
|
r43347 | fp = open(self.path, b'rb') | ||
Gregory Szorc
|
r25660 | except IOError as err: | ||
Bryan O'Sullivan
|
r5510 | if err.errno != errno.ENOENT: | ||
raise | ||||
return | ||||
Jun Wu
|
r30400 | for i, line in enumerate(util.iterfile(fp)): | ||
Patrick Mezard
|
r16190 | line = line.splitlines()[0].rstrip() | ||
if not line: | ||||
# Ignore blank lines | ||||
continue | ||||
Patrick Mezard
|
r8047 | try: | ||
Augie Fackler
|
r43347 | key, value = line.rsplit(b' ', 1) | ||
Patrick Mezard
|
r8047 | except ValueError: | ||
Pierre-Yves David
|
r26587 | raise error.Abort( | ||
Augie Fackler
|
r43347 | _(b'syntax error in %s(%d): key/value pair expected') | ||
Augie Fackler
|
r43346 | % (self.path, i + 1) | ||
) | ||||
Bryan O'Sullivan
|
r5510 | if key not in self: | ||
self.order.append(key) | ||||
super(mapfile, self).__setitem__(key, value) | ||||
fp.close() | ||||
Thomas Arendsen Hein
|
r5760 | |||
Bryan O'Sullivan
|
r5510 | def __setitem__(self, key, value): | ||
if self.fp is None: | ||||
try: | ||||
Augie Fackler
|
r43347 | self.fp = open(self.path, b'ab') | ||
Gregory Szorc
|
r25660 | except IOError as err: | ||
Augie Fackler
|
r34024 | raise error.Abort( | ||
Augie Fackler
|
r43347 | _(b'could not open map file %r: %s') | ||
Augie Fackler
|
r43346 | % (self.path, encoding.strtolocal(err.strerror)) | ||
) | ||||
Augie Fackler
|
r43347 | self.fp.write(util.tonativeeol(b'%s %s\n' % (key, value))) | ||
Bryan O'Sullivan
|
r5510 | self.fp.flush() | ||
super(mapfile, self).__setitem__(key, value) | ||||
def close(self): | ||||
Bryan O'Sullivan
|
r5512 | if self.fp: | ||
self.fp.close() | ||||
self.fp = None | ||||
Patrick Mezard
|
r16105 | |||
Augie Fackler
|
r43346 | |||
Julian Cowley
|
r17974 | def makedatetimestamp(t): | ||
Boris Feld
|
r36625 | """Like dateutil.makedate() but for time t instead of current time""" | ||
Augie Fackler
|
r43346 | delta = datetime.datetime.utcfromtimestamp( | ||
t | ||||
) - datetime.datetime.fromtimestamp(t) | ||||
Julian Cowley
|
r17974 | tz = delta.days * 86400 + delta.seconds | ||
return t, tz | ||||