##// END OF EJS Templates
with: use context manager for wlock in shelve createcmd
with: use context manager for wlock in shelve createcmd

File last commit:

r27833:321759df default
r27834:476f5305 default
Show More
histedit.py
1528 lines | 53.6 KiB | text/x-python | PythonLexer
Augie Fackler
histedit: new extension for interactive history editing
r17064 # histedit.py - interactive history editing for mercurial
#
# Copyright 2009 Augie Fackler <raf@durin42.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
Augie Fackler
histedit: add extension docstring from external README...
r17131 """interactive history editing
With this extension installed, Mercurial gains one new command: histedit. Usage
is as follows, assuming the following history::
@ 3[tip] 7c2fd3b9020c 2009-04-27 18:04 -0500 durin42
| Add delta
|
o 2 030b686bedc4 2009-04-27 18:04 -0500 durin42
| Add gamma
|
o 1 c561b4e977df 2009-04-27 18:04 -0500 durin42
| Add beta
|
o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
Add alpha
If you were to run ``hg histedit c561b4e977df``, you would see the following
file open in your editor::
pick c561b4e977df Add beta
pick 030b686bedc4 Add gamma
pick 7c2fd3b9020c Add delta
FUJIWARA Katsunori
histedit: correct changeset IDs in online help...
r18322 # Edit history between c561b4e977df and 7c2fd3b9020c
Augie Fackler
histedit: add extension docstring from external README...
r17131 #
Adrian Zgorzałek
histedit: clarify description of fold command...
r20503 # Commits are listed from least to most recent
#
Augie Fackler
histedit: add extension docstring from external README...
r17131 # Commands:
# p, pick = use commit
# e, edit = use commit, but stop for amending
Matt Mackall
histedit: shorten new fold message...
r20511 # f, fold = use commit, but combine it with the one above
Mike Edgar
histedit: add "roll" command to fold commit data and drop message (issue4256)...
r22152 # r, roll = like fold, but discard this commit's description
Augie Fackler
histedit: add extension docstring from external README...
r17131 # d, drop = remove commit from history
timeless@mozdev.org
histedit: improve discoverability of edit commit message
r26100 # m, mess = edit commit message without changing commit content
Augie Fackler
histedit: add extension docstring from external README...
r17131 #
In this file, lines beginning with ``#`` are ignored. You must specify a rule
for each revision in your history. For example, if you had meant to add gamma
before beta, and then wanted to add delta in the same revision as beta, you
would reorganize the file to look like this::
pick 030b686bedc4 Add gamma
pick c561b4e977df Add beta
fold 7c2fd3b9020c Add delta
FUJIWARA Katsunori
histedit: correct changeset IDs in online help...
r18322 # Edit history between c561b4e977df and 7c2fd3b9020c
Augie Fackler
histedit: add extension docstring from external README...
r17131 #
Adrian Zgorzałek
histedit: clarify description of fold command...
r20503 # Commits are listed from least to most recent
#
Augie Fackler
histedit: add extension docstring from external README...
r17131 # Commands:
# p, pick = use commit
# e, edit = use commit, but stop for amending
Matt Mackall
histedit: shorten new fold message...
r20511 # f, fold = use commit, but combine it with the one above
Mike Edgar
histedit: add "roll" command to fold commit data and drop message (issue4256)...
r22152 # r, roll = like fold, but discard this commit's description
Augie Fackler
histedit: add extension docstring from external README...
r17131 # d, drop = remove commit from history
timeless@mozdev.org
histedit: improve discoverability of edit commit message
r26100 # m, mess = edit commit message without changing commit content
Augie Fackler
histedit: add extension docstring from external README...
r17131 #
At which point you close the editor and ``histedit`` starts working. When you
specify a ``fold`` operation, ``histedit`` will open an editor when it folds
those revisions together, offering you a chance to clean up the commit message::
Add beta
***
Add delta
Augie Fackler
histedit: new extension for interactive history editing
r17064
Augie Fackler
histedit: add extension docstring from external README...
r17131 Edit the commit message to your liking, then close the editor. For
this example, let's assume that the commit message was changed to
``Add beta and delta.`` After histedit has run and had a chance to
remove any old or temporary revisions it needed, the history looks
like this::
@ 2[tip] 989b4d060121 2009-04-27 18:04 -0500 durin42
| Add beta and delta.
|
o 1 081603921c3f 2009-04-27 18:04 -0500 durin42
| Add gamma
|
o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
Add alpha
Note that ``histedit`` does *not* remove any revisions (even its own temporary
ones) until after it has completed all the editing operations, so it will
probably perform several strip operations when it's done. For the above example,
it had to run strip twice. Strip can be slow depending on a variety of factors,
so you might need to be a little patient. You can choose to keep the original
revisions by passing the ``--keep`` flag.
The ``edit`` operation will drop you back to a command prompt,
allowing you to edit files freely, or even use ``hg record`` to commit
some changes as a separate commit. When you're done, any remaining
uncommitted changes will be committed as well. When done, run ``hg
histedit --continue`` to finish this step. You'll be prompted for a
new commit message, but the default commit message will be the
original message for the ``edit`` ed revision.
The ``message`` operation will give you a chance to revise a commit
message without changing the contents. It's a shortcut for doing
``edit`` immediately followed by `hg histedit --continue``.
If ``histedit`` encounters a conflict when moving a revision (while
handling ``pick`` or ``fold``), it'll stop in a similar manner to
``edit`` with the difference that it won't prompt you for a commit
message when done. If you decide at this point that you don't like how
much work it will be to rearrange history, or that you made a mistake,
you can use ``hg histedit --abort`` to abandon the new changes you
have made and return to the state before you attempted to edit your
history.
FUJIWARA Katsunori
histedit: correct the number of added revisions in online help...
r18323 If we clone the histedit-ed example repository above and add four more
changes, such that we have the following history::
Augie Fackler
histedit: add extension docstring from external README...
r17131
@ 6[tip] 038383181893 2009-04-27 18:04 -0500 stefan
| Add theta
|
o 5 140988835471 2009-04-27 18:04 -0500 stefan
| Add eta
|
o 4 122930637314 2009-04-27 18:04 -0500 stefan
| Add zeta
|
o 3 836302820282 2009-04-27 18:04 -0500 stefan
| Add epsilon
|
o 2 989b4d060121 2009-04-27 18:04 -0500 durin42
| Add beta and delta.
|
o 1 081603921c3f 2009-04-27 18:04 -0500 durin42
| Add gamma
|
o 0 d8d2fcd0e319 2009-04-27 18:04 -0500 durin42
Add alpha
If you run ``hg histedit --outgoing`` on the clone then it is the same
as running ``hg histedit 836302820282``. If you need plan to push to a
repository that Mercurial does not detect to be related to the source
repo, you can add a ``--force`` option.
Mateusz Kwapich
histedit: add a config allowing changing histedit rule line length limit...
r24199
Mateusz Kwapich
histedit: delete to drop...
r27414 Config
------
Mateusz Kwapich
histedit: add a config allowing changing histedit rule line length limit...
r24199 Histedit rule lines are truncated to 80 characters by default. You
timeless@mozdev.org
histedit: fix English (en-US)
r26171 can customize this behavior by setting a different length in your
FUJIWARA Katsunori
histedit: fix reST syntax problem of example code in help document...
r24869 configuration file::
Mateusz Kwapich
histedit: add a config allowing changing histedit rule line length limit...
r24199
FUJIWARA Katsunori
histedit: fix reST syntax problem of example code in help document...
r24869 [histedit]
linelen = 120 # truncate rule lines at 120 characters
Gregory Szorc
histedit: pick an appropriate base changeset by default (BC)...
r27262
``hg histedit`` attempts to automatically choose an appropriate base
revision to use. To change which base revision is used, define a
revset in your configuration file::
[histedit]
defaultrev = only(.) & draft()
Mateusz Kwapich
histedit: delete to drop...
r27414
By default each edited revision needs to be present in histedit commands.
To remove revision you need to use ``drop`` operation. You can configure
the drop to be implicit for missing commits by adding:
[histedit]
dropmissing = True
Augie Fackler
histedit: new extension for interactive history editing
r17064 """
Augie Fackler
histedit: add extension docstring from external README...
r17131
Bryan O'Sullivan
histedit: don't bother with cPickle, demand-load pickle...
r27534 import pickle
Siddharth Agarwal
histedit: abort gracefully on --continue/--abort with no state...
r22368 import errno
Augie Fackler
histedit: new extension for interactive history editing
r17064 import os
Pierre-Yves David
histedit: allow "-" as a command file...
r19018 import sys
Augie Fackler
histedit: new extension for interactive history editing
r17064
Pierre-Yves David
histedit: properly apply bundle2 backups...
r26798 from mercurial import bundle2
Augie Fackler
histedit: new extension for interactive history editing
r17064 from mercurial import cmdutil
from mercurial import discovery
from mercurial import error
Pierre-Yves David
histedit: fold in memory...
r17644 from mercurial import copies
from mercurial import context
Gregory Szorc
histedit: pick an appropriate base changeset by default (BC)...
r27262 from mercurial import destutil
Durham Goode
histedit: store backup file before histedit...
r24757 from mercurial import exchange
Mateusz Kwapich
histedit: don't allow to strip nodes which are necessary to continue histedit...
r24111 from mercurial import extensions
Augie Fackler
histedit: new extension for interactive history editing
r17064 from mercurial import hg
from mercurial import node
from mercurial import repair
Augie Fackler
histedit: respect revsetalias entries (issue4311)...
r21950 from mercurial import scmutil
Augie Fackler
histedit: new extension for interactive history editing
r17064 from mercurial import util
Pierre-Yves David
histedit: add obsolete support...
r17759 from mercurial import obsolete
Pierre-Yves David
histedit: replaces patching logic by merges...
r17647 from mercurial import merge as mergemod
Siddharth Agarwal
histedit: hold wlock and lock while in progress...
r20071 from mercurial.lock import release
Augie Fackler
histedit: new extension for interactive history editing
r17064 from mercurial.i18n import _
Adrian Buehlmann
histedit: use cmdutil.command decorator
r17147 cmdtable = {}
command = cmdutil.command(cmdtable)
Augie Fackler
histedit: constant-ify the constraints list...
r27086 class _constraints(object):
# aborts if there are multiple rules for one node
noduplicates = 'noduplicates'
# abort if the node does belong to edited stack
forceother = 'forceother'
# abort if the node doesn't belong to edited stack
noother = 'noother'
@classmethod
def known(cls):
return set([v for k, v in cls.__dict__.items() if k[0] != '_'])
Augie Fackler
extensions: document that `testedwith = 'internal'` is special...
r25186 # Note for extension authors: ONLY specify testedwith = 'internal' for
# extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
# be specifying the version(s) of Mercurial they are tested with, or
# leave the attribute unspecified.
Augie Fackler
histedit: mark as a first party extension
r17069 testedwith = 'internal'
Augie Fackler
histedit: new extension for interactive history editing
r17064
timeless
histedit: replace @addhisteditaction with @action...
r27675 actiontable = {}
primaryactions = set()
secondaryactions = set()
tertiaryactions = set()
internalactions = set()
timeless
histedit: replace editcomment with a function
r27673 def geteditcomment(first, last):
""" construct the editor comment
The comment includes::
- an intro
timeless
histedit: prefer edit commit, edit message, use commit...
r27674 - sorted primary commands
- sorted short commands
timeless
histedit: replace @addhisteditaction with @action...
r27675 - sorted long commands
timeless
histedit: replace editcomment with a function
r27673
Commands are only included once.
"""
intro = _("""Edit history between %s and %s
Commits are listed from least to most recent
timeless
histedit: replace @addhisteditaction with @action...
r27675 Commands:
FUJIWARA Katsunori
histedit: make comment part of the file describing rules as translatable...
r17315 """)
timeless
histedit: replace @addhisteditaction with @action...
r27675 actions = []
def addverb(v):
a = actiontable[v]
lines = a.message.split("\n")
if len(a.verbs):
v = ', '.join(sorted(a.verbs, key=lambda v: len(v)))
actions.append(" %s = %s" % (v, lines[0]))
actions.extend([' %s' for l in lines[1:]])
for v in (
sorted(primaryactions) +
sorted(secondaryactions) +
sorted(tertiaryactions)
):
addverb(v)
actions.append('')
Augie Fackler
histedit: new extension for interactive history editing
r17064
timeless
histedit: replace editcomment with a function
r27673 return ''.join(['# %s\n' % l if l else '#\n'
timeless
histedit: replace @addhisteditaction with @action...
r27675 for l in ((intro % (first, last)).split('\n')) + actions])
timeless
histedit: replace editcomment with a function
r27673
David Soria Parra
histedit: add histedit state class...
r22976 class histeditstate(object):
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 def __init__(self, repo, parentctxnode=None, actions=None, keep=None,
David Soria Parra
histedit: move locks into state...
r22984 topmost=None, replacements=None, lock=None, wlock=None):
David Soria Parra
histedit: add histedit state class...
r22976 self.repo = repo
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 self.actions = actions
David Soria Parra
histedit: add histedit state class...
r22976 self.keep = keep
self.topmost = topmost
Mateusz Kwapich
histedit: switch state to store node instead of ctx...
r24112 self.parentctxnode = parentctxnode
David Soria Parra
histedit: move locks into state...
r22984 self.lock = lock
self.wlock = wlock
Durham Goode
histedit: store backup file before histedit...
r24757 self.backupfile = None
David Soria Parra
histedit: add histedit state class...
r22976 if replacements is None:
self.replacements = []
else:
self.replacements = replacements
David Soria Parra
histedit: read state from histeditstate...
r22983 def read(self):
Augie Fackler
histedit: update docstring on histeditstate.read()...
r22986 """Load histedit state from disk and set fields appropriately."""
David Soria Parra
histedit: read state from histeditstate...
r22983 try:
Bryan O'Sullivan
histedit: only use pickle if not using the modern save format...
r27527 state = self.repo.vfs.read('histedit-state')
Gregory Szorc
global: mass rewrite to use modern exception syntax...
r25660 except IOError as err:
David Soria Parra
histedit: read state from histeditstate...
r22983 if err.errno != errno.ENOENT:
raise
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('no histedit in progress'))
David Soria Parra
histedit: read state from histeditstate...
r22983
Bryan O'Sullivan
histedit: only use pickle if not using the modern save format...
r27527 if state.startswith('v1\n'):
data = self._load()
parentctxnode, rules, keep, topmost, replacements, backupfile = data
else:
data = pickle.loads(state)
Durham Goode
histedit: replace pickle with custom serialization...
r24756 parentctxnode, rules, keep, topmost, replacements = data
Durham Goode
histedit: store backup file before histedit...
r24757 backupfile = None
David Soria Parra
histedit: read state from histeditstate...
r22983
Mateusz Kwapich
histedit: switch state to store node instead of ctx...
r24112 self.parentctxnode = parentctxnode
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 rules = "\n".join(["%s %s" % (verb, rest) for [verb, rest] in rules])
actions = parserules(rules, self)
self.actions = actions
David Soria Parra
histedit: read state from histeditstate...
r22983 self.keep = keep
self.topmost = topmost
self.replacements = replacements
Durham Goode
histedit: store backup file before histedit...
r24757 self.backupfile = backupfile
David Soria Parra
histedit: read state from histeditstate...
r22983
David Soria Parra
histedit: add histedit state class...
r22976 def write(self):
fp = self.repo.vfs('histedit-state', 'w')
Durham Goode
histedit: replace pickle with custom serialization...
r24756 fp.write('v1\n')
fp.write('%s\n' % node.hex(self.parentctxnode))
fp.write('%s\n' % node.hex(self.topmost))
fp.write('%s\n' % self.keep)
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 fp.write('%d\n' % len(self.actions))
for action in self.actions:
fp.write('%s\n' % action.tostate())
Durham Goode
histedit: replace pickle with custom serialization...
r24756 fp.write('%d\n' % len(self.replacements))
for replacement in self.replacements:
fp.write('%s%s\n' % (node.hex(replacement[0]), ''.join(node.hex(r)
for r in replacement[1])))
Durham Goode
histedit: fix serializing of None backupfile...
r24958 backupfile = self.backupfile
if not backupfile:
backupfile = ''
fp.write('%s\n' % backupfile)
David Soria Parra
histedit: add histedit state class...
r22976 fp.close()
Durham Goode
histedit: replace pickle with custom serialization...
r24756 def _load(self):
fp = self.repo.vfs('histedit-state', 'r')
lines = [l[:-1] for l in fp.readlines()]
index = 0
lines[index] # version number
index += 1
parentctxnode = node.bin(lines[index])
index += 1
topmost = node.bin(lines[index])
index += 1
keep = lines[index] == 'True'
index += 1
# Rules
rules = []
rulelen = int(lines[index])
index += 1
for i in xrange(rulelen):
Durham Goode
histedit: change state format to allow non-hash lines...
r24810 ruleaction = lines[index]
index += 1
Durham Goode
histedit: replace pickle with custom serialization...
r24756 rule = lines[index]
index += 1
Durham Goode
histedit: change state format to allow non-hash lines...
r24810 rules.append((ruleaction, rule))
Durham Goode
histedit: replace pickle with custom serialization...
r24756
# Replacements
replacements = []
replacementlen = int(lines[index])
index += 1
for i in xrange(replacementlen):
replacement = lines[index]
original = node.bin(replacement[:40])
succ = [node.bin(replacement[i:i + 40]) for i in
range(40, len(replacement), 40)]
replacements.append((original, succ))
index += 1
Durham Goode
histedit: store backup file before histedit...
r24757 backupfile = lines[index]
index += 1
Durham Goode
histedit: replace pickle with custom serialization...
r24756 fp.close()
Durham Goode
histedit: store backup file before histedit...
r24757 return parentctxnode, rules, keep, topmost, replacements, backupfile
Durham Goode
histedit: replace pickle with custom serialization...
r24756
David Soria Parra
histedit: add clear method to remove state...
r22978 def clear(self):
Christian Delahousse
histedit: check presence of statefile before deleting it...
r26583 if self.inprogress():
self.repo.vfs.unlink('histedit-state')
David Soria Parra
histedit: add clear method to remove state...
r22978
Christian Delahousse
histedit: add inprogress method to state class...
r26582 def inprogress(self):
return self.repo.vfs.exists('histedit-state')
Mateusz Kwapich
histedit: add actions property to histedit state...
r27200
Durham Goode
histedit: add a new histeditaction class...
r24765 class histeditaction(object):
def __init__(self, state, node):
self.state = state
self.repo = state.repo
self.node = node
@classmethod
def fromrule(cls, state, rule):
"""Parses the given rule, returning an instance of the histeditaction.
"""
rulehash = rule.strip().split(' ', 1)[0]
timeless
histedit: handle exceptions from node.bin in fromrule
r27547 try:
rev = node.bin(rulehash)
except TypeError:
raise error.ParseError("invalid changeset %s" % rulehash)
return cls(state, rev)
Mateusz Kwapich
histedit: add verify() to histeditaction...
r27202
timeless
histedit: pass previous action to verify
r27541 def verify(self, prev):
Mateusz Kwapich
histedit: add verify() to histeditaction...
r27202 """ Verifies semantic correctness of the rule"""
repo = self.repo
ha = node.hex(self.node)
Durham Goode
histedit: add a new histeditaction class...
r24765 try:
Mateusz Kwapich
histedit: add verify() to histeditaction...
r27202 self.node = repo[ha].node()
Durham Goode
histedit: add a new histeditaction class...
r24765 except error.RepoError:
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(_('unknown changeset %s listed')
Mateusz Kwapich
histedit: add verify() to histeditaction...
r27202 % ha[:12])
Durham Goode
histedit: add a new histeditaction class...
r24765
Mateusz Kwapich
histedit: add torule method to histedit action objects...
r27203 def torule(self):
"""build a histedit rule line for an action
by default lines are in the form:
<hash> <rev> <summary>
"""
ctx = self.repo[self.node]
summary = ''
if ctx.description():
summary = ctx.description().splitlines()[0]
line = '%s %s %d %s' % (self.verb, ctx, ctx.rev(), summary)
# trim to 75 columns by default so it's not stupidly wide in my editor
# (the 5 more are left for verb)
maxlen = self.repo.ui.configint('histedit', 'linelen', default=80)
maxlen = max(maxlen, 22) # avoid truncating hash
return util.ellipsis(line, maxlen)
Mateusz Kwapich
histedit: add tostate method to histedit action...
r27206 def tostate(self):
"""Print an action in format used by histedit state files
(the first line is a verb, the remainder is the second)
"""
return "%s\n%s" % (self.verb, node.hex(self.node))
Mateusz Kwapich
histedit: make verification configurable...
r27082 def constraints(self):
"""Return a set of constrains that this action should be verified for
"""
Augie Fackler
histedit: constant-ify the constraints list...
r27086 return set([_constraints.noduplicates, _constraints.noother])
Mateusz Kwapich
histedit: make verification configurable...
r27082
def nodetoverify(self):
"""Returns a node associated with the action that will be used for
verification purposes.
If the action doesn't correspond to node it should return None
"""
return self.node
Durham Goode
histedit: add a new histeditaction class...
r24765 def run(self):
"""Runs the action. The default behavior is simply apply the action's
rulectx onto the current parentctx."""
self.applychange()
self.continuedirty()
return self.continueclean()
def applychange(self):
"""Applies the changes from this action's rulectx onto the current
parentctx, but does not commit them."""
repo = self.repo
rulectx = repo[self.node]
timeless
histedit: omit useless message from update (histeditaction)...
r27405 hg.update(repo, self.state.parentctxnode, quietempty=True)
Durham Goode
histedit: add a new histeditaction class...
r24765 stats = applychanges(repo.ui, repo, rulectx, {})
if stats and stats[3] > 0:
timeless
histedit: list action when intervention is required
r27629 raise error.InterventionRequired(
_('Fix up the change (%s %s)') %
(self.verb, node.short(self.node)),
hint=_('hg histedit --continue to resume'))
Durham Goode
histedit: add a new histeditaction class...
r24765
def continuedirty(self):
"""Continues the action when changes have been applied to the working
copy. The default behavior is to commit the dirty changes."""
repo = self.repo
rulectx = repo[self.node]
editor = self.commiteditor()
commit = commitfuncfor(repo, rulectx)
commit(text=rulectx.description(), user=rulectx.user(),
date=rulectx.date(), extra=rulectx.extra(), editor=editor)
def commiteditor(self):
"""The editor to be used to edit the commit message."""
return False
def continueclean(self):
"""Continues the action when the working copy is clean. The default
behavior is to accept the current commit as the new version of the
rulectx."""
ctx = self.repo['.']
if ctx.node() == self.state.parentctxnode:
self.repo.ui.warn(_('%s: empty changeset\n') %
node.short(self.node))
return ctx, [(self.node, tuple())]
if ctx.node() == self.node:
# Nothing changed
return ctx, []
return ctx, [(self.node, (ctx.node(),))]
Pierre-Yves David
histedit: factor most commit creation in a function...
r18436 def commitfuncfor(repo, src):
"""Build a commit function for the replacement of <src>
Mads Kiilerich
spelling: fix some minor issues found by spell checker
r18644 This function ensure we apply the same treatment to all changesets.
Pierre-Yves David
histedit: factor most commit creation in a function...
r18436
Pierre-Yves David
histedit: record histedit source (issue3681)...
r18437 - Add a 'histedit_source' entry in extra.
Pierre-Yves David
histedit: factor most commit creation in a function...
r18436
Augie Fackler
histedit: copyedit docstring wording problem I noticed while here
r25450 Note that fold has its own separated logic because its handling is a bit
Pierre-Yves David
histedit: factor most commit creation in a function...
r18436 different and not easily factored out of the fold method.
"""
Pierre-Yves David
histedit: proper phase conservation (issue3724)...
r18440 phasemin = src.phase()
Pierre-Yves David
histedit: factor most commit creation in a function...
r18436 def commitfunc(**kwargs):
Pierre-Yves David
histedit: proper phase conservation (issue3724)...
r18440 phasebackup = repo.ui.backupconfig('phases', 'new-commit')
try:
Mads Kiilerich
config: set a 'source' in most cases where config don't come from file but code...
r20790 repo.ui.setconfig('phases', 'new-commit', phasemin,
'histedit')
Pierre-Yves David
histedit: proper phase conservation (issue3724)...
r18440 extra = kwargs.get('extra', {}).copy()
extra['histedit_source'] = src.hex()
kwargs['extra'] = extra
return repo.commit(**kwargs)
finally:
repo.ui.restoreconfig(phasebackup)
Pierre-Yves David
histedit: factor most commit creation in a function...
r18436 return commitfunc
Pierre-Yves David
histedit: replaces patching logic by merges...
r17647 def applychanges(ui, repo, ctx, opts):
"""Merge changeset from ctx (only) in the current working directory"""
wcpar = repo.dirstate.parents()[0]
if ctx.p1().node() == wcpar:
timeless@mozdev.org
histedit: fix English (en-US)
r26171 # edits are "in place" we do not need to make any merge,
timeless
histedit: fix comment in applychanges
r27603 # just applies changes on parent for editing
Pierre-Yves David
histedit: replaces patching logic by merges...
r17647 cmdutil.revert(ui, repo, ctx, (wcpar, node.nullid), all=True)
stats = None
else:
try:
# ui.forcemerge is an internal variable, do not document
Mads Kiilerich
config: set a 'source' in most cases where config don't come from file but code...
r20790 repo.ui.setconfig('ui', 'forcemerge', opts.get('tool', ''),
'histedit')
Matt Mackall
histedit: use merge.graft
r22904 stats = mergemod.graft(repo, ctx, ctx.p1(), ['local', 'histedit'])
Pierre-Yves David
histedit: replaces patching logic by merges...
r17647 finally:
Mads Kiilerich
config: set a 'source' in most cases where config don't come from file but code...
r20790 repo.ui.setconfig('ui', 'forcemerge', '', 'histedit')
Pierre-Yves David
histedit: replaces patching logic by merges...
r17647 return stats
Leah Xue
histedit: factored out diff/patch logic...
r17407
Durham Goode
histedit: fix rollup prompting for a commit message (issue4606)...
r24828 def collapse(repo, first, last, commitopts, skipprompt=False):
Pierre-Yves David
histedit: fold in memory...
r17644 """collapse the set of revisions from first to last as new one.
Expected commit options are:
- message
- date
- username
Mads Kiilerich
spelling: fix minor spell checker issues
r17738 Commit message is edited in all cases.
Pierre-Yves David
histedit: fold in memory...
r17644
This function works in memory."""
ctxs = list(repo.set('%d::%d', first, last))
if not ctxs:
return None
Augie Fackler
histedit: abort rather than edit a public changeset (issue4704)...
r25452 for c in ctxs:
if not c.mutable():
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(
Augie Fackler
histedit: abort rather than edit a public changeset (issue4704)...
r25452 _("cannot fold into public change %s") % node.short(c.node()))
Pierre-Yves David
histedit: fold in memory...
r17644 base = first.parents()[0]
# commit a new version of the old changeset, including the update
# collect all files which might be affected
files = set()
for ctx in ctxs:
files.update(ctx.files())
# Recompute copies (avoid recording a -> b -> a)
Martin Geisler
histedit: use base for computing renames when folding (issue3729)...
r19392 copied = copies.pathcopies(base, last)
Pierre-Yves David
histedit: fold in memory...
r17644
# prune files which were reverted by the updates
def samefile(f):
if f in last.manifest():
a = last.filectx(f)
if f in base.manifest():
b = base.filectx(f)
return (a.data() == b.data()
and a.flags() == b.flags())
else:
return False
else:
return f not in base.manifest()
files = [f for f in files if not samefile(f)]
# commit version of these files as defined by head
headmf = last.manifest()
def filectxfn(repo, ctx, path):
if path in headmf:
fctx = last[path]
flags = fctx.flags()
Sean Farley
memfilectx: call super.__init__ instead of duplicating code...
r21689 mctx = context.memfilectx(repo,
fctx.path(), fctx.data(),
Pierre-Yves David
histedit: fold in memory...
r17644 islink='l' in flags,
isexec='x' in flags,
copied=copied.get(path))
return mctx
Mads Kiilerich
convert: use None value for missing files instead of overloading IOError...
r22296 return None
Pierre-Yves David
histedit: fold in memory...
r17644
if commitopts.get('message'):
message = commitopts['message']
else:
message = first.description()
user = commitopts.get('user')
date = commitopts.get('date')
Pierre-Yves David
histedit: record histedit source (issue3681)...
r18437 extra = commitopts.get('extra')
Pierre-Yves David
histedit: fold in memory...
r17644
parents = (first.p1().node(), first.p2().node())
Mike Edgar
histedit: add "roll" command to fold commit data and drop message (issue4256)...
r22152 editor = None
Durham Goode
histedit: fix rollup prompting for a commit message (issue4606)...
r24828 if not skipprompt:
Mike Edgar
histedit: add "roll" command to fold commit data and drop message (issue4256)...
r22152 editor = cmdutil.getcommiteditor(edit=True, editform='histedit.fold')
Pierre-Yves David
histedit: fold in memory...
r17644 new = context.memctx(repo,
parents=parents,
text=message,
files=files,
filectxfn=filectxfn,
user=user,
date=date,
FUJIWARA Katsunori
histedit: pass "editor" argument to "memctx.__init__()" for "collapse" command...
r21239 extra=extra,
FUJIWARA Katsunori
histedit: pass 'editform' argument to 'cmdutil.getcommiteditor'...
r22002 editor=editor)
Pierre-Yves David
histedit: fold in memory...
r17644 return repo.commitctx(new)
liscju
histedit: extracts _isdirtywc function...
r26981 def _isdirtywc(repo):
return repo[None].dirty(missing=True)
Mateusz Kwapich
histedit: add abortdirty function...
r27084 def abortdirty():
raise error.Abort(_('working copy has pending changes'),
hint=_('amend, commit, or revert them and run histedit '
'--continue, or abort with histedit --abort'))
timeless
histedit: replace @addhisteditaction with @action...
r27675 def action(verbs, message, priority=False, internal=False):
def wrap(cls):
assert not priority or not internal
verb = verbs[0]
if priority:
primaryactions.add(verb)
elif internal:
internalactions.add(verb)
elif len(verbs) > 1:
secondaryactions.add(verb)
else:
tertiaryactions.add(verb)
Mateusz Kwapich
histedit: add addhisteditaction decorator...
r27201
timeless
histedit: replace @addhisteditaction with @action...
r27675 cls.verb = verb
cls.verbs = verbs
cls.message = message
Mateusz Kwapich
histedit: add addhisteditaction decorator...
r27201 for verb in verbs:
actiontable[verb] = cls
return cls
return wrap
timeless
histedit: replace @addhisteditaction with @action...
r27675 @action(['pick', 'p'],
_('use commit'),
priority=True)
Durham Goode
histedit: convert pick action into a class...
r24767 class pick(histeditaction):
def run(self):
rulectx = self.repo[self.node]
if rulectx.parents()[0].node() == self.state.parentctxnode:
self.repo.ui.debug('node %s unchanged\n' % node.short(self.node))
return rulectx, []
Augie Fackler
histedit: new extension for interactive history editing
r17064
Durham Goode
histedit: convert pick action into a class...
r24767 return super(pick, self).run()
Augie Fackler
histedit: new extension for interactive history editing
r17064
timeless
histedit: replace @addhisteditaction with @action...
r27675 @action(['edit', 'e'],
_('use commit, but stop for amending'),
priority=True)
Durham Goode
histedit: convert edit action into a class...
r24770 class edit(histeditaction):
def run(self):
repo = self.repo
rulectx = repo[self.node]
timeless
histedit: omit useless message from update (edit)...
r27407 hg.update(repo, self.state.parentctxnode, quietempty=True)
Durham Goode
histedit: convert edit action into a class...
r24770 applychanges(repo.ui, repo, rulectx, {})
raise error.InterventionRequired(
timeless
histedit: list action when intervention is required
r27629 _('Editing (%s), you may commit or record as needed now.')
% node.short(self.node),
hint=_('hg histedit --continue to resume'))
Durham Goode
histedit: convert edit action into a class...
r24770
def commiteditor(self):
return cmdutil.getcommiteditor(edit=True, editform='histedit.edit')
Augie Fackler
histedit: new extension for interactive history editing
r17064
timeless
histedit: replace @addhisteditaction with @action...
r27675 @action(['fold', 'f'],
_('use commit, but combine it with the one above'))
Durham Goode
histedit: convert fold/roll actions into a class...
r24771 class fold(histeditaction):
timeless
histedit: check fold of public change during verify
r27542 def verify(self, prev):
""" Verifies semantic correctness of the fold rule"""
super(fold, self).verify(prev)
repo = self.repo
if not prev:
c = repo[self.node].parents()[0]
elif not prev.verb in ('pick', 'base'):
return
else:
c = repo[prev.node]
if not c.mutable():
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(
timeless
histedit: check fold of public change during verify
r27542 _("cannot fold into public change %s") % node.short(c.node()))
Durham Goode
histedit: convert fold/roll actions into a class...
r24771 def continuedirty(self):
repo = self.repo
rulectx = repo[self.node]
commit = commitfuncfor(repo, rulectx)
commit(text='fold-temp-revision %s' % node.short(self.node),
user=rulectx.user(), date=rulectx.date(),
extra=rulectx.extra())
def continueclean(self):
repo = self.repo
ctx = repo['.']
rulectx = repo[self.node]
parentctxnode = self.state.parentctxnode
if ctx.node() == parentctxnode:
repo.ui.warn(_('%s: empty changeset\n') %
node.short(self.node))
return ctx, [(self.node, (parentctxnode,))]
Mike Edgar
histedit: add "roll" command to fold commit data and drop message (issue4256)...
r22152
Durham Goode
histedit: convert fold/roll actions into a class...
r24771 parentctx = repo[parentctxnode]
newcommits = set(c.node() for c in repo.set('(%d::. - %d)', parentctx,
parentctx))
if not newcommits:
repo.ui.warn(_('%s: cannot fold - working copy is not a '
'descendant of previous commit %s\n') %
(node.short(self.node), node.short(parentctxnode)))
return ctx, [(self.node, (ctx.node(),))]
middlecommits = newcommits.copy()
middlecommits.discard(ctx.node())
Durham Goode
histedit: improve roll action integration with fold...
r24773 return self.finishfold(repo.ui, repo, parentctx, rulectx, ctx.node(),
middlecommits)
Durham Goode
histedit: convert fold/roll actions into a class...
r24771
Durham Goode
histedit: improve roll action integration with fold...
r24773 def skipprompt(self):
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246 """Returns true if the rule should skip the message editor.
For example, 'fold' wants to show an editor, but 'rollup'
doesn't want to.
"""
Durham Goode
histedit: improve roll action integration with fold...
r24773 return False
Durham Goode
histedit: move finishfold into fold class...
r24772
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246 def mergedescs(self):
"""Returns true if the rule should merge messages of multiple changes.
This exists mainly so that 'rollup' rules can be a subclass of
'fold'.
"""
return True
Durham Goode
histedit: improve roll action integration with fold...
r24773 def finishfold(self, ui, repo, ctx, oldctx, newnode, internalchanges):
Durham Goode
histedit: move finishfold into fold class...
r24772 parent = ctx.parents()[0].node()
hg.update(repo, parent)
### prepare new commit data
Durham Goode
histedit: improve roll action integration with fold...
r24773 commitopts = {}
Durham Goode
histedit: move finishfold into fold class...
r24772 commitopts['user'] = ctx.user()
# commit message
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246 if not self.mergedescs():
Durham Goode
histedit: move finishfold into fold class...
r24772 newmessage = ctx.description()
else:
newmessage = '\n***\n'.join(
[ctx.description()] +
[repo[r].description() for r in internalchanges] +
[oldctx.description()]) + '\n'
commitopts['message'] = newmessage
# date
commitopts['date'] = max(ctx.date(), oldctx.date())
extra = ctx.extra().copy()
# histedit_source
# note: ctx is likely a temporary commit but that the best we can do
# here. This is sufficient to solve issue3681 anyway.
extra['histedit_source'] = '%s,%s' % (ctx.hex(), oldctx.hex())
commitopts['extra'] = extra
phasebackup = repo.ui.backupconfig('phases', 'new-commit')
try:
phasemin = max(ctx.phase(), oldctx.phase())
repo.ui.setconfig('phases', 'new-commit', phasemin, 'histedit')
Durham Goode
histedit: fix rollup prompting for a commit message (issue4606)...
r24828 n = collapse(repo, ctx, repo[newnode], commitopts,
skipprompt=self.skipprompt())
Durham Goode
histedit: move finishfold into fold class...
r24772 finally:
repo.ui.restoreconfig(phasebackup)
if n is None:
return ctx, []
hg.update(repo, n)
replacements = [(oldctx.node(), (newnode,)),
(ctx.node(), (n,)),
(newnode, (n,)),
]
for ich in internalchanges:
replacements.append((ich, (n,)))
return repo[n], replacements
Durham Goode
histedit: convert fold/roll actions into a class...
r24771
Mateusz Kwapich
histedit: add an experimental base action...
r27085 class base(histeditaction):
def constraints(self):
Augie Fackler
histedit: constant-ify the constraints list...
r27086 return set([_constraints.forceother])
Mateusz Kwapich
histedit: add an experimental base action...
r27085
def run(self):
if self.repo['.'].node() != self.node:
Augie Fackler
merge: have merge.update use a matcher instead of partial fn...
r27344 mergemod.update(self.repo, self.node, False, True)
# branchmerge, force)
Mateusz Kwapich
histedit: add an experimental base action...
r27085 return self.continueclean()
def continuedirty(self):
abortdirty()
def continueclean(self):
basectx = self.repo['.']
return basectx, []
timeless
histedit: replace @addhisteditaction with @action...
r27675 @action(['_multifold'],
_(
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246 """fold subclass used for when multiple folds happen in a row
We only want to fire the editor for the folded message once when
(say) four changes are folded down into a single change. This is
similar to rollup, but we should preserve both messages so that
when the last fold operation runs we can show the user all the
commit messages in their editor.
timeless
histedit: replace @addhisteditaction with @action...
r27675 """),
internal=True)
class _multifold(fold):
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246 def skipprompt(self):
return True
timeless
histedit: replace @addhisteditaction with @action...
r27675 @action(["roll", "r"],
_("like fold, but discard this commit's description"))
Durham Goode
histedit: convert fold/roll actions into a class...
r24771 class rollup(fold):
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246 def mergedescs(self):
return False
Durham Goode
histedit: improve roll action integration with fold...
r24773 def skipprompt(self):
return True
Augie Fackler
histedit: new extension for interactive history editing
r17064
timeless
histedit: replace @addhisteditaction with @action...
r27675 @action(["drop", "d"],
_('remove commit from history'))
Durham Goode
histedit: convert drop action into a class...
r24768 class drop(histeditaction):
def run(self):
parentctx = self.repo[self.state.parentctxnode]
return parentctx, [(self.node, tuple())]
Augie Fackler
histedit: new extension for interactive history editing
r17064
timeless
histedit: replace @addhisteditaction with @action...
r27675 @action(["mess", "m"],
_('edit commit message without changing commit content'),
priority=True)
Durham Goode
histedit: convert message action into a class...
r24769 class message(histeditaction):
def commiteditor(self):
return cmdutil.getcommiteditor(edit=True, editform='histedit.mess')
Augie Fackler
histedit: new extension for interactive history editing
r17064
Pierre-Yves David
histedit: remove a mutable default argument...
r26335 def findoutgoing(ui, repo, remote=None, force=False, opts=None):
Pierre-Yves David
histedit: move outgoing processing to its own function...
r19021 """utility function to find the first outgoing changeset
timeless@mozdev.org
histedit: fix English (en-US)
r26171 Used by initialization code"""
Pierre-Yves David
histedit: remove a mutable default argument...
r26335 if opts is None:
opts = {}
Pierre-Yves David
histedit: move outgoing processing to its own function...
r19021 dest = ui.expandpath(remote or 'default-push', remote or 'default')
dest, revs = hg.parseurl(dest, None)[:2]
ui.status(_('comparing with %s\n') % util.hidepassword(dest))
revs, checkout = hg.addbranchrevs(repo, repo, revs, None)
other = hg.peer(repo, opts, dest)
if revs:
revs = [repo.lookup(rev) for rev in revs]
outgoing = discovery.findcommonoutgoing(repo, other, revs, force=force)
if not outgoing.missing:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('no outgoing ancestors'))
FUJIWARA Katsunori
histedit: abort if there are multiple roots in "--outgoing" revisions...
r19841 roots = list(repo.revs("roots(%ln)", outgoing.missing))
if 1 < len(roots):
msg = _('there are ambiguous outgoing revisions')
hint = _('see "hg help histedit" for more detail')
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(msg, hint=hint)
FUJIWARA Katsunori
histedit: abort if there are multiple roots in "--outgoing" revisions...
r19841 return repo.lookup(roots[0])
Pierre-Yves David
histedit: move outgoing processing to its own function...
r19021
Adrian Buehlmann
histedit: use cmdutil.command decorator
r17147
@command('histedit',
[('', 'commands', '',
Anton Shestakov
histedit: use better meta-variable names than VALUE in help text...
r24232 _('read history edits from the specified file'), _('FILE')),
Adrian Buehlmann
histedit: use cmdutil.command decorator
r17147 ('c', 'continue', False, _('continue an edit already in progress')),
Mateusz Kwapich
histedit: add --edit-plan option to histedit...
r24142 ('', 'edit-plan', False, _('edit remaining actions list')),
Adrian Buehlmann
histedit: use cmdutil.command decorator
r17147 ('k', 'keep', False,
_("don't strip old nodes after edit is complete")),
('', 'abort', False, _('abort an edit in progress')),
('o', 'outgoing', False, _('changesets not found in destination')),
('f', 'force', False,
_('force outgoing even for unrelated repositories')),
Anton Shestakov
histedit: use better meta-variable names than VALUE in help text...
r24232 ('r', 'rev', [], _('first revision to be edited'), _('REV'))],
timeless
histedit: clarify modes...
r27714 _("[OPTIONS] ([ANCESTOR] | --outgoing [URL])"))
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 def histedit(ui, repo, *freeargs, **opts):
Augie Fackler
histedit: add extension docstring from external README...
r17131 """interactively edit changeset history
FUJIWARA Katsunori
histedit: add description about basic histedit function to command help...
r19621
timeless
histedit: explain basics of histedit commands...
r27713 This command lets you edit a linear series of changesets (up to
and including the working directory, which should be clean).
You can::
- `pick` to [re]order a changeset
- `drop` to omit changeset
- `mess` to reword the changeset commit message
- `fold` to combine it with the preceding changeset
- `roll` like fold, but discarding this commit's description
- `edit` to edit this changeset
FUJIWARA Katsunori
histedit: add description about "histedit --outgoing" to command help...
r19622
timeless
histedit: clarify modes...
r27714 There are a number of ways to select the root changset::
- Specify ANCESTOR directly
Gregory Szorc
histedit: pick an appropriate base changeset by default (BC)...
r27262
timeless
histedit: clarify modes...
r27714 - Use --outgoing -- it will be the first linear changeset not
included in destination. (See :hg:"help default-push")
- Otherwise, the value from the "histedit.defaultrev" config option
is used as a revset to select the base revision when ANCESTOR is not
specified. The first revision returned by the revset is used. By
default, this selects the editable history that is unique to the
ancestry of the working directory.
FUJIWARA Katsunori
histedit: add more detailed help about "--outgoing"
r19842
timeless
histedit: hide --outgoing warnings
r27630 .. container:: verbose
FUJIWARA Katsunori
histedit: add more detailed help about "--outgoing"
r19842
timeless
histedit: hide --outgoing warnings
r27630 If you use --outgoing, this command will abort if there are ambiguous
outgoing revisions. For example, if there are multiple branches
containing outgoing revisions.
Use "min(outgoing() and ::.)" or similar revset specification
instead of --outgoing to specify edit target revision exactly in
such ambiguous situation. See :hg:`help revsets` for detail about
selecting revisions.
FUJIWARA Katsunori
histedit: add description about exit code
r19972
Mathias De Maré
histedit: add examples
r27145 .. container:: verbose
Examples:
- A number of changes have been made.
Revision 3 is no longer needed.
Start history editing from revision 3::
hg histedit -r 3
An editor opens, containing the list of revisions,
with specific actions specified::
pick 5339bf82f0ca 3 Zworgle the foobar
pick 8ef592ce7cc4 4 Bedazzle the zerlog
pick 0a9639fcda9d 5 Morgify the cromulancy
Additional information about the possible actions
to take appears below the list of revisions.
To remove revision 3 from the history,
its action (at the beginning of the relevant line)
is changed to 'drop'::
drop 5339bf82f0ca 3 Zworgle the foobar
pick 8ef592ce7cc4 4 Bedazzle the zerlog
pick 0a9639fcda9d 5 Morgify the cromulancy
- A number of changes have been made.
Revision 2 and 4 need to be swapped.
Start history editing from revision 2::
hg histedit -r 2
An editor opens, containing the list of revisions,
with specific actions specified::
pick 252a1af424ad 2 Blorb a morgwazzle
pick 5339bf82f0ca 3 Zworgle the foobar
pick 8ef592ce7cc4 4 Bedazzle the zerlog
To swap revision 2 and 4, its lines are swapped
in the editor::
pick 8ef592ce7cc4 4 Bedazzle the zerlog
pick 5339bf82f0ca 3 Zworgle the foobar
pick 252a1af424ad 2 Blorb a morgwazzle
FUJIWARA Katsunori
histedit: add description about exit code
r19972 Returns 0 on success, 1 if user intervention is required (not only
for intentional "edit" command, but also for resolving unexpected
conflicts).
Augie Fackler
histedit: new extension for interactive history editing
r17064 """
David Soria Parra
histedit: move locks into state...
r22984 state = histeditstate(repo)
Siddharth Agarwal
histedit: hold wlock and lock while in progress...
r20071 try:
David Soria Parra
histedit: move locks into state...
r22984 state.wlock = repo.wlock()
state.lock = repo.lock()
_histedit(ui, repo, state, *freeargs, **opts)
Siddharth Agarwal
histedit: hold wlock and lock while in progress...
r20071 finally:
David Soria Parra
histedit: move locks into state...
r22984 release(state.lock, state.wlock)
Siddharth Agarwal
histedit: hold wlock and lock while in progress...
r20071
David Soria Parra
histedit: move locks into state...
r22984 def _histedit(ui, repo, state, *freeargs, **opts):
timeless
histedit: improve grammar for _histedit comment
r27169 # TODO only abort if we try to histedit mq patches, not just
Augie Fackler
histedit: new extension for interactive history editing
r17064 # blanket if mq patches are applied somewhere
mq = getattr(repo, 'mq', None)
if mq and mq.applied:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('source has mq patches applied'))
Augie Fackler
histedit: new extension for interactive history editing
r17064
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 # basic argument incompatibility processing
outg = opts.get('outgoing')
cont = opts.get('continue')
Mateusz Kwapich
histedit: add --edit-plan option to histedit...
r24142 editplan = opts.get('edit_plan')
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 abort = opts.get('abort')
force = opts.get('force')
rules = opts.get('commands', '')
revs = opts.get('rev', [])
goal = 'new' # This invocation goal, in new, continue, abort
if force and not outg:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('--force only allowed with --outgoing'))
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 if cont:
Augie Fackler
cleanup: use __builtins__.any instead of util.any...
r25149 if any((outg, abort, revs, freeargs, rules, editplan)):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('no arguments allowed with --continue'))
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 goal = 'continue'
elif abort:
Augie Fackler
cleanup: use __builtins__.any instead of util.any...
r25149 if any((outg, revs, freeargs, rules, editplan)):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('no arguments allowed with --abort'))
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 goal = 'abort'
Mateusz Kwapich
histedit: add --edit-plan option to histedit...
r24142 elif editplan:
Augie Fackler
cleanup: use __builtins__.any instead of util.any...
r25149 if any((outg, revs, freeargs)):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('only --commands argument allowed with '
Mateusz Kwapich
histedit: add --edit-plan option to histedit...
r24142 '--edit-plan'))
goal = 'edit-plan'
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 else:
if os.path.exists(os.path.join(repo.path, 'histedit-state')):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('history edit already in progress, try '
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 '--continue or --abort'))
if outg:
if revs:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('no revisions allowed with --outgoing'))
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 if len(freeargs) > 1:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 _('only one repo argument allowed with --outgoing'))
else:
Pierre-Yves David
histedit: move outgoing processing to its own function...
r19021 revs.extend(freeargs)
Durham Goode
histedit: allow configuring default behavior...
r24009 if len(revs) == 0:
Gregory Szorc
histedit: pick an appropriate base changeset by default (BC)...
r27262 defaultrev = destutil.desthistedit(ui, repo)
if defaultrev is not None:
revs.append(defaultrev)
Pierre-Yves David
histedit: move outgoing processing to its own function...
r19021 if len(revs) != 1:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(
FUJIWARA Katsunori
histedit: add description about basic histedit function to command help...
r19621 _('histedit requires exactly one ancestor revision'))
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020
Augie Fackler
histedit: new extension for interactive history editing
r17064
David Soria Parra
histedit: use state object where necessary...
r22977 replacements = []
Durham Goode
histedit: fix keep during --continue...
r25330 state.keep = opts.get('keep', False)
Laurent Charignon
histedit: minor refactoring of createmarkers check...
r25808 supportsmarkers = obsolete.isenabled(repo, obsolete.createmarkersopt)
David Soria Parra
histedit: use state object where necessary...
r22977
# rebuild state
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 if goal == 'continue':
David Soria Parra
histedit: read state from histeditstate...
r22983 state.read()
David Soria Parra
histedit: pass state to boostrapcontinue...
r22980 state = bootstrapcontinue(ui, state, opts)
Mateusz Kwapich
histedit: add --edit-plan option to histedit...
r24142 elif goal == 'edit-plan':
state.read()
if not rules:
timeless
histedit: replace editcomment with a function
r27673 comment = geteditcomment(node.short(state.parentctxnode),
Durham Goode
histedit: fix --edit-plan...
r24920 node.short(state.topmost))
Mateusz Kwapich
histedit: use torule instead of makedesc in ruleeditor
r27204 rules = ruleeditor(repo, ui, state.actions, comment)
Mateusz Kwapich
histedit: add --edit-plan option to histedit...
r24142 else:
if rules == '-':
f = sys.stdin
else:
f = open(rules)
rules = f.read()
f.close()
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 actions = parserules(rules, state)
ctxs = [repo[act.nodetoverify()] \
for act in state.actions if act.nodetoverify()]
timeless
histedit: limit mentioning histedit-last-edit.txt...
r27543 warnverifyactions(ui, repo, actions, state, ctxs)
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 state.actions = actions
Mateusz Kwapich
histedit: add --edit-plan option to histedit...
r24142 state.write()
return
Pierre-Yves David
histedit: move all arguments checks to the beginning of the command...
r19020 elif goal == 'abort':
Christian Delahousse
histedit: delete histedit statefile on any exception during abort...
r26584 try:
state.read()
tmpnodes, leafs = newnodestoabort(state)
ui.debug('restore wc to old parent %s\n'
% node.short(state.topmost))
# Recover our old commits if necessary
if not state.topmost in repo and state.backupfile:
backupfile = repo.join(state.backupfile)
f = hg.openpath(ui, backupfile)
gen = exchange.readbundle(ui, f, backupfile)
Pierre-Yves David
histedit: properly apply bundle2 backups...
r26798 tr = repo.transaction('histedit.abort')
try:
if not isinstance(gen, bundle2.unbundle20):
gen.apply(repo, 'histedit', 'bundle:' + backupfile)
if isinstance(gen, bundle2.unbundle20):
bundle2.applybundle(repo, gen, tr,
source='histedit',
url='bundle:' + backupfile)
tr.close()
finally:
tr.release()
Christian Delahousse
histedit: delete histedit statefile on any exception during abort...
r26584 os.remove(backupfile)
Durham Goode
histedit: store backup file before histedit...
r24757
Christian Delahousse
histedit: delete histedit statefile on any exception during abort...
r26584 # check whether we should update away
if repo.unfiltered().revs('parents() and (%n or %ln::)',
state.parentctxnode, leafs | tmpnodes):
timeless
histedit: omit useless message from abort...
r27403 hg.clean(repo, state.topmost, show_stats=True, quietempty=True)
Christian Delahousse
histedit: delete histedit statefile on any exception during abort...
r26584 cleanupnode(ui, repo, 'created', tmpnodes)
cleanupnode(ui, repo, 'temp', leafs)
except Exception:
if state.inprogress():
ui.warn(_('warning: encountered an exception during histedit '
'--abort; the repository may not have been completely '
'cleaned up\n'))
raise
finally:
state.clear()
Augie Fackler
histedit: new extension for interactive history editing
r17064 return
else:
Matt Mackall
histedit: add checkunfinished support (issue3955)...
r19479 cmdutil.checkunfinished(repo)
Augie Fackler
histedit: new extension for interactive history editing
r17064 cmdutil.bailifchanged(repo)
Pierre-Yves David
histedit: rename `tip` to `topmost`...
r17665 topmost, empty = repo.dirstate.parents()
Pierre-Yves David
histedit: move outgoing processing to its own function...
r19021 if outg:
if freeargs:
remote = freeargs[0]
else:
remote = None
root = findoutgoing(ui, repo, remote, force, opts)
else:
Augie Fackler
histedit: respect revsetalias entries (issue4311)...
r21950 rr = list(repo.set('roots(%ld)', scmutil.revrange(repo, revs)))
if len(rr) != 1:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('The specified revisions must have '
David Soria Parra
histedit: select the lowest rev when looking for a root in a revset (bc)...
r20806 'exactly one common root'))
Augie Fackler
histedit: respect revsetalias entries (issue4311)...
r21950 root = rr[0].node()
Augie Fackler
histedit: new extension for interactive history editing
r17064
Durham Goode
histedit: fix keep during --continue...
r25330 revs = between(repo, root, topmost, state.keep)
Pierre-Yves David
histedit: clean abort when there is nothing to edit
r17766 if not revs:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('%s is not an ancestor of working directory') %
Pierre-Yves David
histedit: move outgoing processing to its own function...
r19021 node.short(root))
Augie Fackler
histedit: new extension for interactive history editing
r17064
ctxs = [repo[r] for r in revs]
if not rules:
timeless
histedit: replace editcomment with a function
r27673 comment = geteditcomment(node.short(root), node.short(topmost))
Mateusz Kwapich
histedit: use torule instead of makedesc in ruleeditor
r27204 actions = [pick(state, r) for r in revs]
rules = ruleeditor(repo, ui, actions, comment)
Augie Fackler
histedit: new extension for interactive history editing
r17064 else:
Pierre-Yves David
histedit: allow "-" as a command file...
r19018 if rules == '-':
f = sys.stdin
else:
f = open(rules)
Augie Fackler
histedit: new extension for interactive history editing
r17064 rules = f.read()
f.close()
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 actions = parserules(rules, state)
timeless
histedit: limit mentioning histedit-last-edit.txt...
r27543 warnverifyactions(ui, repo, actions, state, ctxs)
Augie Fackler
histedit: new extension for interactive history editing
r17064
Mateusz Kwapich
histedit: switch state to store node instead of ctx...
r24112 parentctxnode = repo[root].parents()[0].node()
Augie Fackler
histedit: new extension for interactive history editing
r17064
Mateusz Kwapich
histedit: switch state to store node instead of ctx...
r24112 state.parentctxnode = parentctxnode
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 state.actions = actions
David Soria Parra
histedit: move locks into state...
r22984 state.topmost = topmost
state.replacements = replacements
Augie Fackler
histedit: new extension for interactive history editing
r17064
Durham Goode
histedit: store backup file before histedit...
r24757 # Create a backup so we can always abort completely.
backupfile = None
if not obsolete.isenabled(repo, obsolete.createmarkersopt):
backupfile = repair._bundle(repo, [parentctxnode], [topmost], root,
'histedit')
state.backupfile = backupfile
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246 # preprocess rules so that we can hide inner folds from the user
# and only show one editor
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 actions = state.actions[:]
for idx, (action, nextact) in enumerate(
zip(actions, actions[1:] + [None])):
if action.verb == 'fold' and nextact and nextact.verb == 'fold':
state.actions[idx].__class__ = _multifold
Augie Fackler
histedit: use one editor when multiple folds happen in a row (issue3524) (BC)...
r26246
timeless
histedit: add progress support
r27451 total = len(state.actions)
pos = 0
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 while state.actions:
David Soria Parra
histedit: use state object where necessary...
r22977 state.write()
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 actobj = state.actions.pop(0)
timeless
histedit: add progress support
r27451 pos += 1
ui.progress(_("editing"), pos, actobj.torule(),
_('changes'), total)
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 ui.debug('histedit: processing %s %s\n' % (actobj.verb,\
actobj.torule()))
Durham Goode
histedit: delete all non-actionclass related code...
r24774 parentctx, replacement_ = actobj.run()
Mateusz Kwapich
histedit: switch state to store node instead of ctx...
r24112 state.parentctxnode = parentctx.node()
David Soria Parra
histedit: use state object where necessary...
r22977 state.replacements.extend(replacement_)
Mateusz Kwapich
histedit: don't allow to strip nodes which are necessary to continue histedit...
r24111 state.write()
timeless
histedit: add progress support
r27451 ui.progress(_("editing"), None)
Augie Fackler
histedit: new extension for interactive history editing
r17064
timeless
histedit: omit useless message from update (_histedit)...
r27406 hg.update(repo, state.parentctxnode, quietempty=True)
Augie Fackler
histedit: new extension for interactive history editing
r17064
Augie Fackler
histedit: remove now-superfluous repo argument from processreplacement...
r22985 mapping, tmpnodes, created, ntm = processreplacement(state)
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 if mapping:
for prec, succs in mapping.iteritems():
if not succs:
ui.debug('histedit: %s is dropped\n' % node.short(prec))
else:
ui.debug('histedit: %s is replaced by %s\n' % (
node.short(prec), node.short(succs[0])))
if len(succs) > 1:
m = 'histedit: %s'
for n in succs[1:]:
ui.debug(m % node.short(n))
Durham Goode
histedit: make histedit prune when obsolete is enabled...
r26763 if supportsmarkers:
# Only create markers if the temp nodes weren't already removed.
obsolete.createmarkers(repo, ((repo[t],()) for t in sorted(tmpnodes)
if t in repo))
else:
cleanupnode(ui, repo, 'temp', tmpnodes)
Durham Goode
histedit: fix keep during --continue...
r25330 if not state.keep:
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 if mapping:
David Soria Parra
histedit: use state object where necessary...
r22977 movebookmarks(ui, repo, mapping, state.topmost, ntm)
Pierre-Yves David
histedit: extract bookmark logic in a dedicated function...
r17663 # TODO update mq state
Laurent Charignon
histedit: minor refactoring of createmarkers check...
r25808 if supportsmarkers:
Pierre-Yves David
histedit: add obsolete support...
r17759 markers = []
Pierre-Yves David
histedit: create obsolescence markers in deterministic order...
r17771 # sort by revision number because it sound "right"
for prec in sorted(mapping, key=repo.changelog.rev):
succs = mapping[prec]
Pierre-Yves David
histedit: add obsolete support...
r17759 markers.append((repo[prec],
tuple(repo[s] for s in succs)))
if markers:
obsolete.createmarkers(repo, markers)
else:
cleanupnode(ui, repo, 'replaced', mapping)
Pierre-Yves David
histedit: backout ebb5bb9bc32e...
r25894
David Soria Parra
histedit: add clear method to remove state...
r22978 state.clear()
Augie Fackler
histedit: new extension for interactive history editing
r17064 if os.path.exists(repo.sjoin('undo')):
os.unlink(repo.sjoin('undo'))
timeless
histedit: limit cleanup of histedit-last-edit.txt to success
r27546 if repo.vfs.exists('histedit-last-edit.txt'):
repo.vfs.unlink('histedit-last-edit.txt')
Augie Fackler
histedit: new extension for interactive history editing
r17064
Durham Goode
histedit: delete all non-actionclass related code...
r24774 def bootstrapcontinue(ui, state, opts):
repo = state.repo
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 if state.actions:
actobj = state.actions.pop(0)
Durham Goode
histedit: fix --continue when rules are finished...
r24959
liscju
histedit: extracts _isdirtywc function...
r26981 if _isdirtywc(repo):
Durham Goode
histedit: fix --continue when rules are finished...
r24959 actobj.continuedirty()
liscju
histedit: extracts _isdirtywc function...
r26981 if _isdirtywc(repo):
Mateusz Kwapich
histedit: add abortdirty function...
r27084 abortdirty()
Durham Goode
histedit: integrate action class into flow...
r24766
Durham Goode
histedit: fix --continue when rules are finished...
r24959 parentctx, replacements = actobj.continueclean()
Pierre-Yves David
histedit: move `continue` logic into a dedicated function...
r17666
Durham Goode
histedit: fix --continue when rules are finished...
r24959 state.parentctxnode = parentctx.node()
state.replacements.extend(replacements)
David Soria Parra
histedit: pass state to boostrapcontinue...
r22980
return state
Pierre-Yves David
histedit: move `continue` logic into a dedicated function...
r17666
Pierre-Yves David
histedit: move `between function` outside the action logic...
r17642 def between(repo, old, new, keep):
"""select and validate the set of revision to edit
When keep is false, the specified set can't have children."""
Pierre-Yves David
histedit: rename `revs` in `ctxs` inside the `between` function...
r17765 ctxs = list(repo.set('%n::%n', old, new))
Pierre-Yves David
histedit: clean abort when there is nothing to edit
r17766 if ctxs and not keep:
Durham Goode
obsolete: add allowunstable option...
r22952 if (not obsolete.isenabled(repo, obsolete.allowunstableopt) and
Pierre-Yves David
clfilter: drop unnecessary explicit filtering on histedit...
r18270 repo.revs('(%ld::) - (%ld)', ctxs, ctxs)):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('cannot edit history that would orphan nodes'))
Augie Fackler
histedit: refuse to edit history that contains merges (issue3962)
r19473 if repo.revs('(%ld) and merge()', ctxs):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('cannot edit history that contains merges'))
Pierre-Yves David
histedit: do not use "min" on ctx...
r17767 root = ctxs[0] # list is already sorted by repo.set
Augie Fackler
histedit: check mutability of contexts correctly...
r22416 if not root.mutable():
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('cannot edit public changeset: %s') % root,
Jordi Gutiérrez Hermoso
phases: add `hg help phases` hint to failures to edit public commits...
r25412 hint=_('see "hg help phases" for details'))
Pierre-Yves David
histedit: rename `revs` in `ctxs` inside the `between` function...
r17765 return [c.node() for c in ctxs]
Pierre-Yves David
histedit: move `between function` outside the action logic...
r17642
Mateusz Kwapich
histedit: use torule instead of makedesc in ruleeditor
r27204 def ruleeditor(repo, ui, actions, editcomment=""):
Mateusz Kwapich
histedit: extract method ruleeditor...
r24140 """open an editor to edit rules
rules are in the format [ [act, ctx], ...] like in state.rules
"""
Mateusz Kwapich
histedit: use torule instead of makedesc in ruleeditor
r27204 rules = '\n'.join([act.torule() for act in actions])
Mateusz Kwapich
histedit: extract method ruleeditor...
r24140 rules += '\n\n'
rules += editcomment
Mykola Nikishov
histedit: edit with custom filename...
r27154 rules = ui.edit(rules, ui.username(), {'prefix': 'histedit'})
Mateusz Kwapich
histedit: extract method ruleeditor...
r24140
# Save edit rules in .hg/histedit-last-edit.txt in case
# the user needs to ask for help after something
# surprising happens.
f = open(repo.join('histedit-last-edit.txt'), 'w')
f.write(rules)
f.close()
return rules
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 def parserules(rules, state):
"""Read the histedit rules string and return list of action objects """
rules = [l for l in (r.strip() for r in rules.splitlines())
if l and not l.startswith('#')]
actions = []
Augie Fackler
histedit: new extension for interactive history editing
r17064 for r in rules:
if ' ' not in r:
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(_('malformed line "%s"') % r)
Mateusz Kwapich
histedit: make verification configurable...
r27082 verb, rest = r.split(' ', 1)
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 if verb not in actiontable:
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(_('unknown action "%s"') % verb)
Mateusz Kwapich
histedit: get rid of state.rules...
r27208
Mateusz Kwapich
histedit: make verification configurable...
r27082 action = actiontable[verb].fromrule(state, rest)
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 actions.append(action)
return actions
timeless
histedit: limit mentioning histedit-last-edit.txt...
r27543 def warnverifyactions(ui, repo, actions, state, ctxs):
try:
verifyactions(actions, state, ctxs)
timeless
histedit: use parse-error exception for parsing
r27545 except error.ParseError:
timeless
histedit: limit mentioning histedit-last-edit.txt...
r27543 if repo.vfs.exists('histedit-last-edit.txt'):
ui.warn(_('warning: histedit rules saved '
'to: .hg/histedit-last-edit.txt\n'))
raise
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 def verifyactions(actions, state, ctxs):
"""Verify that there exists exactly one action per given changeset and
other constraints.
Will abort if there are to many or too few rules, a malformed rule,
or a rule on a changeset outside of the user-given range.
"""
expected = set(c.hex() for c in ctxs)
seen = set()
timeless
histedit: pass previous action to verify
r27541 prev = None
Mateusz Kwapich
histedit: get rid of state.rules...
r27208 for action in actions:
timeless
histedit: pass previous action to verify
r27541 action.verify(prev)
prev = action
Mateusz Kwapich
histedit: make verification configurable...
r27082 constraints = action.constraints()
for constraint in constraints:
Augie Fackler
histedit: constant-ify the constraints list...
r27086 if constraint not in _constraints.known():
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(_('unknown constraint "%s"') %
constraint)
Mateusz Kwapich
histedit: make verification configurable...
r27082
nodetoverify = action.nodetoverify()
if nodetoverify is not None:
ha = node.hex(nodetoverify)
Augie Fackler
histedit: constant-ify the constraints list...
r27086 if _constraints.noother in constraints and ha not in expected:
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(
timeless
histedit: report the unacceptable changeset
r27712 _('%s "%s" changeset was not a candidate')
% (action.verb, node.short(ha)),
hint=_('only use listed changesets'))
Augie Fackler
histedit: constant-ify the constraints list...
r27086 if _constraints.forceother in constraints and ha in expected:
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(
timeless
histedit: report the unacceptable changeset
r27712 _('%s "%s" changeset was not an edited list candidate')
% (action.verb, node.short(ha)),
hint=_('only use listed changesets'))
Augie Fackler
histedit: constant-ify the constraints list...
r27086 if _constraints.noduplicates in constraints and ha in seen:
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(_(
'duplicated command for changeset %s') %
Mateusz Kwapich
histedit: make verification configurable...
r27082 ha[:12])
seen.add(ha)
Pierre-Yves David
histedit: more precise user message when changeset is missing...
r19048 missing = sorted(expected - seen) # sort to stabilize output
Mateusz Kwapich
histedit: delete to drop...
r27414
if state.repo.ui.configbool('histedit', 'dropmissing'):
drops = [drop(state, node.bin(n)) for n in missing]
# put the in the beginning so they execute immediately and
# don't show in the edit-plan in the future
actions[:0] = drops
elif missing:
timeless
histedit: use parse-error exception for parsing
r27545 raise error.ParseError(_('missing rules for changeset %s') %
Mateusz Kwapich
histedit: store full node hash in rules...
r24002 missing[0][:12],
Mateusz Kwapich
histedit: delete to drop...
r27414 hint=_('use "drop %s" to discard, see also: '
'"hg help -e histedit.config"') % missing[0][:12])
Pierre-Yves David
histedit: extract bookmark logic in a dedicated function...
r17663
Pierre-Yves David
histedit: extract a simpler function to process replacement on abort...
r25898 def newnodestoabort(state):
"""process the list of replacements to return
1) the list of final node
2) the list of temporary node
timeless
histedit: fix comment in newnodestoabort
r27604 This is meant to be used on abort as less data are required in this case.
Pierre-Yves David
histedit: extract a simpler function to process replacement on abort...
r25898 """
replacements = state.replacements
allsuccs = set()
replaced = set()
for rep in replacements:
allsuccs.update(rep[1])
replaced.add(rep[0])
newnodes = allsuccs - replaced
tmpnodes = allsuccs & replaced
return newnodes, tmpnodes
Augie Fackler
histedit: remove now-superfluous repo argument from processreplacement...
r22985 def processreplacement(state):
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 """process the list of replacements to return
1) the final mapping between original and created nodes
2) the list of temporary node created by histedit
3) the list of new commit created by histedit"""
David Soria Parra
histedit: pass state to processreplacement
r22981 replacements = state.replacements
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 allsuccs = set()
replaced = set()
fullmapping = {}
Augie Fackler
histedit: correct spelling etc in more comments...
r26039 # initialize basic set
# fullmapping records all operations recorded in replacement
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 for rep in replacements:
allsuccs.update(rep[1])
replaced.add(rep[0])
fullmapping.setdefault(rep[0], set()).update(rep[1])
new = allsuccs - replaced
tmpnodes = allsuccs & replaced
Augie Fackler
histedit: correct spelling etc in more comments...
r26039 # Reduce content fullmapping into direct relation between original nodes
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 # and final node created during history edition
# Dropped changeset are replaced by an empty list
toproceed = set(fullmapping)
final = {}
while toproceed:
for x in list(toproceed):
succs = fullmapping[x]
for s in list(succs):
if s in toproceed:
# non final node with unknown closure
# We can't process this now
break
elif s in final:
# non final node, replace with closure
succs.remove(s)
succs.update(final[s])
else:
final[x] = succs
toproceed.remove(x)
# remove tmpnodes from final mapping
for n in tmpnodes:
del final[n]
# we expect all changes involved in final to exist in the repo
# turn `final` into list (topologically sorted)
Augie Fackler
histedit: remove now-superfluous repo argument from processreplacement...
r22985 nm = state.repo.changelog.nodemap
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 for prec, succs in final.items():
final[prec] = sorted(succs, key=nm.get)
Pierre-Yves David
histedit: extract bookmark logic in a dedicated function...
r17663
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 # computed topmost element (necessary for bookmark)
if new:
Augie Fackler
histedit: remove now-superfluous repo argument from processreplacement...
r22985 newtopmost = sorted(new, key=state.repo.changelog.rev)[-1]
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 elif not final:
# Nothing rewritten at all. we won't need `newtopmost`
# It is the same as `oldtopmost` and `processreplacement` know it
newtopmost = None
else:
# every body died. The newtopmost is the parent of the root.
Augie Fackler
histedit: remove now-superfluous repo argument from processreplacement...
r22985 r = state.repo.changelog.rev
newtopmost = state.repo[sorted(final, key=r)[0]].p1().node()
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758
return final, tmpnodes, new, newtopmost
Pierre-Yves David
histedit: extract bookmark logic in a dedicated function...
r17663
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 def movebookmarks(ui, repo, mapping, oldtopmost, newtopmost):
"""Move bookmark from old to newly created node"""
if not mapping:
# if nothing got rewritten there is not purpose for this function
return
moves = []
Mads Kiilerich
histedit: process bookmarks in sorted order
r18370 for bk, old in sorted(repo._bookmarks.iteritems()):
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 if old == oldtopmost:
Pierre-Yves David
histedit: factor most commit creation in a function...
r18436 # special case ensure bookmark stay on tip.
Pierre-Yves David
histedit: replace various nodes lists with replacement graph (and issue3582)...
r17758 #
# This is arguably a feature and we may only want that for the
# active bookmark. But the behavior is kept compatible with the old
# version for now.
moves.append((bk, newtopmost))
continue
base = old
new = mapping.get(base, None)
if new is None:
continue
while not new:
# base is killed, trying with parent
base = repo[base].p1().node()
new = mapping.get(base, (base,))
# nothing to move
moves.append((bk, new[-1]))
if moves:
Laurent Charignon
histedit: make use of bookmarks.recordchange instead of bookmarks.write...
r27051 lock = tr = None
try:
lock = repo.lock()
tr = repo.transaction('histedit')
marks = repo._bookmarks
for mark, new in moves:
old = marks[mark]
ui.note(_('histedit: moving bookmarks %s from %s to %s\n')
% (mark, node.short(old), node.short(new)))
marks[mark] = new
marks.recordchange(tr)
tr.close()
finally:
release(tr, lock)
Pierre-Yves David
histedit: factorise node stripping logic...
r17664
def cleanupnode(ui, repo, name, nodes):
"""strip a group of nodes from the repository
The set of node to strip may contains unknown nodes."""
ui.debug('should strip %s nodes %s\n' %
(name, ', '.join([node.short(n) for n in nodes])))
Bryan O'Sullivan
with: use context manager for lock in histedit cleanupnode
r27833 with repo.lock():
Pierre-Yves David
histedit: make cleanupnode more robust...
r25906 # do not let filtering get in the way of the cleanse
timeless@mozdev.org
histedit: fix grammar in cleanupnode comment
r26203 # we should probably get rid of obsolescence marker created during the
Pierre-Yves David
histedit: make cleanupnode more robust...
r25906 # histedit, but we currently do not have such information.
repo = repo.unfiltered()
timeless@mozdev.org
histedit: fix English (en-US)
r26171 # Find all nodes that need to be stripped
# (we use %lr instead of %ln to silently ignore unknown items)
Pierre-Yves David
histedit: factorise node stripping logic...
r17664 nm = repo.changelog.nodemap
Pierre-Yves David
histedit: stabilise the order nodes that are stripped...
r22873 nodes = sorted(n for n in nodes if n in nm)
Pierre-Yves David
histedit: factorise node stripping logic...
r17664 roots = [c.node() for c in repo.set("roots(%ln)", nodes)]
for c in roots:
# We should process node in reverse order to strip tip most first.
# but this trigger a bug in changegroup hook.
# This would reduce bundle overhead
repair.strip(ui, repo, c)
Bryan O'Sullivan
summary: add a histedit hook
r19215
Mateusz Kwapich
histedit: don't allow to strip nodes which are necessary to continue histedit...
r24111 def stripwrapper(orig, ui, repo, nodelist, *args, **kwargs):
if isinstance(nodelist, str):
nodelist = [nodelist]
if os.path.exists(os.path.join(repo.path, 'histedit-state')):
state = histeditstate(repo)
state.read()
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 histedit_nodes = set([action.nodetoverify() for action
in state.actions if action.nodetoverify()])
Durham Goode
histedit: fix preventing strips during histedit...
r24626 strip_nodes = set([repo[n].node() for n in nodelist])
Mateusz Kwapich
histedit: don't allow to strip nodes which are necessary to continue histedit...
r24111 common_nodes = histedit_nodes & strip_nodes
if common_nodes:
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_("histedit in progress, can't strip %s")
Matt Mackall
histedit: fix style of new error message...
r24196 % ', '.join(node.short(x) for x in common_nodes))
Mateusz Kwapich
histedit: don't allow to strip nodes which are necessary to continue histedit...
r24111 return orig(ui, repo, nodelist, *args, **kwargs)
extensions.wrapfunction(repair, 'strip', stripwrapper)
Bryan O'Sullivan
summary: add a histedit hook
r19215 def summaryhook(ui, repo):
if not os.path.exists(repo.join('histedit-state')):
return
David Soria Parra
histedit: read state from histeditstate...
r22983 state = histeditstate(repo)
state.read()
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 if state.actions:
Bryan O'Sullivan
summary: add a histedit hook
r19215 # i18n: column positioning for "hg summary"
ui.write(_('hist: %s (histedit --continue)\n') %
(ui.label(_('%d remaining'), 'histedit.remaining') %
Mateusz Kwapich
histedit: change state.rules uses to state.actions...
r27207 len(state.actions)))
Bryan O'Sullivan
summary: add a histedit hook
r19215
def extsetup(ui):
cmdutil.summaryhooks.add('histedit', summaryhook)
Matt Mackall
histedit: add checkunfinished support (issue3955)...
r19479 cmdutil.unfinishedstates.append(
Matt Mackall
checkunfinished: accommodate histedit quirk...
r19496 ['histedit-state', False, True, _('histedit in progress'),
Matt Mackall
histedit: add checkunfinished support (issue3955)...
r19479 _("use 'hg histedit --continue' or 'hg histedit --abort'")])
timeless
histedit: hook afterresolvedstates
r27627 cmdutil.afterresolvedstates.append(
['histedit-state', _('hg histedit --continue')])
Mateusz Kwapich
histedit: add an experimental base action...
r27085 if ui.configbool("experimental", "histeditng"):
timeless
histedit: replace @addhisteditaction with @action...
r27675 globals()['base'] = action(['base', 'b'],
_('checkout changeset and apply further changesets from there')
)(base)