cmdutil.py
3312 lines
| 118.9 KiB
| text/x-python
|
PythonLexer
/ mercurial / cmdutil.py
Vadim Gelfer
|
r2957 | # cmdutil.py - help for command processing in mercurial | ||
Vadim Gelfer
|
r2874 | # | ||
Thomas Arendsen Hein
|
r4635 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | ||
Vadim Gelfer
|
r2874 | # | ||
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. | ||
Vadim Gelfer
|
r2874 | |||
Gregory Szorc
|
r28322 | from __future__ import absolute_import | ||
import errno | ||||
import os | ||||
import re | ||||
from .i18n import _ | ||||
from .node import ( | ||||
hex, | ||||
nullid, | ||||
nullrev, | ||||
short, | ||||
) | ||||
from . import ( | ||||
bookmarks, | ||||
changelog, | ||||
copies, | ||||
crecord as crecordmod, | ||||
Martin von Zweigbergk
|
r33619 | dirstateguard, | ||
Gregory Szorc
|
r28322 | encoding, | ||
error, | ||||
formatter, | ||||
Yuya Nishihara
|
r35903 | logcmdutil, | ||
Gregory Szorc
|
r28322 | match as matchmod, | ||
Yuya Nishihara
|
r36027 | merge as mergemod, | ||
Yuya Nishihara
|
r36927 | mergeutil, | ||
Gregory Szorc
|
r28322 | obsolete, | ||
patch, | ||||
pathutil, | ||||
Martin von Zweigbergk
|
r38442 | phases, | ||
Pulkit Goyal
|
r30519 | pycompat, | ||
Gregory Szorc
|
r28322 | revlog, | ||
Pulkit Goyal
|
r35763 | rewriteutil, | ||
Gregory Szorc
|
r28322 | scmutil, | ||
Yuya Nishihara
|
r31023 | smartset, | ||
Yuya Nishihara
|
r36026 | subrepoutil, | ||
Gregory Szorc
|
r28322 | templatekw, | ||
templater, | ||||
util, | ||||
Pierre-Yves David
|
r31237 | vfs as vfsmod, | ||
Gregory Szorc
|
r28322 | ) | ||
Yuya Nishihara
|
r37102 | |||
from .utils import ( | ||||
dateutil, | ||||
stringutil, | ||||
) | ||||
timeless
|
r28861 | stringio = util.stringio | ||
Vadim Gelfer
|
r2874 | |||
Yuya Nishihara
|
r32375 | # templates of common command options | ||
dryrunopts = [ | ||||
('n', 'dry-run', None, | ||||
_('do not perform actions, just print output')), | ||||
] | ||||
Sushil khanchi
|
r38689 | confirmopts = [ | ||
('', 'confirm', None, | ||||
_('ask before applying actions')), | ||||
] | ||||
Yuya Nishihara
|
r32375 | remoteopts = [ | ||
('e', 'ssh', '', | ||||
_('specify ssh command to use'), _('CMD')), | ||||
('', 'remotecmd', '', | ||||
_('specify hg command to run on the remote side'), _('CMD')), | ||||
('', 'insecure', None, | ||||
_('do not verify server certificate (ignoring web.cacerts config)')), | ||||
] | ||||
walkopts = [ | ||||
('I', 'include', [], | ||||
_('include names matching the given patterns'), _('PATTERN')), | ||||
('X', 'exclude', [], | ||||
_('exclude names matching the given patterns'), _('PATTERN')), | ||||
] | ||||
commitopts = [ | ||||
('m', 'message', '', | ||||
_('use text as commit message'), _('TEXT')), | ||||
('l', 'logfile', '', | ||||
_('read commit message from file'), _('FILE')), | ||||
] | ||||
commitopts2 = [ | ||||
('d', 'date', '', | ||||
_('record the specified date as commit date'), _('DATE')), | ||||
('u', 'user', '', | ||||
_('record the specified user as committer'), _('USER')), | ||||
] | ||||
formatteropts = [ | ||||
('T', 'template', '', | ||||
Yuya Nishihara
|
r39967 | _('display with template'), _('TEMPLATE')), | ||
Yuya Nishihara
|
r32375 | ] | ||
templateopts = [ | ||||
('', 'style', '', | ||||
_('display using template map file (DEPRECATED)'), _('STYLE')), | ||||
('T', 'template', '', | ||||
_('display with template'), _('TEMPLATE')), | ||||
] | ||||
logopts = [ | ||||
('p', 'patch', None, _('show patch')), | ||||
('g', 'git', None, _('use git extended diff format')), | ||||
('l', 'limit', '', | ||||
_('limit number of changes displayed'), _('NUM')), | ||||
('M', 'no-merges', None, _('do not show merges')), | ||||
('', 'stat', None, _('output diffstat-style summary of changes')), | ||||
('G', 'graph', None, _("show the revision DAG")), | ||||
] + templateopts | ||||
diffopts = [ | ||||
('a', 'text', None, _('treat all files as text')), | ||||
('g', 'git', None, _('use git extended diff format')), | ||||
('', 'binary', None, _('generate binary diffs in git mode (default)')), | ||||
('', 'nodates', None, _('omit dates from diff headers')) | ||||
] | ||||
diffwsopts = [ | ||||
('w', 'ignore-all-space', None, | ||||
_('ignore white space when comparing lines')), | ||||
('b', 'ignore-space-change', None, | ||||
_('ignore changes in the amount of white space')), | ||||
('B', 'ignore-blank-lines', None, | ||||
_('ignore changes whose lines are all blank')), | ||||
David Soria Parra
|
r34015 | ('Z', 'ignore-space-at-eol', None, | ||
_('ignore changes in whitespace at EOL')), | ||||
Yuya Nishihara
|
r32375 | ] | ||
diffopts2 = [ | ||||
('', 'noprefix', None, _('omit a/ and b/ prefixes from filenames')), | ||||
('p', 'show-function', None, _('show which function each change is in')), | ||||
('', 'reverse', None, _('produce a diff that undoes the changes')), | ||||
] + diffwsopts + [ | ||||
('U', 'unified', '', | ||||
_('number of lines of context to show'), _('NUM')), | ||||
('', 'stat', None, _('output diffstat-style summary of changes')), | ||||
('', 'root', '', _('produce diffs relative to subdirectory'), _('DIR')), | ||||
] | ||||
mergetoolopts = [ | ||||
('t', 'tool', '', _('specify merge tool')), | ||||
] | ||||
similarityopts = [ | ||||
('s', 'similarity', '', | ||||
_('guess renamed files by similarity (0<=s<=100)'), _('SIMILARITY')) | ||||
] | ||||
subrepoopts = [ | ||||
('S', 'subrepos', None, | ||||
_('recurse into subrepositories')) | ||||
] | ||||
debugrevlogopts = [ | ||||
('c', 'changelog', False, _('open changelog')), | ||||
('m', 'manifest', False, _('open manifest')), | ||||
('', 'dir', '', _('open directory manifest')), | ||||
] | ||||
Sean Farley
|
r30703 | # special string such that everything below this line will be ingored in the | ||
# editor text | ||||
_linebelow = "^HG: ------------------------ >8 ------------------------$" | ||||
Laurent Charignon
|
r25256 | def ishunk(x): | ||
hunkclasses = (crecordmod.uihunk, patch.recordhunk) | ||||
return isinstance(x, hunkclasses) | ||||
Laurent Charignon
|
r25257 | def newandmodified(chunks, originalchunks): | ||
newlyaddedandmodifiedfiles = set() | ||||
for chunk in chunks: | ||||
if ishunk(chunk) and chunk.header.isnewfile() and chunk not in \ | ||||
originalchunks: | ||||
newlyaddedandmodifiedfiles.add(chunk.header.filename()) | ||||
return newlyaddedandmodifiedfiles | ||||
Brendan Cully
|
r10401 | def parsealiases(cmd): | ||
return cmd.lstrip("^").split("|") | ||||
Laurent Charignon
|
r24356 | def setupwrapcolorwrite(ui): | ||
# wrap ui.write so diff output can be labeled/colorized | ||||
def wrapwrite(orig, *args, **kw): | ||||
Pulkit Goyal
|
r35351 | label = kw.pop(r'label', '') | ||
Laurent Charignon
|
r24356 | for chunk, l in patch.difflabel(lambda: args): | ||
orig(chunk, label=label + l) | ||||
oldwrite = ui.write | ||||
def wrap(*args, **kwargs): | ||||
return wrapwrite(oldwrite, *args, **kwargs) | ||||
setattr(ui, 'write', wrap) | ||||
return oldwrite | ||||
Laurent Charignon
|
r25310 | def filterchunks(ui, originalhunks, usecurses, testfile, operation=None): | ||
Kyle Lippincott
|
r38058 | try: | ||
if usecurses: | ||||
if testfile: | ||||
recordfn = crecordmod.testdecorator( | ||||
testfile, crecordmod.testchunkselector) | ||||
else: | ||||
recordfn = crecordmod.chunkselector | ||||
return crecordmod.filterpatch(ui, originalhunks, recordfn, | ||||
operation) | ||||
except crecordmod.fallbackerror as e: | ||||
ui.warn('%s\n' % e.message) | ||||
ui.warn(_('falling back to text mode\n')) | ||||
return patch.filterpatch(ui, originalhunks, operation) | ||||
Laurent Charignon
|
r25310 | |||
def recordfilter(ui, originalhunks, operation=None): | ||||
""" Prompts the user to filter the originalhunks and return a list of | ||||
selected hunks. | ||||
Denis Laxalde
|
r29326 | *operation* is used for to build ui messages to indicate the user what | ||
kind of filtering they are doing: reverting, committing, shelving, etc. | ||||
(see patch.filterpatch). | ||||
Laurent Charignon
|
r25310 | """ | ||
Sean Farley
|
r27531 | usecurses = crecordmod.checkcurses(ui) | ||
Jun Wu
|
r33499 | testfile = ui.config('experimental', 'crecordtest') | ||
Laurent Charignon
|
r24358 | oldwrite = setupwrapcolorwrite(ui) | ||
try: | ||||
Laurent Charignon
|
r27155 | newchunks, newopts = filterchunks(ui, originalhunks, usecurses, | ||
testfile, operation) | ||||
Laurent Charignon
|
r24358 | finally: | ||
ui.write = oldwrite | ||||
Laurent Charignon
|
r27155 | return newchunks, newopts | ||
Laurent Charignon
|
r24357 | |||
Laurent Charignon
|
r24309 | def dorecord(ui, repo, commitfunc, cmdsuggest, backupall, | ||
filterfn, *pats, **opts): | ||||
Pulkit Goyal
|
r32144 | opts = pycompat.byteskwargs(opts) | ||
Laurent Charignon
|
r24272 | if not ui.interactive(): | ||
FUJIWARA Katsunori
|
r25795 | if cmdsuggest: | ||
msg = _('running non-interactively, use %s instead') % cmdsuggest | ||||
else: | ||||
msg = _('running non-interactively') | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(msg) | ||
Laurent Charignon
|
r24272 | |||
# make sure username is set before going interactive | ||||
if not opts.get('user'): | ||||
ui.username() # raise exception, username not provided | ||||
def recordfunc(ui, repo, message, match, opts): | ||||
"""This is generic record driver. | ||||
Its job is to interactively filter local changes, and | ||||
accordingly prepare working directory into a state in which the | ||||
job can be delegated to a non-interactive commit command such as | ||||
'commit' or 'qrefresh'. | ||||
After the actual job is done by non-interactive command, the | ||||
working directory is restored to its original state. | ||||
In the end we'll record interesting changes, and everything else | ||||
will be left in place, so the user can continue working. | ||||
""" | ||||
checkunfinished(repo, commit=True) | ||||
timeless
|
r28815 | wctx = repo[None] | ||
merge = len(wctx.parents()) > 1 | ||||
Laurent Charignon
|
r24272 | if merge: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('cannot partially commit a merge ' | ||
Laurent Charignon
|
r24272 | '(use "hg commit" instead)')) | ||
timeless
|
r28815 | def fail(f, msg): | ||
raise error.Abort('%s: %s' % (f, msg)) | ||||
force = opts.get('force') | ||||
if not force: | ||||
vdirs = [] | ||||
match.explicitdir = vdirs.append | ||||
match.bad = fail | ||||
Laurent Charignon
|
r24272 | status = repo.status(match=match) | ||
timeless
|
r28815 | if not force: | ||
repo.checkcommitpatterns(wctx, vdirs, match, status, fail) | ||||
Laurent Charignon
|
r24272 | diffopts = patch.difffeatureopts(ui, opts=opts, whitespace=True) | ||
diffopts.nodates = True | ||||
diffopts.git = True | ||||
timeless
|
r27411 | diffopts.showfunc = True | ||
timeless
|
r27637 | originaldiff = patch.diff(repo, changes=status, opts=diffopts) | ||
Laurent Charignon
|
r24341 | originalchunks = patch.parsepatch(originaldiff) | ||
Laurent Charignon
|
r24272 | |||
Jordi Gutiérrez Hermoso
|
r28570 | # 1. filter patch, since we are intending to apply subset of it | ||
Laurent Charignon
|
r24272 | try: | ||
Laurent Charignon
|
r27155 | chunks, newopts = filterfn(ui, originalchunks) | ||
Yuya Nishihara
|
r34252 | except error.PatchError as err: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('error parsing patch: %s') % err) | ||
Laurent Charignon
|
r27155 | opts.update(newopts) | ||
Laurent Charignon
|
r24272 | |||
Laurent Charignon
|
r24845 | # We need to keep a backup of files that have been newly added and | ||
# modified during the recording process because there is a previous | ||||
# version without the edit in the workdir | ||||
Laurent Charignon
|
r25257 | newlyaddedandmodifiedfiles = newandmodified(chunks, originalchunks) | ||
Laurent Charignon
|
r24272 | contenders = set() | ||
for h in chunks: | ||||
try: | ||||
contenders.update(set(h.files())) | ||||
except AttributeError: | ||||
pass | ||||
changed = status.modified + status.added + status.removed | ||||
newfiles = [f for f in changed if f in contenders] | ||||
if not newfiles: | ||||
ui.status(_('no changes to record\n')) | ||||
return 0 | ||||
modified = set(status.modified) | ||||
# 2. backup changed files, so we can restore them in the end | ||||
if backupall: | ||||
tobackup = changed | ||||
else: | ||||
Laurent Charignon
|
r24845 | tobackup = [f for f in newfiles if f in modified or f in \ | ||
newlyaddedandmodifiedfiles] | ||||
Laurent Charignon
|
r24272 | backups = {} | ||
if tobackup: | ||||
Pierre-Yves David
|
r31320 | backupdir = repo.vfs.join('record-backups') | ||
Laurent Charignon
|
r24272 | try: | ||
os.mkdir(backupdir) | ||||
Gregory Szorc
|
r25660 | except OSError as err: | ||
Laurent Charignon
|
r24272 | if err.errno != errno.EEXIST: | ||
raise | ||||
try: | ||||
# backup continues | ||||
for f in tobackup: | ||||
Yuya Nishihara
|
r38182 | fd, tmpname = pycompat.mkstemp(prefix=f.replace('/', '_') + '.', | ||
Laurent Charignon
|
r24272 | dir=backupdir) | ||
os.close(fd) | ||||
ui.debug('backup %r as %r\n' % (f, tmpname)) | ||||
Siddharth Agarwal
|
r27370 | util.copyfile(repo.wjoin(f), tmpname, copystat=True) | ||
Laurent Charignon
|
r24272 | backups[f] = tmpname | ||
timeless
|
r28861 | fp = stringio() | ||
Laurent Charignon
|
r24272 | for c in chunks: | ||
fname = c.filename() | ||||
Laurent Charignon
|
r24837 | if fname in backups: | ||
Laurent Charignon
|
r24272 | c.write(fp) | ||
dopatch = fp.tell() | ||||
fp.seek(0) | ||||
Jordi Gutiérrez Hermoso
|
r28638 | # 2.5 optionally review / modify patch in text editor | ||
if opts.get('review', False): | ||||
patchtext = (crecordmod.diffhelptext | ||||
+ crecordmod.patchhelptext | ||||
+ fp.read()) | ||||
reviewedpatch = ui.edit(patchtext, "", | ||||
Michael Bolin
|
r34030 | action="diff", | ||
Sean Farley
|
r30848 | repopath=repo.path) | ||
Jordi Gutiérrez Hermoso
|
r28638 | fp.truncate(0) | ||
fp.write(reviewedpatch) | ||||
fp.seek(0) | ||||
Laurent Charignon
|
r24866 | [os.unlink(repo.wjoin(c)) for c in newlyaddedandmodifiedfiles] | ||
Laurent Charignon
|
r24272 | # 3a. apply filtered patch to clean repo (clean) | ||
if backups: | ||||
# Equivalent to hg.revert | ||||
Augie Fackler
|
r27344 | m = scmutil.matchfiles(repo, backups.keys()) | ||
Laurent Charignon
|
r24272 | mergemod.update(repo, repo.dirstate.p1(), | ||
Augie Fackler
|
r27344 | False, True, matcher=m) | ||
Laurent Charignon
|
r24272 | |||
# 3b. (apply) | ||||
if dopatch: | ||||
try: | ||||
ui.debug('applying patch\n') | ||||
ui.debug(fp.getvalue()) | ||||
patch.internalpatch(ui, repo, fp, 1, eolmode=None) | ||||
Yuya Nishihara
|
r34252 | except error.PatchError as err: | ||
Pulkit Goyal
|
r36736 | raise error.Abort(pycompat.bytestr(err)) | ||
Laurent Charignon
|
r24272 | del fp | ||
# 4. We prepared working directory according to filtered | ||||
# patch. Now is the time to delegate the job to | ||||
# commit/qrefresh or the like! | ||||
# Make all of the pathnames absolute. | ||||
newfiles = [repo.wjoin(nf) for nf in newfiles] | ||||
Pulkit Goyal
|
r35351 | return commitfunc(ui, repo, *newfiles, **pycompat.strkwargs(opts)) | ||
Laurent Charignon
|
r24272 | finally: | ||
# 5. finally restore backed-up files | ||||
try: | ||||
FUJIWARA Katsunori
|
r25759 | dirstate = repo.dirstate | ||
Laurent Charignon
|
r24272 | for realname, tmpname in backups.iteritems(): | ||
ui.debug('restoring %r to %r\n' % (tmpname, realname)) | ||||
FUJIWARA Katsunori
|
r25759 | |||
if dirstate[realname] == 'n': | ||||
# without normallookup, restoring timestamp | ||||
# may cause partially committed files | ||||
# to be treated as unmodified | ||||
dirstate.normallookup(realname) | ||||
Siddharth Agarwal
|
r27370 | # copystat=True here and above are a hack to trick any | ||
# editors that have f open that we haven't modified them. | ||||
Laurent Charignon
|
r24272 | # | ||
Siddharth Agarwal
|
r27370 | # Also note that this racy as an editor could notice the | ||
# file's mtime before we've finished writing it. | ||||
util.copyfile(tmpname, repo.wjoin(realname), copystat=True) | ||||
Laurent Charignon
|
r24272 | os.unlink(tmpname) | ||
if tobackup: | ||||
os.rmdir(backupdir) | ||||
except OSError: | ||||
pass | ||||
FUJIWARA Katsunori
|
r25758 | def recordinwlock(ui, repo, message, match, opts): | ||
Bryan O'Sullivan
|
r27801 | with repo.wlock(): | ||
FUJIWARA Katsunori
|
r25758 | return recordfunc(ui, repo, message, match, opts) | ||
return commit(ui, repo, recordinwlock, pats, opts) | ||||
Laurent Charignon
|
r24272 | |||
Pulkit Goyal
|
r34683 | class dirnode(object): | ||
Pulkit Goyal
|
r33548 | """ | ||
Denis Laxalde
|
r34699 | Represent a directory in user working copy with information required for | ||
the purpose of tersing its status. | ||||
Pulkit Goyal
|
r34683 | |||
Matt Harbison
|
r38221 | path is the path to the directory, without a trailing '/' | ||
Pulkit Goyal
|
r34683 | |||
statuses is a set of statuses of all files in this directory (this includes | ||||
all the files in all the subdirectories too) | ||||
files is a list of files which are direct child of this directory | ||||
subdirs is a dictionary of sub-directory name as the key and it's own | ||||
dirnode object as the value | ||||
""" | ||||
def __init__(self, dirpath): | ||||
self.path = dirpath | ||||
self.statuses = set([]) | ||||
self.files = [] | ||||
self.subdirs = {} | ||||
def _addfileindir(self, filename, status): | ||||
Denis Laxalde
|
r34699 | """Add a file in this directory as a direct child.""" | ||
Pulkit Goyal
|
r34683 | self.files.append((filename, status)) | ||
def addfile(self, filename, status): | ||||
Pulkit Goyal
|
r33548 | """ | ||
Denis Laxalde
|
r34699 | Add a file to this directory or to its direct parent directory. | ||
If the file is not direct child of this directory, we traverse to the | ||||
directory of which this file is a direct child of and add the file | ||||
there. | ||||
Pulkit Goyal
|
r33548 | """ | ||
Pulkit Goyal
|
r34683 | |||
# the filename contains a path separator, it means it's not the direct | ||||
# child of this directory | ||||
Matt Harbison
|
r34929 | if '/' in filename: | ||
subdir, filep = filename.split('/', 1) | ||||
Pulkit Goyal
|
r34683 | |||
# does the dirnode object for subdir exists | ||||
if subdir not in self.subdirs: | ||||
Matt Harbison
|
r38221 | subdirpath = pathutil.join(self.path, subdir) | ||
Pulkit Goyal
|
r34683 | self.subdirs[subdir] = dirnode(subdirpath) | ||
# try adding the file in subdir | ||||
self.subdirs[subdir].addfile(filep, status) | ||||
else: | ||||
self._addfileindir(filename, status) | ||||
if status not in self.statuses: | ||||
self.statuses.add(status) | ||||
Denis Laxalde
|
r34685 | def iterfilepaths(self): | ||
Denis Laxalde
|
r34699 | """Yield (status, path) for files directly under this directory.""" | ||
Denis Laxalde
|
r34684 | for f, st in self.files: | ||
Matt Harbison
|
r38221 | yield st, pathutil.join(self.path, f) | ||
Denis Laxalde
|
r34685 | |||
def tersewalk(self, terseargs): | ||||
Denis Laxalde
|
r34684 | """ | ||
Denis Laxalde
|
r34699 | Yield (status, path) obtained by processing the status of this | ||
dirnode. | ||||
Denis Laxalde
|
r34684 | |||
terseargs is the string of arguments passed by the user with `--terse` | ||||
flag. | ||||
Following are the cases which can happen: | ||||
1) All the files in the directory (including all the files in its | ||||
subdirectories) share the same status and the user has asked us to terse | ||||
Matt Harbison
|
r38221 | that status. -> yield (status, dirpath). dirpath will end in '/'. | ||
Denis Laxalde
|
r34684 | |||
Denis Laxalde
|
r34699 | 2) Otherwise, we do following: | ||
Denis Laxalde
|
r34684 | |||
Denis Laxalde
|
r34685 | a) Yield (status, filepath) for all the files which are in this | ||
directory (only the ones in this directory, not the subdirs) | ||||
Denis Laxalde
|
r34684 | |||
b) Recurse the function on all the subdirectories of this | ||||
directory | ||||
""" | ||||
if len(self.statuses) == 1: | ||||
onlyst = self.statuses.pop() | ||||
# Making sure we terse only when the status abbreviation is | ||||
# passed as terse argument | ||||
if onlyst in terseargs: | ||||
Matt Harbison
|
r38221 | yield onlyst, self.path + '/' | ||
Denis Laxalde
|
r34684 | return | ||
# add the files to status list | ||||
Denis Laxalde
|
r34685 | for st, fpath in self.iterfilepaths(): | ||
yield st, fpath | ||||
Denis Laxalde
|
r34684 | |||
#recurse on the subdirs | ||||
for dirobj in self.subdirs.values(): | ||||
Denis Laxalde
|
r34685 | for st, fpath in dirobj.tersewalk(terseargs): | ||
yield st, fpath | ||||
Pulkit Goyal
|
r34683 | |||
def tersedir(statuslist, terseargs): | ||||
""" | ||||
Denis Laxalde
|
r34699 | Terse the status if all the files in a directory shares the same status. | ||
Pulkit Goyal
|
r34683 | |||
statuslist is scmutil.status() object which contains a list of files for | ||||
each status. | ||||
terseargs is string which is passed by the user as the argument to `--terse` | ||||
flag. | ||||
The function makes a tree of objects of dirnode class, and at each node it | ||||
stores the information required to know whether we can terse a certain | ||||
directory or not. | ||||
""" | ||||
# the order matters here as that is used to produce final list | ||||
allst = ('m', 'a', 'r', 'd', 'u', 'i', 'c') | ||||
# checking the argument validity | ||||
Augie Fackler
|
r34894 | for s in pycompat.bytestr(terseargs): | ||
Pulkit Goyal
|
r34683 | if s not in allst: | ||
raise error.Abort(_("'%s' not recognized") % s) | ||||
# creating a dirnode object for the root of the repo | ||||
rootobj = dirnode('') | ||||
pstatus = ('modified', 'added', 'deleted', 'clean', 'unknown', | ||||
'ignored', 'removed') | ||||
tersedict = {} | ||||
for attrname in pstatus: | ||||
Augie Fackler
|
r34894 | statuschar = attrname[0:1] | ||
Pulkit Goyal
|
r34683 | for f in getattr(statuslist, attrname): | ||
Augie Fackler
|
r34894 | rootobj.addfile(f, statuschar) | ||
tersedict[statuschar] = [] | ||||
Pulkit Goyal
|
r34683 | |||
# we won't be tersing the root dir, so add files in it | ||||
Denis Laxalde
|
r34685 | for st, fpath in rootobj.iterfilepaths(): | ||
tersedict[st].append(fpath) | ||||
Pulkit Goyal
|
r34683 | |||
# process each sub-directory and build tersedict | ||||
for subdir in rootobj.subdirs.values(): | ||||
Denis Laxalde
|
r34685 | for st, f in subdir.tersewalk(terseargs): | ||
tersedict[st].append(f) | ||||
Pulkit Goyal
|
r34683 | |||
tersedlist = [] | ||||
for st in allst: | ||||
tersedict[st].sort() | ||||
tersedlist.append(tersedict[st]) | ||||
return tersedlist | ||||
Pulkit Goyal
|
r33548 | |||
Pulkit Goyal
|
r33766 | def _commentlines(raw): | ||
'''Surround lineswith a comment char and a new line''' | ||||
lines = raw.splitlines() | ||||
commentedlines = ['# %s' % line for line in lines] | ||||
return '\n'.join(commentedlines) + '\n' | ||||
def _conflictsmsg(repo): | ||||
mergestate = mergemod.mergestate.read(repo) | ||||
if not mergestate.active(): | ||||
return | ||||
m = scmutil.match(repo[None]) | ||||
Martin von Zweigbergk
|
r34003 | unresolvedlist = [f for f in mergestate.unresolved() if m(f)] | ||
Pulkit Goyal
|
r33766 | if unresolvedlist: | ||
mergeliststr = '\n'.join( | ||||
Matt Harbison
|
r39843 | [' %s' % util.pathto(repo.root, encoding.getcwd(), path) | ||
Matt Harbison
|
r34982 | for path in unresolvedlist]) | ||
Pulkit Goyal
|
r33766 | msg = _('''Unresolved merge conflicts: | ||
%s | ||||
To mark files as resolved: hg resolve --mark FILE''') % mergeliststr | ||||
else: | ||||
msg = _('No unresolved merge conflicts.') | ||||
return _commentlines(msg) | ||||
def _helpmessage(continuecmd, abortcmd): | ||||
Pulkit Goyal
|
r38360 | msg = _('To continue: %s\n' | ||
'To abort: %s') % (continuecmd, abortcmd) | ||||
Pulkit Goyal
|
r33766 | return _commentlines(msg) | ||
def _rebasemsg(): | ||||
return _helpmessage('hg rebase --continue', 'hg rebase --abort') | ||||
def _histeditmsg(): | ||||
return _helpmessage('hg histedit --continue', 'hg histedit --abort') | ||||
def _unshelvemsg(): | ||||
return _helpmessage('hg unshelve --continue', 'hg unshelve --abort') | ||||
def _graftmsg(): | ||||
# tweakdefaults requires `update` to have a rev hence the `.` | ||||
Pulkit Goyal
|
r39002 | return _helpmessage('hg graft --continue', 'hg graft --abort') | ||
Pulkit Goyal
|
r33766 | |||
def _mergemsg(): | ||||
# tweakdefaults requires `update` to have a rev hence the `.` | ||||
Yuya Nishihara
|
r39111 | return _helpmessage('hg commit', 'hg merge --abort') | ||
Pulkit Goyal
|
r33766 | |||
def _bisectmsg(): | ||||
msg = _('To mark the changeset good: hg bisect --good\n' | ||||
'To mark the changeset bad: hg bisect --bad\n' | ||||
'To abort: hg bisect --reset\n') | ||||
return _commentlines(msg) | ||||
def fileexistspredicate(filename): | ||||
return lambda repo: repo.vfs.exists(filename) | ||||
def _mergepredicate(repo): | ||||
return len(repo[None].parents()) > 1 | ||||
STATES = ( | ||||
# (state, predicate to detect states, helpful message function) | ||||
('histedit', fileexistspredicate('histedit-state'), _histeditmsg), | ||||
('bisect', fileexistspredicate('bisect.state'), _bisectmsg), | ||||
('graft', fileexistspredicate('graftstate'), _graftmsg), | ||||
Boris Feld
|
r38479 | ('unshelve', fileexistspredicate('shelvedstate'), _unshelvemsg), | ||
Pulkit Goyal
|
r33766 | ('rebase', fileexistspredicate('rebasestate'), _rebasemsg), | ||
# The merge state is part of a list that will be iterated over. | ||||
# They need to be last because some of the other unfinished states may also | ||||
# be in a merge or update state (eg. rebase, histedit, graft, etc). | ||||
# We want those to have priority. | ||||
('merge', _mergepredicate, _mergemsg), | ||||
) | ||||
def _getrepostate(repo): | ||||
# experimental config: commands.status.skipstates | ||||
skip = set(repo.ui.configlist('commands', 'status.skipstates')) | ||||
for state, statedetectionpredicate, msgfn in STATES: | ||||
if state in skip: | ||||
continue | ||||
if statedetectionpredicate(repo): | ||||
return (state, statedetectionpredicate, msgfn) | ||||
def morestatus(repo, fm): | ||||
statetuple = _getrepostate(repo) | ||||
label = 'status.morestatus' | ||||
if statetuple: | ||||
state, statedetectionpredicate, helpfulmsg = statetuple | ||||
statemsg = _('The repository is in an unfinished *%s* state.') % state | ||||
Yuya Nishihara
|
r39773 | fm.plain('%s\n' % _commentlines(statemsg), label=label) | ||
Pulkit Goyal
|
r33766 | conmsg = _conflictsmsg(repo) | ||
Pulkit Goyal
|
r33885 | if conmsg: | ||
Yuya Nishihara
|
r39773 | fm.plain('%s\n' % conmsg, label=label) | ||
Pulkit Goyal
|
r33766 | if helpfulmsg: | ||
helpmsg = helpfulmsg() | ||||
Yuya Nishihara
|
r39773 | fm.plain('%s\n' % helpmsg, label=label) | ||
Pulkit Goyal
|
r33766 | |||
Matt Mackall
|
r7213 | def findpossible(cmd, table, strict=False): | ||
Matt Mackall
|
r4549 | """ | ||
Return cmd -> (aliases, command table entry) | ||||
for each matching command. | ||||
Return debug commands (or their aliases) only if no normal command matches. | ||||
""" | ||||
choice = {} | ||||
debugchoice = {} | ||||
Matt Mackall
|
r15600 | |||
if cmd in table: | ||||
# short-circuit exact matches, "log" alias beats "^log|history" | ||||
keys = [cmd] | ||||
else: | ||||
keys = table.keys() | ||||
Augie Fackler
|
r24222 | allcmds = [] | ||
Matt Mackall
|
r15600 | for e in keys: | ||
Brendan Cully
|
r10401 | aliases = parsealiases(e) | ||
Augie Fackler
|
r24222 | allcmds.extend(aliases) | ||
Matt Mackall
|
r4549 | found = None | ||
if cmd in aliases: | ||||
found = cmd | ||||
Matt Mackall
|
r7213 | elif not strict: | ||
Matt Mackall
|
r4549 | for a in aliases: | ||
if a.startswith(cmd): | ||||
found = a | ||||
break | ||||
if found is not None: | ||||
if aliases[0].startswith("debug") or found.startswith("debug"): | ||||
Matt Mackall
|
r5178 | debugchoice[found] = (aliases, table[e]) | ||
Matt Mackall
|
r4549 | else: | ||
Matt Mackall
|
r5178 | choice[found] = (aliases, table[e]) | ||
Matt Mackall
|
r4549 | |||
if not choice and debugchoice: | ||||
choice = debugchoice | ||||
Augie Fackler
|
r24222 | return choice, allcmds | ||
Matt Mackall
|
r4549 | |||
Matt Mackall
|
r7213 | def findcmd(cmd, table, strict=True): | ||
Matt Mackall
|
r4549 | """Return (aliases, command table entry) for command string.""" | ||
Augie Fackler
|
r24222 | choice, allcmds = findpossible(cmd, table, strict) | ||
Matt Mackall
|
r4549 | |||
Christian Ebert
|
r5915 | if cmd in choice: | ||
Matt Mackall
|
r4549 | return choice[cmd] | ||
if len(choice) > 1: | ||||
Augie Fackler
|
r32528 | clist = sorted(choice) | ||
Matt Mackall
|
r7643 | raise error.AmbiguousCommand(cmd, clist) | ||
Matt Mackall
|
r4549 | |||
if choice: | ||||
Pulkit Goyal
|
r32862 | return list(choice.values())[0] | ||
Matt Mackall
|
r4549 | |||
Augie Fackler
|
r24222 | raise error.UnknownCommand(cmd, allcmds) | ||
Matt Mackall
|
r4549 | |||
Pulkit Goyal
|
r35763 | def changebranch(ui, repo, revs, label): | ||
""" Change the branch name of given revs to label """ | ||||
with repo.wlock(), repo.lock(), repo.transaction('branches'): | ||||
# abort in case of uncommitted merge or dirty wdir | ||||
bailifchanged(repo) | ||||
revs = scmutil.revrange(repo, revs) | ||||
if not revs: | ||||
raise error.Abort("empty revision set") | ||||
roots = repo.revs('roots(%ld)', revs) | ||||
if len(roots) > 1: | ||||
raise error.Abort(_("cannot change branch of non-linear revisions")) | ||||
rewriteutil.precheck(repo, revs, 'change branch of') | ||||
Pulkit Goyal
|
r35764 | |||
root = repo[roots.first()] | ||||
if not root.p1().branch() == label and label in repo.branchmap(): | ||||
raise error.Abort(_("a branch of the same name already exists")) | ||||
Pulkit Goyal
|
r35763 | if repo.revs('merge() and %ld', revs): | ||
raise error.Abort(_("cannot change branch of a merge commit")) | ||||
if repo.revs('obsolete() and %ld', revs): | ||||
raise error.Abort(_("cannot change branch of a obsolete changeset")) | ||||
# make sure only topological heads | ||||
if repo.revs('heads(%ld) - head()', revs): | ||||
raise error.Abort(_("cannot change branch in middle of a stack")) | ||||
replacements = {} | ||||
# avoid import cycle mercurial.cmdutil -> mercurial.context -> | ||||
# mercurial.subrepo -> mercurial.cmdutil | ||||
from . import context | ||||
for rev in revs: | ||||
ctx = repo[rev] | ||||
oldbranch = ctx.branch() | ||||
# check if ctx has same branch | ||||
if oldbranch == label: | ||||
continue | ||||
def filectxfn(repo, newctx, path): | ||||
try: | ||||
return ctx[path] | ||||
except error.ManifestLookupError: | ||||
return None | ||||
ui.debug("changing branch of '%s' from '%s' to '%s'\n" | ||||
% (hex(ctx.node()), oldbranch, label)) | ||||
extra = ctx.extra() | ||||
extra['branch_change'] = hex(ctx.node()) | ||||
# While changing branch of set of linear commits, make sure that | ||||
# we base our commits on new parent rather than old parent which | ||||
# was obsoleted while changing the branch | ||||
p1 = ctx.p1().node() | ||||
p2 = ctx.p2().node() | ||||
if p1 in replacements: | ||||
p1 = replacements[p1][0] | ||||
if p2 in replacements: | ||||
p2 = replacements[p2][0] | ||||
mc = context.memctx(repo, (p1, p2), | ||||
ctx.description(), | ||||
ctx.files(), | ||||
filectxfn, | ||||
user=ctx.user(), | ||||
date=ctx.date(), | ||||
extra=extra, | ||||
branch=label) | ||||
Martin von Zweigbergk
|
r38442 | newnode = repo.commitctx(mc) | ||
Pulkit Goyal
|
r35763 | replacements[ctx.node()] = (newnode,) | ||
ui.debug('new node id is %s\n' % hex(newnode)) | ||||
# create obsmarkers and move bookmarks | ||||
Martin von Zweigbergk
|
r38442 | scmutil.cleanupnodes(repo, replacements, 'branch-change', fixphase=True) | ||
Pulkit Goyal
|
r35763 | |||
# move the working copy too | ||||
wctx = repo[None] | ||||
# in-progress merge is a bit too complex for now. | ||||
if len(wctx.parents()) == 1: | ||||
newid = replacements.get(wctx.p1().node()) | ||||
if newid is not None: | ||||
# avoid import cycle mercurial.cmdutil -> mercurial.hg -> | ||||
# mercurial.cmdutil | ||||
from . import hg | ||||
hg.update(repo, newid[0], quietempty=True) | ||||
ui.status(_("changed branch on %d changesets\n") % len(replacements)) | ||||
Brendan Cully
|
r10402 | def findrepo(p): | ||
while not os.path.isdir(os.path.join(p, ".hg")): | ||||
oldp, p = p, os.path.dirname(p) | ||||
if p == oldp: | ||||
return None | ||||
return p | ||||
Valters Vingolds
|
r30755 | def bailifchanged(repo, merge=True, hint=None): | ||
""" enforce the precondition that working directory must be clean. | ||||
'merge' can be set to false if a pending uncommitted merge should be | ||||
ignored (such as when 'update --check' runs). | ||||
'hint' is the usual hint given to Abort exception. | ||||
""" | ||||
FUJIWARA Katsunori
|
r24472 | if merge and repo.dirstate.p2() != nullid: | ||
Valters Vingolds
|
r30755 | raise error.Abort(_('outstanding uncommitted merge'), hint=hint) | ||
Matt Mackall
|
r4549 | modified, added, removed, deleted = repo.status()[:4] | ||
if modified or added or removed or deleted: | ||||
Valters Vingolds
|
r30755 | raise error.Abort(_('uncommitted changes'), hint=hint) | ||
Eric Roshan Eisner
|
r15231 | ctx = repo[None] | ||
Mads Kiilerich
|
r18364 | for s in sorted(ctx.substate): | ||
Valters Vingolds
|
r30755 | ctx.sub(s).bailifchanged(hint=hint) | ||
Matt Mackall
|
r4549 | |||
Idan Kamara
|
r14635 | def logmessage(ui, opts): | ||
Matt Mackall
|
r4549 | """ get the log message according to -m and -l option """ | ||
Alexander Solovyov
|
r7667 | message = opts.get('message') | ||
logfile = opts.get('logfile') | ||||
Matt Mackall
|
r4549 | |||
if message and logfile: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('options --message and --logfile are mutually ' | ||
Matt Mackall
|
r4549 | 'exclusive')) | ||
if not message and logfile: | ||||
try: | ||||
Yuya Nishihara
|
r32618 | if isstdiofilename(logfile): | ||
Idan Kamara
|
r14635 | message = ui.fin.read() | ||
Matt Mackall
|
r4549 | else: | ||
Patrick Mezard
|
r14249 | message = '\n'.join(util.readfile(logfile).splitlines()) | ||
Gregory Szorc
|
r25660 | except IOError as inst: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_("can't read commit message '%s': %s") % | ||
Augie Fackler
|
r34024 | (logfile, encoding.strtolocal(inst.strerror))) | ||
Matt Mackall
|
r4549 | return message | ||
Mads Kiilerich
|
r24180 | def mergeeditform(ctxorbool, baseformname): | ||
"""return appropriate editform name (referencing a committemplate) | ||||
'ctxorbool' is either a ctx to be committed, or a bool indicating whether | ||||
FUJIWARA Katsunori
|
r22248 | merging is committed. | ||
Mads Kiilerich
|
r24180 | This returns baseformname with '.merge' appended if it is a merge, | ||
otherwise '.normal' is appended. | ||||
FUJIWARA Katsunori
|
r22248 | """ | ||
if isinstance(ctxorbool, bool): | ||||
if ctxorbool: | ||||
Mads Kiilerich
|
r24180 | return baseformname + ".merge" | ||
Martin von Zweigbergk
|
r40065 | elif len(ctxorbool.parents()) > 1: | ||
Mads Kiilerich
|
r24180 | return baseformname + ".merge" | ||
return baseformname + ".normal" | ||||
FUJIWARA Katsunori
|
r22248 | |||
FUJIWARA Katsunori
|
r21999 | def getcommiteditor(edit=False, finishdesc=None, extramsg=None, | ||
editform='', **opts): | ||||
FUJIWARA Katsunori
|
r21419 | """get appropriate commit message editor according to '--edit' option | ||
'finishdesc' is a function to be called with edited commit message | ||||
(= 'description' of the new changeset) just after editing, but | ||||
before checking empty-ness. It should return actual text to be | ||||
stored into history. This allows to change description before | ||||
storing. | ||||
'extramsg' is a extra message to be shown in the editor instead of | ||||
'Leave message empty to abort commit' line. 'HG: ' prefix and EOL | ||||
is automatically added. | ||||
FUJIWARA Katsunori
|
r21999 | 'editform' is a dot-separated list of names, to distinguish | ||
the purpose of commit text editing. | ||||
FUJIWARA Katsunori
|
r21419 | 'getcommiteditor' returns 'commitforceeditor' regardless of | ||
'edit', if one of 'finishdesc' or 'extramsg' is specified, because | ||||
they are specific for usage in MQ. | ||||
""" | ||||
if edit or finishdesc or extramsg: | ||||
return lambda r, c, s: commitforceeditor(r, c, s, | ||||
finishdesc=finishdesc, | ||||
FUJIWARA Katsunori
|
r21999 | extramsg=extramsg, | ||
editform=editform) | ||||
elif editform: | ||||
return lambda r, c, s: commiteditor(r, c, s, editform=editform) | ||||
FUJIWARA Katsunori
|
r21405 | else: | ||
return commiteditor | ||||
Yuya Nishihara
|
r37792 | def _escapecommandtemplate(tmpl): | ||
parts = [] | ||||
for typ, start, end in templater.scantemplate(tmpl, raw=True): | ||||
if typ == b'string': | ||||
parts.append(stringutil.escapestr(tmpl[start:end])) | ||||
else: | ||||
parts.append(tmpl[start:end]) | ||||
return b''.join(parts) | ||||
def rendercommandtemplate(ui, tmpl, props): | ||||
r"""Expand a literal template 'tmpl' in a way suitable for command line | ||||
'\' in outermost string is not taken as an escape character because it | ||||
is a directory separator on Windows. | ||||
>>> from . import ui as uimod | ||||
>>> ui = uimod.ui() | ||||
>>> rendercommandtemplate(ui, b'c:\\{path}', {b'path': b'foo'}) | ||||
'c:\\foo' | ||||
>>> rendercommandtemplate(ui, b'{"c:\\{path}"}', {'path': b'foo'}) | ||||
'c:{path}' | ||||
""" | ||||
if not tmpl: | ||||
return tmpl | ||||
t = formatter.maketemplater(ui, _escapecommandtemplate(tmpl)) | ||||
return t.renderdefault(props) | ||||
Yuya Nishihara
|
r36528 | def rendertemplate(ctx, tmpl, props=None): | ||
"""Expand a literal template 'tmpl' byte-string against one changeset | ||||
Each props item must be a stringify-able value or a callable returning | ||||
such value, i.e. no bare list nor dict should be passed. | ||||
""" | ||||
repo = ctx.repo() | ||||
tres = formatter.templateresources(repo.ui, repo) | ||||
t = formatter.maketemplater(repo.ui, tmpl, defaults=templatekw.keywords, | ||||
resources=tres) | ||||
Yuya Nishihara
|
r37121 | mapping = {'ctx': ctx} | ||
Yuya Nishihara
|
r36528 | if props: | ||
mapping.update(props) | ||||
Yuya Nishihara
|
r37003 | return t.renderdefault(mapping) | ||
Yuya Nishihara
|
r36528 | |||
def _buildfntemplate(pat, total=None, seqno=None, revwidth=None, pathname=None): | ||||
r"""Convert old-style filename format string to template string | ||||
>>> _buildfntemplate(b'foo-%b-%n.patch', seqno=0) | ||||
'foo-{reporoot|basename}-{seqno}.patch' | ||||
>>> _buildfntemplate(b'%R{tags % "{tag}"}%H') | ||||
'{rev}{tags % "{tag}"}{node}' | ||||
'\' in outermost strings has to be escaped because it is a directory | ||||
separator on Windows: | ||||
>>> _buildfntemplate(b'c:\\tmp\\%R\\%n.patch', seqno=0) | ||||
'c:\\\\tmp\\\\{rev}\\\\{seqno}.patch' | ||||
>>> _buildfntemplate(b'\\\\foo\\bar.patch') | ||||
'\\\\\\\\foo\\\\bar.patch' | ||||
>>> _buildfntemplate(b'\\{tags % "{tag}"}') | ||||
'\\\\{tags % "{tag}"}' | ||||
but inner strings follow the template rules (i.e. '\' is taken as an | ||||
escape character): | ||||
>>> _buildfntemplate(br'{"c:\tmp"}', seqno=0) | ||||
'{"c:\\tmp"}' | ||||
""" | ||||
Vadim Gelfer
|
r2874 | expander = { | ||
Yuya Nishihara
|
r36528 | b'H': b'{node}', | ||
b'R': b'{rev}', | ||||
b'h': b'{node|short}', | ||||
b'm': br'{sub(r"[^\w]", "_", desc|firstline)}', | ||||
b'r': b'{if(revwidth, pad(rev, revwidth, "0", left=True), rev)}', | ||||
b'%': b'%', | ||||
b'b': b'{reporoot|basename}', | ||||
} | ||||
Yuya Nishihara
|
r36257 | if total is not None: | ||
Yuya Nishihara
|
r36528 | expander[b'N'] = b'{total}' | ||
Yuya Nishihara
|
r36257 | if seqno is not None: | ||
Yuya Nishihara
|
r36528 | expander[b'n'] = b'{seqno}' | ||
Yuya Nishihara
|
r36257 | if total is not None and seqno is not None: | ||
Yuya Nishihara
|
r36528 | expander[b'n'] = b'{pad(seqno, total|stringify|count, "0", left=True)}' | ||
Yuya Nishihara
|
r36257 | if pathname is not None: | ||
Yuya Nishihara
|
r36528 | expander[b's'] = b'{pathname|basename}' | ||
expander[b'd'] = b'{if(pathname|dirname, pathname|dirname, ".")}' | ||||
expander[b'p'] = b'{pathname}' | ||||
Yuya Nishihara
|
r36257 | |||
newname = [] | ||||
Yuya Nishihara
|
r36528 | for typ, start, end in templater.scantemplate(pat, raw=True): | ||
if typ != b'string': | ||||
newname.append(pat[start:end]) | ||||
continue | ||||
i = start | ||||
while i < end: | ||||
n = pat.find(b'%', i, end) | ||||
if n < 0: | ||||
Yuya Nishihara
|
r37102 | newname.append(stringutil.escapestr(pat[i:end])) | ||
Yuya Nishihara
|
r36528 | break | ||
Yuya Nishihara
|
r37102 | newname.append(stringutil.escapestr(pat[i:n])) | ||
Yuya Nishihara
|
r36528 | if n + 2 > end: | ||
raise error.Abort(_("incomplete format spec in output " | ||||
"filename")) | ||||
c = pat[n + 1:n + 2] | ||||
i = n + 2 | ||||
Yuya Nishihara
|
r36257 | try: | ||
Yuya Nishihara
|
r36528 | newname.append(expander[c]) | ||
Yuya Nishihara
|
r36257 | except KeyError: | ||
raise error.Abort(_("invalid format spec '%%%s' in output " | ||||
"filename") % c) | ||||
return ''.join(newname) | ||||
Vadim Gelfer
|
r2874 | |||
Yuya Nishihara
|
r36528 | def makefilename(ctx, pat, **props): | ||
if not pat: | ||||
return pat | ||||
tmpl = _buildfntemplate(pat, **props) | ||||
# BUG: alias expansion shouldn't be made against template fragments | ||||
# rewritten from %-format strings, but we have no easy way to partially | ||||
# disable the expansion. | ||||
return rendertemplate(ctx, tmpl, pycompat.byteskwargs(props)) | ||||
Vadim Gelfer
|
r2874 | |||
Yuya Nishihara
|
r32539 | def isstdiofilename(pat): | ||
"""True if the given pat looks like a filename denoting stdin/stdout""" | ||||
return not pat or pat == '-' | ||||
Yuya Nishihara
|
r27418 | class _unclosablefile(object): | ||
def __init__(self, fp): | ||||
self._fp = fp | ||||
def close(self): | ||||
pass | ||||
def __iter__(self): | ||||
return iter(self._fp) | ||||
def __getattr__(self, attr): | ||||
return getattr(self._fp, attr) | ||||
Mads Kiilerich
|
r30142 | def __enter__(self): | ||
return self | ||||
def __exit__(self, exc_type, exc_value, exc_tb): | ||||
pass | ||||
Yuya Nishihara
|
r37619 | def makefileobj(ctx, pat, mode='wb', **props): | ||
Adrian Buehlmann
|
r13769 | writable = mode not in ('r', 'rb') | ||
Ronny Pfannschmidt
|
r7319 | |||
Yuya Nishihara
|
r32539 | if isstdiofilename(pat): | ||
Yuya Nishihara
|
r36223 | repo = ctx.repo() | ||
Jordi Gutiérrez Hermoso
|
r24306 | if writable: | ||
fp = repo.ui.fout | ||||
else: | ||||
fp = repo.ui.fin | ||||
Yuya Nishihara
|
r27419 | return _unclosablefile(fp) | ||
Yuya Nishihara
|
r36526 | fn = makefilename(ctx, pat, **props) | ||
Augie Fackler
|
r18613 | return open(fn, mode) | ||
Vadim Gelfer
|
r2882 | |||
Gregory Szorc
|
r39314 | def openstorage(repo, cmd, file_, opts, returnrevlog=False): | ||
Sune Foldager
|
r14323 | """opens the changelog, manifest, a filelog or a given revlog""" | ||
cl = opts['changelog'] | ||||
mf = opts['manifest'] | ||||
Martin von Zweigbergk
|
r25119 | dir = opts['dir'] | ||
Sune Foldager
|
r14323 | msg = None | ||
if cl and mf: | ||||
msg = _('cannot specify --changelog and --manifest at the same time') | ||||
Martin von Zweigbergk
|
r25119 | elif cl and dir: | ||
msg = _('cannot specify --changelog and --dir at the same time') | ||||
Martin von Zweigbergk
|
r29427 | elif cl or mf or dir: | ||
Sune Foldager
|
r14323 | if file_: | ||
msg = _('cannot specify filename with --changelog or --manifest') | ||||
elif not repo: | ||||
Martin von Zweigbergk
|
r25119 | msg = _('cannot specify --changelog or --manifest or --dir ' | ||
Sune Foldager
|
r14323 | 'without a repository') | ||
if msg: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(msg) | ||
Sune Foldager
|
r14323 | |||
r = None | ||||
if repo: | ||||
if cl: | ||||
Matt Mackall
|
r21033 | r = repo.unfiltered().changelog | ||
Martin von Zweigbergk
|
r25119 | elif dir: | ||
if 'treemanifest' not in repo.requirements: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_("--dir can only be used on repos with " | ||
Martin von Zweigbergk
|
r25119 | "treemanifest enabled")) | ||
Martin von Zweigbergk
|
r37287 | if not dir.endswith('/'): | ||
dir = dir + '/' | ||||
Gregory Szorc
|
r39280 | dirlog = repo.manifestlog.getstorage(dir) | ||
Martin von Zweigbergk
|
r25119 | if len(dirlog): | ||
r = dirlog | ||||
Sune Foldager
|
r14323 | elif mf: | ||
Gregory Szorc
|
r39280 | r = repo.manifestlog.getstorage(b'') | ||
Sune Foldager
|
r14323 | elif file_: | ||
filelog = repo.file(file_) | ||||
if len(filelog): | ||||
r = filelog | ||||
Gregory Szorc
|
r39314 | |||
# Not all storage may be revlogs. If requested, try to return an actual | ||||
# revlog instance. | ||||
if returnrevlog: | ||||
if isinstance(r, revlog.revlog): | ||||
pass | ||||
elif util.safehasattr(r, '_revlog'): | ||||
r = r._revlog | ||||
elif r is not None: | ||||
raise error.Abort(_('%r does not appear to be a revlog') % r) | ||||
Sune Foldager
|
r14323 | if not r: | ||
Gregory Szorc
|
r39314 | if not returnrevlog: | ||
raise error.Abort(_('cannot give path to non-revlog')) | ||||
Sune Foldager
|
r14323 | if not file_: | ||
raise error.CommandError(cmd, _('invalid arguments')) | ||||
if not os.path.isfile(file_): | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_("revlog '%s' not found") % file_) | ||
Matt Harbison
|
r39843 | r = revlog.revlog(vfsmod.vfs(encoding.getcwd(), audit=False), | ||
Sune Foldager
|
r14323 | file_[:-2] + ".i") | ||
return r | ||||
Gregory Szorc
|
r39314 | def openrevlog(repo, cmd, file_, opts): | ||
"""Obtain a revlog backing storage of an item. | ||||
This is similar to ``openstorage()`` except it always returns a revlog. | ||||
In most cases, a caller cares about the main storage object - not the | ||||
revlog backing it. Therefore, this function should only be used by code | ||||
that needs to examine low-level revlog implementation details. e.g. debug | ||||
commands. | ||||
""" | ||||
return openstorage(repo, cmd, file_, opts, returnrevlog=True) | ||||
Matt Mackall
|
r5610 | def copy(ui, repo, pats, opts, rename=False): | ||
Matt Mackall
|
r5589 | # called with the repo lock held | ||
# | ||||
# hgsep => pathname that uses "/" to separate directories | ||||
# ossep => pathname that uses os.sep to separate directories | ||||
cwd = repo.getcwd() | ||||
targets = {} | ||||
Matt Mackall
|
r5607 | after = opts.get("after") | ||
dryrun = opts.get("dry_run") | ||||
Dirkjan Ochtman
|
r11303 | wctx = repo[None] | ||
Matt Mackall
|
r5589 | |||
Matt Mackall
|
r5605 | def walkpat(pat): | ||
srcs = [] | ||||
Jordi Gutiérrez Hermoso
|
r24306 | if after: | ||
badstates = '?' | ||||
else: | ||||
badstates = '?r' | ||||
Martin von Zweigbergk
|
r32382 | m = scmutil.match(wctx, [pat], opts, globbed=True) | ||
for abs in wctx.walk(m): | ||||
Matt Mackall
|
r5605 | state = repo.dirstate[abs] | ||
Matt Mackall
|
r6584 | rel = m.rel(abs) | ||
exact = m.exact(abs) | ||||
Peter Arrenbrecht
|
r11223 | if state in badstates: | ||
Matt Mackall
|
r5605 | if exact and state == '?': | ||
ui.warn(_('%s: not copying - file is not managed\n') % rel) | ||||
if exact and state == 'r': | ||||
ui.warn(_('%s: not copying - file has been marked for' | ||||
' remove\n') % rel) | ||||
continue | ||||
# abs: hgsep | ||||
# rel: ossep | ||||
srcs.append((abs, rel, exact)) | ||||
return srcs | ||||
Matt Mackall
|
r5589 | |||
# abssrc: hgsep | ||||
# relsrc: ossep | ||||
# otarget: ossep | ||||
Matt Mackall
|
r5605 | def copyfile(abssrc, relsrc, otarget, exact): | ||
Augie Fackler
|
r20033 | abstarget = pathutil.canonpath(repo.root, cwd, otarget) | ||
Patrick Mezard
|
r16542 | if '/' in abstarget: | ||
# We cannot normalize abstarget itself, this would prevent | ||||
# case only renames, like a => A. | ||||
abspath, absname = abstarget.rsplit('/', 1) | ||||
abstarget = repo.dirstate.normalize(abspath) + '/' + absname | ||||
Matt Mackall
|
r5589 | reltarget = repo.pathto(abstarget, cwd) | ||
Matt Mackall
|
r5607 | target = repo.wjoin(abstarget) | ||
Matt Mackall
|
r5589 | src = repo.wjoin(abssrc) | ||
Matt Mackall
|
r5608 | state = repo.dirstate[abstarget] | ||
Matt Mackall
|
r5607 | |||
Adrian Buehlmann
|
r13962 | scmutil.checkportable(ui, abstarget) | ||
Adrian Buehlmann
|
r13945 | |||
Matt Mackall
|
r5607 | # check for collisions | ||
prevsrc = targets.get(abstarget) | ||||
Matt Mackall
|
r5589 | if prevsrc is not None: | ||
ui.warn(_('%s: not overwriting - %s collides with %s\n') % | ||||
(reltarget, repo.pathto(abssrc, cwd), | ||||
repo.pathto(prevsrc, cwd))) | ||||
Martin von Zweigbergk
|
r39386 | return True # report a failure | ||
Matt Mackall
|
r5607 | |||
# check for overwrites | ||||
Patrick Mezard
|
r12342 | exists = os.path.lexists(target) | ||
Matt Mackall
|
r16283 | samefile = False | ||
if exists and abssrc != abstarget: | ||||
if (repo.dirstate.normalize(abssrc) == | ||||
repo.dirstate.normalize(abstarget)): | ||||
if not rename: | ||||
ui.warn(_("%s: can't copy - same file\n") % reltarget) | ||||
Martin von Zweigbergk
|
r39386 | return True # report a failure | ||
Matt Mackall
|
r16283 | exists = False | ||
samefile = True | ||||
Martin Geisler
|
r8117 | if not after and exists or after and state in 'mn': | ||
Matt Mackall
|
r5589 | if not opts['force']: | ||
Augie Fackler
|
r30151 | if state in 'mn': | ||
msg = _('%s: not overwriting - file already committed\n') | ||||
if after: | ||||
flags = '--after --force' | ||||
else: | ||||
flags = '--force' | ||||
if rename: | ||||
Martin von Zweigbergk
|
r39384 | hint = _("('hg rename %s' to replace the file by " | ||
Augie Fackler
|
r30151 | 'recording a rename)\n') % flags | ||
else: | ||||
Martin von Zweigbergk
|
r39384 | hint = _("('hg copy %s' to replace the file by " | ||
Augie Fackler
|
r30151 | 'recording a copy)\n') % flags | ||
else: | ||||
msg = _('%s: not overwriting - file exists\n') | ||||
if rename: | ||||
Martin von Zweigbergk
|
r39384 | hint = _("('hg rename --after' to record the rename)\n") | ||
Augie Fackler
|
r30151 | else: | ||
Martin von Zweigbergk
|
r39384 | hint = _("('hg copy --after' to record the copy)\n") | ||
Augie Fackler
|
r30151 | ui.warn(msg % reltarget) | ||
ui.warn(hint) | ||||
Martin von Zweigbergk
|
r39386 | return True # report a failure | ||
Matt Mackall
|
r5607 | |||
if after: | ||||
Matt Mackall
|
r5608 | if not exists: | ||
Steve Losh
|
r11152 | if rename: | ||
ui.warn(_('%s: not recording move - %s does not exist\n') % | ||||
(relsrc, reltarget)) | ||||
else: | ||||
ui.warn(_('%s: not recording copy - %s does not exist\n') % | ||||
(relsrc, reltarget)) | ||||
Martin von Zweigbergk
|
r39386 | return True # report a failure | ||
Matt Mackall
|
r5608 | elif not dryrun: | ||
Matt Mackall
|
r5589 | try: | ||
Matt Mackall
|
r5608 | if exists: | ||
os.unlink(target) | ||||
targetdir = os.path.dirname(target) or '.' | ||||
if not os.path.isdir(targetdir): | ||||
os.makedirs(targetdir) | ||||
Matt Mackall
|
r16283 | if samefile: | ||
tmp = target + "~hgrename" | ||||
os.rename(src, tmp) | ||||
os.rename(tmp, target) | ||||
else: | ||||
Kyle Lippincott
|
r37106 | # Preserve stat info on renames, not on copies; this matches | ||
# Linux CLI behavior. | ||||
util.copyfile(src, target, copystat=rename) | ||||
Adrian Buehlmann
|
r14518 | srcexists = True | ||
Gregory Szorc
|
r25660 | except IOError as inst: | ||
Matt Mackall
|
r5589 | if inst.errno == errno.ENOENT: | ||
Yuya Nishihara
|
r24364 | ui.warn(_('%s: deleted in working directory\n') % relsrc) | ||
Adrian Buehlmann
|
r14518 | srcexists = False | ||
Matt Mackall
|
r5589 | else: | ||
ui.warn(_('%s: cannot copy - %s\n') % | ||||
Augie Fackler
|
r34024 | (relsrc, encoding.strtolocal(inst.strerror))) | ||
Martin von Zweigbergk
|
r39385 | if rename: | ||
hint = _("('hg rename --after' to record the rename)\n") | ||||
else: | ||||
hint = _("('hg copy --after' to record the copy)\n") | ||||
Matt Mackall
|
r5606 | return True # report a failure | ||
Matt Mackall
|
r5607 | |||
Matt Mackall
|
r5589 | if ui.verbose or not exact: | ||
Martin Geisler
|
r7894 | if rename: | ||
ui.status(_('moving %s to %s\n') % (relsrc, reltarget)) | ||||
else: | ||||
ui.status(_('copying %s to %s\n') % (relsrc, reltarget)) | ||||
Matt Mackall
|
r5608 | |||
Matt Mackall
|
r5589 | targets[abstarget] = abssrc | ||
Matt Mackall
|
r5607 | |||
# fix up dirstate | ||||
Matt Mackall
|
r14321 | scmutil.dirstatecopy(ui, repo, wctx, abssrc, abstarget, | ||
dryrun=dryrun, cwd=cwd) | ||||
Matt Mackall
|
r5610 | if rename and not dryrun: | ||
Matt Mackall
|
r16283 | if not after and srcexists and not samefile: | ||
Kyle Lippincott
|
r38512 | rmdir = repo.ui.configbool('experimental', 'removeemptydirs') | ||
repo.wvfs.unlinkpath(abssrc, rmdir=rmdir) | ||||
Adrian Buehlmann
|
r14518 | wctx.forget([abssrc]) | ||
Matt Mackall
|
r5589 | |||
# pat: ossep | ||||
# dest ossep | ||||
# srcs: list of (hgsep, hgsep, ossep, bool) | ||||
# return: function that takes hgsep and returns ossep | ||||
def targetpathfn(pat, dest, srcs): | ||||
if os.path.isdir(pat): | ||||
Augie Fackler
|
r20033 | abspfx = pathutil.canonpath(repo.root, cwd, pat) | ||
Matt Mackall
|
r5589 | abspfx = util.localpath(abspfx) | ||
if destdirexists: | ||||
striplen = len(os.path.split(abspfx)[0]) | ||||
else: | ||||
striplen = len(abspfx) | ||||
if striplen: | ||||
Pulkit Goyal
|
r30615 | striplen += len(pycompat.ossep) | ||
Matt Mackall
|
r5589 | res = lambda p: os.path.join(dest, util.localpath(p)[striplen:]) | ||
elif destdirexists: | ||||
res = lambda p: os.path.join(dest, | ||||
os.path.basename(util.localpath(p))) | ||||
else: | ||||
res = lambda p: dest | ||||
return res | ||||
# pat: ossep | ||||
# dest ossep | ||||
# srcs: list of (hgsep, hgsep, ossep, bool) | ||||
# return: function that takes hgsep and returns ossep | ||||
def targetpathafterfn(pat, dest, srcs): | ||||
Martin Geisler
|
r12085 | if matchmod.patkind(pat): | ||
Matt Mackall
|
r5589 | # a mercurial pattern | ||
res = lambda p: os.path.join(dest, | ||||
os.path.basename(util.localpath(p))) | ||||
else: | ||||
Augie Fackler
|
r20033 | abspfx = pathutil.canonpath(repo.root, cwd, pat) | ||
Matt Mackall
|
r5589 | if len(abspfx) < len(srcs[0][0]): | ||
# A directory. Either the target path contains the last | ||||
# component of the source path or it does not. | ||||
def evalpath(striplen): | ||||
score = 0 | ||||
for s in srcs: | ||||
t = os.path.join(dest, util.localpath(s[0])[striplen:]) | ||||
Patrick Mezard
|
r12357 | if os.path.lexists(t): | ||
Matt Mackall
|
r5589 | score += 1 | ||
return score | ||||
abspfx = util.localpath(abspfx) | ||||
striplen = len(abspfx) | ||||
if striplen: | ||||
Pulkit Goyal
|
r30615 | striplen += len(pycompat.ossep) | ||
Matt Mackall
|
r5589 | if os.path.isdir(os.path.join(dest, os.path.split(abspfx)[1])): | ||
score = evalpath(striplen) | ||||
striplen1 = len(os.path.split(abspfx)[0]) | ||||
if striplen1: | ||||
Pulkit Goyal
|
r30615 | striplen1 += len(pycompat.ossep) | ||
Matt Mackall
|
r5589 | if evalpath(striplen1) > score: | ||
striplen = striplen1 | ||||
res = lambda p: os.path.join(dest, | ||||
util.localpath(p)[striplen:]) | ||||
else: | ||||
# a file | ||||
if destdirexists: | ||||
res = lambda p: os.path.join(dest, | ||||
os.path.basename(util.localpath(p))) | ||||
else: | ||||
res = lambda p: dest | ||||
return res | ||||
Matt Mackall
|
r14321 | pats = scmutil.expandpats(pats) | ||
Matt Mackall
|
r5589 | if not pats: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('no source or destination specified')) | ||
Matt Mackall
|
r5589 | if len(pats) == 1: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('no destination specified')) | ||
Matt Mackall
|
r5589 | dest = pats.pop() | ||
Alexis S. L. Carvalho
|
r6258 | destdirexists = os.path.isdir(dest) and not os.path.islink(dest) | ||
Matt Mackall
|
r5589 | if not destdirexists: | ||
Martin Geisler
|
r12085 | if len(pats) > 1 or matchmod.patkind(pats[0]): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('with multiple sources, destination must be an ' | ||
Matt Mackall
|
r5589 | 'existing directory')) | ||
Shun-ichi GOTO
|
r5843 | if util.endswithsep(dest): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('destination %s is not a directory') % dest) | ||
Matt Mackall
|
r5607 | |||
tfn = targetpathfn | ||||
if after: | ||||
Matt Mackall
|
r5589 | tfn = targetpathafterfn | ||
copylist = [] | ||||
for pat in pats: | ||||
Matt Mackall
|
r5605 | srcs = walkpat(pat) | ||
Matt Mackall
|
r5589 | if not srcs: | ||
continue | ||||
copylist.append((tfn(pat, dest, srcs), srcs)) | ||||
if not copylist: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('no files to copy')) | ||
Matt Mackall
|
r5589 | |||
Matt Mackall
|
r5606 | errors = 0 | ||
Matt Mackall
|
r5589 | for targetpath, srcs in copylist: | ||
Matt Mackall
|
r5605 | for abssrc, relsrc, exact in srcs: | ||
Matt Mackall
|
r5606 | if copyfile(abssrc, relsrc, targetpath(abssrc), exact): | ||
errors += 1 | ||||
Matt Mackall
|
r5589 | |||
Matt Mackall
|
r11177 | return errors != 0 | ||
Matt Mackall
|
r5589 | |||
Pierre-Yves David
|
r26561 | ## facility to let extension process additional data into an import patch | ||
# list of identifier to be executed in order | ||||
extrapreimport = [] # run before commit | ||||
Pierre-Yves David
|
r26562 | extrapostimport = [] # run after commit | ||
Pierre-Yves David
|
r26561 | # mapping from identifier to actual import function | ||
# | ||||
# 'preimport' are run before the commit is made and are provided the following | ||||
# arguments: | ||||
# - repo: the localrepository instance, | ||||
# - patchdata: data extracted from patch header (cf m.patch.patchheadermap), | ||||
Mads Kiilerich
|
r26781 | # - extra: the future extra dictionary of the changeset, please mutate it, | ||
Pierre-Yves David
|
r26561 | # - opts: the import options. | ||
# XXX ideally, we would just pass an ctx ready to be computed, that would allow | ||||
# mutation of in memory commit and more. Feel free to rework the code to get | ||||
# there. | ||||
extrapreimportmap = {} | ||||
Pierre-Yves David
|
r26562 | # 'postimport' are run after the commit is made and are provided the following | ||
# argument: | ||||
# - ctx: the changectx created by import. | ||||
extrapostimportmap = {} | ||||
Pierre-Yves David
|
r26561 | |||
Gregory Szorc
|
r37638 | def tryimportone(ui, repo, patchdata, parents, opts, msgs, updatefunc): | ||
Pierre-Yves David
|
r20500 | """Utility function used by commands.import to import a single patch | ||
This function is explicitly defined here to help the evolve extension to | ||||
wrap this part of the import logic. | ||||
The API is currently a bit ugly because it a simple code translation from | ||||
the import command. Feel free to make it better. | ||||
Gregory Szorc
|
r37638 | :patchdata: a dictionary containing parsed patch data (such as from | ||
``patch.extract()``) | ||||
Pierre-Yves David
|
r20500 | :parents: nodes that will be parent of the created commit | ||
:opts: the full dict of option passed to the import command | ||||
:msgs: list to save commit message to. | ||||
(used in case we need to save it when failing) | ||||
:updatefunc: a function that update a repo to a given node | ||||
updatefunc(<repo>, <node>) | ||||
""" | ||||
Gregory Szorc
|
r25930 | # avoid cycle context -> subrepo -> cmdutil | ||
Gregory Szorc
|
r28322 | from . import context | ||
Gregory Szorc
|
r37638 | |||
tmpname = patchdata.get('filename') | ||||
message = patchdata.get('message') | ||||
user = opts.get('user') or patchdata.get('user') | ||||
date = opts.get('date') or patchdata.get('date') | ||||
branch = patchdata.get('branch') | ||||
nodeid = patchdata.get('nodeid') | ||||
p1 = patchdata.get('p1') | ||||
p2 = patchdata.get('p2') | ||||
Pierre-Yves David
|
r20500 | |||
timeless
|
r27613 | nocommit = opts.get('no_commit') | ||
importbranch = opts.get('import_branch') | ||||
Pierre-Yves David
|
r20500 | update = not opts.get('bypass') | ||
strip = opts["strip"] | ||||
Siddharth Agarwal
|
r24259 | prefix = opts["prefix"] | ||
Pierre-Yves David
|
r20500 | sim = float(opts.get('similarity') or 0) | ||
Gregory Szorc
|
r37639 | |||
Pierre-Yves David
|
r20500 | if not tmpname: | ||
Gregory Szorc
|
r37639 | return None, None, False | ||
Pierre-Yves David
|
r20500 | |||
Pierre-Yves David
|
r21553 | rejects = False | ||
Gregory Szorc
|
r37639 | cmdline_message = logmessage(ui, opts) | ||
if cmdline_message: | ||||
# pickup the cmdline msg | ||||
message = cmdline_message | ||||
elif message: | ||||
# pickup the patch msg | ||||
message = message.strip() | ||||
else: | ||||
# launch the editor | ||||
message = None | ||||
ui.debug('message:\n%s\n' % (message or '')) | ||||
if len(parents) == 1: | ||||
parents.append(repo[nullid]) | ||||
if opts.get('exact'): | ||||
if not nodeid or not p1: | ||||
raise error.Abort(_('not a Mercurial patch')) | ||||
p1 = repo[p1] | ||||
p2 = repo[p2 or nullid] | ||||
elif p2: | ||||
try: | ||||
Pierre-Yves David
|
r20500 | p1 = repo[p1] | ||
Gregory Szorc
|
r37639 | p2 = repo[p2] | ||
# Without any options, consider p2 only if the | ||||
# patch is being applied on top of the recorded | ||||
# first parent. | ||||
if p1 != parents[0]: | ||||
p1 = parents[0] | ||||
p2 = repo[nullid] | ||||
except error.RepoError: | ||||
p1, p2 = parents | ||||
if p2.node() == nullid: | ||||
ui.warn(_("warning: import the patch as a normal revision\n" | ||||
"(use --exact to import the patch as a merge)\n")) | ||||
else: | ||||
p1, p2 = parents | ||||
n = None | ||||
if update: | ||||
if p1 != parents[0]: | ||||
updatefunc(repo, p1.node()) | ||||
if p2 != parents[1]: | ||||
repo.setparents(p1.node(), p2.node()) | ||||
if opts.get('exact') or importbranch: | ||||
repo.dirstate.setbranch(branch or 'default') | ||||
partial = opts.get('partial', False) | ||||
files = set() | ||||
try: | ||||
patch.patch(ui, repo, tmpname, strip=strip, prefix=prefix, | ||||
files=files, eolmode=None, similarity=sim / 100.0) | ||||
except error.PatchError as e: | ||||
if not partial: | ||||
raise error.Abort(pycompat.bytestr(e)) | ||||
if partial: | ||||
rejects = True | ||||
files = list(files) | ||||
if nocommit: | ||||
if message: | ||||
msgs.append(message) | ||||
Pierre-Yves David
|
r20500 | else: | ||
Gregory Szorc
|
r37639 | if opts.get('exact') or p2: | ||
# If you got here, you either use --force and know what | ||||
# you are doing or used --exact or a merge patch while | ||||
# being updated to its first parent. | ||||
m = None | ||||
else: | ||||
m = scmutil.matchfiles(repo, files or []) | ||||
editform = mergeeditform(repo[None], 'import.normal') | ||||
if opts.get('exact'): | ||||
editor = None | ||||
else: | ||||
editor = getcommiteditor(editform=editform, | ||||
**pycompat.strkwargs(opts)) | ||||
extra = {} | ||||
for idfunc in extrapreimport: | ||||
extrapreimportmap[idfunc](repo, patchdata, extra, opts) | ||||
overrides = {} | ||||
if partial: | ||||
overrides[('ui', 'allowemptycommit')] = True | ||||
with repo.ui.configoverride(overrides, 'import'): | ||||
n = repo.commit(message, user, | ||||
date, match=m, | ||||
editor=editor, extra=extra) | ||||
for idfunc in extrapostimport: | ||||
extrapostimportmap[idfunc](repo[n]) | ||||
else: | ||||
if opts.get('exact') or importbranch: | ||||
branch = branch or 'default' | ||||
else: | ||||
branch = p1.branch() | ||||
store = patch.filestore() | ||||
try: | ||||
Pierre-Yves David
|
r20500 | files = set() | ||
Pierre-Yves David
|
r21553 | try: | ||
Gregory Szorc
|
r37639 | patch.patchrepo(ui, repo, p1, store, tmpname, strip, prefix, | ||
files, eolmode=None) | ||||
Yuya Nishihara
|
r34252 | except error.PatchError as e: | ||
Gregory Szorc
|
r37639 | raise error.Abort(stringutil.forcebytestr(e)) | ||
if opts.get('exact'): | ||||
editor = None | ||||
Pierre-Yves David
|
r20500 | else: | ||
Gregory Szorc
|
r37639 | editor = getcommiteditor(editform='import.bypass') | ||
memctx = context.memctx(repo, (p1.node(), p2.node()), | ||||
message, | ||||
files=files, | ||||
filectxfn=store, | ||||
user=user, | ||||
date=date, | ||||
branch=branch, | ||||
editor=editor) | ||||
n = memctx.commit() | ||||
finally: | ||||
store.close() | ||||
if opts.get('exact') and nocommit: | ||||
# --exact with --no-commit is still useful in that it does merge | ||||
# and branch bits | ||||
ui.warn(_("warning: can't check exact import with --no-commit\n")) | ||||
Yuya Nishihara
|
r37833 | elif opts.get('exact') and (not n or hex(n) != nodeid): | ||
Gregory Szorc
|
r37639 | raise error.Abort(_('patch is damaged or loses information')) | ||
msg = _('applied to working directory') | ||||
if n: | ||||
# i18n: refers to a short changeset id | ||||
msg = _('created %s') % short(n) | ||||
return msg, n, rejects | ||||
Pierre-Yves David
|
r20500 | |||
Pierre-Yves David
|
r26545 | # facility to let extensions include additional data in an exported patch | ||
# list of identifiers to be executed in order | ||||
extraexport = [] | ||||
# mapping from identifier to actual export function | ||||
# function as to return a string to be added to the header or None | ||||
# it is given two arguments (sequencenumber, changectx) | ||||
extraexportmap = {} | ||||
Yuya Nishihara
|
r37620 | def _exportsingle(repo, ctx, fm, match, switch_parent, seqno, diffopts): | ||
Yuya Nishihara
|
r32660 | node = scmutil.binnode(ctx) | ||
Augie Fackler
|
r32433 | parents = [p.node() for p in ctx.parents() if p] | ||
branch = ctx.branch() | ||||
if switch_parent: | ||||
parents.reverse() | ||||
if parents: | ||||
prev = parents[0] | ||||
else: | ||||
prev = nullid | ||||
Yuya Nishihara
|
r37620 | fm.context(ctx=ctx) | ||
fm.plain('# HG changeset patch\n') | ||||
fm.write('user', '# User %s\n', ctx.user()) | ||||
fm.plain('# Date %d %d\n' % ctx.date()) | ||||
fm.write('date', '# %s\n', fm.formatdate(ctx.date())) | ||||
fm.condwrite(branch and branch != 'default', | ||||
'branch', '# Branch %s\n', branch) | ||||
fm.write('node', '# Node ID %s\n', hex(node)) | ||||
fm.plain('# Parent %s\n' % hex(prev)) | ||||
Augie Fackler
|
r32433 | if len(parents) > 1: | ||
Yuya Nishihara
|
r37620 | fm.plain('# Parent %s\n' % hex(parents[1])) | ||
fm.data(parents=fm.formatlist(pycompat.maplist(hex, parents), name='node')) | ||||
# TODO: redesign extraexportmap function to support formatter | ||||
Augie Fackler
|
r32433 | for headerid in extraexport: | ||
header = extraexportmap[headerid](seqno, ctx) | ||||
if header is not None: | ||||
Yuya Nishihara
|
r37620 | fm.plain('# %s\n' % header) | ||
fm.write('desc', '%s\n', ctx.description().rstrip()) | ||||
fm.plain('\n') | ||||
if fm.isplain(): | ||||
chunkiter = patch.diffui(repo, prev, node, match, opts=diffopts) | ||||
for chunk, label in chunkiter: | ||||
fm.plain(chunk, label=label) | ||||
else: | ||||
chunkiter = patch.diff(repo, prev, node, match, opts=diffopts) | ||||
# TODO: make it structured? | ||||
fm.data(diff=b''.join(chunkiter)) | ||||
Augie Fackler
|
r32433 | |||
Yuya Nishihara
|
r37622 | def _exportfile(repo, revs, fm, dest, switch_parent, diffopts, match): | ||
Yuya Nishihara
|
r37618 | """Export changesets to stdout or a single file""" | ||
for seqno, rev in enumerate(revs, 1): | ||||
ctx = repo[rev] | ||||
if not dest.startswith('<'): | ||||
repo.ui.note("%s\n" % dest) | ||||
Yuya Nishihara
|
r37620 | fm.startitem() | ||
_exportsingle(repo, ctx, fm, match, switch_parent, seqno, diffopts) | ||||
Yuya Nishihara
|
r37622 | |||
def _exportfntemplate(repo, revs, basefm, fntemplate, switch_parent, diffopts, | ||||
match): | ||||
Yuya Nishihara
|
r37618 | """Export changesets to possibly multiple files""" | ||
total = len(revs) | ||||
revwidth = max(len(str(rev)) for rev in revs) | ||||
Yuya Nishihara
|
r37619 | filemap = util.sortdict() # filename: [(seqno, rev), ...] | ||
Yuya Nishihara
|
r37618 | |||
for seqno, rev in enumerate(revs, 1): | ||||
ctx = repo[rev] | ||||
Yuya Nishihara
|
r37619 | dest = makefilename(ctx, fntemplate, | ||
total=total, seqno=seqno, revwidth=revwidth) | ||||
filemap.setdefault(dest, []).append((seqno, rev)) | ||||
for dest in filemap: | ||||
Yuya Nishihara
|
r37622 | with formatter.maybereopen(basefm, dest) as fm: | ||
Yuya Nishihara
|
r37619 | repo.ui.note("%s\n" % dest) | ||
for seqno, rev in filemap[dest]: | ||||
Yuya Nishihara
|
r37620 | fm.startitem() | ||
Yuya Nishihara
|
r37619 | ctx = repo[rev] | ||
Yuya Nishihara
|
r37620 | _exportsingle(repo, ctx, fm, match, switch_parent, seqno, | ||
Yuya Nishihara
|
r37619 | diffopts) | ||
Yuya Nishihara
|
r37618 | |||
Yuya Nishihara
|
r37622 | def export(repo, revs, basefm, fntemplate='hg-%h.patch', switch_parent=False, | ||
Matt Harbison
|
r26229 | opts=None, match=None): | ||
Augie Fackler
|
r32430 | '''export changesets as hg patches | ||
Args: | ||||
repo: The repository from which we're exporting revisions. | ||||
revs: A list of revisions to export as revision numbers. | ||||
Yuya Nishihara
|
r37622 | basefm: A formatter to which patches should be written. | ||
Augie Fackler
|
r32431 | fntemplate: An optional string to use for generating patch file names. | ||
Augie Fackler
|
r32430 | switch_parent: If True, show diffs against second parent when not nullid. | ||
Default is false, which always shows diff against p1. | ||||
opts: diff options to use for generating the patch. | ||||
match: If specified, only export changes to files matching this matcher. | ||||
Returns: | ||||
Nothing. | ||||
Side Effect: | ||||
"HG Changeset Patch" data is emitted to one of the following | ||||
destinations: | ||||
Augie Fackler
|
r32431 | fntemplate specified: Each rev is written to a unique file named using | ||
Augie Fackler
|
r32430 | the given template. | ||
Yuya Nishihara
|
r37622 | Otherwise: All revs will be written to basefm. | ||
Augie Fackler
|
r32430 | ''' | ||
Matt Harbison
|
r37781 | scmutil.prefetchfiles(repo, revs, match) | ||
Yuya Nishihara
|
r37621 | if not fntemplate: | ||
Yuya Nishihara
|
r37622 | _exportfile(repo, revs, basefm, '<unnamed>', switch_parent, opts, match) | ||
Yuya Nishihara
|
r37618 | else: | ||
Yuya Nishihara
|
r37622 | _exportfntemplate(repo, revs, basefm, fntemplate, switch_parent, opts, | ||
match) | ||||
Benoit Boissinot
|
r10611 | |||
Yuya Nishihara
|
r37621 | def exportfile(repo, revs, fp, switch_parent=False, opts=None, match=None): | ||
"""Export changesets to the given file stream""" | ||||
Matt Harbison
|
r37781 | scmutil.prefetchfiles(repo, revs, match) | ||
Yuya Nishihara
|
r37622 | dest = getattr(fp, 'name', '<unnamed>') | ||
with formatter.formatter(repo.ui, fp, 'export', {}) as fm: | ||||
_exportfile(repo, revs, fm, dest, switch_parent, opts, match) | ||||
Yuya Nishihara
|
r37621 | |||
Yuya Nishihara
|
r29795 | def showmarker(fm, marker, index=None): | ||
Pierre-Yves David
|
r20470 | """utility function to display obsolescence marker in a readable way | ||
To be used by debug function.""" | ||||
Kostia Balytskyi
|
r28613 | if index is not None: | ||
Yuya Nishihara
|
r29795 | fm.write('index', '%i ', index) | ||
Boris Feld
|
r33856 | fm.write('prednode', '%s ', hex(marker.prednode())) | ||
Yuya Nishihara
|
r29795 | succs = marker.succnodes() | ||
fm.condwrite(succs, 'succnodes', '%s ', | ||||
fm.formatlist(map(hex, succs), name='node')) | ||||
fm.write('flag', '%X ', marker.flags()) | ||||
Pierre-Yves David
|
r22260 | parents = marker.parentnodes() | ||
if parents is not None: | ||||
Yuya Nishihara
|
r29795 | fm.write('parentnodes', '{%s} ', | ||
fm.formatlist(map(hex, parents), name='node', sep=', ')) | ||||
fm.write('date', '(%s) ', fm.formatdate(marker.date())) | ||||
meta = marker.metadata().copy() | ||||
meta.pop('date', None) | ||||
Yuya Nishihara
|
r38594 | smeta = pycompat.rapply(pycompat.maybebytestr, meta) | ||
Augie Fackler
|
r35892 | fm.write('metadata', '{%s}', fm.formatdict(smeta, fmt='%r: %r', sep=', ')) | ||
Yuya Nishihara
|
r29795 | fm.plain('\n') | ||
Pierre-Yves David
|
r20470 | |||
Matt Mackall
|
r3814 | def finddate(ui, repo, date): | ||
"""Find the tipmost changeset that matches the given date spec""" | ||||
Dirkjan Ochtman
|
r9667 | |||
Boris Feld
|
r36625 | df = dateutil.matchdate(date) | ||
Matt Mackall
|
r14322 | m = scmutil.matchall(repo) | ||
Matt Mackall
|
r3814 | results = {} | ||
Matt Mackall
|
r9662 | |||
def prep(ctx, fns): | ||||
d = ctx.date() | ||||
if df(d[0]): | ||||
Dirkjan Ochtman
|
r9668 | results[ctx.rev()] = d | ||
Matt Mackall
|
r9662 | |||
Dirkjan Ochtman
|
r9667 | for ctx in walkchangerevs(repo, m, {'rev': None}, prep): | ||
Matt Mackall
|
r9662 | rev = ctx.rev() | ||
if rev in results: | ||||
Martin Geisler
|
r16937 | ui.status(_("found revision %s from %s\n") % | ||
Boris Feld
|
r36625 | (rev, dateutil.datestr(results[rev]))) | ||
Pulkit Goyal
|
r32155 | return '%d' % rev | ||
Matt Mackall
|
r3814 | |||
Pierre-Yves David
|
r26587 | raise error.Abort(_("revision matching date not found")) | ||
Matt Mackall
|
r3814 | |||
Lucas Moscovicz
|
r20553 | def increasingwindows(windowsize=8, sizelimit=512): | ||
while True: | ||||
yield windowsize | ||||
if windowsize < sizelimit: | ||||
windowsize *= 2 | ||||
Patrick Mezard
|
r16776 | |||
Yuya Nishihara
|
r35700 | def _walkrevs(repo, opts): | ||
# Default --rev value depends on --follow but --follow behavior | ||||
# depends on revisions resolved from --rev... | ||||
follow = opts.get('follow') or opts.get('follow_first') | ||||
if opts.get('rev'): | ||||
revs = scmutil.revrange(repo, opts['rev']) | ||||
elif follow and repo.dirstate.p1() == nullid: | ||||
revs = smartset.baseset() | ||||
elif follow: | ||||
revs = repo.revs('reverse(:.)') | ||||
else: | ||||
revs = smartset.spanset(repo) | ||||
revs.reverse() | ||||
return revs | ||||
Durham Goode
|
r19290 | class FileWalkError(Exception): | ||
pass | ||||
def walkfilerevs(repo, match, follow, revs, fncache): | ||||
'''Walks the file history for the matched files. | ||||
Returns the changeset revs that are involved in the file history. | ||||
Throws FileWalkError if the file history can't be walked using | ||||
filelogs alone. | ||||
''' | ||||
wanted = set() | ||||
copies = [] | ||||
minrev, maxrev = min(revs), max(revs) | ||||
def filerevgen(filelog, last): | ||||
""" | ||||
Only files, no patterns. Check the history of each file. | ||||
Examines filelog entries within minrev, maxrev linkrev range | ||||
Returns an iterator yielding (linkrev, parentlinkrevs, copied) | ||||
tuples in backwards order | ||||
""" | ||||
cl_count = len(repo) | ||||
revs = [] | ||||
Gregory Szorc
|
r38806 | for j in pycompat.xrange(0, last + 1): | ||
Durham Goode
|
r19290 | linkrev = filelog.linkrev(j) | ||
if linkrev < minrev: | ||||
continue | ||||
# only yield rev for which we have the changelog, it can | ||||
# happen while doing "hg log" during a pull or commit | ||||
if linkrev >= cl_count: | ||||
break | ||||
parentlinkrevs = [] | ||||
for p in filelog.parentrevs(j): | ||||
if p != nullrev: | ||||
parentlinkrevs.append(filelog.linkrev(p)) | ||||
n = filelog.node(j) | ||||
revs.append((linkrev, parentlinkrevs, | ||||
follow and filelog.renamed(n))) | ||||
return reversed(revs) | ||||
def iterfiles(): | ||||
pctx = repo['.'] | ||||
for filename in match.files(): | ||||
if follow: | ||||
if filename not in pctx: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('cannot follow file not in parent ' | ||
Durham Goode
|
r19290 | 'revision: "%s"') % filename) | ||
yield filename, pctx[filename].filenode() | ||||
else: | ||||
yield filename, None | ||||
for filename_node in copies: | ||||
yield filename_node | ||||
for file_, node in iterfiles(): | ||||
filelog = repo.file(file_) | ||||
if not len(filelog): | ||||
if node is None: | ||||
# A zero count may be a directory or deleted file, so | ||||
# try to find matching entries on the slow path. | ||||
if follow: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort( | ||
Durham Goode
|
r19290 | _('cannot follow nonexistent file: "%s"') % file_) | ||
raise FileWalkError("Cannot walk via filelog") | ||||
else: | ||||
continue | ||||
if node is None: | ||||
last = len(filelog) - 1 | ||||
else: | ||||
last = filelog.rev(node) | ||||
# keep track of all ancestors of the file | ||||
Martin von Zweigbergk
|
r32291 | ancestors = {filelog.linkrev(last)} | ||
Durham Goode
|
r19290 | |||
# iterate from latest to oldest revision | ||||
for rev, flparentlinkrevs, copied in filerevgen(filelog, last): | ||||
if not follow: | ||||
if rev > maxrev: | ||||
continue | ||||
else: | ||||
# Note that last might not be the first interesting | ||||
# rev to us: | ||||
# if the file has been changed after maxrev, we'll | ||||
# have linkrev(last) > maxrev, and we still need | ||||
# to explore the file graph | ||||
if rev not in ancestors: | ||||
continue | ||||
# XXX insert 1327 fix here | ||||
if flparentlinkrevs: | ||||
ancestors.update(flparentlinkrevs) | ||||
fncache.setdefault(rev, []).append(file_) | ||||
wanted.add(rev) | ||||
if copied: | ||||
copies.append(copied) | ||||
return wanted | ||||
Martin von Zweigbergk
|
r24391 | class _followfilter(object): | ||
def __init__(self, repo, onlyfirst=False): | ||||
self.repo = repo | ||||
self.startrev = nullrev | ||||
self.roots = set() | ||||
self.onlyfirst = onlyfirst | ||||
def match(self, rev): | ||||
def realparents(rev): | ||||
if self.onlyfirst: | ||||
return self.repo.changelog.parentrevs(rev)[0:1] | ||||
else: | ||||
return filter(lambda x: x != nullrev, | ||||
self.repo.changelog.parentrevs(rev)) | ||||
if self.startrev == nullrev: | ||||
self.startrev = rev | ||||
return True | ||||
if rev > self.startrev: | ||||
# forward: all descendants | ||||
if not self.roots: | ||||
self.roots.add(self.startrev) | ||||
for parent in realparents(rev): | ||||
if parent in self.roots: | ||||
self.roots.add(rev) | ||||
return True | ||||
else: | ||||
# backwards: all parents | ||||
if not self.roots: | ||||
self.roots.update(realparents(self.startrev)) | ||||
if rev in self.roots: | ||||
self.roots.remove(rev) | ||||
self.roots.update(realparents(rev)) | ||||
return True | ||||
return False | ||||
Matt Mackall
|
r9665 | def walkchangerevs(repo, match, opts, prepare): | ||
timeless
|
r7807 | '''Iterate over files and the revs in which they changed. | ||
Matt Mackall
|
r3650 | |||
Callers most commonly need to iterate backwards over the history | ||||
timeless
|
r7807 | in which they are interested. Doing so has awful (quadratic-looking) | ||
Matt Mackall
|
r3650 | performance, so we use iterators in a "windowed" way. | ||
We walk a window of revisions in the desired order. Within the | ||||
window, we first walk forwards to gather data, then in the desired | ||||
order (usually backwards) to display it. | ||||
Matt Mackall
|
r9662 | This function returns an iterator yielding contexts. Before | ||
yielding each context, the iterator will first call the prepare | ||||
function on each context in the window in forward order.''' | ||||
Matt Mackall
|
r3650 | |||
Yuya Nishihara
|
r38670 | allfiles = opts.get('all_files') | ||
Matt Mackall
|
r3650 | follow = opts.get('follow') or opts.get('follow_first') | ||
Yuya Nishihara
|
r35700 | revs = _walkrevs(repo, opts) | ||
Matt Mackall
|
r11281 | if not revs: | ||
return [] | ||||
Martin Geisler
|
r8152 | wanted = set() | ||
Yuya Nishihara
|
r35474 | slowpath = match.anypats() or (not match.always() and opts.get('removed')) | ||
Matt Mackall
|
r3650 | fncache = {} | ||
Martin von Zweigbergk
|
r37319 | change = repo.__getitem__ | ||
Matt Mackall
|
r3650 | |||
Nicolas Dumazet
|
r11632 | # First step is to fill wanted, the set of revisions that we want to yield. | ||
# When it does not induce extra cost, we also fill fncache for revisions in | ||||
# wanted: a cache of filenames that were changed (ctx.files()) and that | ||||
# match the file filtering conditions. | ||||
Sangeet Kumar Mishra
|
r38996 | if match.always() or allfiles: | ||
Matt Mackall
|
r3650 | # No files, no patterns. Display all revs. | ||
Lucas Moscovicz
|
r20553 | wanted = revs | ||
Martin von Zweigbergk
|
r25271 | elif not slowpath: | ||
Nicolas Dumazet
|
r11632 | # We only have to read through the filelog to find wanted revisions | ||
Durham Goode
|
r19290 | try: | ||
wanted = walkfilerevs(repo, match, follow, revs, fncache) | ||||
except FileWalkError: | ||||
slowpath = True | ||||
Nicolas Dumazet
|
r11608 | |||
Durham Goode
|
r19290 | # We decided to fall back to the slowpath because at least one | ||
# of the paths was not a file. Check to see if at least one of them | ||||
# existed in history, otherwise simply return | ||||
smuralid
|
r17746 | for path in match.files(): | ||
if path == '.' or path in repo.store: | ||||
break | ||||
Mads Kiilerich
|
r18340 | else: | ||
return [] | ||||
smuralid
|
r17746 | |||
Matt Mackall
|
r3650 | if slowpath: | ||
Nicolas Dumazet
|
r11632 | # We have to read the changelog to match filenames against | ||
# changed files | ||||
Matt Mackall
|
r3650 | if follow: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('can only follow copies/renames for explicit ' | ||
timeless
|
r8761 | 'filenames')) | ||
Matt Mackall
|
r3650 | |||
# The slow path checks files modified in every changeset. | ||||
Durham Goode
|
r19730 | # This is really slow on large repos, so compute the set lazily. | ||
class lazywantedset(object): | ||||
def __init__(self): | ||||
self.set = set() | ||||
self.revs = set(revs) | ||||
# No need to worry about locality here because it will be accessed | ||||
# in the same order as the increasing window below. | ||||
def __contains__(self, value): | ||||
if value in self.set: | ||||
return True | ||||
elif not value in self.revs: | ||||
return False | ||||
else: | ||||
self.revs.discard(value) | ||||
ctx = change(value) | ||||
Augie Fackler
|
r36364 | matches = [f for f in ctx.files() if match(f)] | ||
Durham Goode
|
r19730 | if matches: | ||
fncache[value] = matches | ||||
self.set.add(value) | ||||
return True | ||||
return False | ||||
def discard(self, value): | ||||
self.revs.discard(value) | ||||
self.set.discard(value) | ||||
wanted = lazywantedset() | ||||
Matt Mackall
|
r3650 | |||
# it might be worthwhile to do this in the iterator if the rev range | ||||
# is descending and the prune args are all within that range | ||||
for rev in opts.get('prune', ()): | ||||
Matt Mackall
|
r16380 | rev = repo[rev].rev() | ||
Martin von Zweigbergk
|
r24391 | ff = _followfilter(repo) | ||
Matt Mackall
|
r3650 | stop = min(revs[0], revs[-1]) | ||
Gregory Szorc
|
r38806 | for x in pycompat.xrange(rev, stop - 1, -1): | ||
Martin Geisler
|
r8152 | if ff.match(x): | ||
Lucas Moscovicz
|
r20553 | wanted = wanted - [x] | ||
Bryan O'Sullivan
|
r18710 | |||
Nicolas Dumazet
|
r11632 | # Now that wanted is correctly initialized, we can iterate over the | ||
# revision range, yielding only revisions in wanted. | ||||
Matt Mackall
|
r3650 | def iterate(): | ||
Martin von Zweigbergk
|
r25272 | if follow and match.always(): | ||
Martin von Zweigbergk
|
r24391 | ff = _followfilter(repo, onlyfirst=opts.get('follow_first')) | ||
Matt Mackall
|
r3650 | def want(rev): | ||
Martin Geisler
|
r8119 | return ff.match(rev) and rev in wanted | ||
Matt Mackall
|
r3650 | else: | ||
def want(rev): | ||||
return rev in wanted | ||||
Lucas Moscovicz
|
r20553 | it = iter(revs) | ||
stopiteration = False | ||||
for windowsize in increasingwindows(): | ||||
nrevs = [] | ||||
Gregory Szorc
|
r38806 | for i in pycompat.xrange(windowsize): | ||
Pierre-Yves David
|
r25147 | rev = next(it, None) | ||
if rev is None: | ||||
Lucas Moscovicz
|
r20553 | stopiteration = True | ||
break | ||||
Pierre-Yves David
|
r25147 | elif want(rev): | ||
nrevs.append(rev) | ||||
Matt Mackall
|
r8209 | for rev in sorted(nrevs): | ||
Matt Mackall
|
r3650 | fns = fncache.get(rev) | ||
Matt Mackall
|
r9654 | ctx = change(rev) | ||
Matt Mackall
|
r3650 | if not fns: | ||
def fns_generator(): | ||||
Sangeet Kumar Mishra
|
r38361 | if allfiles: | ||
fiter = iter(ctx) | ||||
else: | ||||
fiter = ctx.files() | ||||
for f in fiter: | ||||
Matt Mackall
|
r9652 | if match(f): | ||
Matt Mackall
|
r3650 | yield f | ||
fns = fns_generator() | ||||
Matt Mackall
|
r9662 | prepare(ctx, fns) | ||
Matt Mackall
|
r3650 | for rev in nrevs: | ||
Matt Mackall
|
r9662 | yield change(rev) | ||
Lucas Moscovicz
|
r20553 | |||
if stopiteration: | ||||
break | ||||
Matt Mackall
|
r9652 | return iterate() | ||
Bryan O'Sullivan
|
r5034 | |||
Matt Harbison
|
r23885 | def add(ui, repo, match, prefix, explicitonly, **opts): | ||
Martin Geisler
|
r12270 | join = lambda f: os.path.join(prefix, f) | ||
Martin Geisler
|
r12269 | bad = [] | ||
Matt Harbison
|
r25436 | |||
badfn = lambda x, y: bad.append(x) or match.bad(x, y) | ||||
Martin Geisler
|
r12269 | names = [] | ||
Martin Geisler
|
r12270 | wctx = repo[None] | ||
Adrian Buehlmann
|
r14138 | cca = None | ||
abort, warn = scmutil.checkportabilityalert(ui) | ||||
if abort or warn: | ||||
Joshua Redstone
|
r17201 | cca = scmutil.casecollisionauditor(ui, abort, repo.dirstate) | ||
Matt Harbison
|
r25436 | |||
Durham Goode
|
r26206 | badmatch = matchmod.badmatch(match, badfn) | ||
dirstate = repo.dirstate | ||||
# We don't want to just call wctx.walk here, since it would return a lot of | ||||
# clean files, which we aren't interested in and takes time. | ||||
Martin von Zweigbergk
|
r34344 | for f in sorted(dirstate.walk(badmatch, subrepos=sorted(wctx.substate), | ||
unknown=True, ignored=False, full=False)): | ||||
Martin Geisler
|
r12269 | exact = match.exact(f) | ||
John Coomes
|
r23462 | if exact or not explicitonly and f not in wctx and repo.wvfs.lexists(f): | ||
Adrian Buehlmann
|
r14138 | if cca: | ||
cca(f) | ||||
Martin Geisler
|
r12269 | names.append(f) | ||
if ui.verbose or not exact: | ||||
Boris Feld
|
r39124 | ui.status(_('adding %s\n') % match.rel(f), | ||
label='addremove.added') | ||||
Martin Geisler
|
r12270 | |||
Mads Kiilerich
|
r18364 | for subpath in sorted(wctx.substate): | ||
David M. Carr
|
r15410 | sub = wctx.sub(subpath) | ||
try: | ||||
Martin von Zweigbergk
|
r28017 | submatch = matchmod.subdirmatcher(subpath, match) | ||
Pulkit Goyal
|
r32147 | if opts.get(r'subrepos'): | ||
Matt Harbison
|
r23885 | bad.extend(sub.add(ui, submatch, prefix, False, **opts)) | ||
David M. Carr
|
r15410 | else: | ||
Matt Harbison
|
r23885 | bad.extend(sub.add(ui, submatch, prefix, True, **opts)) | ||
David M. Carr
|
r15410 | except error.LookupError: | ||
ui.status(_("skipping missing subrepository: %s\n") | ||||
% join(subpath)) | ||||
Martin Geisler
|
r12270 | |||
Pulkit Goyal
|
r32147 | if not opts.get(r'dry_run'): | ||
Martin Geisler
|
r12270 | rejected = wctx.add(names, prefix) | ||
Martin Geisler
|
r12269 | bad.extend(f for f in rejected if f in match.files()) | ||
return bad | ||||
Matt Harbison
|
r32005 | def addwebdirpath(repo, serverpath, webconf): | ||
webconf[serverpath] = repo.root | ||||
repo.ui.debug('adding %s = %s\n' % (serverpath, repo.root)) | ||||
for r in repo.revs('filelog("path:.hgsub")'): | ||||
ctx = repo[r] | ||||
for subpath in ctx.substate: | ||||
ctx.sub(subpath).addwebdirpath(serverpath, webconf) | ||||
Sushil khanchi
|
r37796 | def forget(ui, repo, match, prefix, explicitonly, dryrun, interactive): | ||
if dryrun and interactive: | ||||
raise error.Abort(_("cannot specify both --dry-run and --interactive")) | ||||
David M. Carr
|
r15912 | join = lambda f: os.path.join(prefix, f) | ||
bad = [] | ||||
Matt Harbison
|
r25437 | badfn = lambda x, y: bad.append(x) or match.bad(x, y) | ||
David M. Carr
|
r15912 | wctx = repo[None] | ||
forgot = [] | ||||
Matt Harbison
|
r25437 | |||
s = repo.status(match=matchmod.badmatch(match, badfn), clean=True) | ||||
Martin von Zweigbergk
|
r32174 | forget = sorted(s.modified + s.added + s.deleted + s.clean) | ||
David M. Carr
|
r15912 | if explicitonly: | ||
forget = [f for f in forget if match.exact(f)] | ||||
Mads Kiilerich
|
r18364 | for subpath in sorted(wctx.substate): | ||
David M. Carr
|
r15912 | sub = wctx.sub(subpath) | ||
try: | ||||
Martin von Zweigbergk
|
r28017 | submatch = matchmod.subdirmatcher(subpath, match) | ||
Sushil khanchi
|
r37796 | subbad, subforgot = sub.forget(submatch, prefix, dryrun=dryrun, | ||
interactive=interactive) | ||||
David M. Carr
|
r15912 | bad.extend([subpath + '/' + f for f in subbad]) | ||
forgot.extend([subpath + '/' + f for f in subforgot]) | ||||
except error.LookupError: | ||||
ui.status(_("skipping missing subrepository: %s\n") | ||||
% join(subpath)) | ||||
FUJIWARA Katsunori
|
r16070 | if not explicitonly: | ||
for f in match.files(): | ||||
Matt Harbison
|
r23673 | if f not in repo.dirstate and not repo.wvfs.isdir(f): | ||
David M. Carr
|
r15912 | if f not in forgot: | ||
Matt Harbison
|
r23673 | if repo.wvfs.exists(f): | ||
Matt Harbison
|
r24548 | # Don't complain if the exact case match wasn't given. | ||
# But don't do this until after checking 'forgot', so | ||||
# that subrepo files aren't normalized, and this op is | ||||
# purely from data cached by the status walk above. | ||||
if repo.dirstate.normalize(f) in repo.dirstate: | ||||
continue | ||||
David M. Carr
|
r15912 | ui.warn(_('not removing %s: ' | ||
'file is already untracked\n') | ||||
Matt Harbison
|
r23686 | % match.rel(f)) | ||
David M. Carr
|
r15912 | bad.append(f) | ||
Sushil khanchi
|
r37796 | if interactive: | ||
Sushil khanchi
|
r37774 | responses = _('[Ynsa?]' | ||
'$$ &Yes, forget this file' | ||||
'$$ &No, skip this file' | ||||
'$$ &Skip remaining files' | ||||
'$$ Include &all remaining files' | ||||
'$$ &? (display help)') | ||||
for filename in forget[:]: | ||||
r = ui.promptchoice(_('forget %s %s') % (filename, responses)) | ||||
if r == 4: # ? | ||||
while r == 4: | ||||
for c, t in ui.extractchoices(responses)[1]: | ||||
ui.write('%s - %s\n' % (c, encoding.lower(t))) | ||||
r = ui.promptchoice(_('forget %s %s') % (filename, | ||||
responses)) | ||||
if r == 0: # yes | ||||
continue | ||||
elif r == 1: # no | ||||
forget.remove(filename) | ||||
elif r == 2: # Skip | ||||
fnindex = forget.index(filename) | ||||
del forget[fnindex:] | ||||
break | ||||
elif r == 3: # All | ||||
break | ||||
David M. Carr
|
r15912 | for f in forget: | ||
Sushil khanchi
|
r37796 | if ui.verbose or not match.exact(f) or interactive: | ||
Boris Feld
|
r39125 | ui.status(_('removing %s\n') % match.rel(f), | ||
label='addremove.removed') | ||||
David M. Carr
|
r15912 | |||
Sushil khanchi
|
r36957 | if not dryrun: | ||
rejected = wctx.forget(forget, prefix) | ||||
bad.extend(f for f in rejected if f in match.files()) | ||||
forgot.extend(f for f in forget if f not in rejected) | ||||
David M. Carr
|
r15912 | return bad, forgot | ||
Matt Harbison
|
r24413 | def files(ui, ctx, m, fm, fmt, subrepos): | ||
Matt Harbison
|
r24275 | ret = 1 | ||
Yuya Nishihara
|
r38559 | needsfctx = ui.verbose or {'size', 'flags'} & fm.datahint() | ||
Matt Harbison
|
r24275 | for f in ctx.matches(m): | ||
fm.startitem() | ||||
Yuya Nishihara
|
r38560 | fm.context(ctx=ctx) | ||
Yuya Nishihara
|
r38559 | if needsfctx: | ||
Matt Harbison
|
r24275 | fc = ctx[f] | ||
fm.write('size flags', '% 10d % 1s ', fc.size(), fc.flags()) | ||||
Yuya Nishihara
|
r39405 | fm.data(path=f) | ||
fm.plain(fmt % m.rel(f)) | ||||
Matt Harbison
|
r24275 | ret = 0 | ||
Matt Harbison
|
r25228 | for subpath in sorted(ctx.substate): | ||
Hannes Oldenburg
|
r29802 | submatch = matchmod.subdirmatcher(subpath, m) | ||
if (subrepos or m.exact(subpath) or any(submatch.files())): | ||||
Matt Harbison
|
r24413 | sub = ctx.sub(subpath) | ||
try: | ||||
Matt Harbison
|
r28387 | recurse = m.exact(subpath) or subrepos | ||
if sub.printfiles(ui, submatch, fm, fmt, recurse) == 0: | ||||
Matt Harbison
|
r24413 | ret = 0 | ||
except error.LookupError: | ||||
ui.status(_("skipping missing subrepository: %s\n") | ||||
% m.abs(subpath)) | ||||
Matt Harbison
|
r24275 | return ret | ||
Sushil khanchi
|
r37168 | def remove(ui, repo, m, prefix, after, force, subrepos, dryrun, warnings=None): | ||
Matt Harbison
|
r23325 | join = lambda f: os.path.join(prefix, f) | ||
Matt Harbison
|
r23289 | ret = 0 | ||
s = repo.status(match=m, clean=True) | ||||
modified, added, deleted, clean = s[0], s[1], s[3], s[6] | ||||
Matt Harbison
|
r23325 | wctx = repo[None] | ||
timeless
|
r28607 | if warnings is None: | ||
warnings = [] | ||||
warn = True | ||||
else: | ||||
warn = False | ||||
timeless
|
r28608 | subs = sorted(wctx.substate) | ||
Martin von Zweigbergk
|
r38366 | progress = ui.makeprogress(_('searching'), total=len(subs), | ||
unit=_('subrepos')) | ||||
timeless
|
r28608 | for subpath in subs: | ||
Hannes Oldenburg
|
r29802 | submatch = matchmod.subdirmatcher(subpath, m) | ||
if subrepos or m.exact(subpath) or any(submatch.files()): | ||||
Martin von Zweigbergk
|
r38366 | progress.increment() | ||
Matt Harbison
|
r23325 | sub = wctx.sub(subpath) | ||
try: | ||||
timeless
|
r28607 | if sub.removefiles(submatch, prefix, after, force, subrepos, | ||
Sushil khanchi
|
r37168 | dryrun, warnings): | ||
Matt Harbison
|
r23325 | ret = 1 | ||
except error.LookupError: | ||||
timeless
|
r28607 | warnings.append(_("skipping missing subrepository: %s\n") | ||
Matt Harbison
|
r23325 | % join(subpath)) | ||
Martin von Zweigbergk
|
r38392 | progress.complete() | ||
Matt Harbison
|
r23325 | |||
Matt Harbison
|
r23289 | # warn about failure to delete explicit files/dirs | ||
Drew Gottlieb
|
r24635 | deleteddirs = util.dirs(deleted) | ||
timeless
|
r28608 | files = m.files() | ||
Martin von Zweigbergk
|
r38366 | progress = ui.makeprogress(_('deleting'), total=len(files), | ||
unit=_('files')) | ||||
timeless
|
r28608 | for f in files: | ||
Matt Harbison
|
r23325 | def insubrepo(): | ||
for subpath in wctx.substate: | ||||
Hannes Oldenburg
|
r29622 | if f.startswith(subpath + '/'): | ||
Matt Harbison
|
r23325 | return True | ||
return False | ||||
Martin von Zweigbergk
|
r38366 | progress.increment() | ||
Martin von Zweigbergk
|
r24955 | isdir = f in deleteddirs or wctx.hasdir(f) | ||
Hannes Oldenburg
|
r29622 | if (f in repo.dirstate or isdir or f == '.' | ||
or insubrepo() or f in subs): | ||||
Matt Harbison
|
r23289 | continue | ||
Matt Harbison
|
r23325 | |||
Matt Harbison
|
r23674 | if repo.wvfs.exists(f): | ||
if repo.wvfs.isdir(f): | ||||
timeless
|
r28607 | warnings.append(_('not removing %s: no tracked files\n') | ||
Matt Harbison
|
r23686 | % m.rel(f)) | ||
Matt Harbison
|
r23289 | else: | ||
timeless
|
r28607 | warnings.append(_('not removing %s: file is untracked\n') | ||
Matt Harbison
|
r23686 | % m.rel(f)) | ||
Matt Harbison
|
r23289 | # missing files will generate a warning elsewhere | ||
ret = 1 | ||||
Martin von Zweigbergk
|
r38392 | progress.complete() | ||
Matt Harbison
|
r23289 | |||
if force: | ||||
list = modified + deleted + clean + added | ||||
elif after: | ||||
list = deleted | ||||
timeless
|
r28608 | remaining = modified + added + clean | ||
Martin von Zweigbergk
|
r38366 | progress = ui.makeprogress(_('skipping'), total=len(remaining), | ||
unit=_('files')) | ||||
timeless
|
r28608 | for f in remaining: | ||
Martin von Zweigbergk
|
r38366 | progress.increment() | ||
pavanpc@fb.com
|
r35120 | if ui.verbose or (f in files): | ||
warnings.append(_('not removing %s: file still exists\n') | ||||
% m.rel(f)) | ||||
Matt Harbison
|
r23289 | ret = 1 | ||
Martin von Zweigbergk
|
r38392 | progress.complete() | ||
Matt Harbison
|
r23289 | else: | ||
list = deleted + clean | ||||
Martin von Zweigbergk
|
r38366 | progress = ui.makeprogress(_('skipping'), | ||
total=(len(modified) + len(added)), | ||||
unit=_('files')) | ||||
Matt Harbison
|
r23289 | for f in modified: | ||
Martin von Zweigbergk
|
r38366 | progress.increment() | ||
timeless
|
r28607 | warnings.append(_('not removing %s: file is modified (use -f' | ||
Matt Harbison
|
r23686 | ' to force removal)\n') % m.rel(f)) | ||
Matt Harbison
|
r23289 | ret = 1 | ||
for f in added: | ||||
Martin von Zweigbergk
|
r38366 | progress.increment() | ||
timeless
|
r29963 | warnings.append(_("not removing %s: file has been marked for add" | ||
" (use 'hg forget' to undo add)\n") % m.rel(f)) | ||||
Matt Harbison
|
r23289 | ret = 1 | ||
Martin von Zweigbergk
|
r38392 | progress.complete() | ||
timeless
|
r28608 | |||
list = sorted(list) | ||||
Martin von Zweigbergk
|
r38366 | progress = ui.makeprogress(_('deleting'), total=len(list), | ||
unit=_('files')) | ||||
timeless
|
r28608 | for f in list: | ||
Matt Harbison
|
r23289 | if ui.verbose or not m.exact(f): | ||
Martin von Zweigbergk
|
r38366 | progress.increment() | ||
Boris Feld
|
r39125 | ui.status(_('removing %s\n') % m.rel(f), | ||
label='addremove.removed') | ||||
Martin von Zweigbergk
|
r38392 | progress.complete() | ||
Matt Harbison
|
r23289 | |||
Sushil khanchi
|
r37168 | if not dryrun: | ||
with repo.wlock(): | ||||
if not after: | ||||
for f in list: | ||||
if f in added: | ||||
continue # we never unlink added files on remove | ||||
Kyle Lippincott
|
r38512 | rmdir = repo.ui.configbool('experimental', | ||
'removeemptydirs') | ||||
repo.wvfs.unlinkpath(f, ignoremissing=True, rmdir=rmdir) | ||||
Sushil khanchi
|
r37168 | repo[None].forget(list) | ||
Matt Harbison
|
r23289 | |||
timeless
|
r28607 | if warn: | ||
for warning in warnings: | ||||
ui.warn(warning) | ||||
Matt Harbison
|
r23289 | return ret | ||
Matt Harbison
|
r35680 | def _updatecatformatter(fm, ctx, matcher, path, decode): | ||
"""Hook for adding data to the formatter used by ``hg cat``. | ||||
Extensions (e.g., lfs) can wrap this to inject keywords/data, but must call | ||||
this method first.""" | ||||
data = ctx[path].data() | ||||
if decode: | ||||
data = ctx.repo().wwritedata(path, data) | ||||
fm.startitem() | ||||
Yuya Nishihara
|
r38557 | fm.context(ctx=ctx) | ||
Matt Harbison
|
r35680 | fm.write('data', '%s', data) | ||
Yuya Nishihara
|
r39405 | fm.data(path=path) | ||
Matt Harbison
|
r35680 | |||
Yuya Nishihara
|
r32578 | def cat(ui, repo, ctx, matcher, basefm, fntemplate, prefix, **opts): | ||
Matt Harbison
|
r21040 | err = 1 | ||
Pulkit Goyal
|
r35351 | opts = pycompat.byteskwargs(opts) | ||
Matt Harbison
|
r21040 | |||
def write(path): | ||||
Yuya Nishihara
|
r32578 | filename = None | ||
Yuya Nishihara
|
r32576 | if fntemplate: | ||
Yuya Nishihara
|
r36222 | filename = makefilename(ctx, fntemplate, | ||
Yuya Nishihara
|
r32576 | pathname=os.path.join(prefix, path)) | ||
Ryan McElroy
|
r35010 | # attempt to create the directory if it does not already exist | ||
try: | ||||
os.makedirs(os.path.dirname(filename)) | ||||
except OSError: | ||||
pass | ||||
Yuya Nishihara
|
r37615 | with formatter.maybereopen(basefm, filename) as fm: | ||
Matt Harbison
|
r35680 | _updatecatformatter(fm, ctx, matcher, path, opts.get('decode')) | ||
Matt Harbison
|
r21040 | |||
# Automation often uses hg cat on single files, so special case it | ||||
# for performance to avoid the cost of parsing the manifest. | ||||
if len(matcher.files()) == 1 and not matcher.anypats(): | ||||
file = matcher.files()[0] | ||||
Durham Goode
|
r30340 | mfl = repo.manifestlog | ||
Yuya Nishihara
|
r24718 | mfnode = ctx.manifestnode() | ||
Durham Goode
|
r30340 | try: | ||
if mfnode and mfl[mfnode].find(file)[0]: | ||||
Matt Harbison
|
r37780 | scmutil.prefetchfiles(repo, [ctx.rev()], matcher) | ||
Durham Goode
|
r30340 | write(file) | ||
return 0 | ||||
except KeyError: | ||||
pass | ||||
Matt Harbison
|
r21040 | |||
Matt Harbison
|
r37780 | scmutil.prefetchfiles(repo, [ctx.rev()], matcher) | ||
for abs in ctx.walk(matcher): | ||||
Matt Harbison
|
r21040 | write(abs) | ||
err = 0 | ||||
Matt Harbison
|
r21041 | |||
for subpath in sorted(ctx.substate): | ||||
sub = ctx.sub(subpath) | ||||
try: | ||||
Martin von Zweigbergk
|
r28017 | submatch = matchmod.subdirmatcher(subpath, matcher) | ||
Matt Harbison
|
r21041 | |||
Yuya Nishihara
|
r32578 | if not sub.cat(submatch, basefm, fntemplate, | ||
Pulkit Goyal
|
r35351 | os.path.join(prefix, sub._path), | ||
**pycompat.strkwargs(opts)): | ||||
Matt Harbison
|
r21041 | err = 0 | ||
except error.RepoLookupError: | ||||
ui.status(_("skipping missing subrepository: %s\n") | ||||
% os.path.join(prefix, subpath)) | ||||
Matt Harbison
|
r21040 | return err | ||
Bryan O'Sullivan
|
r5034 | def commit(ui, repo, commitfunc, pats, opts): | ||
'''commit the specified files or all outstanding changes''' | ||||
Thomas Arendsen Hein
|
r6139 | date = opts.get('date') | ||
if date: | ||||
Boris Feld
|
r36625 | opts['date'] = dateutil.parsedate(date) | ||
Idan Kamara
|
r14635 | message = logmessage(ui, opts) | ||
Matt Harbison
|
r23533 | matcher = scmutil.match(repo[None], pats, opts) | ||
Bryan O'Sullivan
|
r5034 | |||
Martin von Zweigbergk
|
r33619 | dsguard = None | ||
Kirill Smelkov
|
r5829 | # extract addremove carefully -- this function can be called from a command | ||
# that doesn't support addremove | ||||
Martin von Zweigbergk
|
r33822 | if opts.get('addremove'): | ||
dsguard = dirstateguard.dirstateguard(repo, 'commit') | ||||
Martin von Zweigbergk
|
r33823 | with dsguard or util.nullcontextmanager(): | ||
Martin von Zweigbergk
|
r33822 | if dsguard: | ||
Martin von Zweigbergk
|
r33619 | if scmutil.addremove(repo, matcher, "", opts) != 0: | ||
raise error.Abort( | ||||
_("failed to mark all new/missing files as added/removed")) | ||||
Martin von Zweigbergk
|
r33823 | return commitfunc(ui, repo, message, matcher, opts) | ||
Matt Mackall
|
r8407 | |||
Hannes Oldenburg
|
r29819 | def samefile(f, ctx1, ctx2): | ||
if f in ctx1.manifest(): | ||||
a = ctx1.filectx(f) | ||||
if f in ctx2.manifest(): | ||||
b = ctx2.filectx(f) | ||||
return (not a.cmp(b) | ||||
and a.flags() == b.flags()) | ||||
else: | ||||
return False | ||||
else: | ||||
return f not in ctx2.manifest() | ||||
Saurabh Singh
|
r34088 | def amend(ui, repo, old, extra, pats, opts): | ||
Gregory Szorc
|
r25930 | # avoid cycle context -> subrepo -> cmdutil | ||
Gregory Szorc
|
r28322 | from . import context | ||
Gregory Szorc
|
r25930 | |||
Matt Harbison
|
r23101 | # amend will reuse the existing user if not specified, but the obsolete | ||
# marker creation requires that the current user's name is specified. | ||||
Durham Goode
|
r24379 | if obsolete.isenabled(repo, obsolete.createmarkersopt): | ||
Matt Harbison
|
r23101 | ui.username() # raise exception if username not set | ||
Idan Kamara
|
r16458 | ui.note(_('amending changeset %s\n') % old) | ||
base = old.p1() | ||||
Boris Feld
|
r33509 | with repo.wlock(), repo.lock(), repo.transaction('amend'): | ||
Jun Wu
|
r33438 | # Participating changesets: | ||
# | ||||
Saurabh Singh
|
r34087 | # wctx o - workingctx that contains changes from working copy | ||
# | to go into amending commit | ||||
Jun Wu
|
r33438 | # | | ||
# old o - changeset to amend | ||||
# | | ||||
Saurabh Singh
|
r34058 | # base o - first parent of the changeset to amend | ||
Saurabh Singh
|
r34087 | wctx = repo[None] | ||
Jun Wu
|
r33438 | |||
Martin von Zweigbergk
|
r35197 | # Copy to avoid mutating input | ||
extra = extra.copy() | ||||
Jun Wu
|
r33438 | # Update extra dict from amended commit (e.g. to preserve graft | ||
# source) | ||||
extra.update(old.extra()) | ||||
Saurabh Singh
|
r34087 | # Also update it from the from the wctx | ||
extra.update(wctx.extra()) | ||||
user = opts.get('user') or old.user() | ||||
date = opts.get('date') or old.date() | ||||
Jun Wu
|
r33438 | |||
Boris Feld
|
r34123 | # Parse the date to allow comparison between date and old.date() | ||
Boris Feld
|
r36625 | date = dateutil.parsedate(date) | ||
Boris Feld
|
r34123 | |||
Jun Wu
|
r33438 | if len(old.parents()) > 1: | ||
# ctx.files() isn't reliable for merges, so fall back to the | ||||
# slower repo.status() method | ||||
Martin von Zweigbergk
|
r38792 | files = set([fn for st in base.status(old)[:3] | ||
Jun Wu
|
r33438 | for fn in st]) | ||
else: | ||||
files = set(old.files()) | ||||
Saurabh Singh
|
r34087 | # add/remove the files to the working copy if the "addremove" option | ||
# was specified. | ||||
matcher = scmutil.match(wctx, pats, opts) | ||||
if (opts.get('addremove') | ||||
and scmutil.addremove(repo, matcher, "", opts)): | ||||
raise error.Abort( | ||||
_("failed to mark all new/missing files as added/removed")) | ||||
Yuya Nishihara
|
r35019 | # Check subrepos. This depends on in-place wctx._status update in | ||
# subrepo.precommit(). To minimize the risk of this hack, we do | ||||
# nothing if .hgsub does not exist. | ||||
if '.hgsub' in wctx or '.hgsub' in old: | ||||
Yuya Nishihara
|
r36026 | subs, commitsubs, newsubstate = subrepoutil.precommit( | ||
Yuya Nishihara
|
r35019 | ui, wctx, wctx._status, matcher) | ||
# amend should abort if commitsubrepos is enabled | ||||
assert not commitsubs | ||||
if subs: | ||||
Yuya Nishihara
|
r36026 | subrepoutil.writestate(repo, newsubstate) | ||
Yuya Nishihara
|
r35019 | |||
Yuya Nishihara
|
r36927 | ms = mergemod.mergestate.read(repo) | ||
mergeutil.checkunresolved(ms) | ||||
Saurabh Singh
|
r34087 | filestoamend = set(f for f in wctx.files() if matcher(f)) | ||
changes = (len(filestoamend) > 0) | ||||
if changes: | ||||
Jun Wu
|
r33438 | # Recompute copies (avoid recording a -> b -> a) | ||
Saurabh Singh
|
r34087 | copied = copies.pathcopies(base, wctx, matcher) | ||
Jun Wu
|
r33438 | if old.p2: | ||
Saurabh Singh
|
r34087 | copied.update(copies.pathcopies(old.p2(), wctx, matcher)) | ||
Jun Wu
|
r33438 | |||
# Prune files which were reverted by the updates: if old | ||||
Saurabh Singh
|
r34087 | # introduced file X and the file was renamed in the working | ||
# copy, then those two files are the same and | ||||
Jun Wu
|
r33438 | # we can discard X from our list of files. Likewise if X | ||
Yuya Nishihara
|
r35016 | # was removed, it's no longer relevant. If X is missing (aka | ||
# deleted), old X must be preserved. | ||||
Saurabh Singh
|
r34087 | files.update(filestoamend) | ||
Yuya Nishihara
|
r35016 | files = [f for f in files if (not samefile(f, wctx, base) | ||
or f in wctx.deleted())] | ||||
Jun Wu
|
r33438 | |||
def filectxfn(repo, ctx_, path): | ||||
try: | ||||
Saurabh Singh
|
r34087 | # If the file being considered is not amongst the files | ||
# to be amended, we should return the file context from the | ||||
# old changeset. This avoids issues when only some files in | ||||
# the working copy are being amended but there are also | ||||
# changes to other files from the old changeset. | ||||
if path not in filestoamend: | ||||
return old.filectx(path) | ||||
Yuya Nishihara
|
r35015 | # Return None for removed files. | ||
if path in wctx.removed(): | ||||
return None | ||||
Saurabh Singh
|
r34087 | fctx = wctx[path] | ||
Jun Wu
|
r33438 | flags = fctx.flags() | ||
Martin von Zweigbergk
|
r35401 | mctx = context.memfilectx(repo, ctx_, | ||
Jun Wu
|
r33438 | fctx.path(), fctx.data(), | ||
islink='l' in flags, | ||||
isexec='x' in flags, | ||||
copied=copied.get(path)) | ||||
return mctx | ||||
except KeyError: | ||||
return None | ||||
else: | ||||
ui.note(_('copying changeset %s to %s\n') % (old, base)) | ||||
# Use version of files as in the old cset | ||||
def filectxfn(repo, ctx_, path): | ||||
try: | ||||
return old.filectx(path) | ||||
except KeyError: | ||||
return None | ||||
Saurabh Singh
|
r34087 | # See if we got a message from -m or -l, if not, open the editor with | ||
# the message of the changeset to amend. | ||||
message = logmessage(ui, opts) | ||||
Jun Wu
|
r33438 | editform = mergeeditform(old, 'commit.amend') | ||
editor = getcommiteditor(editform=editform, | ||||
**pycompat.strkwargs(opts)) | ||||
Saurabh Singh
|
r34087 | |||
Jun Wu
|
r33438 | if not message: | ||
editor = getcommiteditor(edit=True, editform=editform) | ||||
message = old.description() | ||||
pureextra = extra.copy() | ||||
extra['amend_source'] = old.hex() | ||||
new = context.memctx(repo, | ||||
parents=[base.node(), old.p2().node()], | ||||
text=message, | ||||
files=files, | ||||
filectxfn=filectxfn, | ||||
user=user, | ||||
date=date, | ||||
extra=extra, | ||||
editor=editor) | ||||
newdesc = changelog.stripdesc(new.description()) | ||||
Saurabh Singh
|
r34087 | if ((not changes) | ||
Jun Wu
|
r33438 | and newdesc == old.description() | ||
and user == old.user() | ||||
and date == old.date() | ||||
and pureextra == old.extra()): | ||||
# nothing changed. continuing here would create a new node | ||||
# anyway because of the amend_source noise. | ||||
Pierre-Yves David
|
r17472 | # | ||
Jun Wu
|
r33438 | # This not what we expect from amend. | ||
return old.node() | ||||
Martin von Zweigbergk
|
r38442 | commitphase = None | ||
Martin von Zweigbergk
|
r34083 | if opts.get('secret'): | ||
Martin von Zweigbergk
|
r38442 | commitphase = phases.secret | ||
newid = repo.commitctx(new) | ||||
Saurabh Singh
|
r34057 | |||
# Reroute the working copy parent to the new changeset | ||||
repo.setparents(newid, nullid) | ||||
mapping = {old.node(): (newid,)} | ||||
Pulkit Goyal
|
r34795 | obsmetadata = None | ||
if opts.get('note'): | ||||
Yuya Nishihara
|
r38729 | obsmetadata = {'note': encoding.fromlocal(opts['note'])} | ||
Sushil khanchi
|
r38853 | backup = ui.configbool('ui', 'history-editing-backup') | ||
Martin von Zweigbergk
|
r38442 | scmutil.cleanupnodes(repo, mapping, 'amend', metadata=obsmetadata, | ||
Sushil khanchi
|
r38853 | fixphase=True, targetphase=commitphase, | ||
backup=backup) | ||||
Saurabh Singh
|
r34057 | |||
Saurabh Singh
|
r34087 | # Fixing the dirstate because localrepo.commitctx does not update | ||
# it. This is rather convenient because we did not need to update | ||||
# the dirstate for all the files in the new commit which commitctx | ||||
# could have done if it updated the dirstate. Now, we can | ||||
# selectively update the dirstate only for the amended files. | ||||
dirstate = repo.dirstate | ||||
# Update the state of the files which were added and | ||||
# and modified in the amend to "normal" in the dirstate. | ||||
normalfiles = set(wctx.modified() + wctx.added()) & filestoamend | ||||
for f in normalfiles: | ||||
dirstate.normal(f) | ||||
# Update the state of files which were removed in the amend | ||||
# to "removed" in the dirstate. | ||||
removedfiles = set(wctx.removed()) & filestoamend | ||||
for f in removedfiles: | ||||
dirstate.drop(f) | ||||
Idan Kamara
|
r16458 | return newid | ||
FUJIWARA Katsunori
|
r21999 | def commiteditor(repo, ctx, subs, editform=''): | ||
Matt Mackall
|
r8407 | if ctx.description(): | ||
return ctx.description() | ||||
Tony Tung
|
r26742 | return commitforceeditor(repo, ctx, subs, editform=editform, | ||
unchangedmessagedetection=True) | ||||
Matt Mackall
|
r8407 | |||
FUJIWARA Katsunori
|
r21999 | def commitforceeditor(repo, ctx, subs, finishdesc=None, extramsg=None, | ||
Tony Tung
|
r26742 | editform='', unchangedmessagedetection=False): | ||
Matt Mackall
|
r21923 | if not extramsg: | ||
extramsg = _("Leave message empty to abort commit.") | ||||
FUJIWARA Katsunori
|
r22012 | |||
forms = [e for e in editform.split('.') if e] | ||||
forms.insert(0, 'changeset') | ||||
Tony Tung
|
r26742 | templatetext = None | ||
FUJIWARA Katsunori
|
r22012 | while forms: | ||
Yuya Nishihara
|
r32878 | ref = '.'.join(forms) | ||
if repo.ui.config('committemplate', ref): | ||||
Tony Tung
|
r26742 | templatetext = committext = buildcommittemplate( | ||
Yuya Nishihara
|
r32878 | repo, ctx, subs, extramsg, ref) | ||
FUJIWARA Katsunori
|
r22012 | break | ||
forms.pop() | ||||
FUJIWARA Katsunori
|
r21924 | else: | ||
committext = buildcommittext(repo, ctx, subs, extramsg) | ||||
FUJIWARA Katsunori
|
r21869 | |||
# run editor in the repository root | ||||
Matt Harbison
|
r39843 | olddir = encoding.getcwd() | ||
FUJIWARA Katsunori
|
r21869 | os.chdir(repo.root) | ||
FUJIWARA Katsunori
|
r26750 | |||
# make in-memory changes visible to external process | ||||
tr = repo.currenttransaction() | ||||
repo.dirstate.write(tr) | ||||
pending = tr and tr.writepending() and repo.root | ||||
Tony Tung
|
r26742 | editortext = repo.ui.edit(committext, ctx.user(), ctx.extra(), | ||
Sean Farley
|
r30836 | editform=editform, pending=pending, | ||
Michael Bolin
|
r34030 | repopath=repo.path, action='commit') | ||
Yuya Nishihara
|
r30724 | text = editortext | ||
Sean Farley
|
r30703 | |||
# strip away anything below this special string (used for editors that want | ||||
# to display the diff) | ||||
Yuya Nishihara
|
r30724 | stripbelow = re.search(_linebelow, text, flags=re.MULTILINE) | ||
Sean Farley
|
r30703 | if stripbelow: | ||
Yuya Nishihara
|
r30724 | text = text[:stripbelow.start()] | ||
text = re.sub("(?m)^HG:.*(\n|$)", "", text) | ||||
FUJIWARA Katsunori
|
r21869 | os.chdir(olddir) | ||
if finishdesc: | ||||
text = finishdesc(text) | ||||
if not text.strip(): | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_("empty commit message")) | ||
Tony Tung
|
r26742 | if unchangedmessagedetection and editortext == templatetext: | ||
raise error.Abort(_("commit message unchanged")) | ||||
FUJIWARA Katsunori
|
r21869 | |||
return text | ||||
Yuya Nishihara
|
r32878 | def buildcommittemplate(repo, ctx, subs, extramsg, ref): | ||
FUJIWARA Katsunori
|
r21924 | ui = repo.ui | ||
Yuya Nishihara
|
r32878 | spec = formatter.templatespec(ref, None, None) | ||
Yuya Nishihara
|
r35972 | t = logcmdutil.changesettemplater(ui, repo, spec) | ||
Yuya Nishihara
|
r32878 | t.t.cache.update((k, templater.unquotestring(v)) | ||
for k, v in repo.ui.configitems('committemplate')) | ||||
FUJIWARA Katsunori
|
r22013 | |||
FUJIWARA Katsunori
|
r21924 | if not extramsg: | ||
extramsg = '' # ensure that extramsg is string | ||||
ui.pushbuffer() | ||||
t.show(ctx, extramsg=extramsg) | ||||
return ui.popbuffer() | ||||
timeless@mozdev.org
|
r26426 | def hgprefix(msg): | ||
return "\n".join(["HG: %s" % a for a in msg.split("\n") if a]) | ||||
FUJIWARA Katsunori
|
r21869 | def buildcommittext(repo, ctx, subs, extramsg): | ||
Matt Mackall
|
r8407 | edittext = [] | ||
Matt Mackall
|
r8707 | modified, added, removed = ctx.modified(), ctx.added(), ctx.removed() | ||
Matt Mackall
|
r8407 | if ctx.description(): | ||
edittext.append(ctx.description()) | ||||
edittext.append("") | ||||
edittext.append("") # Empty line between message and comments. | ||||
timeless@mozdev.org
|
r26426 | edittext.append(hgprefix(_("Enter commit message." | ||
" Lines beginning with 'HG:' are removed."))) | ||||
edittext.append(hgprefix(extramsg)) | ||||
Matt Mackall
|
r8407 | edittext.append("HG: --") | ||
timeless@mozdev.org
|
r26426 | edittext.append(hgprefix(_("user: %s") % ctx.user())) | ||
Matt Mackall
|
r8407 | if ctx.p2(): | ||
timeless@mozdev.org
|
r26426 | edittext.append(hgprefix(_("branch merge"))) | ||
Matt Mackall
|
r8407 | if ctx.branch(): | ||
timeless@mozdev.org
|
r26426 | edittext.append(hgprefix(_("branch '%s'") % ctx.branch())) | ||
Ryan McElroy
|
r24986 | if bookmarks.isactivewdirparent(repo): | ||
timeless@mozdev.org
|
r26426 | edittext.append(hgprefix(_("bookmark '%s'") % repo._activebookmark)) | ||
edittext.extend([hgprefix(_("subrepo %s") % s) for s in subs]) | ||||
edittext.extend([hgprefix(_("added %s") % f) for f in added]) | ||||
edittext.extend([hgprefix(_("changed %s") % f) for f in modified]) | ||||
edittext.extend([hgprefix(_("removed %s") % f) for f in removed]) | ||||
Matt Mackall
|
r8707 | if not added and not modified and not removed: | ||
timeless@mozdev.org
|
r26426 | edittext.append(hgprefix(_("no files changed"))) | ||
Matt Mackall
|
r8407 | edittext.append("") | ||
FUJIWARA Katsunori
|
r21869 | return "\n".join(edittext) | ||
Adrian Buehlmann
|
r14297 | |||
Pierre-Yves David
|
r26324 | def commitstatus(repo, node, branch, bheads=None, opts=None): | ||
if opts is None: | ||||
opts = {} | ||||
Kevin Bullock
|
r18688 | ctx = repo[node] | ||
parents = ctx.parents() | ||||
if (not opts.get('amend') and bheads and node not in bheads and not | ||||
[x for x in parents if x.node() in bheads and x.branch() == branch]): | ||||
repo.ui.status(_('created new head\n')) | ||||
# The message is not printed for initial roots. For the other | ||||
# changesets, it is printed in the following situations: | ||||
# | ||||
# Par column: for the 2 parents with ... | ||||
# N: null or no parent | ||||
# B: parent is on another named branch | ||||
# C: parent is a regular non head changeset | ||||
# H: parent was a branch head of the current branch | ||||
# Msg column: whether we print "created new head" message | ||||
# In the following, it is assumed that there already exists some | ||||
# initial branch heads of the current branch, otherwise nothing is | ||||
# printed anyway. | ||||
# | ||||
# Par Msg Comment | ||||
# N N y additional topo root | ||||
# | ||||
# B N y additional branch root | ||||
# C N y additional topo head | ||||
# H N n usual case | ||||
# | ||||
# B B y weird additional branch root | ||||
# C B y branch merge | ||||
# H B n merge with named branch | ||||
# | ||||
# C C y additional head from merge | ||||
# C H n merge with a head | ||||
# | ||||
# H H n head merge: head count decreases | ||||
if not opts.get('close_branch'): | ||||
for r in parents: | ||||
if r.closesbranch() and r.branch() == branch: | ||||
Gregory Szorc
|
r36424 | repo.ui.status(_('reopening closed branch head %d\n') % r.rev()) | ||
Kevin Bullock
|
r18688 | |||
if repo.ui.debugflag: | ||||
Gregory Szorc
|
r36420 | repo.ui.write(_('committed changeset %d:%s\n') % (ctx.rev(), ctx.hex())) | ||
Kevin Bullock
|
r18688 | elif repo.ui.verbose: | ||
Gregory Szorc
|
r36420 | repo.ui.write(_('committed changeset %d:%s\n') % (ctx.rev(), ctx)) | ||
Kevin Bullock
|
r18688 | |||
Matt Harbison
|
r27943 | def postcommitstatus(repo, pats, opts): | ||
return repo.status(match=scmutil.match(repo[None], pats, opts)) | ||||
Angel Ezquerra
|
r16304 | def revert(ui, repo, ctx, parents, *pats, **opts): | ||
Pulkit Goyal
|
r35148 | opts = pycompat.byteskwargs(opts) | ||
Angel Ezquerra
|
r16304 | parent, p2 = parents | ||
node = ctx.node() | ||||
mf = ctx.manifest() | ||||
Pierre-Yves David
|
r21579 | if node == p2: | ||
parent = p2 | ||||
Angel Ezquerra
|
r16304 | |||
# need all matching names in dirstate and manifest of target rev, | ||||
# so have to walk both. do not print errors if files exist in one | ||||
Yuya Nishihara
|
r24451 | # but not other. in both cases, filesets should be evaluated against | ||
# workingctx to get consistent result (issue4497). this means 'set:**' | ||||
# cannot be used to select missing files from target rev. | ||||
Angel Ezquerra
|
r16304 | |||
Pierre-Yves David
|
r21575 | # `names` is a mapping for all elements in working copy and target revision | ||
# The mapping is in the form: | ||||
Sushil khanchi
|
r39323 | # <abs path in repo> -> (<path from CWD>, <exactly specified by matcher?>) | ||
Angel Ezquerra
|
r16304 | names = {} | ||
Bryan O'Sullivan
|
r27803 | with repo.wlock(): | ||
Pierre-Yves David
|
r21575 | ## filling of the `names` mapping | ||
# walk dirstate to fill `names` | ||||
Angel Ezquerra
|
r16304 | |||
Laurent Charignon
|
r24475 | interactive = opts.get('interactive', False) | ||
Martin von Zweigbergk
|
r24449 | wctx = repo[None] | ||
m = scmutil.match(wctx, pats, opts) | ||||
Matt Mackall
|
r24479 | |||
# we'll need this later | ||||
targetsubs = sorted(s for s in wctx.substate if m(s)) | ||||
Martin von Zweigbergk
|
r24450 | if not m.always(): | ||
Augie Fackler
|
r32362 | matcher = matchmod.badmatch(m, lambda x, y: False) | ||
Martin von Zweigbergk
|
r32382 | for abs in wctx.walk(matcher): | ||
Durham Goode
|
r22573 | names[abs] = m.rel(abs), m.exact(abs) | ||
# walk target manifest to fill `names` | ||||
def badfn(path, msg): | ||||
if path in names: | ||||
return | ||||
if path in ctx.substate: | ||||
Angel Ezquerra
|
r16304 | return | ||
Durham Goode
|
r22573 | path_ = path + '/' | ||
for f in names: | ||||
if f.startswith(path_): | ||||
return | ||||
ui.warn("%s: %s\n" % (m.rel(path), msg)) | ||||
Matt Harbison
|
r25439 | for abs in ctx.walk(matchmod.badmatch(m, badfn)): | ||
Durham Goode
|
r22573 | if abs not in names: | ||
names[abs] = m.rel(abs), m.exact(abs) | ||||
# Find status of all file in `names`. | ||||
m = scmutil.matchfiles(repo, names) | ||||
changes = repo.status(node1=node, match=m, | ||||
unknown=True, ignored=True, clean=True) | ||||
else: | ||||
Martin von Zweigbergk
|
r24450 | changes = repo.status(node1=node, match=m) | ||
Durham Goode
|
r22573 | for kind in changes: | ||
for abs in kind: | ||||
names[abs] = m.rel(abs), m.exact(abs) | ||||
m = scmutil.matchfiles(repo, names) | ||||
Martin von Zweigbergk
|
r23374 | modified = set(changes.modified) | ||
added = set(changes.added) | ||||
removed = set(changes.removed) | ||||
_deleted = set(changes.deleted) | ||||
unknown = set(changes.unknown) | ||||
unknown.update(changes.ignored) | ||||
clean = set(changes.clean) | ||||
Pierre-Yves David
|
r22610 | modadded = set() | ||
Pierre-Yves David
|
r22185 | |||
Mads Kiilerich
|
r24180 | # We need to account for the state of the file in the dirstate, | ||
# even when we revert against something else than parent. This will | ||||
Pierre-Yves David
|
r22155 | # slightly alter the behavior of revert (doing back up or not, delete | ||
Mads Kiilerich
|
r23139 | # or just forget etc). | ||
Pierre-Yves David
|
r22155 | if parent == node: | ||
dsmodified = modified | ||||
dsadded = added | ||||
dsremoved = removed | ||||
Pierre-Yves David
|
r23403 | # store all local modifications, useful later for rename detection | ||
localchanges = dsmodified | dsadded | ||||
Pierre-Yves David
|
r22155 | modified, added, removed = set(), set(), set() | ||
else: | ||||
changes = repo.status(node1=parent, match=m) | ||||
Martin von Zweigbergk
|
r23374 | dsmodified = set(changes.modified) | ||
dsadded = set(changes.added) | ||||
dsremoved = set(changes.removed) | ||||
Pierre-Yves David
|
r23403 | # store all local modifications, useful later for rename detection | ||
localchanges = dsmodified | dsadded | ||||
Angel Ezquerra
|
r16304 | |||
Pierre-Yves David
|
r22188 | # only take into account for removes between wc and target | ||
clean |= dsremoved - removed | ||||
dsremoved &= removed | ||||
# distinct between dirstate remove and other | ||||
removed -= dsremoved | ||||
Pierre-Yves David
|
r22610 | modadded = added & dsmodified | ||
added -= modadded | ||||
Pierre-Yves David
|
r22190 | # tell newly modified apart. | ||
dsmodified &= modified | ||||
Augie Fackler
|
r29103 | dsmodified |= modified & dsadded # dirstate added may need backup | ||
Pierre-Yves David
|
r22190 | modified -= dsmodified | ||
Pierre-Yves David
|
r22488 | # We need to wait for some post-processing to update this set | ||
# before making the distinction. The dirstate will be used for | ||||
# that purpose. | ||||
Pierre-Yves David
|
r22208 | dsadded = added | ||
Pierre-Yves David
|
r22209 | # in case of merge, files that are actually added can be reported as | ||
# modified, we need to post process the result | ||||
if p2 != nullid: | ||||
Durham Goode
|
r31134 | mergeadd = set(dsmodified) | ||
for path in dsmodified: | ||||
if path in mf: | ||||
mergeadd.remove(path) | ||||
Pierre-Yves David
|
r22209 | dsadded |= mergeadd | ||
dsmodified -= mergeadd | ||||
Angel Ezquerra
|
r16304 | |||
Pierre-Yves David
|
r21575 | # if f is a rename, update `names` to also revert the source | ||
Angel Ezquerra
|
r16304 | cwd = repo.getcwd() | ||
Pierre-Yves David
|
r23403 | for f in localchanges: | ||
Angel Ezquerra
|
r16304 | src = repo.dirstate.copied(f) | ||
Pierre-Yves David
|
r22213 | # XXX should we check for rename down to target node? | ||
Angel Ezquerra
|
r16304 | if src and src not in names and repo.dirstate[src] == 'r': | ||
Pierre-Yves David
|
r22154 | dsremoved.add(src) | ||
Angel Ezquerra
|
r16304 | names[src] = (repo.pathto(src, cwd), True) | ||
Martin von Zweigbergk
|
r31157 | # determine the exact nature of the deleted changesets | ||
deladded = set(_deleted) | ||||
for path in _deleted: | ||||
if path in mf: | ||||
deladded.remove(path) | ||||
deleted = _deleted - deladded | ||||
Pierre-Yves David
|
r22488 | # distinguish between file to forget and the other | ||
added = set() | ||||
for abs in dsadded: | ||||
if repo.dirstate[abs] != 'a': | ||||
added.add(abs) | ||||
dsadded -= added | ||||
Pierre-Yves David
|
r22490 | for abs in deladded: | ||
Angel Ezquerra
|
r16304 | if repo.dirstate[abs] == 'a': | ||
Pierre-Yves David
|
r22490 | dsadded.add(abs) | ||
deladded -= dsadded | ||||
Pierre-Yves David
|
r22396 | # For files marked as removed, we check if an unknown file is present at | ||
# the same path. If a such file exists it may need to be backed up. | ||||
# Making the distinction at this stage helps have simpler backup | ||||
# logic. | ||||
removunk = set() | ||||
for abs in removed: | ||||
target = repo.wjoin(abs) | ||||
if os.path.lexists(target): | ||||
removunk.add(abs) | ||||
removed -= removunk | ||||
dsremovunk = set() | ||||
for abs in dsremoved: | ||||
target = repo.wjoin(abs) | ||||
if os.path.lexists(target): | ||||
dsremovunk.add(abs) | ||||
dsremoved -= dsremovunk | ||||
Angel Ezquerra
|
r16304 | |||
Pierre-Yves David
|
r21575 | # action to be actually performed by revert | ||
# (<list of file>, message>) tuple | ||||
Pierre-Yves David
|
r21576 | actions = {'revert': ([], _('reverting %s\n')), | ||
'add': ([], _('adding %s\n')), | ||||
Pierre-Yves David
|
r22489 | 'remove': ([], _('removing %s\n')), | ||
Pierre-Yves David
|
r22491 | 'drop': ([], _('removing %s\n')), | ||
Pierre-Yves David
|
r22489 | 'forget': ([], _('forgetting %s\n')), | ||
Pierre-Yves David
|
r22231 | 'undelete': ([], _('undeleting %s\n')), | ||
Pierre-Yves David
|
r22234 | 'noop': (None, _('no changes needed to %s\n')), | ||
Pierre-Yves David
|
r22236 | 'unknown': (None, _('file not managed: %s\n')), | ||
Pierre-Yves David
|
r22231 | } | ||
Angel Ezquerra
|
r16304 | |||
Pierre-Yves David
|
r22608 | # "constant" that convey the backup strategy. | ||
# All set to `discard` if `no-backup` is set do avoid checking | ||||
# no_backup lower in the code. | ||||
Pierre-Yves David
|
r22609 | # These values are ordered for comparison purposes | ||
skarlage
|
r29498 | backupinteractive = 3 # do backup if interactively modified | ||
Pierre-Yves David
|
r22608 | backup = 2 # unconditionally do backup | ||
Pierre-Yves David
|
r22609 | check = 1 # check if the existing file differs from target | ||
Pierre-Yves David
|
r22608 | discard = 0 # never do backup | ||
if opts.get('no_backup'): | ||||
skarlage
|
r29498 | backupinteractive = backup = check = discard | ||
if interactive: | ||||
dsmodifiedbackup = backupinteractive | ||||
else: | ||||
dsmodifiedbackup = backup | ||||
tobackup = set() | ||||
Angel Ezquerra
|
r16304 | |||
Pierre-Yves David
|
r22611 | backupanddel = actions['remove'] | ||
if not opts.get('no_backup'): | ||||
backupanddel = actions['drop'] | ||||
Angel Ezquerra
|
r16304 | disptable = ( | ||
# dispatch table: | ||||
# file state | ||||
Pierre-Yves David
|
r22153 | # action | ||
# make backup | ||||
Pierre-Yves David
|
r22371 | |||
## Sets that results that will change file on disk | ||||
# Modified compared to target, no local change | ||||
Pierre-Yves David
|
r22372 | (modified, actions['revert'], discard), | ||
Pierre-Yves David
|
r22397 | # Modified compared to target, but local file is deleted | ||
(deleted, actions['revert'], discard), | ||||
Pierre-Yves David
|
r22371 | # Modified compared to target, local change | ||
skarlage
|
r29498 | (dsmodified, actions['revert'], dsmodifiedbackup), | ||
Pierre-Yves David
|
r22371 | # Added since target | ||
Pierre-Yves David
|
r22488 | (added, actions['remove'], discard), | ||
# Added in working directory | ||||
Pierre-Yves David
|
r22489 | (dsadded, actions['forget'], discard), | ||
Pierre-Yves David
|
r22610 | # Added since target, have local modification | ||
Pierre-Yves David
|
r22611 | (modadded, backupanddel, backup), | ||
Pierre-Yves David
|
r22490 | # Added since target but file is missing in working directory | ||
Pierre-Yves David
|
r22491 | (deladded, actions['drop'], discard), | ||
Pierre-Yves David
|
r22371 | # Removed since target, before working copy parent | ||
Pierre-Yves David
|
r22396 | (removed, actions['add'], discard), | ||
# Same as `removed` but an unknown file exists at the same path | ||||
Pierre-Yves David
|
r22609 | (removunk, actions['add'], check), | ||
Pierre-Yves David
|
r22371 | # Removed since targe, marked as such in working copy parent | ||
Pierre-Yves David
|
r22396 | (dsremoved, actions['undelete'], discard), | ||
# Same as `dsremoved` but an unknown file exists at the same path | ||||
Pierre-Yves David
|
r22609 | (dsremovunk, actions['undelete'], check), | ||
Pierre-Yves David
|
r22371 | ## the following sets does not result in any file changes | ||
# File with no modification | ||||
Pierre-Yves David
|
r22372 | (clean, actions['noop'], discard), | ||
Pierre-Yves David
|
r22371 | # Existing file, not tracked anywhere | ||
Pierre-Yves David
|
r22372 | (unknown, actions['unknown'], discard), | ||
Angel Ezquerra
|
r16304 | ) | ||
for abs, (rel, exact) in sorted(names.items()): | ||||
Pierre-Yves David
|
r21575 | # target file to be touch on disk (relative to cwd) | ||
Angel Ezquerra
|
r16304 | target = repo.wjoin(abs) | ||
Pierre-Yves David
|
r21575 | # search the entry in the dispatch table. | ||
Pierre-Yves David
|
r22212 | # if the file is in any of these sets, it was touched in the working | ||
Pierre-Yves David
|
r21575 | # directory parent and we are sure it needs to be reverted. | ||
Pierre-Yves David
|
r22232 | for table, (xlist, msg), dobackup in disptable: | ||
Angel Ezquerra
|
r16304 | if abs not in table: | ||
continue | ||||
Pierre-Yves David
|
r22233 | if xlist is not None: | ||
xlist.append(abs) | ||||
skarlage
|
r29498 | if dobackup: | ||
# If in interactive mode, don't automatically create | ||||
# .orig files (issue4793) | ||||
if dobackup == backupinteractive: | ||||
tobackup.add(abs) | ||||
elif (backup <= dobackup or wctx[abs].cmp(ctx[abs])): | ||||
Siddharth Agarwal
|
r27651 | bakname = scmutil.origpath(ui, repo, rel) | ||
Pierre-Yves David
|
r22609 | ui.note(_('saving current version of %s as %s\n') % | ||
(rel, bakname)) | ||||
if not opts.get('dry_run'): | ||||
Laurent Charignon
|
r24475 | if interactive: | ||
util.copyfile(target, bakname) | ||||
else: | ||||
util.rename(target, bakname) | ||||
Sushil khanchi
|
r39442 | if opts.get('dry_run'): | ||
if ui.verbose or not exact: | ||||
ui.status(msg % rel) | ||||
Pierre-Yves David
|
r22233 | elif exact: | ||
Pierre-Yves David
|
r22234 | ui.warn(msg % rel) | ||
Angel Ezquerra
|
r16304 | break | ||
Pierre-Yves David
|
r21575 | |||
Angel Ezquerra
|
r16304 | if not opts.get('dry_run'): | ||
Durham Goode
|
r23965 | needdata = ('revert', 'add', 'undelete') | ||
Matt Harbison
|
r35941 | oplist = [actions[name][0] for name in needdata] | ||
Matt Harbison
|
r37780 | prefetch = scmutil.prefetchfiles | ||
matchfiles = scmutil.matchfiles | ||||
prefetch(repo, [ctx.rev()], | ||||
matchfiles(repo, | ||||
[f for sublist in oplist for f in sublist])) | ||||
Sushil khanchi
|
r39442 | _performrevert(repo, parents, ctx, names, actions, interactive, | ||
tobackup) | ||||
Bryan O'Sullivan
|
r19129 | |||
Matt Harbison
|
r24134 | if targetsubs: | ||
# Revert the subrepos on the revert list | ||||
for sub in targetsubs: | ||||
Matt Harbison
|
r24463 | try: | ||
Pulkit Goyal
|
r35148 | wctx.sub(sub).revert(ctx.substate[sub], *pats, | ||
**pycompat.strkwargs(opts)) | ||||
Matt Harbison
|
r24463 | except KeyError: | ||
Pierre-Yves David
|
r26587 | raise error.Abort("subrepository '%s' does not exist in %s!" | ||
Matt Harbison
|
r24463 | % (sub, short(ctx.node()))) | ||
Angel Ezquerra
|
r16304 | |||
Sushil khanchi
|
r39442 | def _performrevert(repo, parents, ctx, names, actions, interactive=False, | ||
skarlage
|
r29498 | tobackup=None): | ||
Pierre-Yves David
|
r21576 | """function that actually perform all the actions computed for revert | ||
Pierre-Yves David
|
r20571 | |||
This is an independent function to let extension to plug in and react to | ||||
the imminent revert. | ||||
Mads Kiilerich
|
r21024 | Make sure you have the working directory locked when calling this function. | ||
Pierre-Yves David
|
r20571 | """ | ||
parent, p2 = parents | ||||
node = ctx.node() | ||||
liscju
|
r27985 | excluded_files = [] | ||
Pierre-Yves David
|
r20571 | def checkout(f): | ||
fc = ctx[f] | ||||
FUJIWARA Katsunori
|
r25755 | repo.wwrite(f, fc.data(), fc.flags()) | ||
Pierre-Yves David
|
r20571 | |||
Denis Laxalde
|
r30532 | def doremove(f): | ||
try: | ||||
Kyle Lippincott
|
r38512 | rmdir = repo.ui.configbool('experimental', 'removeemptydirs') | ||
repo.wvfs.unlinkpath(f, rmdir=rmdir) | ||||
Denis Laxalde
|
r30532 | except OSError: | ||
pass | ||||
repo.dirstate.remove(f) | ||||
Sushil khanchi
|
r39442 | def prntstatusmsg(action, f): | ||
rel, exact = names[f] | ||||
if repo.ui.verbose or not exact: | ||||
repo.ui.status(actions[action][1] % rel) | ||||
Yuya Nishihara
|
r33722 | audit_path = pathutil.pathauditor(repo.root, cached=True) | ||
Pierre-Yves David
|
r22489 | for f in actions['forget'][0]: | ||
liscju
|
r27985 | if interactive: | ||
Denis Laxalde
|
r30530 | choice = repo.ui.promptchoice( | ||
Denis Laxalde
|
r30531 | _("forget added file %s (Yn)?$$ &Yes $$ &No") % f) | ||
liscju
|
r27985 | if choice == 0: | ||
Sushil khanchi
|
r39442 | prntstatusmsg('forget', f) | ||
liscju
|
r27985 | repo.dirstate.drop(f) | ||
else: | ||||
Denis Laxalde
|
r36212 | excluded_files.append(f) | ||
liscju
|
r27985 | else: | ||
Sushil khanchi
|
r39442 | prntstatusmsg('forget', f) | ||
liscju
|
r27985 | repo.dirstate.drop(f) | ||
Pierre-Yves David
|
r21576 | for f in actions['remove'][0]: | ||
Pierre-Yves David
|
r20571 | audit_path(f) | ||
Denis Laxalde
|
r30532 | if interactive: | ||
choice = repo.ui.promptchoice( | ||||
_("remove added file %s (Yn)?$$ &Yes $$ &No") % f) | ||||
if choice == 0: | ||||
Sushil khanchi
|
r39442 | prntstatusmsg('remove', f) | ||
Denis Laxalde
|
r30532 | doremove(f) | ||
else: | ||||
Denis Laxalde
|
r36212 | excluded_files.append(f) | ||
Denis Laxalde
|
r30532 | else: | ||
Sushil khanchi
|
r39442 | prntstatusmsg('remove', f) | ||
Denis Laxalde
|
r30532 | doremove(f) | ||
Pierre-Yves David
|
r22491 | for f in actions['drop'][0]: | ||
audit_path(f) | ||||
Sushil khanchi
|
r39442 | prntstatusmsg('drop', f) | ||
Pierre-Yves David
|
r20571 | repo.dirstate.remove(f) | ||
normal = None | ||||
if node == parent: | ||||
# We're reverting to our parent. If possible, we'd like status | ||||
# to report the file as clean. We have to use normallookup for | ||||
# merges to avoid losing information about merged/dirty files. | ||||
if p2 != nullid: | ||||
normal = repo.dirstate.normallookup | ||||
else: | ||||
normal = repo.dirstate.normal | ||||
Laurent Charignon
|
r24359 | |||
Laurent Charignon
|
r25259 | newlyaddedandmodifiedfiles = set() | ||
Laurent Charignon
|
r24359 | if interactive: | ||
# Prompt the user for changes to revert | ||||
Denis Laxalde
|
r36212 | torevert = [f for f in actions['revert'][0] if f not in excluded_files] | ||
m = scmutil.matchfiles(repo, torevert) | ||||
Laurent Charignon
|
r25258 | diffopts = patch.difffeatureopts(repo.ui, whitespace=True) | ||
diffopts.nodates = True | ||||
diffopts.git = True | ||||
Denis Laxalde
|
r31196 | operation = 'discard' | ||
reversehunks = True | ||||
if node != parent: | ||||
Denis Laxalde
|
r34969 | operation = 'apply' | ||
reversehunks = False | ||||
Laurent Charignon
|
r25424 | if reversehunks: | ||
diff = patch.diff(repo, ctx.node(), None, m, opts=diffopts) | ||||
else: | ||||
diff = patch.diff(repo, None, ctx.node(), m, opts=diffopts) | ||||
Laurent Charignon
|
r24359 | originalchunks = patch.parsepatch(diff) | ||
Laurent Charignon
|
r25424 | |||
Laurent Charignon
|
r24359 | try: | ||
Laurent Charignon
|
r25424 | |||
Denis Laxalde
|
r29283 | chunks, opts = recordfilter(repo.ui, originalchunks, | ||
operation=operation) | ||||
Laurent Charignon
|
r25424 | if reversehunks: | ||
chunks = patch.reversehunks(chunks) | ||||
Yuya Nishihara
|
r34252 | except error.PatchError as err: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('error parsing patch: %s') % err) | ||
Laurent Charignon
|
r24359 | |||
Laurent Charignon
|
r25259 | newlyaddedandmodifiedfiles = newandmodified(chunks, originalchunks) | ||
skarlage
|
r29498 | if tobackup is None: | ||
tobackup = set() | ||||
Laurent Charignon
|
r24359 | # Apply changes | ||
timeless
|
r28861 | fp = stringio() | ||
Yuya Nishihara
|
r39451 | # chunks are serialized per file, but files aren't sorted | ||
for f in sorted(set(c.header.filename() for c in chunks if ishunk(c))): | ||||
prntstatusmsg('revert', f) | ||||
Laurent Charignon
|
r24359 | for c in chunks: | ||
Sushil khanchi
|
r39442 | if ishunk(c): | ||
skarlage
|
r29498 | abs = c.header.filename() | ||
Sushil khanchi
|
r39442 | # Create a backup file only if this hunk should be backed up | ||
if c.header.filename() in tobackup: | ||||
target = repo.wjoin(abs) | ||||
bakname = scmutil.origpath(repo.ui, repo, m.rel(abs)) | ||||
util.copyfile(target, bakname) | ||||
tobackup.remove(abs) | ||||
Laurent Charignon
|
r24359 | c.write(fp) | ||
dopatch = fp.tell() | ||||
fp.seek(0) | ||||
if dopatch: | ||||
try: | ||||
patch.internalpatch(repo.ui, repo, fp, 1, eolmode=None) | ||||
Yuya Nishihara
|
r34252 | except error.PatchError as err: | ||
Pulkit Goyal
|
r36736 | raise error.Abort(pycompat.bytestr(err)) | ||
Laurent Charignon
|
r24359 | del fp | ||
else: | ||||
for f in actions['revert'][0]: | ||||
Sushil khanchi
|
r39442 | prntstatusmsg('revert', f) | ||
FUJIWARA Katsunori
|
r25755 | checkout(f) | ||
Laurent Charignon
|
r24359 | if normal: | ||
normal(f) | ||||
Pierre-Yves David
|
r20571 | |||
Pierre-Yves David
|
r21576 | for f in actions['add'][0]: | ||
Laurent Charignon
|
r25259 | # Don't checkout modified files, they are already created by the diff | ||
if f not in newlyaddedandmodifiedfiles: | ||||
Sushil khanchi
|
r39442 | prntstatusmsg('add', f) | ||
Laurent Charignon
|
r25259 | checkout(f) | ||
repo.dirstate.add(f) | ||||
Pierre-Yves David
|
r20571 | |||
normal = repo.dirstate.normallookup | ||||
if node == parent and p2 == nullid: | ||||
normal = repo.dirstate.normal | ||||
Pierre-Yves David
|
r21576 | for f in actions['undelete'][0]: | ||
Sushil khanchi
|
r39442 | prntstatusmsg('undelete', f) | ||
Pierre-Yves David
|
r20571 | checkout(f) | ||
normal(f) | ||||
copied = copies.pathcopies(repo[parent], ctx) | ||||
Pierre-Yves David
|
r21576 | for f in actions['add'][0] + actions['undelete'][0] + actions['revert'][0]: | ||
Pierre-Yves David
|
r20571 | if f in copied: | ||
repo.dirstate.copy(copied[f], f) | ||||
FUJIWARA Katsunori
|
r21051 | # a list of (ui, repo, otherpeer, opts, missing) functions called by | ||
# commands.outgoing. "missing" is "missing" of the result of | ||||
# "findcommonoutgoing()" | ||||
outgoinghooks = util.hooks() | ||||
Bryan O'Sullivan
|
r19211 | # a list of (ui, repo) functions called by commands.summary | ||
summaryhooks = util.hooks() | ||||
Matt Mackall
|
r19474 | |||
FUJIWARA Katsunori
|
r21047 | # a list of (ui, repo, opts, changes) functions called by commands.summary. | ||
# | ||||
# functions should return tuple of booleans below, if 'changes' is None: | ||||
# (whether-incomings-are-needed, whether-outgoings-are-needed) | ||||
# | ||||
# otherwise, 'changes' is a tuple of tuples below: | ||||
# - (sourceurl, sourcebranch, sourcepeer, incoming) | ||||
# - (desturl, destbranch, destpeer, outgoing) | ||||
summaryremotehooks = util.hooks() | ||||
Matt Mackall
|
r19474 | # A list of state files kept by multistep operations like graft. | ||
# Since graft cannot be aborted, it is considered 'clearable' by update. | ||||
# note: bisect is intentionally excluded | ||||
Matt Mackall
|
r19496 | # (state file, clearable, allowcommit, error, hint) | ||
Matt Mackall
|
r19474 | unfinishedstates = [ | ||
Matt Mackall
|
r19496 | ('graftstate', True, False, _('graft in progress'), | ||
Pulkit Goyal
|
r38331 | _("use 'hg graft --continue' or 'hg graft --stop' to stop")), | ||
Matt Mackall
|
r19496 | ('updatestate', True, False, _('last update was interrupted'), | ||
Matt Mackall
|
r19482 | _("use 'hg update' to get a consistent checkout")) | ||
Matt Mackall
|
r19474 | ] | ||
Matt Mackall
|
r19496 | def checkunfinished(repo, commit=False): | ||
Matt Mackall
|
r19474 | '''Look for an unfinished multistep operation, like graft, and abort | ||
if found. It's probably good to check this right before | ||||
bailifchanged(). | ||||
''' | ||||
Matt Harbison
|
r38220 | # Check for non-clearable states first, so things like rebase will take | ||
# precedence over update. | ||||
Matt Mackall
|
r19496 | for f, clearable, allowcommit, msg, hint in unfinishedstates: | ||
Matt Harbison
|
r38220 | if clearable or (commit and allowcommit): | ||
continue | ||||
if repo.vfs.exists(f): | ||||
raise error.Abort(msg, hint=hint) | ||||
for f, clearable, allowcommit, msg, hint in unfinishedstates: | ||||
if not clearable or (commit and allowcommit): | ||||
Matt Mackall
|
r19496 | continue | ||
Matt Mackall
|
r19474 | if repo.vfs.exists(f): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(msg, hint=hint) | ||
Matt Mackall
|
r19474 | |||
def clearunfinished(repo): | ||||
'''Check for unfinished operations (as above), and clear the ones | ||||
that are clearable. | ||||
''' | ||||
Matt Mackall
|
r19496 | for f, clearable, allowcommit, msg, hint in unfinishedstates: | ||
Matt Mackall
|
r19474 | if not clearable and repo.vfs.exists(f): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(msg, hint=hint) | ||
Matt Mackall
|
r19496 | for f, clearable, allowcommit, msg, hint in unfinishedstates: | ||
Matt Mackall
|
r19474 | if clearable and repo.vfs.exists(f): | ||
Pierre-Yves David
|
r31320 | util.unlink(repo.vfs.join(f)) | ||
FUJIWARA Katsunori
|
r24991 | |||
timeless
|
r27624 | afterresolvedstates = [ | ||
timeless
|
r27625 | ('graftstate', | ||
_('hg graft --continue')), | ||||
timeless
|
r27624 | ] | ||
timeless
|
r28120 | def howtocontinue(repo): | ||
'''Check for an unfinished operation and return the command to finish | ||||
it. | ||||
Mads Kiilerich
|
r30332 | afterresolvedstates tuples define a .hg/{file} and the corresponding | ||
timeless
|
r28120 | command needed to finish it. | ||
Returns a (msg, warning) tuple. 'msg' is a string and 'warning' is | ||||
a boolean. | ||||
''' | ||||
contmsg = _("continue: %s") | ||||
timeless
|
r27624 | for f, msg in afterresolvedstates: | ||
if repo.vfs.exists(f): | ||||
timeless
|
r28120 | return contmsg % msg, True | ||
Matt Harbison
|
r33362 | if repo[None].dirty(missing=True, merge=False, branch=False): | ||
timeless
|
r28120 | return contmsg % _("hg commit"), False | ||
return None, None | ||||
def checkafterresolved(repo): | ||||
'''Inform the user about the next action after completing hg resolve | ||||
If there's a matching afterresolvedstates, howtocontinue will yield | ||||
repo.ui.warn as the reporter. | ||||
Otherwise, it will yield repo.ui.note. | ||||
''' | ||||
msg, warning = howtocontinue(repo) | ||||
if msg is not None: | ||||
if warning: | ||||
repo.ui.warn("%s\n" % msg) | ||||
else: | ||||
repo.ui.note("%s\n" % msg) | ||||
def wrongtooltocontinue(repo, task): | ||||
'''Raise an abort suggesting how to properly continue if there is an | ||||
active task. | ||||
Uses howtocontinue() to find the active task. | ||||
If there's no task (repo.ui.note for 'hg commit'), it does not offer | ||||
a hint. | ||||
''' | ||||
after = howtocontinue(repo) | ||||
hint = None | ||||
if after[1]: | ||||
hint = after[0] | ||||
raise error.Abort(_('no %s in progress') % task, hint=hint) | ||||