histedit.py
2682 lines
| 85.6 KiB
| text/x-python
|
PythonLexer
/ hgext / histedit.py
Augie Fackler
|
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
|
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
|
r18322 | # Edit history between c561b4e977df and 7c2fd3b9020c | ||
Augie Fackler
|
r17131 | # | ||
Adrian Zgorzałek
|
r20503 | # Commits are listed from least to most recent | ||
# | ||||
Augie Fackler
|
r17131 | # Commands: | ||
# p, pick = use commit | ||||
Augie Fackler
|
r46720 | # e, edit = use commit, but allow edits before making new commit | ||
Matt Mackall
|
r20511 | # f, fold = use commit, but combine it with the one above | ||
Ben Schmidt
|
r31056 | # r, roll = like fold, but discard this commit's description and date | ||
Augie Fackler
|
r17131 | # d, drop = remove commit from history | ||
timeless@mozdev.org
|
r26100 | # m, mess = edit commit message without changing commit content | ||
Saurabh Singh
|
r34490 | # b, base = checkout changeset and apply further changesets from there | ||
Augie Fackler
|
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
|
r18322 | # Edit history between c561b4e977df and 7c2fd3b9020c | ||
Augie Fackler
|
r17131 | # | ||
Adrian Zgorzałek
|
r20503 | # Commits are listed from least to most recent | ||
# | ||||
Augie Fackler
|
r17131 | # Commands: | ||
# p, pick = use commit | ||||
Augie Fackler
|
r46720 | # e, edit = use commit, but allow edits before making new commit | ||
Matt Mackall
|
r20511 | # f, fold = use commit, but combine it with the one above | ||
Ben Schmidt
|
r31056 | # r, roll = like fold, but discard this commit's description and date | ||
Augie Fackler
|
r17131 | # d, drop = remove commit from history | ||
timeless@mozdev.org
|
r26100 | # m, mess = edit commit message without changing commit content | ||
Saurabh Singh
|
r34490 | # b, base = checkout changeset and apply further changesets from there | ||
Augie Fackler
|
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
|
r17064 | |||
Ben Schmidt
|
r31055 | Edit the commit message to your liking, then close the editor. The date used | ||
for the commit will be the later of the two commits' dates. 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:: | ||||
Augie Fackler
|
r17131 | |||
@ 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 | ||||
Ben Schmidt
|
r31055 | histedit --continue`` to finish this step. If there are uncommitted | ||
changes, you'll be prompted for a new commit message, but the default | ||||
commit message will be the original message for the ``edit`` ed | ||||
revision, and the date of the original commit will be preserved. | ||||
Augie Fackler
|
r17131 | |||
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
|
r18323 | If we clone the histedit-ed example repository above and add four more | ||
changes, such that we have the following history:: | ||||
Augie Fackler
|
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
|
r24199 | |||
Mateusz Kwapich
|
r27414 | Config | ||
------ | ||||
Mateusz Kwapich
|
r24199 | Histedit rule lines are truncated to 80 characters by default. You | ||
timeless@mozdev.org
|
r26171 | can customize this behavior by setting a different length in your | ||
FUJIWARA Katsunori
|
r24869 | configuration file:: | ||
Mateusz Kwapich
|
r24199 | |||
FUJIWARA Katsunori
|
r24869 | [histedit] | ||
linelen = 120 # truncate rule lines at 120 characters | ||||
Gregory Szorc
|
r27262 | |||
Augie Fackler
|
r41650 | The summary of a change can be customized as well:: | ||
[histedit] | ||||
summary-template = '{rev} {bookmarks} {desc|firstline}' | ||||
The customized summary should be kept short enough that rule lines | ||||
will fit in the configured line length. See above if that requires | ||||
customization. | ||||
Gregory Szorc
|
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
|
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 | ||||
FUJIWARA Katsunori
|
r27957 | the drop to be implicit for missing commits by adding:: | ||
Mateusz Kwapich
|
r27414 | |||
[histedit] | ||||
dropmissing = True | ||||
Durham Goode
|
r31513 | By default, histedit will close the transaction after each action. For | ||
performance purposes, you can configure histedit to use a single transaction | ||||
across the entire histedit. WARNING: This setting introduces a significant risk | ||||
of losing the work you've done in a histedit if the histedit aborts | ||||
unexpectedly:: | ||||
[histedit] | ||||
singletransaction = True | ||||
Augie Fackler
|
r17064 | """ | ||
Augie Fackler
|
r17131 | |||
Pulkit Goyal
|
r29126 | |||
Matt Harbison
|
r40688 | # chistedit dependencies that are not available everywhere | ||
try: | ||||
import fcntl | ||||
import termios | ||||
except ImportError: | ||||
fcntl = None | ||||
termios = None | ||||
Manuel Jacob
|
r50143 | import binascii | ||
Augie Fackler
|
r40638 | import functools | ||
Augie Fackler
|
r17064 | import os | ||
Gregory Szorc
|
r49725 | import pickle | ||
Augie Fackler
|
r40638 | import struct | ||
Yuya Nishihara
|
r29205 | |||
from mercurial.i18n import _ | ||||
Gregory Szorc
|
r43359 | from mercurial.pycompat import ( | ||
getattr, | ||||
open, | ||||
) | ||||
Joerg Sonnenberger
|
r46729 | from mercurial.node import ( | ||
bin, | ||||
hex, | ||||
short, | ||||
) | ||||
Pulkit Goyal
|
r29126 | from mercurial import ( | ||
bundle2, | ||||
cmdutil, | ||||
context, | ||||
copies, | ||||
destutil, | ||||
discovery, | ||||
Martin von Zweigbergk
|
r43685 | encoding, | ||
Pulkit Goyal
|
r29126 | error, | ||
exchange, | ||||
extensions, | ||||
hg, | ||||
Augie Fackler
|
r40638 | logcmdutil, | ||
Pulkit Goyal
|
r29126 | merge as mergemod, | ||
Augie Fackler
|
r45383 | mergestate as mergestatemod, | ||
Siddharth Agarwal
|
r32057 | mergeutil, | ||
Pulkit Goyal
|
r29126 | obsolete, | ||
Pulkit Goyal
|
r35000 | pycompat, | ||
Yuya Nishihara
|
r32337 | registrar, | ||
Pulkit Goyal
|
r29126 | repair, | ||
Martin von Zweigbergk
|
r44385 | rewriteutil, | ||
Pulkit Goyal
|
r29126 | scmutil, | ||
Pulkit Goyal
|
r38525 | state as statemod, | ||
Pulkit Goyal
|
r29126 | util, | ||
) | ||||
Yuya Nishihara
|
r37102 | from mercurial.utils import ( | ||
Taapas Agrawal
|
r41249 | dateutil, | ||
Yuya Nishihara
|
r37102 | stringutil, | ||
r47669 | urlutil, | |||
Yuya Nishihara
|
r37102 | ) | ||
Augie Fackler
|
r17064 | |||
Adrian Buehlmann
|
r17147 | cmdtable = {} | ||
Yuya Nishihara
|
r32337 | command = registrar.command(cmdtable) | ||
Adrian Buehlmann
|
r17147 | |||
Boris Feld
|
r34472 | configtable = {} | ||
configitem = registrar.configitem(configtable) | ||||
Augie Fackler
|
r43346 | configitem( | ||
Augie Fackler
|
r46554 | b'experimental', | ||
b'histedit.autoverb', | ||||
default=False, | ||||
Boris Feld
|
r34476 | ) | ||
Augie Fackler
|
r43346 | configitem( | ||
Augie Fackler
|
r46554 | b'histedit', | ||
b'defaultrev', | ||||
default=None, | ||||
Boris Feld
|
r34472 | ) | ||
Augie Fackler
|
r43346 | configitem( | ||
Augie Fackler
|
r46554 | b'histedit', | ||
b'dropmissing', | ||||
default=False, | ||||
Boris Feld
|
r34473 | ) | ||
Augie Fackler
|
r43346 | configitem( | ||
Augie Fackler
|
r46554 | b'histedit', | ||
b'linelen', | ||||
default=80, | ||||
Boris Feld
|
r34475 | ) | ||
Augie Fackler
|
r43346 | configitem( | ||
Augie Fackler
|
r46554 | b'histedit', | ||
b'singletransaction', | ||||
default=False, | ||||
Augie Fackler
|
r40638 | ) | ||
Augie Fackler
|
r43346 | configitem( | ||
Augie Fackler
|
r46554 | b'ui', | ||
b'interface.histedit', | ||||
default=None, | ||||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | configitem(b'histedit', b'summary-template', default=b'{rev} {desc|firstline}') | ||
Martin von Zweigbergk
|
r49047 | # TODO: Teach the text-based histedit interface to respect this config option | ||
# before we make it non-experimental. | ||||
configitem( | ||||
b'histedit', b'later-commits-first', default=False, experimental=True | ||||
) | ||||
Boris Feld
|
r34472 | |||
Augie Fackler
|
r29841 | # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for | ||
Augie Fackler
|
r25186 | # 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
|
r43347 | testedwith = b'ships-with-hg-core' | ||
Augie Fackler
|
r17064 | |||
timeless
|
r27675 | actiontable = {} | ||
primaryactions = set() | ||||
secondaryactions = set() | ||||
tertiaryactions = set() | ||||
internalactions = set() | ||||
Augie Fackler
|
r43346 | |||
Mateusz Kwapich
|
r28592 | def geteditcomment(ui, first, last): | ||
Augie Fackler
|
r46554 | """construct the editor comment | ||
timeless
|
r27673 | The comment includes:: | ||
- an intro | ||||
timeless
|
r27674 | - sorted primary commands | ||
- sorted short commands | ||||
timeless
|
r27675 | - sorted long commands | ||
Mateusz Kwapich
|
r28592 | - additional hints | ||
timeless
|
r27673 | |||
Commands are only included once. | ||||
""" | ||||
Augie Fackler
|
r43346 | intro = _( | ||
Kyle Lippincott
|
r45149 | b"""Edit history between %s and %s | ||
timeless
|
r27673 | |||
Commits are listed from least to most recent | ||||
liscju
|
r28396 | You can reorder changesets by reordering the lines | ||
timeless
|
r27675 | Commands: | ||
Augie Fackler
|
r43346 | """ | ||
) | ||||
timeless
|
r27675 | actions = [] | ||
Augie Fackler
|
r43346 | |||
timeless
|
r27675 | def addverb(v): | ||
a = actiontable[v] | ||||
Augie Fackler
|
r43347 | lines = a.message.split(b"\n") | ||
timeless
|
r27675 | if len(a.verbs): | ||
Augie Fackler
|
r43347 | v = b', '.join(sorted(a.verbs, key=lambda v: len(v))) | ||
actions.append(b" %s = %s" % (v, lines[0])) | ||||
Matt Harbison
|
r44447 | actions.extend([b' %s'] * (len(lines) - 1)) | ||
timeless
|
r27675 | |||
for v in ( | ||||
Augie Fackler
|
r43346 | sorted(primaryactions) | ||
+ sorted(secondaryactions) | ||||
+ sorted(tertiaryactions) | ||||
): | ||||
timeless
|
r27675 | addverb(v) | ||
Augie Fackler
|
r43347 | actions.append(b'') | ||
Augie Fackler
|
r17064 | |||
Mateusz Kwapich
|
r28592 | hints = [] | ||
Augie Fackler
|
r43347 | if ui.configbool(b'histedit', b'dropmissing'): | ||
Augie Fackler
|
r43346 | hints.append( | ||
Augie Fackler
|
r43347 | b"Deleting a changeset from the list " | ||
b"will DISCARD it from the edited history!" | ||||
Augie Fackler
|
r43346 | ) | ||
Mateusz Kwapich
|
r28592 | |||
Augie Fackler
|
r43347 | lines = (intro % (first, last)).split(b'\n') + actions + hints | ||
return b''.join([b'# %s\n' % l if l else b'#\n' for l in lines]) | ||||
timeless
|
r27673 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r49801 | class histeditstate: | ||
Martin von Zweigbergk
|
r41200 | def __init__(self, repo): | ||
David Soria Parra
|
r22976 | self.repo = repo | ||
Martin von Zweigbergk
|
r41200 | self.actions = None | ||
self.keep = None | ||||
self.topmost = None | ||||
self.parentctxnode = None | ||||
self.lock = None | ||||
self.wlock = None | ||||
Durham Goode
|
r24757 | self.backupfile = None | ||
Augie Fackler
|
r43347 | self.stateobj = statemod.cmdstate(repo, b'histedit-state') | ||
Martin von Zweigbergk
|
r41200 | self.replacements = [] | ||
David Soria Parra
|
r22976 | |||
David Soria Parra
|
r22983 | def read(self): | ||
Augie Fackler
|
r22986 | """Load histedit state from disk and set fields appropriately.""" | ||
Pulkit Goyal
|
r38526 | if not self.stateobj.exists(): | ||
Augie Fackler
|
r43347 | cmdutil.wrongtooltocontinue(self.repo, _(b'histedit')) | ||
David Soria Parra
|
r22983 | |||
Pulkit Goyal
|
r38526 | data = self._read() | ||
Pulkit Goyal
|
r38524 | |||
Augie Fackler
|
r43347 | self.parentctxnode = data[b'parentctxnode'] | ||
actions = parserules(data[b'rules'], self) | ||||
Pulkit Goyal
|
r38524 | self.actions = actions | ||
Augie Fackler
|
r43347 | self.keep = data[b'keep'] | ||
self.topmost = data[b'topmost'] | ||||
self.replacements = data[b'replacements'] | ||||
self.backupfile = data[b'backupfile'] | ||||
Pulkit Goyal
|
r38524 | |||
Pulkit Goyal
|
r38526 | def _read(self): | ||
Augie Fackler
|
r43347 | fp = self.repo.vfs.read(b'histedit-state') | ||
if fp.startswith(b'v1\n'): | ||||
Bryan O'Sullivan
|
r27527 | data = self._load() | ||
parentctxnode, rules, keep, topmost, replacements, backupfile = data | ||||
else: | ||||
Pulkit Goyal
|
r38524 | data = pickle.loads(fp) | ||
Durham Goode
|
r24756 | parentctxnode, rules, keep, topmost, replacements = data | ||
Durham Goode
|
r24757 | backupfile = None | ||
Augie Fackler
|
r43347 | rules = b"\n".join([b"%s %s" % (verb, rest) for [verb, rest] in rules]) | ||
David Soria Parra
|
r22983 | |||
Augie Fackler
|
r43346 | return { | ||
Augie Fackler
|
r43347 | b'parentctxnode': parentctxnode, | ||
b"rules": rules, | ||||
b"keep": keep, | ||||
b"topmost": topmost, | ||||
b"replacements": replacements, | ||||
b"backupfile": backupfile, | ||||
Augie Fackler
|
r43346 | } | ||
David Soria Parra
|
r22983 | |||
Durham Goode
|
r31511 | def write(self, tr=None): | ||
if tr: | ||||
Augie Fackler
|
r43346 | tr.addfilegenerator( | ||
Augie Fackler
|
r43347 | b'histedit-state', | ||
(b'histedit-state',), | ||||
Augie Fackler
|
r43346 | self._write, | ||
Augie Fackler
|
r43347 | location=b'plain', | ||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
r31511 | else: | ||
Augie Fackler
|
r43347 | with self.repo.vfs(b"histedit-state", b"w") as f: | ||
Durham Goode
|
r31511 | self._write(f) | ||
def _write(self, fp): | ||||
Augie Fackler
|
r43347 | fp.write(b'v1\n') | ||
Joerg Sonnenberger
|
r46729 | fp.write(b'%s\n' % hex(self.parentctxnode)) | ||
fp.write(b'%s\n' % hex(self.topmost)) | ||||
Augie Fackler
|
r43347 | fp.write(b'%s\n' % (b'True' if self.keep else b'False')) | ||
fp.write(b'%d\n' % len(self.actions)) | ||||
Mateusz Kwapich
|
r27208 | for action in self.actions: | ||
Augie Fackler
|
r43347 | fp.write(b'%s\n' % action.tostate()) | ||
fp.write(b'%d\n' % len(self.replacements)) | ||||
Durham Goode
|
r24756 | for replacement in self.replacements: | ||
Augie Fackler
|
r43346 | fp.write( | ||
Augie Fackler
|
r43347 | b'%s%s\n' | ||
Augie Fackler
|
r43346 | % ( | ||
Joerg Sonnenberger
|
r46729 | hex(replacement[0]), | ||
b''.join(hex(r) for r in replacement[1]), | ||||
Augie Fackler
|
r43346 | ) | ||
) | ||||
Durham Goode
|
r24958 | backupfile = self.backupfile | ||
if not backupfile: | ||||
Augie Fackler
|
r43347 | backupfile = b'' | ||
fp.write(b'%s\n' % backupfile) | ||||
David Soria Parra
|
r22976 | |||
Durham Goode
|
r24756 | def _load(self): | ||
Augie Fackler
|
r43347 | fp = self.repo.vfs(b'histedit-state', b'r') | ||
Durham Goode
|
r24756 | lines = [l[:-1] for l in fp.readlines()] | ||
index = 0 | ||||
Augie Fackler
|
r43346 | lines[index] # version number | ||
Durham Goode
|
r24756 | index += 1 | ||
Joerg Sonnenberger
|
r46729 | parentctxnode = bin(lines[index]) | ||
Durham Goode
|
r24756 | index += 1 | ||
Joerg Sonnenberger
|
r46729 | topmost = bin(lines[index]) | ||
Durham Goode
|
r24756 | index += 1 | ||
Augie Fackler
|
r43347 | keep = lines[index] == b'True' | ||
Durham Goode
|
r24756 | index += 1 | ||
# Rules | ||||
rules = [] | ||||
rulelen = int(lines[index]) | ||||
index += 1 | ||||
Manuel Jacob
|
r50179 | for i in range(rulelen): | ||
Durham Goode
|
r24810 | ruleaction = lines[index] | ||
index += 1 | ||||
Durham Goode
|
r24756 | rule = lines[index] | ||
index += 1 | ||||
Durham Goode
|
r24810 | rules.append((ruleaction, rule)) | ||
Durham Goode
|
r24756 | |||
# Replacements | ||||
replacements = [] | ||||
replacementlen = int(lines[index]) | ||||
index += 1 | ||||
Manuel Jacob
|
r50179 | for i in range(replacementlen): | ||
Durham Goode
|
r24756 | replacement = lines[index] | ||
Joerg Sonnenberger
|
r46729 | original = bin(replacement[:40]) | ||
Augie Fackler
|
r43346 | succ = [ | ||
Joerg Sonnenberger
|
r46729 | bin(replacement[i : i + 40]) | ||
Augie Fackler
|
r43346 | for i in range(40, len(replacement), 40) | ||
] | ||||
Durham Goode
|
r24756 | replacements.append((original, succ)) | ||
index += 1 | ||||
Durham Goode
|
r24757 | backupfile = lines[index] | ||
index += 1 | ||||
Durham Goode
|
r24756 | fp.close() | ||
Durham Goode
|
r24757 | return parentctxnode, rules, keep, topmost, replacements, backupfile | ||
Durham Goode
|
r24756 | |||
David Soria Parra
|
r22978 | def clear(self): | ||
Christian Delahousse
|
r26583 | if self.inprogress(): | ||
Augie Fackler
|
r43347 | self.repo.vfs.unlink(b'histedit-state') | ||
David Soria Parra
|
r22978 | |||
Christian Delahousse
|
r26582 | def inprogress(self): | ||
Augie Fackler
|
r43347 | return self.repo.vfs.exists(b'histedit-state') | ||
Christian Delahousse
|
r26582 | |||
Mateusz Kwapich
|
r27200 | |||
Gregory Szorc
|
r49801 | class histeditaction: | ||
Durham Goode
|
r24765 | def __init__(self, state, node): | ||
self.state = state | ||||
self.repo = state.repo | ||||
self.node = node | ||||
@classmethod | ||||
def fromrule(cls, state, rule): | ||||
Augie Fackler
|
r46554 | """Parses the given rule, returning an instance of the histeditaction.""" | ||
Augie Fackler
|
r43347 | ruleid = rule.strip().split(b' ', 1)[0] | ||
Sangeet Kumar Mishra
|
r37124 | # ruleid can be anything from rev numbers, hashes, "bookmarks" etc | ||
# Check for validation of rule ids and get the rulehash | ||||
timeless
|
r27547 | try: | ||
Joerg Sonnenberger
|
r46729 | rev = bin(ruleid) | ||
Manuel Jacob
|
r50143 | except binascii.Error: | ||
Sangeet Kumar Mishra
|
r37124 | try: | ||
_ctx = scmutil.revsingle(state.repo, ruleid) | ||||
rulehash = _ctx.hex() | ||||
Joerg Sonnenberger
|
r46729 | rev = bin(rulehash) | ||
Sangeet Kumar Mishra
|
r37124 | except error.RepoLookupError: | ||
Augie Fackler
|
r43347 | raise error.ParseError(_(b"invalid changeset %s") % ruleid) | ||
timeless
|
r27547 | return cls(state, rev) | ||
Mateusz Kwapich
|
r27202 | |||
Pierre-Yves David
|
r29879 | def verify(self, prev, expected, seen): | ||
Kyle Lippincott
|
r47856 | """Verifies semantic correctness of the rule""" | ||
Mateusz Kwapich
|
r27202 | repo = self.repo | ||
Joerg Sonnenberger
|
r46729 | ha = hex(self.node) | ||
Martin von Zweigbergk
|
r37696 | self.node = scmutil.resolvehexnodeidprefix(repo, ha) | ||
Martin von Zweigbergk
|
r37524 | if self.node is None: | ||
Augie Fackler
|
r43347 | raise error.ParseError(_(b'unknown changeset %s listed') % ha[:12]) | ||
Martin von Zweigbergk
|
r37523 | self._verifynodeconstraints(prev, expected, seen) | ||
Pierre-Yves David
|
r29879 | |||
Pierre-Yves David
|
r29880 | def _verifynodeconstraints(self, prev, expected, seen): | ||
# by default command need a node in the edited list | ||||
if self.node not in expected: | ||||
Augie Fackler
|
r43346 | raise error.ParseError( | ||
Augie Fackler
|
r43347 | _(b'%s "%s" changeset was not a candidate') | ||
Joerg Sonnenberger
|
r46729 | % (self.verb, short(self.node)), | ||
Augie Fackler
|
r43347 | hint=_(b'only use listed changesets'), | ||
Augie Fackler
|
r43346 | ) | ||
Pierre-Yves David
|
r29880 | # and only one command per node | ||
if self.node in seen: | ||||
Augie Fackler
|
r43346 | raise error.ParseError( | ||
Joerg Sonnenberger
|
r46729 | _(b'duplicated command for changeset %s') % short(self.node) | ||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
r24765 | |||
Sean Farley
|
r29466 | def torule(self): | ||
Mateusz Kwapich
|
r27203 | """build a histedit rule line for an action | ||
by default lines are in the form: | ||||
<hash> <rev> <summary> | ||||
""" | ||||
ctx = self.repo[self.node] | ||||
Augie Fackler
|
r41650 | ui = self.repo.ui | ||
Martin von Zweigbergk
|
r46462 | # We don't want color codes in the commit message template, so | ||
# disable the label() template function while we render it. | ||||
with ui.configoverride( | ||||
{(b'templatealias', b'label(l,x)'): b"x"}, b'histedit' | ||||
): | ||||
Martin von Zweigbergk
|
r46461 | summary = cmdutil.rendertemplate( | ||
ctx, ui.config(b'histedit', b'summary-template') | ||||
) | ||||
Martin von Zweigbergk
|
r49886 | line = b'%s %s %s' % (self.verb, ctx, stringutil.firstline(summary)) | ||
Mateusz Kwapich
|
r27203 | # trim to 75 columns by default so it's not stupidly wide in my editor | ||
# (the 5 more are left for verb) | ||||
Augie Fackler
|
r43347 | maxlen = self.repo.ui.configint(b'histedit', b'linelen') | ||
Augie Fackler
|
r43346 | maxlen = max(maxlen, 22) # avoid truncating hash | ||
Yuya Nishihara
|
r37102 | return stringutil.ellipsis(line, maxlen) | ||
Mateusz Kwapich
|
r27203 | |||
Mateusz Kwapich
|
r27206 | def tostate(self): | ||
"""Print an action in format used by histedit state files | ||||
Augie Fackler
|
r46554 | (the first line is a verb, the remainder is the second) | ||
Mateusz Kwapich
|
r27206 | """ | ||
Joerg Sonnenberger
|
r46729 | return b"%s\n%s" % (self.verb, hex(self.node)) | ||
Mateusz Kwapich
|
r27206 | |||
Durham Goode
|
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] | ||||
Martin von Zweigbergk
|
r48230 | with repo.ui.silent(): | ||
hg.update(repo, self.state.parentctxnode, quietempty=True) | ||||
Durham Goode
|
r24765 | stats = applychanges(repo.ui, repo, rulectx, {}) | ||
Boris Feld
|
r35391 | repo.dirstate.setbranch(rulectx.branch()) | ||
Gregory Szorc
|
r37143 | if stats.unresolvedcount: | ||
timeless
|
r27629 | raise error.InterventionRequired( | ||
Joerg Sonnenberger
|
r46729 | _(b'Fix up the change (%s %s)') % (self.verb, short(self.node)), | ||
Augie Fackler
|
r43347 | hint=_(b'hg histedit --continue to resume'), | ||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
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) | ||||
Augie Fackler
|
r43347 | if repo.ui.configbool(b'rewrite', b'update-timestamp'): | ||
Taapas Agrawal
|
r41249 | date = dateutil.makedate() | ||
else: | ||||
date = rulectx.date() | ||||
Augie Fackler
|
r43346 | commit( | ||
text=rulectx.description(), | ||||
user=rulectx.user(), | ||||
date=date, | ||||
extra=rulectx.extra(), | ||||
editor=editor, | ||||
) | ||||
Durham Goode
|
r24765 | |||
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.""" | ||||
Augie Fackler
|
r43347 | ctx = self.repo[b'.'] | ||
Durham Goode
|
r24765 | if ctx.node() == self.state.parentctxnode: | ||
Augie Fackler
|
r43346 | self.repo.ui.warn( | ||
Joerg Sonnenberger
|
r46729 | _(b'%s: skipping changeset (no changes)\n') % short(self.node) | ||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
r24765 | return ctx, [(self.node, tuple())] | ||
if ctx.node() == self.node: | ||||
# Nothing changed | ||||
return ctx, [] | ||||
return ctx, [(self.node, (ctx.node(),))] | ||||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r18436 | def commitfuncfor(repo, src): | ||
"""Build a commit function for the replacement of <src> | ||||
Mads Kiilerich
|
r18644 | This function ensure we apply the same treatment to all changesets. | ||
Pierre-Yves David
|
r18436 | |||
Pierre-Yves David
|
r18437 | - Add a 'histedit_source' entry in extra. | ||
Pierre-Yves David
|
r18436 | |||
Augie Fackler
|
r25450 | Note that fold has its own separated logic because its handling is a bit | ||
Pierre-Yves David
|
r18436 | different and not easily factored out of the fold method. | ||
""" | ||||
Pierre-Yves David
|
r18440 | phasemin = src.phase() | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r18436 | def commitfunc(**kwargs): | ||
Augie Fackler
|
r43347 | overrides = {(b'phases', b'new-commit'): phasemin} | ||
with repo.ui.configoverride(overrides, b'histedit'): | ||||
Augie Fackler
|
r43906 | extra = kwargs.get('extra', {}).copy() | ||
Augie Fackler
|
r43347 | extra[b'histedit_source'] = src.hex() | ||
Augie Fackler
|
r43906 | kwargs['extra'] = extra | ||
Pierre-Yves David
|
r18440 | return repo.commit(**kwargs) | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r18436 | return commitfunc | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r17647 | def applychanges(ui, repo, ctx, opts): | ||
"""Merge changeset from ctx (only) in the current working directory""" | ||||
Martin von Zweigbergk
|
r45935 | if ctx.p1().node() == repo.dirstate.p1(): | ||
timeless@mozdev.org
|
r26171 | # edits are "in place" we do not need to make any merge, | ||
timeless
|
r27603 | # just applies changes on parent for editing | ||
Martin von Zweigbergk
|
r48230 | with ui.silent(): | ||
cmdutil.revert(ui, repo, ctx, all=True) | ||||
stats = mergemod.updateresult(0, 0, 0, 0) | ||||
Pierre-Yves David
|
r17647 | else: | ||
try: | ||||
# ui.forcemerge is an internal variable, do not document | ||||
Augie Fackler
|
r43346 | repo.ui.setconfig( | ||
Augie Fackler
|
r43347 | b'ui', b'forcemerge', opts.get(b'tool', b''), b'histedit' | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r49437 | stats = mergemod.graft( | ||
repo, | ||||
ctx, | ||||
labels=[ | ||||
b'already edited', | ||||
b'current change', | ||||
b'parent of current change', | ||||
], | ||||
) | ||||
Pierre-Yves David
|
r17647 | finally: | ||
Augie Fackler
|
r43347 | repo.ui.setconfig(b'ui', b'forcemerge', b'', b'histedit') | ||
Pierre-Yves David
|
r17647 | return stats | ||
Leah Xue
|
r17407 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r36421 | def collapse(repo, firstctx, lastctx, commitopts, skipprompt=False): | ||
Pierre-Yves David
|
r17644 | """collapse the set of revisions from first to last as new one. | ||
Expected commit options are: | ||||
- message | ||||
- date | ||||
- username | ||||
Mads Kiilerich
|
r17738 | Commit message is edited in all cases. | ||
Pierre-Yves David
|
r17644 | |||
This function works in memory.""" | ||||
Augie Fackler
|
r43347 | ctxs = list(repo.set(b'%d::%d', firstctx.rev(), lastctx.rev())) | ||
Pierre-Yves David
|
r17644 | if not ctxs: | ||
return None | ||||
Augie Fackler
|
r25452 | for c in ctxs: | ||
if not c.mutable(): | ||||
timeless
|
r27545 | raise error.ParseError( | ||
Joerg Sonnenberger
|
r46729 | _(b"cannot fold into public change %s") % short(c.node()) | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r41442 | base = firstctx.p1() | ||
Pierre-Yves David
|
r17644 | |||
# 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) | ||||
Gregory Szorc
|
r36421 | copied = copies.pathcopies(base, lastctx) | ||
Pierre-Yves David
|
r17644 | |||
# prune files which were reverted by the updates | ||||
Gregory Szorc
|
r36421 | files = [f for f in files if not cmdutil.samefile(f, lastctx, base)] | ||
Pierre-Yves David
|
r17644 | # commit version of these files as defined by head | ||
Gregory Szorc
|
r36421 | headmf = lastctx.manifest() | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r17644 | def filectxfn(repo, ctx, path): | ||
if path in headmf: | ||||
Gregory Szorc
|
r36421 | fctx = lastctx[path] | ||
Pierre-Yves David
|
r17644 | flags = fctx.flags() | ||
Augie Fackler
|
r43346 | mctx = context.memfilectx( | ||
repo, | ||||
ctx, | ||||
fctx.path(), | ||||
fctx.data(), | ||||
Augie Fackler
|
r43347 | islink=b'l' in flags, | ||
isexec=b'x' in flags, | ||||
Augie Fackler
|
r43346 | copysource=copied.get(path), | ||
) | ||||
Pierre-Yves David
|
r17644 | return mctx | ||
Mads Kiilerich
|
r22296 | return None | ||
Pierre-Yves David
|
r17644 | |||
Augie Fackler
|
r43347 | if commitopts.get(b'message'): | ||
message = commitopts[b'message'] | ||||
Pierre-Yves David
|
r17644 | else: | ||
Gregory Szorc
|
r36421 | message = firstctx.description() | ||
Augie Fackler
|
r43347 | user = commitopts.get(b'user') | ||
date = commitopts.get(b'date') | ||||
extra = commitopts.get(b'extra') | ||||
Pierre-Yves David
|
r17644 | |||
Gregory Szorc
|
r36421 | parents = (firstctx.p1().node(), firstctx.p2().node()) | ||
Mike Edgar
|
r22152 | editor = None | ||
Durham Goode
|
r24828 | if not skipprompt: | ||
Augie Fackler
|
r43347 | editor = cmdutil.getcommiteditor(edit=True, editform=b'histedit.fold') | ||
Augie Fackler
|
r43346 | new = context.memctx( | ||
repo, | ||||
parents=parents, | ||||
text=message, | ||||
files=files, | ||||
filectxfn=filectxfn, | ||||
user=user, | ||||
date=date, | ||||
extra=extra, | ||||
editor=editor, | ||||
) | ||||
Pierre-Yves David
|
r17644 | return repo.commitctx(new) | ||
Augie Fackler
|
r43346 | |||
liscju
|
r26981 | def _isdirtywc(repo): | ||
return repo[None].dirty(missing=True) | ||||
Augie Fackler
|
r43346 | |||
Mateusz Kwapich
|
r27084 | def abortdirty(): | ||
Martin von Zweigbergk
|
r48868 | raise error.StateError( | ||
Augie Fackler
|
r43347 | _(b'working copy has pending changes'), | ||
Augie Fackler
|
r43346 | hint=_( | ||
Augie Fackler
|
r43347 | b'amend, commit, or revert them and run histedit ' | ||
b'--continue, or abort with histedit --abort' | ||||
Augie Fackler
|
r43346 | ), | ||
) | ||||
Mateusz Kwapich
|
r27084 | |||
timeless
|
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
|
r27201 | |||
timeless
|
r27675 | cls.verb = verb | ||
cls.verbs = verbs | ||||
cls.message = message | ||||
Mateusz Kwapich
|
r27201 | for verb in verbs: | ||
actiontable[verb] = cls | ||||
return cls | ||||
Augie Fackler
|
r43346 | |||
Mateusz Kwapich
|
r27201 | return wrap | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @action([b'pick', b'p'], _(b'use commit'), priority=True) | ||
Durham Goode
|
r24767 | class pick(histeditaction): | ||
def run(self): | ||||
rulectx = self.repo[self.node] | ||||
Martin von Zweigbergk
|
r41442 | if rulectx.p1().node() == self.state.parentctxnode: | ||
Joerg Sonnenberger
|
r46729 | self.repo.ui.debug(b'node %s unchanged\n' % short(self.node)) | ||
Durham Goode
|
r24767 | return rulectx, [] | ||
Augie Fackler
|
r17064 | |||
Durham Goode
|
r24767 | return super(pick, self).run() | ||
Augie Fackler
|
r17064 | |||
Augie Fackler
|
r43346 | |||
Joerg Sonnenberger
|
r46729 | @action( | ||
[b'edit', b'e'], | ||||
_(b'use commit, but allow edits before making new commit'), | ||||
priority=True, | ||||
) | ||||
Durham Goode
|
r24770 | class edit(histeditaction): | ||
def run(self): | ||||
repo = self.repo | ||||
rulectx = repo[self.node] | ||||
timeless
|
r27407 | hg.update(repo, self.state.parentctxnode, quietempty=True) | ||
Durham Goode
|
r24770 | applychanges(repo.ui, repo, rulectx, {}) | ||
Augie Fackler
|
r46719 | hint = _(b'to edit %s, `hg histedit --continue` after making changes') | ||
Durham Goode
|
r24770 | raise error.InterventionRequired( | ||
Augie Fackler
|
r46719 | _(b'Editing (%s), commit as needed now to split the change') | ||
Joerg Sonnenberger
|
r46729 | % short(self.node), | ||
hint=hint % short(self.node), | ||||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
r24770 | |||
def commiteditor(self): | ||||
Augie Fackler
|
r43347 | return cmdutil.getcommiteditor(edit=True, editform=b'histedit.edit') | ||
@action([b'fold', b'f'], _(b'use commit, but combine it with the one above')) | ||||
Durham Goode
|
r24771 | class fold(histeditaction): | ||
Pierre-Yves David
|
r29879 | def verify(self, prev, expected, seen): | ||
Kyle Lippincott
|
r47856 | """Verifies semantic correctness of the fold rule""" | ||
Pierre-Yves David
|
r29879 | super(fold, self).verify(prev, expected, seen) | ||
timeless
|
r27542 | repo = self.repo | ||
if not prev: | ||||
Martin von Zweigbergk
|
r41442 | c = repo[self.node].p1() | ||
Augie Fackler
|
r43347 | elif not prev.verb in (b'pick', b'base'): | ||
timeless
|
r27542 | return | ||
else: | ||||
c = repo[prev.node] | ||||
if not c.mutable(): | ||||
timeless
|
r27545 | raise error.ParseError( | ||
Joerg Sonnenberger
|
r46729 | _(b"cannot fold into public change %s") % short(c.node()) | ||
Augie Fackler
|
r43346 | ) | ||
timeless
|
r27542 | |||
Durham Goode
|
r24771 | def continuedirty(self): | ||
repo = self.repo | ||||
rulectx = repo[self.node] | ||||
commit = commitfuncfor(repo, rulectx) | ||||
Augie Fackler
|
r43346 | commit( | ||
Joerg Sonnenberger
|
r46729 | text=b'fold-temp-revision %s' % short(self.node), | ||
Augie Fackler
|
r43346 | user=rulectx.user(), | ||
date=rulectx.date(), | ||||
extra=rulectx.extra(), | ||||
) | ||||
Durham Goode
|
r24771 | |||
def continueclean(self): | ||||
repo = self.repo | ||||
Augie Fackler
|
r43347 | ctx = repo[b'.'] | ||
Durham Goode
|
r24771 | rulectx = repo[self.node] | ||
parentctxnode = self.state.parentctxnode | ||||
if ctx.node() == parentctxnode: | ||||
Joerg Sonnenberger
|
r46729 | repo.ui.warn(_(b'%s: empty changeset\n') % short(self.node)) | ||
Durham Goode
|
r24771 | return ctx, [(self.node, (parentctxnode,))] | ||
Mike Edgar
|
r22152 | |||
Durham Goode
|
r24771 | parentctx = repo[parentctxnode] | ||
Augie Fackler
|
r44937 | newcommits = { | ||
Augie Fackler
|
r43346 | c.node() | ||
Augie Fackler
|
r43347 | for c in repo.set(b'(%d::. - %d)', parentctx.rev(), parentctx.rev()) | ||
Augie Fackler
|
r44937 | } | ||
Durham Goode
|
r24771 | if not newcommits: | ||
Augie Fackler
|
r43346 | repo.ui.warn( | ||
_( | ||||
Augie Fackler
|
r43347 | b'%s: cannot fold - working copy is not a ' | ||
b'descendant of previous commit %s\n' | ||||
Augie Fackler
|
r43346 | ) | ||
Joerg Sonnenberger
|
r46729 | % (short(self.node), short(parentctxnode)) | ||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
r24771 | return ctx, [(self.node, (ctx.node(),))] | ||
middlecommits = newcommits.copy() | ||||
middlecommits.discard(ctx.node()) | ||||
Augie Fackler
|
r43346 | return self.finishfold( | ||
repo.ui, repo, parentctx, rulectx, ctx.node(), middlecommits | ||||
) | ||||
Durham Goode
|
r24771 | |||
Durham Goode
|
r24773 | def skipprompt(self): | ||
Augie Fackler
|
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
|
r24773 | return False | ||
Durham Goode
|
r24772 | |||
Augie Fackler
|
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 | ||||
Ben Schmidt
|
r31056 | def firstdate(self): | ||
"""Returns true if the rule should preserve the date of the first | ||||
change. | ||||
This exists mainly so that 'rollup' rules can be a subclass of | ||||
'fold'. | ||||
""" | ||||
return False | ||||
Durham Goode
|
r24773 | def finishfold(self, ui, repo, ctx, oldctx, newnode, internalchanges): | ||
Martin von Zweigbergk
|
r46151 | mergemod.update(ctx.p1()) | ||
Durham Goode
|
r24772 | ### prepare new commit data | ||
Durham Goode
|
r24773 | commitopts = {} | ||
Augie Fackler
|
r43347 | commitopts[b'user'] = ctx.user() | ||
Durham Goode
|
r24772 | # commit message | ||
Augie Fackler
|
r26246 | if not self.mergedescs(): | ||
Durham Goode
|
r24772 | newmessage = ctx.description() | ||
else: | ||||
Augie Fackler
|
r43346 | newmessage = ( | ||
Augie Fackler
|
r43347 | b'\n***\n'.join( | ||
Augie Fackler
|
r43346 | [ctx.description()] | ||
+ [repo[r].description() for r in internalchanges] | ||||
+ [oldctx.description()] | ||||
) | ||||
Augie Fackler
|
r43347 | + b'\n' | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | commitopts[b'message'] = newmessage | ||
Durham Goode
|
r24772 | # date | ||
Ben Schmidt
|
r31056 | if self.firstdate(): | ||
Augie Fackler
|
r43347 | commitopts[b'date'] = ctx.date() | ||
Ben Schmidt
|
r31056 | else: | ||
Augie Fackler
|
r43347 | commitopts[b'date'] = max(ctx.date(), oldctx.date()) | ||
Taapas Agrawal
|
r41249 | # if date is to be updated to current | ||
Augie Fackler
|
r43347 | if ui.configbool(b'rewrite', b'update-timestamp'): | ||
commitopts[b'date'] = dateutil.makedate() | ||||
Taapas Agrawal
|
r41249 | |||
Durham Goode
|
r24772 | 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. | ||||
Augie Fackler
|
r43347 | extra[b'histedit_source'] = b'%s,%s' % (ctx.hex(), oldctx.hex()) | ||
commitopts[b'extra'] = extra | ||||
Jun Wu
|
r31459 | phasemin = max(ctx.phase(), oldctx.phase()) | ||
Augie Fackler
|
r43347 | overrides = {(b'phases', b'new-commit'): phasemin} | ||
with repo.ui.configoverride(overrides, b'histedit'): | ||||
Augie Fackler
|
r43346 | n = collapse( | ||
repo, | ||||
ctx, | ||||
repo[newnode], | ||||
commitopts, | ||||
skipprompt=self.skipprompt(), | ||||
) | ||||
Durham Goode
|
r24772 | if n is None: | ||
return ctx, [] | ||||
Martin von Zweigbergk
|
r46151 | mergemod.update(repo[n]) | ||
Augie Fackler
|
r43346 | replacements = [ | ||
(oldctx.node(), (newnode,)), | ||||
(ctx.node(), (n,)), | ||||
(newnode, (n,)), | ||||
] | ||||
Durham Goode
|
r24772 | for ich in internalchanges: | ||
replacements.append((ich, (n,))) | ||||
return repo[n], replacements | ||||
Durham Goode
|
r24771 | |||
Augie Fackler
|
r43346 | |||
@action( | ||||
Augie Fackler
|
r43347 | [b'base', b'b'], | ||
_(b'checkout changeset and apply further changesets from there'), | ||||
Augie Fackler
|
r43346 | ) | ||
Mateusz Kwapich
|
r27085 | class base(histeditaction): | ||
def run(self): | ||||
Augie Fackler
|
r43347 | if self.repo[b'.'].node() != self.node: | ||
Martin von Zweigbergk
|
r44743 | mergemod.clean_update(self.repo[self.node]) | ||
Mateusz Kwapich
|
r27085 | return self.continueclean() | ||
def continuedirty(self): | ||||
abortdirty() | ||||
def continueclean(self): | ||||
Augie Fackler
|
r43347 | basectx = self.repo[b'.'] | ||
Mateusz Kwapich
|
r27085 | return basectx, [] | ||
Pierre-Yves David
|
r29880 | def _verifynodeconstraints(self, prev, expected, seen): | ||
# base can only be use with a node not in the edited set | ||||
if self.node in expected: | ||||
Augie Fackler
|
r43347 | msg = _(b'%s "%s" changeset was an edited list candidate') | ||
Augie Fackler
|
r29887 | raise error.ParseError( | ||
Joerg Sonnenberger
|
r46729 | msg % (self.verb, short(self.node)), | ||
Augie Fackler
|
r43347 | hint=_(b'base must only use unlisted changesets'), | ||
Augie Fackler
|
r43346 | ) | ||
@action( | ||||
Augie Fackler
|
r43347 | [b'_multifold'], | ||
Augie Fackler
|
r43346 | _( | ||
"""fold subclass used for when multiple folds happen in a row | ||||
Augie Fackler
|
r26246 | |||
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. | ||||
Augie Fackler
|
r43346 | """ | ||
), | ||||
internal=True, | ||||
) | ||||
timeless
|
r27675 | class _multifold(fold): | ||
Augie Fackler
|
r26246 | def skipprompt(self): | ||
return True | ||||
Augie Fackler
|
r43346 | |||
@action( | ||||
Augie Fackler
|
r43347 | [b"roll", b"r"], | ||
_(b"like fold, but discard this commit's description and date"), | ||||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
r24771 | class rollup(fold): | ||
Augie Fackler
|
r26246 | def mergedescs(self): | ||
return False | ||||
Durham Goode
|
r24773 | def skipprompt(self): | ||
return True | ||||
Augie Fackler
|
r17064 | |||
Ben Schmidt
|
r31056 | def firstdate(self): | ||
return True | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @action([b"drop", b"d"], _(b'remove commit from history')) | ||
Durham Goode
|
r24768 | class drop(histeditaction): | ||
def run(self): | ||||
parentctx = self.repo[self.state.parentctxnode] | ||||
return parentctx, [(self.node, tuple())] | ||||
Augie Fackler
|
r17064 | |||
Augie Fackler
|
r43346 | |||
@action( | ||||
Augie Fackler
|
r43347 | [b"mess", b"m"], | ||
_(b'edit commit message without changing commit content'), | ||||
Augie Fackler
|
r43346 | priority=True, | ||
) | ||||
Durham Goode
|
r24769 | class message(histeditaction): | ||
def commiteditor(self): | ||||
Augie Fackler
|
r43347 | return cmdutil.getcommiteditor(edit=True, editform=b'histedit.mess') | ||
Augie Fackler
|
r17064 | |||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r26335 | def findoutgoing(ui, repo, remote=None, force=False, opts=None): | ||
Pierre-Yves David
|
r19021 | """utility function to find the first outgoing changeset | ||
timeless@mozdev.org
|
r26171 | Used by initialization code""" | ||
Pierre-Yves David
|
r26335 | if opts is None: | ||
opts = {} | ||||
r47703 | path = urlutil.get_unique_push_path(b'histedit', repo, ui, remote) | |||
r50607 | ||||
ui.status(_(b'comparing with %s\n') % urlutil.hidepassword(path.loc)) | ||||
Pierre-Yves David
|
r19021 | |||
r47703 | revs, checkout = hg.addbranchrevs(repo, repo, (path.branch, []), None) | |||
r50607 | other = hg.peer(repo, opts, path) | |||
Pierre-Yves David
|
r19021 | |||
if revs: | ||||
revs = [repo.lookup(rev) for rev in revs] | ||||
outgoing = discovery.findcommonoutgoing(repo, other, revs, force=force) | ||||
if not outgoing.missing: | ||||
Martin von Zweigbergk
|
r48868 | raise error.StateError(_(b'no outgoing ancestors')) | ||
Augie Fackler
|
r43347 | roots = list(repo.revs(b"roots(%ln)", outgoing.missing)) | ||
Martin von Zweigbergk
|
r40065 | if len(roots) > 1: | ||
Augie Fackler
|
r43347 | msg = _(b'there are ambiguous outgoing revisions') | ||
hint = _(b"see 'hg help histedit' for more detail") | ||||
Martin von Zweigbergk
|
r48868 | raise error.StateError(msg, hint=hint) | ||
Martin von Zweigbergk
|
r37330 | return repo[roots[0]].node() | ||
Pierre-Yves David
|
r19021 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r40638 | # Curses Support | ||
try: | ||||
import curses | ||||
except ImportError: | ||||
curses = None | ||||
Augie Fackler
|
r43347 | KEY_LIST = [b'pick', b'edit', b'fold', b'drop', b'mess', b'roll'] | ||
Augie Fackler
|
r40638 | ACTION_LABELS = { | ||
Augie Fackler
|
r43347 | b'fold': b'^fold', | ||
b'roll': b'^roll', | ||||
Augie Fackler
|
r40638 | } | ||
Augie Fackler
|
r43346 | COLOR_HELP, COLOR_SELECTED, COLOR_OK, COLOR_WARN, COLOR_CURRENT = 1, 2, 3, 4, 5 | ||
Jordi Gutiérrez Hermoso
|
r42258 | COLOR_DIFF_ADD_LINE, COLOR_DIFF_DEL_LINE, COLOR_DIFF_OFFSET = 6, 7, 8 | ||
Jordi Gutiérrez Hermoso
|
r44062 | COLOR_ROLL, COLOR_ROLL_CURRENT, COLOR_ROLL_SELECTED = 9, 10, 11 | ||
Augie Fackler
|
r40638 | |||
E_QUIT, E_HISTEDIT = 1, 2 | ||||
E_PAGEDOWN, E_PAGEUP, E_LINEUP, E_LINEDOWN, E_RESIZE = 3, 4, 5, 6, 7 | ||||
MODE_INIT, MODE_PATCH, MODE_RULES, MODE_HELP = 0, 1, 2, 3 | ||||
KEYTABLE = { | ||||
Augie Fackler
|
r43347 | b'global': { | ||
b'h': b'next-action', | ||||
b'KEY_RIGHT': b'next-action', | ||||
b'l': b'prev-action', | ||||
b'KEY_LEFT': b'prev-action', | ||||
b'q': b'quit', | ||||
b'c': b'histedit', | ||||
b'C': b'histedit', | ||||
b'v': b'showpatch', | ||||
b'?': b'help', | ||||
Augie Fackler
|
r40638 | }, | ||
MODE_RULES: { | ||||
Augie Fackler
|
r43347 | b'd': b'action-drop', | ||
b'e': b'action-edit', | ||||
b'f': b'action-fold', | ||||
b'm': b'action-mess', | ||||
b'p': b'action-pick', | ||||
b'r': b'action-roll', | ||||
b' ': b'select', | ||||
b'j': b'down', | ||||
b'k': b'up', | ||||
b'KEY_DOWN': b'down', | ||||
b'KEY_UP': b'up', | ||||
b'J': b'move-down', | ||||
b'K': b'move-up', | ||||
b'KEY_NPAGE': b'move-down', | ||||
b'KEY_PPAGE': b'move-up', | ||||
b'0': b'goto', # Used for 0..9 | ||||
Augie Fackler
|
r40638 | }, | ||
MODE_PATCH: { | ||||
Augie Fackler
|
r43347 | b' ': b'page-down', | ||
b'KEY_NPAGE': b'page-down', | ||||
b'KEY_PPAGE': b'page-up', | ||||
b'j': b'line-down', | ||||
b'k': b'line-up', | ||||
b'KEY_DOWN': b'line-down', | ||||
b'KEY_UP': b'line-up', | ||||
b'J': b'down', | ||||
b'K': b'up', | ||||
Augie Fackler
|
r40638 | }, | ||
Augie Fackler
|
r43346 | MODE_HELP: {}, | ||
Augie Fackler
|
r40638 | } | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r40638 | def screen_size(): | ||
Augie Fackler
|
r43347 | return struct.unpack(b'hh', fcntl.ioctl(1, termios.TIOCGWINSZ, b' ')) | ||
Augie Fackler
|
r40638 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r49801 | class histeditrule: | ||
Kyle Lippincott
|
r45057 | def __init__(self, ui, ctx, pos, action=b'pick'): | ||
self.ui = ui | ||||
Augie Fackler
|
r40638 | self.ctx = ctx | ||
self.action = action | ||||
self.origpos = pos | ||||
self.pos = pos | ||||
self.conflicts = [] | ||||
Martin von Zweigbergk
|
r43685 | def __bytes__(self): | ||
Jordi Gutiérrez Hermoso
|
r44061 | # Example display of several histeditrules: | ||
Augie Fackler
|
r40638 | # | ||
# #10 pick 316392:06a16c25c053 add option to skip tests | ||||
Jordi Gutiérrez Hermoso
|
r44061 | # #11 ^roll 316393:71313c964cc5 <RED>oops a fixup commit</RED> | ||
Augie Fackler
|
r40638 | # #12 pick 316394:ab31f3973b0d include mfbt for mozilla-config.h | ||
# #13 ^fold 316395:14ce5803f4c3 fix warnings | ||||
# | ||||
# The carets point to the changeset being folded into ("roll this | ||||
# changeset into the changeset above"). | ||||
Jordi Gutiérrez Hermoso
|
r44061 | return b'%s%s' % (self.prefix, self.desc) | ||
__str__ = encoding.strmethod(__bytes__) | ||||
@property | ||||
def prefix(self): | ||||
# Some actions ('fold' and 'roll') combine a patch with a | ||||
# previous one. Add a marker showing which patch they apply | ||||
# to. | ||||
Augie Fackler
|
r40638 | action = ACTION_LABELS.get(self.action, self.action) | ||
Jordi Gutiérrez Hermoso
|
r44061 | |||
Augie Fackler
|
r40638 | h = self.ctx.hex()[0:12] | ||
r = self.ctx.rev() | ||||
Jordi Gutiérrez Hermoso
|
r44061 | |||
return b"#%s %s %d:%s " % ( | ||||
Martin von Zweigbergk
|
r43685 | (b'%d' % self.origpos).ljust(2), | ||
action.ljust(6), | ||||
r, | ||||
h, | ||||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r40638 | |||
Martin von Zweigbergk
|
r46022 | @util.propertycache | ||
Jordi Gutiérrez Hermoso
|
r44061 | def desc(self): | ||
Martin von Zweigbergk
|
r46376 | summary = cmdutil.rendertemplate( | ||
self.ctx, self.ui.config(b'histedit', b'summary-template') | ||||
Kyle Lippincott
|
r45057 | ) | ||
if summary: | ||||
return summary | ||||
Jordi Gutiérrez Hermoso
|
r44061 | # This is split off from the prefix property so that we can | ||
# separately make the description for 'roll' red (since it | ||||
# will get discarded). | ||||
Martin von Zweigbergk
|
r49886 | return stringutil.firstline(self.ctx.description()) | ||
Martin von Zweigbergk
|
r43685 | |||
Augie Fackler
|
r40638 | def checkconflicts(self, other): | ||
if other.pos > self.pos and other.origpos <= self.origpos: | ||||
if set(other.ctx.files()) & set(self.ctx.files()) != set(): | ||||
self.conflicts.append(other) | ||||
return self.conflicts | ||||
if other in self.conflicts: | ||||
self.conflicts.remove(other) | ||||
return self.conflicts | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r40638 | def makecommands(rules): | ||
"""Returns a list of commands consumable by histedit --commands based on | ||||
our list of rules""" | ||||
commands = [] | ||||
for rules in rules: | ||||
Martin von Zweigbergk
|
r43688 | commands.append(b'%s %s\n' % (rules.action, rules.ctx)) | ||
Augie Fackler
|
r40638 | return commands | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r40638 | def addln(win, y, x, line, color=None): | ||
"""Add a line to the given window left padding but 100% filled with | ||||
whitespace characters, so that the color appears on the whole line""" | ||||
maxy, maxx = win.getmaxyx() | ||||
length = maxx - 1 - x | ||||
Martin von Zweigbergk
|
r43685 | line = bytes(line).ljust(length)[:length] | ||
Augie Fackler
|
r40638 | if y < 0: | ||
y = maxy + y | ||||
if x < 0: | ||||
x = maxx + x | ||||
if color: | ||||
win.addstr(y, x, line, color) | ||||
else: | ||||
win.addstr(y, x, line) | ||||
Augie Fackler
|
r43346 | |||
Yu Feng
|
r42418 | def _trunc_head(line, n): | ||
if len(line) <= n: | ||||
return line | ||||
Augie Fackler
|
r43347 | return b'> ' + line[-(n - 2) :] | ||
Augie Fackler
|
r43346 | |||
Yu Feng
|
r42418 | def _trunc_tail(line, n): | ||
if len(line) <= n: | ||||
return line | ||||
Augie Fackler
|
r43347 | return line[: n - 2] + b' >' | ||
Augie Fackler
|
r43346 | |||
Yu Feng
|
r42418 | |||
Gregory Szorc
|
r49801 | class _chistedit_state: | ||
Martin von Zweigbergk
|
r49014 | def __init__( | ||
self, | ||||
repo, | ||||
rules, | ||||
Martin von Zweigbergk
|
r49016 | stdscr, | ||
Martin von Zweigbergk
|
r49014 | ): | ||
self.repo = repo | ||||
self.rules = rules | ||||
Martin von Zweigbergk
|
r49016 | self.stdscr = stdscr | ||
Martin von Zweigbergk
|
r49047 | self.later_on_top = repo.ui.configbool( | ||
b'histedit', b'later-commits-first' | ||||
) | ||||
# The current item in display order, initialized to point to the top | ||||
# of the screen. | ||||
Martin von Zweigbergk
|
r49014 | self.pos = 0 | ||
self.selected = None | ||||
self.mode = (MODE_INIT, MODE_INIT) | ||||
self.page_height = None | ||||
self.modes = { | ||||
MODE_RULES: { | ||||
b'line_offset': 0, | ||||
}, | ||||
MODE_PATCH: { | ||||
b'line_offset': 0, | ||||
}, | ||||
} | ||||
Martin von Zweigbergk
|
r49015 | def render_commit(self, win): | ||
Augie Fackler
|
r40638 | """Renders the commit window that shows the log of the current selected | ||
commit""" | ||||
Martin von Zweigbergk
|
r49047 | rule = self.rules[self.display_pos_to_rule_pos(self.pos)] | ||
Augie Fackler
|
r40638 | |||
ctx = rule.ctx | ||||
win.box() | ||||
maxy, maxx = win.getmaxyx() | ||||
length = maxx - 3 | ||||
Martin von Zweigbergk
|
r43693 | line = b"changeset: %d:%s" % (ctx.rev(), ctx.hex()[:12]) | ||
Augie Fackler
|
r40638 | win.addstr(1, 1, line[:length]) | ||
Martin von Zweigbergk
|
r43685 | line = b"user: %s" % ctx.user() | ||
Augie Fackler
|
r40638 | win.addstr(2, 1, line[:length]) | ||
Martin von Zweigbergk
|
r49015 | bms = self.repo.nodebookmarks(ctx.node()) | ||
Martin von Zweigbergk
|
r43685 | line = b"bookmark: %s" % b' '.join(bms) | ||
Augie Fackler
|
r40638 | win.addstr(3, 1, line[:length]) | ||
Martin von Zweigbergk
|
r49886 | line = b"summary: %s" % stringutil.firstline(ctx.description()) | ||
Augie Fackler
|
r40638 | win.addstr(4, 1, line[:length]) | ||
Augie Fackler
|
r43347 | line = b"files: " | ||
Yu Feng
|
r42418 | win.addstr(5, 1, line) | ||
fnx = 1 + len(line) | ||||
fnmaxx = length - fnx + 1 | ||||
y = 5 | ||||
fnmaxn = maxy - (1 + y) - 1 | ||||
files = ctx.files() | ||||
for i, line1 in enumerate(files): | ||||
if len(files) > fnmaxn and i == fnmaxn - 1: | ||||
Augie Fackler
|
r43347 | win.addstr(y, fnx, _trunc_tail(b','.join(files[i:]), fnmaxx)) | ||
Yu Feng
|
r42418 | y = y + 1 | ||
break | ||||
win.addstr(y, fnx, _trunc_head(line1, fnmaxx)) | ||||
y = y + 1 | ||||
Augie Fackler
|
r40638 | |||
conflicts = rule.conflicts | ||||
if len(conflicts) > 0: | ||||
Martin von Zweigbergk
|
r43693 | conflictstr = b','.join(map(lambda r: r.ctx.hex()[:12], conflicts)) | ||
Martin von Zweigbergk
|
r43685 | conflictstr = b"changed files overlap with %s" % conflictstr | ||
Augie Fackler
|
r40638 | else: | ||
Augie Fackler
|
r43347 | conflictstr = b'no overlap' | ||
Augie Fackler
|
r40638 | |||
Yu Feng
|
r42418 | win.addstr(y, 1, conflictstr[:length]) | ||
Augie Fackler
|
r40638 | win.noutrefresh() | ||
Martin von Zweigbergk
|
r49016 | def helplines(self): | ||
if self.mode[0] == MODE_PATCH: | ||||
help = b"""\ | ||||
?: help, k/up: line up, j/down: line down, v: stop viewing patch | ||||
pgup: prev page, space/pgdn: next page, c: commit, q: abort | ||||
""" | ||||
else: | ||||
help = b"""\ | ||||
?: help, k/up: move up, j/down: move down, space: select, v: view patch | ||||
d: drop, e: edit, f: fold, m: mess, p: pick, r: roll | ||||
pgup/K: move patch up, pgdn/J: move patch down, c: commit, q: abort | ||||
""" | ||||
Martin von Zweigbergk
|
r49194 | if self.later_on_top: | ||
help += b"Newer commits are shown above older commits.\n" | ||||
else: | ||||
help += b"Older commits are shown above newer commits.\n" | ||||
Martin von Zweigbergk
|
r49016 | return help.splitlines() | ||
def render_help(self, win): | ||||
maxy, maxx = win.getmaxyx() | ||||
for y, line in enumerate(self.helplines()): | ||||
if y >= maxy: | ||||
break | ||||
addln(win, y, 0, line, curses.color_pair(COLOR_HELP)) | ||||
win.noutrefresh() | ||||
def layout(self): | ||||
maxy, maxx = self.stdscr.getmaxyx() | ||||
helplen = len(self.helplines()) | ||||
mainlen = maxy - helplen - 12 | ||||
if mainlen < 1: | ||||
raise error.Abort( | ||||
_(b"terminal dimensions %d by %d too small for curses histedit") | ||||
% (maxy, maxx), | ||||
hint=_( | ||||
b"enlarge your terminal or use --config ui.interface=text" | ||||
), | ||||
) | ||||
return { | ||||
b'commit': (12, maxx), | ||||
b'help': (helplen, maxx), | ||||
b'main': (mainlen, maxx), | ||||
} | ||||
Martin von Zweigbergk
|
r49047 | def display_pos_to_rule_pos(self, display_pos): | ||
"""Converts a position in display order to rule order. | ||||
The `display_pos` is the order from the top in display order, not | ||||
considering which items are currently visible on the screen. Thus, | ||||
`display_pos=0` is the item at the top (possibly after scrolling to | ||||
the top) | ||||
""" | ||||
if self.later_on_top: | ||||
return len(self.rules) - 1 - display_pos | ||||
else: | ||||
return display_pos | ||||
Martin von Zweigbergk
|
r49017 | def render_rules(self, rulesscr): | ||
start = self.modes[MODE_RULES][b'line_offset'] | ||||
Augie Fackler
|
r40638 | |||
Martin von Zweigbergk
|
r49028 | conflicts = [r.ctx for r in self.rules if r.conflicts] | ||
Augie Fackler
|
r40638 | if len(conflicts) > 0: | ||
Martin von Zweigbergk
|
r43687 | line = b"potential conflict in %s" % b','.join( | ||
map(pycompat.bytestr, conflicts) | ||||
) | ||||
Augie Fackler
|
r40638 | addln(rulesscr, -1, 0, line, curses.color_pair(COLOR_WARN)) | ||
Martin von Zweigbergk
|
r49047 | for display_pos in range(start, len(self.rules)): | ||
y = display_pos - start | ||||
if y < 0 or y >= self.page_height: | ||||
continue | ||||
rule_pos = self.display_pos_to_rule_pos(display_pos) | ||||
rule = self.rules[rule_pos] | ||||
Augie Fackler
|
r40638 | if len(rule.conflicts) > 0: | ||
Augie Fackler
|
r43347 | rulesscr.addstr(y, 0, b" ", curses.color_pair(COLOR_WARN)) | ||
Augie Fackler
|
r40638 | else: | ||
Augie Fackler
|
r43347 | rulesscr.addstr(y, 0, b" ", curses.COLOR_BLACK) | ||
Jordi Gutiérrez Hermoso
|
r44063 | |||
Martin von Zweigbergk
|
r49047 | if display_pos == self.selected: | ||
Jordi Gutiérrez Hermoso
|
r44063 | rollcolor = COLOR_ROLL_SELECTED | ||
Augie Fackler
|
r40638 | addln(rulesscr, y, 2, rule, curses.color_pair(COLOR_SELECTED)) | ||
Martin von Zweigbergk
|
r49047 | elif display_pos == self.pos: | ||
Jordi Gutiérrez Hermoso
|
r44063 | rollcolor = COLOR_ROLL_CURRENT | ||
Augie Fackler
|
r43346 | addln( | ||
rulesscr, | ||||
y, | ||||
2, | ||||
rule, | ||||
curses.color_pair(COLOR_CURRENT) | curses.A_BOLD, | ||||
) | ||||
Augie Fackler
|
r40638 | else: | ||
Jordi Gutiérrez Hermoso
|
r44063 | rollcolor = COLOR_ROLL | ||
Augie Fackler
|
r40638 | addln(rulesscr, y, 2, rule) | ||
Jordi Gutiérrez Hermoso
|
r44063 | |||
if rule.action == b'roll': | ||||
rulesscr.addstr( | ||||
y, | ||||
2 + len(rule.prefix), | ||||
rule.desc, | ||||
curses.color_pair(rollcolor), | ||||
) | ||||
Augie Fackler
|
r40638 | rulesscr.noutrefresh() | ||
Martin von Zweigbergk
|
r49018 | def render_string(self, win, output, diffcolors=False): | ||
maxy, maxx = win.getmaxyx() | ||||
length = min(maxy - 1, len(output)) | ||||
for y in range(0, length): | ||||
line = output[y] | ||||
if diffcolors: | ||||
if line and line[0] == b'+': | ||||
win.addstr( | ||||
y, 0, line, curses.color_pair(COLOR_DIFF_ADD_LINE) | ||||
) | ||||
elif line and line[0] == b'-': | ||||
win.addstr( | ||||
y, 0, line, curses.color_pair(COLOR_DIFF_DEL_LINE) | ||||
) | ||||
elif line.startswith(b'@@ '): | ||||
win.addstr(y, 0, line, curses.color_pair(COLOR_DIFF_OFFSET)) | ||||
else: | ||||
win.addstr(y, 0, line) | ||||
else: | ||||
win.addstr(y, 0, line) | ||||
win.noutrefresh() | ||||
def render_patch(self, win): | ||||
start = self.modes[MODE_PATCH][b'line_offset'] | ||||
content = self.modes[MODE_PATCH][b'patchcontents'] | ||||
self.render_string(win, content[start:], diffcolors=True) | ||||
Martin von Zweigbergk
|
r49019 | def event(self, ch): | ||
"""Change state based on the current character input | ||||
This takes the current state and based on the current character input from | ||||
the user we change the state. | ||||
""" | ||||
oldpos = self.pos | ||||
if ch in (curses.KEY_RESIZE, b"KEY_RESIZE"): | ||||
return E_RESIZE | ||||
lookup_ch = ch | ||||
if ch is not None and b'0' <= ch <= b'9': | ||||
lookup_ch = b'0' | ||||
curmode, prevmode = self.mode | ||||
action = KEYTABLE[curmode].get( | ||||
lookup_ch, KEYTABLE[b'global'].get(lookup_ch) | ||||
) | ||||
if action is None: | ||||
return | ||||
if action in (b'down', b'move-down'): | ||||
Martin von Zweigbergk
|
r49028 | newpos = min(oldpos + 1, len(self.rules) - 1) | ||
Martin von Zweigbergk
|
r49021 | self.move_cursor(oldpos, newpos) | ||
Martin von Zweigbergk
|
r49028 | if self.selected is not None or action == b'move-down': | ||
Martin von Zweigbergk
|
r49024 | self.swap(oldpos, newpos) | ||
Martin von Zweigbergk
|
r49019 | elif action in (b'up', b'move-up'): | ||
newpos = max(0, oldpos - 1) | ||||
Martin von Zweigbergk
|
r49021 | self.move_cursor(oldpos, newpos) | ||
Martin von Zweigbergk
|
r49028 | if self.selected is not None or action == b'move-up': | ||
Martin von Zweigbergk
|
r49024 | self.swap(oldpos, newpos) | ||
Martin von Zweigbergk
|
r49019 | elif action == b'next-action': | ||
Martin von Zweigbergk
|
r49026 | self.cycle_action(oldpos, next=True) | ||
Martin von Zweigbergk
|
r49019 | elif action == b'prev-action': | ||
Martin von Zweigbergk
|
r49026 | self.cycle_action(oldpos, next=False) | ||
Martin von Zweigbergk
|
r49019 | elif action == b'select': | ||
Martin von Zweigbergk
|
r49028 | self.selected = oldpos if self.selected is None else None | ||
self.make_selection(self.selected) | ||||
elif action == b'goto' and int(ch) < len(self.rules) <= 10: | ||||
newrule = next((r for r in self.rules if r.origpos == int(ch))) | ||||
Martin von Zweigbergk
|
r49021 | self.move_cursor(oldpos, newrule.pos) | ||
Martin von Zweigbergk
|
r49028 | if self.selected is not None: | ||
Martin von Zweigbergk
|
r49024 | self.swap(oldpos, newrule.pos) | ||
Martin von Zweigbergk
|
r49019 | elif action.startswith(b'action-'): | ||
Martin von Zweigbergk
|
r49025 | self.change_action(oldpos, action[7:]) | ||
Martin von Zweigbergk
|
r49019 | elif action == b'showpatch': | ||
Martin von Zweigbergk
|
r49022 | self.change_mode(MODE_PATCH if curmode != MODE_PATCH else prevmode) | ||
Martin von Zweigbergk
|
r49019 | elif action == b'help': | ||
Martin von Zweigbergk
|
r49022 | self.change_mode(MODE_HELP if curmode != MODE_HELP else prevmode) | ||
Martin von Zweigbergk
|
r49019 | elif action == b'quit': | ||
return E_QUIT | ||||
elif action == b'histedit': | ||||
return E_HISTEDIT | ||||
elif action == b'page-down': | ||||
return E_PAGEDOWN | ||||
elif action == b'page-up': | ||||
return E_PAGEUP | ||||
elif action == b'line-down': | ||||
return E_LINEDOWN | ||||
elif action == b'line-up': | ||||
return E_LINEUP | ||||
Martin von Zweigbergk
|
r49020 | def patch_contents(self): | ||
repo = self.repo | ||||
Martin von Zweigbergk
|
r49047 | rule = self.rules[self.display_pos_to_rule_pos(self.pos)] | ||
Martin von Zweigbergk
|
r49020 | displayer = logcmdutil.changesetdisplayer( | ||
repo.ui, | ||||
repo, | ||||
{b"patch": True, b"template": b"status"}, | ||||
buffered=True, | ||||
) | ||||
overrides = {(b'ui', b'verbose'): True} | ||||
with repo.ui.configoverride(overrides, source=b'histedit'): | ||||
displayer.show(rule.ctx) | ||||
displayer.close() | ||||
return displayer.hunk[rule.ctx.rev()].splitlines() | ||||
Martin von Zweigbergk
|
r49021 | def move_cursor(self, oldpos, newpos): | ||
"""Change the rule/changeset that the cursor is pointing to, regardless of | ||||
current mode (you can switch between patches from the view patch window).""" | ||||
self.pos = newpos | ||||
mode, _ = self.mode | ||||
if mode == MODE_RULES: | ||||
# Scroll through the list by updating the view for MODE_RULES, so that | ||||
# even if we are not currently viewing the rules, switching back will | ||||
# result in the cursor's rule being visible. | ||||
modestate = self.modes[MODE_RULES] | ||||
if newpos < modestate[b'line_offset']: | ||||
modestate[b'line_offset'] = newpos | ||||
elif newpos > modestate[b'line_offset'] + self.page_height - 1: | ||||
modestate[b'line_offset'] = newpos - self.page_height + 1 | ||||
# Reset the patch view region to the top of the new patch. | ||||
self.modes[MODE_PATCH][b'line_offset'] = 0 | ||||
Martin von Zweigbergk
|
r49022 | def change_mode(self, mode): | ||
curmode, _ = self.mode | ||||
self.mode = (mode, curmode) | ||||
if mode == MODE_PATCH: | ||||
self.modes[MODE_PATCH][b'patchcontents'] = self.patch_contents() | ||||
Martin von Zweigbergk
|
r49023 | def make_selection(self, pos): | ||
self.selected = pos | ||||
Martin von Zweigbergk
|
r49024 | def swap(self, oldpos, newpos): | ||
"""Swap two positions and calculate necessary conflicts in | ||||
O(|newpos-oldpos|) time""" | ||||
Martin von Zweigbergk
|
r49047 | old_rule_pos = self.display_pos_to_rule_pos(oldpos) | ||
new_rule_pos = self.display_pos_to_rule_pos(newpos) | ||||
Martin von Zweigbergk
|
r49024 | |||
rules = self.rules | ||||
Martin von Zweigbergk
|
r49047 | assert 0 <= old_rule_pos < len(rules) and 0 <= new_rule_pos < len(rules) | ||
rules[old_rule_pos], rules[new_rule_pos] = ( | ||||
rules[new_rule_pos], | ||||
rules[old_rule_pos], | ||||
) | ||||
Martin von Zweigbergk
|
r49024 | |||
# TODO: swap should not know about histeditrule's internals | ||||
Martin von Zweigbergk
|
r49047 | rules[new_rule_pos].pos = new_rule_pos | ||
rules[old_rule_pos].pos = old_rule_pos | ||||
start = min(old_rule_pos, new_rule_pos) | ||||
end = max(old_rule_pos, new_rule_pos) | ||||
Manuel Jacob
|
r50179 | for r in range(start, end + 1): | ||
Martin von Zweigbergk
|
r49047 | rules[new_rule_pos].checkconflicts(rules[r]) | ||
rules[old_rule_pos].checkconflicts(rules[r]) | ||||
Martin von Zweigbergk
|
r49024 | |||
if self.selected: | ||||
self.make_selection(newpos) | ||||
Martin von Zweigbergk
|
r49025 | def change_action(self, pos, action): | ||
"""Change the action state on the given position to the new action""" | ||||
Martin von Zweigbergk
|
r49028 | assert 0 <= pos < len(self.rules) | ||
self.rules[pos].action = action | ||||
Martin von Zweigbergk
|
r49025 | |||
Martin von Zweigbergk
|
r49026 | def cycle_action(self, pos, next=False): | ||
"""Changes the action state the next or the previous action from | ||||
the action list""" | ||||
Martin von Zweigbergk
|
r49028 | assert 0 <= pos < len(self.rules) | ||
current = self.rules[pos].action | ||||
Martin von Zweigbergk
|
r49026 | |||
assert current in KEY_LIST | ||||
index = KEY_LIST.index(current) | ||||
if next: | ||||
index += 1 | ||||
else: | ||||
index -= 1 | ||||
self.change_action(pos, KEY_LIST[index % len(KEY_LIST)]) | ||||
Martin von Zweigbergk
|
r49027 | def change_view(self, delta, unit): | ||
"""Change the region of whatever is being viewed (a patch or the list of | ||||
changesets). 'delta' is an amount (+/- 1) and 'unit' is 'page' or 'line'.""" | ||||
mode, _ = self.mode | ||||
if mode != MODE_PATCH: | ||||
return | ||||
mode_state = self.modes[mode] | ||||
num_lines = len(mode_state[b'patchcontents']) | ||||
page_height = self.page_height | ||||
unit = page_height if unit == b'page' else 1 | ||||
num_pages = 1 + (num_lines - 1) // page_height | ||||
max_offset = (num_pages - 1) * page_height | ||||
newline = mode_state[b'line_offset'] + delta * unit | ||||
mode_state[b'line_offset'] = max(0, min(max_offset, newline)) | ||||
Martin von Zweigbergk
|
r49017 | |||
def _chisteditmain(repo, rules, stdscr): | ||||
try: | ||||
curses.use_default_colors() | ||||
except curses.error: | ||||
pass | ||||
# initialize color pattern | ||||
curses.init_pair(COLOR_HELP, curses.COLOR_WHITE, curses.COLOR_BLUE) | ||||
curses.init_pair(COLOR_SELECTED, curses.COLOR_BLACK, curses.COLOR_WHITE) | ||||
curses.init_pair(COLOR_WARN, curses.COLOR_BLACK, curses.COLOR_YELLOW) | ||||
curses.init_pair(COLOR_OK, curses.COLOR_BLACK, curses.COLOR_GREEN) | ||||
curses.init_pair(COLOR_CURRENT, curses.COLOR_WHITE, curses.COLOR_MAGENTA) | ||||
curses.init_pair(COLOR_DIFF_ADD_LINE, curses.COLOR_GREEN, -1) | ||||
curses.init_pair(COLOR_DIFF_DEL_LINE, curses.COLOR_RED, -1) | ||||
curses.init_pair(COLOR_DIFF_OFFSET, curses.COLOR_MAGENTA, -1) | ||||
curses.init_pair(COLOR_ROLL, curses.COLOR_RED, -1) | ||||
curses.init_pair( | ||||
COLOR_ROLL_CURRENT, curses.COLOR_BLACK, curses.COLOR_MAGENTA | ||||
) | ||||
curses.init_pair(COLOR_ROLL_SELECTED, curses.COLOR_RED, curses.COLOR_WHITE) | ||||
# don't display the cursor | ||||
try: | ||||
curses.curs_set(0) | ||||
except curses.error: | ||||
pass | ||||
Augie Fackler
|
r40638 | def drawvertwin(size, y, x): | ||
win = curses.newwin(size[0], size[1], y, x) | ||||
y += size[0] | ||||
return win, y, x | ||||
Martin von Zweigbergk
|
r49016 | state = _chistedit_state(repo, rules, stdscr) | ||
Augie Fackler
|
r40638 | |||
# eventloop | ||||
ch = None | ||||
stdscr.clear() | ||||
stdscr.refresh() | ||||
while True: | ||||
Martin von Zweigbergk
|
r49014 | oldmode, unused = state.mode | ||
Augie Fackler
|
r47125 | if oldmode == MODE_INIT: | ||
Martin von Zweigbergk
|
r49022 | state.change_mode(MODE_RULES) | ||
Martin von Zweigbergk
|
r49019 | e = state.event(ch) | ||
Augie Fackler
|
r47125 | |||
if e == E_QUIT: | ||||
return False | ||||
if e == E_HISTEDIT: | ||||
Martin von Zweigbergk
|
r49014 | return state.rules | ||
Augie Fackler
|
r47125 | else: | ||
if e == E_RESIZE: | ||||
size = screen_size() | ||||
if size != stdscr.getmaxyx(): | ||||
curses.resizeterm(*size) | ||||
Martin von Zweigbergk
|
r49016 | sizes = state.layout() | ||
Martin von Zweigbergk
|
r49014 | curmode, unused = state.mode | ||
Augie Fackler
|
r47125 | if curmode != oldmode: | ||
Martin von Zweigbergk
|
r49014 | state.page_height = sizes[b'main'][0] | ||
Augie Fackler
|
r47125 | # Adjust the view to fit the current screen size. | ||
Martin von Zweigbergk
|
r49021 | state.move_cursor(state.pos, state.pos) | ||
Augie Fackler
|
r47125 | |||
# Pack the windows against the top, each pane spread across the | ||||
# full width of the screen. | ||||
y, x = (0, 0) | ||||
helpwin, y, x = drawvertwin(sizes[b'help'], y, x) | ||||
mainwin, y, x = drawvertwin(sizes[b'main'], y, x) | ||||
commitwin, y, x = drawvertwin(sizes[b'commit'], y, x) | ||||
if e in (E_PAGEDOWN, E_PAGEUP, E_LINEDOWN, E_LINEUP): | ||||
if e == E_PAGEDOWN: | ||||
Martin von Zweigbergk
|
r49027 | state.change_view(+1, b'page') | ||
Augie Fackler
|
r47125 | elif e == E_PAGEUP: | ||
Martin von Zweigbergk
|
r49027 | state.change_view(-1, b'page') | ||
Augie Fackler
|
r47125 | elif e == E_LINEDOWN: | ||
Martin von Zweigbergk
|
r49027 | state.change_view(+1, b'line') | ||
Augie Fackler
|
r47125 | elif e == E_LINEUP: | ||
Martin von Zweigbergk
|
r49027 | state.change_view(-1, b'line') | ||
Augie Fackler
|
r47125 | |||
# start rendering | ||||
commitwin.erase() | ||||
helpwin.erase() | ||||
mainwin.erase() | ||||
if curmode == MODE_PATCH: | ||||
Martin von Zweigbergk
|
r49018 | state.render_patch(mainwin) | ||
Augie Fackler
|
r47125 | elif curmode == MODE_HELP: | ||
Martin von Zweigbergk
|
r49018 | state.render_string(mainwin, __doc__.strip().splitlines()) | ||
Augie Fackler
|
r40638 | else: | ||
Martin von Zweigbergk
|
r49017 | state.render_rules(mainwin) | ||
Martin von Zweigbergk
|
r49015 | state.render_commit(commitwin) | ||
Martin von Zweigbergk
|
r49016 | state.render_help(helpwin) | ||
Augie Fackler
|
r47125 | curses.doupdate() | ||
# done rendering | ||||
ch = encoding.strtolocal(stdscr.getkey()) | ||||
Augie Fackler
|
r40638 | |||
Augie Fackler
|
r43346 | |||
Steve Fink
|
r44892 | def _chistedit(ui, repo, freeargs, opts): | ||
Augie Fackler
|
r40638 | """interactively edit changeset history via a curses interface | ||
Provides a ncurses interface to histedit. Press ? in chistedit mode | ||||
to see an extensive help. Requires python-curses to be installed.""" | ||||
if curses is None: | ||||
Augie Fackler
|
r43347 | raise error.Abort(_(b"Python curses library required")) | ||
Augie Fackler
|
r40638 | |||
# disable color | ||||
ui._colormode = None | ||||
try: | ||||
Augie Fackler
|
r43347 | keep = opts.get(b'keep') | ||
revs = opts.get(b'rev', [])[:] | ||||
Augie Fackler
|
r40638 | cmdutil.checkunfinished(repo) | ||
cmdutil.bailifchanged(repo) | ||||
revs.extend(freeargs) | ||||
if not revs: | ||||
defaultrev = destutil.desthistedit(ui, repo) | ||||
if defaultrev is not None: | ||||
revs.append(defaultrev) | ||||
if len(revs) != 1: | ||||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Augie Fackler
|
r43347 | _(b'histedit requires exactly one ancestor revision') | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r40638 | |||
Martin von Zweigbergk
|
r48928 | rr = list(repo.set(b'roots(%ld)', logcmdutil.revrange(repo, revs))) | ||
Augie Fackler
|
r40638 | if len(rr) != 1: | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b'The specified revisions must have ' | ||
b'exactly one common root' | ||||
Augie Fackler
|
r43346 | ) | ||
) | ||||
Augie Fackler
|
r40638 | root = rr[0].node() | ||
Martin von Zweigbergk
|
r41444 | topmost = repo.dirstate.p1() | ||
Augie Fackler
|
r40638 | revs = between(repo, root, topmost, keep) | ||
if not revs: | ||||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Joerg Sonnenberger
|
r46729 | _(b'%s is not an ancestor of working directory') % short(root) | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r40638 | |||
Martin von Zweigbergk
|
r49029 | rules = [] | ||
Augie Fackler
|
r40638 | for i, r in enumerate(revs): | ||
Martin von Zweigbergk
|
r49029 | rules.append(histeditrule(ui, repo[r], i)) | ||
Manuel Jacob
|
r45550 | with util.with_lc_ctype(): | ||
Martin von Zweigbergk
|
r49029 | rc = curses.wrapper(functools.partial(_chisteditmain, repo, rules)) | ||
Augie Fackler
|
r40638 | curses.echo() | ||
curses.endwin() | ||||
if rc is False: | ||||
Augie Fackler
|
r43347 | ui.write(_(b"histedit aborted\n")) | ||
Augie Fackler
|
r40638 | return 0 | ||
if type(rc) is list: | ||||
Augie Fackler
|
r43347 | ui.status(_(b"performing changes\n")) | ||
Augie Fackler
|
r40638 | rules = makecommands(rc) | ||
Martin von Zweigbergk
|
r43689 | with repo.vfs(b'chistedit', b'w+') as fp: | ||
Augie Fackler
|
r40638 | for r in rules: | ||
fp.write(r) | ||||
Steve Fink
|
r44892 | opts[b'commands'] = fp.name | ||
return _texthistedit(ui, repo, freeargs, opts) | ||||
Augie Fackler
|
r40638 | except KeyboardInterrupt: | ||
pass | ||||
return -1 | ||||
Augie Fackler
|
r43346 | |||
@command( | ||||
Augie Fackler
|
r43347 | b'histedit', | ||
Augie Fackler
|
r43346 | [ | ||
( | ||||
Augie Fackler
|
r43347 | b'', | ||
b'commands', | ||||
b'', | ||||
_(b'read history edits from the specified file'), | ||||
_(b'FILE'), | ||||
Augie Fackler
|
r43346 | ), | ||
Augie Fackler
|
r43347 | (b'c', b'continue', False, _(b'continue an edit already in progress')), | ||
(b'', b'edit-plan', False, _(b'edit remaining actions list')), | ||||
Augie Fackler
|
r43346 | ( | ||
Augie Fackler
|
r43347 | b'k', | ||
b'keep', | ||||
Augie Fackler
|
r43346 | False, | ||
Augie Fackler
|
r43347 | _(b"don't strip old nodes after edit is complete"), | ||
Augie Fackler
|
r43346 | ), | ||
Augie Fackler
|
r43347 | (b'', b'abort', False, _(b'abort an edit in progress')), | ||
(b'o', b'outgoing', False, _(b'changesets not found in destination')), | ||||
( | ||||
b'f', | ||||
b'force', | ||||
False, | ||||
_(b'force outgoing even for unrelated repositories'), | ||||
), | ||||
(b'r', b'rev', [], _(b'first revision to be edited'), _(b'REV')), | ||||
Augie Fackler
|
r43346 | ] | ||
+ cmdutil.formatteropts, | ||||
Augie Fackler
|
r43347 | _(b"[OPTIONS] ([ANCESTOR] | --outgoing [URL])"), | ||
Augie Fackler
|
r43346 | helpcategory=command.CATEGORY_CHANGE_MANAGEMENT, | ||
) | ||||
Pierre-Yves David
|
r19020 | def histedit(ui, repo, *freeargs, **opts): | ||
Augie Fackler
|
r17131 | """interactively edit changeset history | ||
FUJIWARA Katsunori
|
r19621 | |||
timeless
|
r27713 | This command lets you edit a linear series of changesets (up to | ||
and including the working directory, which should be clean). | ||||
FUJIWARA Katsunori
|
r27956 | You can: | ||
timeless
|
r27713 | |||
- `pick` to [re]order a changeset | ||||
- `drop` to omit changeset | ||||
- `mess` to reword the changeset commit message | ||||
Ben Schmidt
|
r31055 | - `fold` to combine it with the preceding changeset (using the later date) | ||
timeless
|
r27713 | |||
Ben Schmidt
|
r31056 | - `roll` like fold, but discarding this commit's description and date | ||
timeless
|
r27713 | |||
Ben Schmidt
|
r31055 | - `edit` to edit this changeset (preserving date) | ||
FUJIWARA Katsunori
|
r19622 | |||
Saurabh Singh
|
r34490 | - `base` to checkout changeset and apply further changesets from there | ||
Wagner Bruna
|
r27972 | There are a number of ways to select the root changeset: | ||
timeless
|
r27714 | |||
- Specify ANCESTOR directly | ||||
Gregory Szorc
|
r27262 | |||
timeless
|
r27714 | - Use --outgoing -- it will be the first linear changeset not | ||
FUJIWARA Katsunori
|
r28077 | included in destination. (See :hg:`help config.paths.default-push`) | ||
timeless
|
r27714 | |||
- 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
|
r19842 | |||
timeless
|
r27630 | .. container:: verbose | ||
FUJIWARA Katsunori
|
r19842 | |||
timeless
|
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
|
r19972 | |||
Mathias De Maré
|
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
|
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
|
r17064 | """ | ||
Steve Fink
|
r44892 | opts = pycompat.byteskwargs(opts) | ||
Augie Fackler
|
r41211 | # kludge: _chistedit only works for starting an edit, not aborting | ||
# or continuing, so fall back to regular _texthistedit for those | ||||
# operations. | ||||
Martin von Zweigbergk
|
r44925 | if ui.interface(b'histedit') == b'curses' and _getgoal(opts) == goalnew: | ||
Steve Fink
|
r44892 | return _chistedit(ui, repo, freeargs, opts) | ||
return _texthistedit(ui, repo, freeargs, opts) | ||||
def _texthistedit(ui, repo, freeargs, opts): | ||||
David Soria Parra
|
r22984 | state = histeditstate(repo) | ||
Martin von Zweigbergk
|
r41201 | with repo.wlock() as wlock, repo.lock() as lock: | ||
state.wlock = wlock | ||||
state.lock = lock | ||||
Steve Fink
|
r44892 | _histedit(ui, repo, state, freeargs, opts) | ||
Siddharth Agarwal
|
r20071 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | goalcontinue = b'continue' | ||
goalabort = b'abort' | ||||
goaleditplan = b'edit-plan' | ||||
goalnew = b'new' | ||||
Kostia Balytskyi
|
r28144 | |||
Augie Fackler
|
r43346 | |||
Kostia Balytskyi
|
r28134 | def _getgoal(opts): | ||
Augie Fackler
|
r41259 | if opts.get(b'continue'): | ||
Kostia Balytskyi
|
r28144 | return goalcontinue | ||
Augie Fackler
|
r41259 | if opts.get(b'abort'): | ||
Kostia Balytskyi
|
r28144 | return goalabort | ||
Augie Fackler
|
r41259 | if opts.get(b'edit_plan'): | ||
Kostia Balytskyi
|
r28144 | return goaleditplan | ||
return goalnew | ||||
Kostia Balytskyi
|
r28134 | |||
Augie Fackler
|
r43346 | |||
Yuya Nishihara
|
r30262 | def _readfile(ui, path): | ||
Augie Fackler
|
r43347 | if path == b'-': | ||
with ui.timeblockedsection(b'histedit'): | ||||
Simon Farnsworth
|
r30983 | return ui.fin.read() | ||
Jun Wu
|
r28550 | else: | ||
Augie Fackler
|
r43347 | with open(path, b'rb') as f: | ||
Jun Wu
|
r28550 | return f.read() | ||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r48867 | def _validateargs(ui, repo, freeargs, opts, goal, rules, revs): | ||
timeless
|
r27169 | # TODO only abort if we try to histedit mq patches, not just | ||
Augie Fackler
|
r17064 | # blanket if mq patches are applied somewhere | ||
mq = getattr(repo, 'mq', None) | ||||
if mq and mq.applied: | ||||
Martin von Zweigbergk
|
r48868 | raise error.StateError(_(b'source has mq patches applied')) | ||
Augie Fackler
|
r17064 | |||
Pierre-Yves David
|
r19020 | # basic argument incompatibility processing | ||
Augie Fackler
|
r43347 | outg = opts.get(b'outgoing') | ||
editplan = opts.get(b'edit_plan') | ||||
abort = opts.get(b'abort') | ||||
force = opts.get(b'force') | ||||
Pierre-Yves David
|
r19020 | if force and not outg: | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError(_(b'--force only allowed with --outgoing')) | ||
Augie Fackler
|
r43347 | if goal == b'continue': | ||
Augie Fackler
|
r25149 | if any((outg, abort, revs, freeargs, rules, editplan)): | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError(_(b'no arguments allowed with --continue')) | ||
Augie Fackler
|
r43347 | elif goal == b'abort': | ||
Augie Fackler
|
r25149 | if any((outg, revs, freeargs, rules, editplan)): | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError(_(b'no arguments allowed with --abort')) | ||
Augie Fackler
|
r43347 | elif goal == b'edit-plan': | ||
Augie Fackler
|
r25149 | if any((outg, revs, freeargs)): | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Martin von Zweigbergk
|
r43387 | _(b'only --commands argument allowed with --edit-plan') | ||
Augie Fackler
|
r43346 | ) | ||
Pierre-Yves David
|
r19020 | else: | ||
if outg: | ||||
if revs: | ||||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
_(b'no revisions allowed with --outgoing') | ||||
) | ||||
Pierre-Yves David
|
r19020 | if len(freeargs) > 1: | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Augie Fackler
|
r43347 | _(b'only one repo argument allowed with --outgoing') | ||
Augie Fackler
|
r43346 | ) | ||
Pierre-Yves David
|
r19020 | else: | ||
Pierre-Yves David
|
r19021 | revs.extend(freeargs) | ||
Durham Goode
|
r24009 | if len(revs) == 0: | ||
Gregory Szorc
|
r27262 | defaultrev = destutil.desthistedit(ui, repo) | ||
if defaultrev is not None: | ||||
revs.append(defaultrev) | ||||
Pierre-Yves David
|
r19021 | if len(revs) != 1: | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Augie Fackler
|
r43347 | _(b'histedit requires exactly one ancestor revision') | ||
Augie Fackler
|
r43346 | ) | ||
Pierre-Yves David
|
r19020 | |||
Steve Fink
|
r44892 | def _histedit(ui, repo, state, freeargs, opts): | ||
Augie Fackler
|
r43347 | fm = ui.formatter(b'histedit', opts) | ||
Pulkit Goyal
|
r35124 | fm.startitem() | ||
Kostia Balytskyi
|
r28134 | goal = _getgoal(opts) | ||
Augie Fackler
|
r43347 | revs = opts.get(b'rev', []) | ||
nobackup = not ui.configbool(b'rewrite', b'backup-bundle') | ||||
rules = opts.get(b'commands', b'') | ||||
state.keep = opts.get(b'keep', False) | ||||
Augie Fackler
|
r17064 | |||
Martin von Zweigbergk
|
r48867 | _validateargs(ui, repo, freeargs, opts, goal, rules, revs) | ||
David Soria Parra
|
r22977 | |||
Navaneeth Suresh
|
r41136 | hastags = False | ||
if revs: | ||||
Martin von Zweigbergk
|
r48928 | revs = logcmdutil.revrange(repo, revs) | ||
Navaneeth Suresh
|
r41136 | ctxs = [repo[rev] for rev in revs] | ||
for ctx in ctxs: | ||||
Augie Fackler
|
r43347 | tags = [tag for tag in ctx.tags() if tag != b'tip'] | ||
Navaneeth Suresh
|
r41136 | if not hastags: | ||
hastags = len(tags) | ||||
if hastags: | ||||
Augie Fackler
|
r43346 | if ui.promptchoice( | ||
_( | ||||
Augie Fackler
|
r43347 | b'warning: tags associated with the given' | ||
b' changeset will be lost after histedit.\n' | ||||
b'do you want to continue (yN)? $$ &Yes $$ &No' | ||||
Augie Fackler
|
r43346 | ), | ||
default=1, | ||||
): | ||||
Martin von Zweigbergk
|
r48868 | raise error.CanceledError(_(b'histedit cancelled\n')) | ||
David Soria Parra
|
r22977 | # rebuild state | ||
Kostia Balytskyi
|
r28144 | if goal == goalcontinue: | ||
David Soria Parra
|
r22983 | state.read() | ||
David Soria Parra
|
r22980 | state = bootstrapcontinue(ui, state, opts) | ||
Kostia Balytskyi
|
r28144 | elif goal == goaleditplan: | ||
Kostia Balytskyi
|
r28154 | _edithisteditplan(ui, repo, state, rules) | ||
Mateusz Kwapich
|
r24142 | return | ||
Kostia Balytskyi
|
r28144 | elif goal == goalabort: | ||
Sushil khanchi
|
r38566 | _aborthistedit(ui, repo, state, nobackup=nobackup) | ||
Augie Fackler
|
r17064 | return | ||
else: | ||||
Kostia Balytskyi
|
r28144 | # goal == goalnew | ||
Kostia Balytskyi
|
r28154 | _newhistedit(ui, repo, state, revs, freeargs, opts) | ||
Durham Goode
|
r24757 | |||
Kostia Balytskyi
|
r28154 | _continuehistedit(ui, repo, state) | ||
Pulkit Goyal
|
r35124 | _finishhistedit(ui, repo, state, fm) | ||
fm.end() | ||||
Kostia Balytskyi
|
r28133 | |||
Augie Fackler
|
r43346 | |||
Kostia Balytskyi
|
r28154 | def _continuehistedit(ui, repo, state): | ||
"""This function runs after either: | ||||
Kostia Balytskyi
|
r28133 | - bootstrapcontinue (if the goal is 'continue') | ||
Kostia Balytskyi
|
r28154 | - _newhistedit (if the goal is 'new') | ||
Kostia Balytskyi
|
r28133 | """ | ||
Augie Fackler
|
r26246 | # preprocess rules so that we can hide inner folds from the user | ||
# and only show one editor | ||||
Mateusz Kwapich
|
r27207 | actions = state.actions[:] | ||
Augie Fackler
|
r43346 | for idx, (action, nextact) in enumerate(zip(actions, actions[1:] + [None])): | ||
Augie Fackler
|
r43347 | if action.verb == b'fold' and nextact and nextact.verb == b'fold': | ||
Mateusz Kwapich
|
r27207 | state.actions[idx].__class__ = _multifold | ||
Augie Fackler
|
r26246 | |||
Durham Goode
|
r31513 | # Force an initial state file write, so the user can run --abort/continue | ||
# even if there's an exception before the first transaction serialize. | ||||
state.write() | ||||
Martin von Zweigbergk
|
r33445 | |||
tr = None | ||||
# Don't use singletransaction by default since it rolls the entire | ||||
# transaction back if an unexpected exception happens (like a | ||||
# pretxncommit hook throws, or the user aborts the commit msg editor). | ||||
Augie Fackler
|
r43347 | if ui.configbool(b"histedit", b"singletransaction"): | ||
Martin von Zweigbergk
|
r33445 | # Don't use a 'with' for the transaction, since actions may close | ||
# and reopen a transaction. For example, if the action executes an | ||||
# external process it may choose to commit the transaction first. | ||||
Augie Fackler
|
r43347 | tr = repo.transaction(b'histedit') | ||
Augie Fackler
|
r43346 | progress = ui.makeprogress( | ||
Augie Fackler
|
r43347 | _(b"editing"), unit=_(b'changes'), total=len(state.actions) | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r38397 | with progress, util.acceptintervention(tr): | ||
Durham Goode
|
r31513 | while state.actions: | ||
Martin von Zweigbergk
|
r33444 | state.write(tr=tr) | ||
Durham Goode
|
r31513 | actobj = state.actions[0] | ||
Martin von Zweigbergk
|
r38397 | progress.increment(item=actobj.torule()) | ||
Augie Fackler
|
r43346 | ui.debug( | ||
Augie Fackler
|
r43347 | b'histedit: processing %s %s\n' % (actobj.verb, actobj.torule()) | ||
Augie Fackler
|
r43346 | ) | ||
Durham Goode
|
r31513 | parentctx, replacement_ = actobj.run() | ||
state.parentctxnode = parentctx.node() | ||||
state.replacements.extend(replacement_) | ||||
state.actions.pop(0) | ||||
Mateusz Kwapich
|
r24111 | state.write() | ||
Augie Fackler
|
r17064 | |||
Augie Fackler
|
r43346 | |||
Pulkit Goyal
|
r35124 | def _finishhistedit(ui, repo, state, fm): | ||
Kostia Balytskyi
|
r28153 | """This action runs when histedit is finishing its session""" | ||
Martin von Zweigbergk
|
r46151 | mergemod.update(repo[state.parentctxnode]) | ||
Augie Fackler
|
r17064 | |||
Augie Fackler
|
r22985 | mapping, tmpnodes, created, ntm = processreplacement(state) | ||
Pierre-Yves David
|
r17758 | if mapping: | ||
Gregory Szorc
|
r49768 | for prec, succs in mapping.items(): | ||
Pierre-Yves David
|
r17758 | if not succs: | ||
Joerg Sonnenberger
|
r46729 | ui.debug(b'histedit: %s is dropped\n' % short(prec)) | ||
Pierre-Yves David
|
r17758 | else: | ||
Augie Fackler
|
r43346 | ui.debug( | ||
Augie Fackler
|
r43347 | b'histedit: %s is replaced by %s\n' | ||
Joerg Sonnenberger
|
r46729 | % (short(prec), short(succs[0])) | ||
Augie Fackler
|
r43346 | ) | ||
Pierre-Yves David
|
r17758 | if len(succs) > 1: | ||
Augie Fackler
|
r43347 | m = b'histedit: %s' | ||
Pierre-Yves David
|
r17758 | for n in succs[1:]: | ||
Joerg Sonnenberger
|
r46729 | ui.debug(m % short(n)) | ||
Pierre-Yves David
|
r17758 | |||
Durham Goode
|
r25330 | if not state.keep: | ||
Pierre-Yves David
|
r17758 | if mapping: | ||
Jun Wu
|
r33351 | movetopmostbookmarks(repo, state.topmost, ntm) | ||
Pierre-Yves David
|
r17663 | # TODO update mq state | ||
Jun Wu
|
r33350 | else: | ||
mapping = {} | ||||
for n in tmpnodes: | ||||
Boris Feld
|
r39950 | if n in repo: | ||
mapping[n] = () | ||||
Jun Wu
|
r33350 | |||
Jun Wu
|
r33351 | # remove entries about unknown nodes | ||
r43947 | has_node = repo.unfiltered().changelog.index.has_node | |||
Augie Fackler
|
r43346 | mapping = { | ||
k: v | ||||
for k, v in mapping.items() | ||||
r43947 | if has_node(k) and all(has_node(n) for n in v) | |||
Augie Fackler
|
r43346 | } | ||
Augie Fackler
|
r43347 | scmutil.cleanupnodes(repo, mapping, b'histedit') | ||
Pulkit Goyal
|
r35124 | hf = fm.hexfunc | ||
fl = fm.formatlist | ||||
fd = fm.formatdict | ||||
Augie Fackler
|
r43346 | nodechanges = fd( | ||
{ | ||||
Augie Fackler
|
r43347 | hf(oldn): fl([hf(n) for n in newn], name=b'node') | ||
Gregory Szorc
|
r49768 | for oldn, newn in mapping.items() | ||
Augie Fackler
|
r43346 | }, | ||
Augie Fackler
|
r43347 | key=b"oldnode", | ||
value=b"newnodes", | ||||
Augie Fackler
|
r43346 | ) | ||
Pulkit Goyal
|
r35124 | fm.data(nodechanges=nodechanges) | ||
Pierre-Yves David
|
r25894 | |||
David Soria Parra
|
r22978 | state.clear() | ||
Augie Fackler
|
r43347 | if os.path.exists(repo.sjoin(b'undo')): | ||
os.unlink(repo.sjoin(b'undo')) | ||||
if repo.vfs.exists(b'histedit-last-edit.txt'): | ||||
repo.vfs.unlink(b'histedit-last-edit.txt') | ||||
Augie Fackler
|
r17064 | |||
Augie Fackler
|
r43346 | |||
Sushil khanchi
|
r38566 | def _aborthistedit(ui, repo, state, nobackup=False): | ||
Kostia Balytskyi
|
r28130 | try: | ||
state.read() | ||||
Kostia Balytskyi
|
r28179 | __, leafs, tmpnodes, __ = processreplacement(state) | ||
Joerg Sonnenberger
|
r46729 | ui.debug(b'restore wc to old parent %s\n' % short(state.topmost)) | ||
Kostia Balytskyi
|
r28130 | |||
# Recover our old commits if necessary | ||||
if not state.topmost in repo and state.backupfile: | ||||
Pierre-Yves David
|
r31329 | backupfile = repo.vfs.join(state.backupfile) | ||
Kostia Balytskyi
|
r28130 | f = hg.openpath(ui, backupfile) | ||
gen = exchange.readbundle(ui, f, backupfile) | ||||
Augie Fackler
|
r43347 | with repo.transaction(b'histedit.abort') as tr: | ||
Augie Fackler
|
r43346 | bundle2.applybundle( | ||
Augie Fackler
|
r43347 | repo, | ||
gen, | ||||
tr, | ||||
source=b'histedit', | ||||
url=b'bundle:' + backupfile, | ||||
Augie Fackler
|
r43346 | ) | ||
Kostia Balytskyi
|
r28130 | |||
os.remove(backupfile) | ||||
# check whether we should update away | ||||
Augie Fackler
|
r43346 | if repo.unfiltered().revs( | ||
Augie Fackler
|
r43347 | b'parents() and (%n or %ln::)', | ||
Augie Fackler
|
r43346 | state.parentctxnode, | ||
leafs | tmpnodes, | ||||
): | ||||
Kostia Balytskyi
|
r28130 | hg.clean(repo, state.topmost, show_stats=True, quietempty=True) | ||
Sushil khanchi
|
r38566 | cleanupnode(ui, repo, tmpnodes, nobackup=nobackup) | ||
cleanupnode(ui, repo, leafs, nobackup=nobackup) | ||||
Kostia Balytskyi
|
r28130 | except Exception: | ||
if state.inprogress(): | ||||
Augie Fackler
|
r43346 | ui.warn( | ||
_( | ||||
Augie Fackler
|
r43347 | b'warning: encountered an exception during histedit ' | ||
b'--abort; the repository may not have been completely ' | ||||
b'cleaned up\n' | ||||
Augie Fackler
|
r43346 | ) | ||
) | ||||
Kostia Balytskyi
|
r28130 | raise | ||
finally: | ||||
Augie Fackler
|
r43346 | state.clear() | ||
Kostia Balytskyi
|
r28130 | |||
Taapas Agrawal
|
r42787 | def hgaborthistedit(ui, repo): | ||
state = histeditstate(repo) | ||||
Augie Fackler
|
r43347 | nobackup = not ui.configbool(b'rewrite', b'backup-bundle') | ||
Taapas Agrawal
|
r42787 | with repo.wlock() as wlock, repo.lock() as lock: | ||
state.wlock = wlock | ||||
state.lock = lock | ||||
_aborthistedit(ui, repo, state, nobackup=nobackup) | ||||
Augie Fackler
|
r43346 | |||
Kostia Balytskyi
|
r28154 | def _edithisteditplan(ui, repo, state, rules): | ||
Kostia Balytskyi
|
r28131 | state.read() | ||
if not rules: | ||||
Augie Fackler
|
r43346 | comment = geteditcomment( | ||
Joerg Sonnenberger
|
r46729 | ui, short(state.parentctxnode), short(state.topmost) | ||
Augie Fackler
|
r43346 | ) | ||
Kostia Balytskyi
|
r28131 | rules = ruleeditor(repo, ui, state.actions, comment) | ||
else: | ||||
Yuya Nishihara
|
r30262 | rules = _readfile(ui, rules) | ||
Kostia Balytskyi
|
r28131 | actions = parserules(rules, state) | ||
Augie Fackler
|
r43346 | ctxs = [repo[act.node] for act in state.actions if act.node] | ||
Kostia Balytskyi
|
r28131 | warnverifyactions(ui, repo, actions, state, ctxs) | ||
state.actions = actions | ||||
state.write() | ||||
Augie Fackler
|
r43346 | |||
Kostia Balytskyi
|
r28154 | def _newhistedit(ui, repo, state, revs, freeargs, opts): | ||
Augie Fackler
|
r43347 | outg = opts.get(b'outgoing') | ||
rules = opts.get(b'commands', b'') | ||||
force = opts.get(b'force') | ||||
Kostia Balytskyi
|
r28132 | |||
cmdutil.checkunfinished(repo) | ||||
cmdutil.bailifchanged(repo) | ||||
Martin von Zweigbergk
|
r41444 | topmost = repo.dirstate.p1() | ||
Kostia Balytskyi
|
r28132 | if outg: | ||
if freeargs: | ||||
remote = freeargs[0] | ||||
else: | ||||
remote = None | ||||
root = findoutgoing(ui, repo, remote, force, opts) | ||||
else: | ||||
Martin von Zweigbergk
|
r48928 | rr = list(repo.set(b'roots(%ld)', logcmdutil.revrange(repo, revs))) | ||
Kostia Balytskyi
|
r28132 | if len(rr) != 1: | ||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b'The specified revisions must have ' | ||
b'exactly one common root' | ||||
Augie Fackler
|
r43346 | ) | ||
) | ||||
Kostia Balytskyi
|
r28132 | root = rr[0].node() | ||
revs = between(repo, root, topmost, state.keep) | ||||
if not revs: | ||||
Martin von Zweigbergk
|
r48868 | raise error.InputError( | ||
Joerg Sonnenberger
|
r46729 | _(b'%s is not an ancestor of working directory') % short(root) | ||
Augie Fackler
|
r43346 | ) | ||
Kostia Balytskyi
|
r28132 | |||
ctxs = [repo[r] for r in revs] | ||||
Augie Fackler
|
r43247 | |||
wctx = repo[None] | ||||
# Please don't ask me why `ancestors` is this value. I figured it | ||||
# out with print-debugging, not by actually understanding what the | ||||
# merge code is doing. :( | ||||
Augie Fackler
|
r43347 | ancs = [repo[b'.']] | ||
Augie Fackler
|
r43247 | # Sniff-test to make sure we won't collide with untracked files in | ||
# the working directory. If we don't do this, we can get a | ||||
# collision after we've started histedit and backing out gets ugly | ||||
# for everyone, especially the user. | ||||
for c in [ctxs[0].p1()] + ctxs: | ||||
try: | ||||
mergemod.calculateupdates( | ||||
Augie Fackler
|
r43346 | repo, | ||
wctx, | ||||
c, | ||||
ancs, | ||||
Augie Fackler
|
r43247 | # These parameters were determined by print-debugging | ||
# what happens later on inside histedit. | ||||
Augie Fackler
|
r43346 | branchmerge=False, | ||
force=False, | ||||
acceptremote=False, | ||||
followcopies=False, | ||||
) | ||||
Augie Fackler
|
r43247 | except error.Abort: | ||
Martin von Zweigbergk
|
r48868 | raise error.StateError( | ||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b"untracked files in working directory conflict with files in %s" | ||
Augie Fackler
|
r43346 | ) | ||
% c | ||||
) | ||||
Augie Fackler
|
r43247 | |||
Kostia Balytskyi
|
r28132 | if not rules: | ||
Joerg Sonnenberger
|
r46729 | comment = geteditcomment(ui, short(root), short(topmost)) | ||
Kostia Balytskyi
|
r28132 | actions = [pick(state, r) for r in revs] | ||
rules = ruleeditor(repo, ui, actions, comment) | ||||
else: | ||||
Yuya Nishihara
|
r30262 | rules = _readfile(ui, rules) | ||
Kostia Balytskyi
|
r28132 | actions = parserules(rules, state) | ||
warnverifyactions(ui, repo, actions, state, ctxs) | ||||
Martin von Zweigbergk
|
r41442 | parentctxnode = repo[root].p1().node() | ||
Kostia Balytskyi
|
r28132 | |||
state.parentctxnode = parentctxnode | ||||
state.actions = actions | ||||
state.topmost = topmost | ||||
state.replacements = [] | ||||
Augie Fackler
|
r43346 | ui.log( | ||
Augie Fackler
|
r43347 | b"histedit", | ||
b"%d actions to histedit\n", | ||||
Augie Fackler
|
r43346 | len(actions), | ||
histedit_num_actions=len(actions), | ||||
) | ||||
Phil Cohen
|
r35506 | |||
Kostia Balytskyi
|
r28132 | # Create a backup so we can always abort completely. | ||
backupfile = None | ||||
if not obsolete.isenabled(repo, obsolete.createmarkersopt): | ||||
Augie Fackler
|
r43346 | backupfile = repair.backupbundle( | ||
Augie Fackler
|
r43347 | repo, [parentctxnode], [topmost], root, b'histedit' | ||
Augie Fackler
|
r43346 | ) | ||
Kostia Balytskyi
|
r28132 | state.backupfile = backupfile | ||
Augie Fackler
|
r43346 | |||
Sean Farley
|
r29467 | def _getsummary(ctx): | ||
Martin von Zweigbergk
|
r49887 | return stringutil.firstline(ctx.description()) | ||
Sean Farley
|
r29467 | |||
Augie Fackler
|
r43346 | |||
Durham Goode
|
r24774 | def bootstrapcontinue(ui, state, opts): | ||
repo = state.repo | ||||
Siddharth Agarwal
|
r32057 | |||
Augie Fackler
|
r45383 | ms = mergestatemod.mergestate.read(repo) | ||
Siddharth Agarwal
|
r32057 | mergeutil.checkunresolved(ms) | ||
Mateusz Kwapich
|
r27207 | if state.actions: | ||
actobj = state.actions.pop(0) | ||||
Durham Goode
|
r24959 | |||
liscju
|
r26981 | if _isdirtywc(repo): | ||
Durham Goode
|
r24959 | actobj.continuedirty() | ||
liscju
|
r26981 | if _isdirtywc(repo): | ||
Mateusz Kwapich
|
r27084 | abortdirty() | ||
Durham Goode
|
r24766 | |||
Durham Goode
|
r24959 | parentctx, replacements = actobj.continueclean() | ||
Pierre-Yves David
|
r17666 | |||
Durham Goode
|
r24959 | state.parentctxnode = parentctx.node() | ||
state.replacements.extend(replacements) | ||||
David Soria Parra
|
r22980 | |||
return state | ||||
Pierre-Yves David
|
r17666 | |||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
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.""" | ||||
Augie Fackler
|
r43347 | revs = repo.revs(b'%n::%n', old, new) | ||
Yuya Nishihara
|
r36431 | if revs and not keep: | ||
Martin von Zweigbergk
|
r44385 | rewriteutil.precheck(repo, revs, b'edit') | ||
Augie Fackler
|
r43347 | if repo.revs(b'(%ld) and merge()', revs): | ||
Martin von Zweigbergk
|
r48868 | raise error.StateError( | ||
_(b'cannot edit history that contains merges') | ||||
) | ||||
Yuya Nishihara
|
r36431 | return pycompat.maplist(repo.changelog.node, revs) | ||
Pierre-Yves David
|
r17642 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | def ruleeditor(repo, ui, actions, editcomment=b""): | ||
Mateusz Kwapich
|
r24140 | """open an editor to edit rules | ||
rules are in the format [ [act, ctx], ...] like in state.rules | ||||
""" | ||||
Augie Fackler
|
r43347 | if repo.ui.configbool(b"experimental", b"histedit.autoverb"): | ||
Sean Farley
|
r29470 | newact = util.sortdict() | ||
Sean Farley
|
r29465 | for act in actions: | ||
ctx = repo[act.node] | ||||
Sean Farley
|
r29469 | summary = _getsummary(ctx) | ||
Augie Fackler
|
r43347 | fword = summary.split(b' ', 1)[0].lower() | ||
Sean Farley
|
r29470 | added = False | ||
Sean Farley
|
r29465 | # if it doesn't end with the special character '!' just skip this | ||
Augie Fackler
|
r43347 | if fword.endswith(b'!'): | ||
Sean Farley
|
r29465 | fword = fword[:-1] | ||
if fword in primaryactions | secondaryactions | tertiaryactions: | ||||
act.verb = fword | ||||
Sean Farley
|
r29470 | # get the target summary | ||
Augie Fackler
|
r43346 | tsum = summary[len(fword) + 1 :].lstrip() | ||
Sean Farley
|
r29470 | # safe but slow: reverse iterate over the actions so we | ||
# don't clash on two commits having the same summary | ||||
Gregory Szorc
|
r49768 | for na, l in reversed(list(newact.items())): | ||
Sean Farley
|
r29470 | actx = repo[na.node] | ||
asum = _getsummary(actx) | ||||
if asum == tsum: | ||||
added = True | ||||
l.append(act) | ||||
break | ||||
if not added: | ||||
newact[act] = [] | ||||
# copy over and flatten the new list | ||||
actions = [] | ||||
Gregory Szorc
|
r49768 | for na, l in newact.items(): | ||
Sean Farley
|
r29470 | actions.append(na) | ||
actions += l | ||||
Sean Farley
|
r29465 | |||
Augie Fackler
|
r43347 | rules = b'\n'.join([act.torule() for act in actions]) | ||
rules += b'\n\n' | ||||
Mateusz Kwapich
|
r24140 | rules += editcomment | ||
Augie Fackler
|
r43346 | rules = ui.edit( | ||
rules, | ||||
ui.username(), | ||||
Augie Fackler
|
r43347 | {b'prefix': b'histedit'}, | ||
Augie Fackler
|
r43346 | repopath=repo.path, | ||
Augie Fackler
|
r43347 | action=b'histedit', | ||
Augie Fackler
|
r43346 | ) | ||
Mateusz Kwapich
|
r24140 | |||
# Save edit rules in .hg/histedit-last-edit.txt in case | ||||
# the user needs to ask for help after something | ||||
# surprising happens. | ||||
Augie Fackler
|
r43347 | with repo.vfs(b'histedit-last-edit.txt', b'wb') as f: | ||
Augie Fackler
|
r36186 | f.write(rules) | ||
Mateusz Kwapich
|
r24140 | |||
return rules | ||||
Augie Fackler
|
r43346 | |||
Mateusz Kwapich
|
r27208 | def parserules(rules, state): | ||
Kyle Lippincott
|
r47856 | """Read the histedit rules string and return list of action objects""" | ||
Augie Fackler
|
r43346 | rules = [ | ||
l | ||||
for l in (r.strip() for r in rules.splitlines()) | ||||
Augie Fackler
|
r43347 | if l and not l.startswith(b'#') | ||
Augie Fackler
|
r43346 | ] | ||
Mateusz Kwapich
|
r27208 | actions = [] | ||
Augie Fackler
|
r17064 | for r in rules: | ||
Augie Fackler
|
r43347 | if b' ' not in r: | ||
raise error.ParseError(_(b'malformed line "%s"') % r) | ||||
verb, rest = r.split(b' ', 1) | ||||
Mateusz Kwapich
|
r27082 | |||
Mateusz Kwapich
|
r27208 | if verb not in actiontable: | ||
Augie Fackler
|
r43347 | raise error.ParseError(_(b'unknown action "%s"') % verb) | ||
Mateusz Kwapich
|
r27208 | |||
Mateusz Kwapich
|
r27082 | action = actiontable[verb].fromrule(state, rest) | ||
Mateusz Kwapich
|
r27208 | actions.append(action) | ||
return actions | ||||
Augie Fackler
|
r43346 | |||
timeless
|
r27543 | def warnverifyactions(ui, repo, actions, state, ctxs): | ||
try: | ||||
verifyactions(actions, state, ctxs) | ||||
timeless
|
r27545 | except error.ParseError: | ||
Augie Fackler
|
r43347 | if repo.vfs.exists(b'histedit-last-edit.txt'): | ||
Augie Fackler
|
r43346 | ui.warn( | ||
_( | ||||
Augie Fackler
|
r43347 | b'warning: histedit rules saved ' | ||
b'to: .hg/histedit-last-edit.txt\n' | ||||
Augie Fackler
|
r43346 | ) | ||
) | ||||
timeless
|
r27543 | raise | ||
Augie Fackler
|
r43346 | |||
Mateusz Kwapich
|
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. | ||||
""" | ||||
Augie Fackler
|
r44937 | expected = {c.node() for c in ctxs} | ||
Mateusz Kwapich
|
r27208 | seen = set() | ||
timeless
|
r27541 | prev = None | ||
André Klitzing
|
r33757 | |||
Augie Fackler
|
r43347 | if actions and actions[0].verb in [b'roll', b'fold']: | ||
Augie Fackler
|
r43346 | raise error.ParseError( | ||
Augie Fackler
|
r43347 | _(b'first changeset cannot use verb "%s"') % actions[0].verb | ||
Augie Fackler
|
r43346 | ) | ||
André Klitzing
|
r33757 | |||
Mateusz Kwapich
|
r27208 | for action in actions: | ||
Pierre-Yves David
|
r29879 | action.verify(prev, expected, seen) | ||
timeless
|
r27541 | prev = action | ||
Pierre-Yves David
|
r29876 | if action.node is not None: | ||
Pierre-Yves David
|
r29878 | seen.add(action.node) | ||
Pierre-Yves David
|
r19048 | missing = sorted(expected - seen) # sort to stabilize output | ||
Mateusz Kwapich
|
r27414 | |||
Augie Fackler
|
r43347 | if state.repo.ui.configbool(b'histedit', b'dropmissing'): | ||
Mateusz Kwapich
|
r28519 | if len(actions) == 0: | ||
Augie Fackler
|
r43346 | raise error.ParseError( | ||
Augie Fackler
|
r43347 | _(b'no rules provided'), | ||
hint=_(b'use strip extension to remove commits'), | ||||
Augie Fackler
|
r43346 | ) | ||
Mateusz Kwapich
|
r28519 | |||
Pierre-Yves David
|
r29878 | drops = [drop(state, n) for n in missing] | ||
Mateusz Kwapich
|
r27414 | # 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: | ||||
Augie Fackler
|
r43346 | raise error.ParseError( | ||
Joerg Sonnenberger
|
r46729 | _(b'missing rules for changeset %s') % short(missing[0]), | ||
Augie Fackler
|
r43346 | hint=_( | ||
Augie Fackler
|
r43347 | b'use "drop %s" to discard, see also: ' | ||
b"'hg help -e histedit.config'" | ||||
Augie Fackler
|
r43346 | ) | ||
Joerg Sonnenberger
|
r46729 | % short(missing[0]), | ||
Augie Fackler
|
r43346 | ) | ||
Pierre-Yves David
|
r17663 | |||
Kostia Balytskyi
|
r28216 | def adjustreplacementsfrommarkers(repo, oldreplacements): | ||
Mads Kiilerich
|
r30332 | """Adjust replacements from obsolescence markers | ||
Kostia Balytskyi
|
r28216 | |||
Replacements structure is originally generated based on | ||||
histedit's state and does not account for changes that are | ||||
not recorded there. This function fixes that by adding | ||||
Mads Kiilerich
|
r30332 | data read from obsolescence markers""" | ||
Kostia Balytskyi
|
r28216 | if not obsolete.isenabled(repo, obsolete.createmarkersopt): | ||
return oldreplacements | ||||
unfi = repo.unfiltered() | ||||
r43968 | get_rev = unfi.changelog.index.get_rev | |||
Pierre-Yves David
|
r28224 | obsstore = repo.obsstore | ||
Kostia Balytskyi
|
r28216 | newreplacements = list(oldreplacements) | ||
oldsuccs = [r[1] for r in oldreplacements] | ||||
# successors that have already been added to succstocheck once | ||||
Augie Fackler
|
r43346 | seensuccs = set().union( | ||
*oldsuccs | ||||
) # create a set from an iterable of tuples | ||||
Kostia Balytskyi
|
r28216 | succstocheck = list(seensuccs) | ||
while succstocheck: | ||||
n = succstocheck.pop() | ||||
r43968 | missing = get_rev(n) is None | |||
Pierre-Yves David
|
r28224 | markers = obsstore.successors.get(n, ()) | ||
if missing and not markers: | ||||
# dead end, mark it as such | ||||
Kostia Balytskyi
|
r28216 | newreplacements.append((n, ())) | ||
Pierre-Yves David
|
r28224 | for marker in markers: | ||
nsuccs = marker[1] | ||||
Kostia Balytskyi
|
r28216 | newreplacements.append((n, nsuccs)) | ||
for nsucc in nsuccs: | ||||
if nsucc not in seensuccs: | ||||
seensuccs.add(nsucc) | ||||
succstocheck.append(nsucc) | ||||
return newreplacements | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r22985 | def processreplacement(state): | ||
Pierre-Yves David
|
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""" | ||||
Kostia Balytskyi
|
r28216 | replacements = adjustreplacementsfrommarkers(state.repo, state.replacements) | ||
Pierre-Yves David
|
r17758 | allsuccs = set() | ||
replaced = set() | ||||
fullmapping = {} | ||||
Augie Fackler
|
r26039 | # initialize basic set | ||
# fullmapping records all operations recorded in replacement | ||||
Pierre-Yves David
|
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
|
r26039 | # Reduce content fullmapping into direct relation between original nodes | ||
Pierre-Yves David
|
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) | ||||
r43969 | get_rev = state.repo.changelog.index.get_rev | |||
Pierre-Yves David
|
r17758 | for prec, succs in final.items(): | ||
r43969 | final[prec] = sorted(succs, key=get_rev) | |||
Pierre-Yves David
|
r17663 | |||
Pierre-Yves David
|
r17758 | # computed topmost element (necessary for bookmark) | ||
if new: | ||||
Augie Fackler
|
r22985 | newtopmost = sorted(new, key=state.repo.changelog.rev)[-1] | ||
Pierre-Yves David
|
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
|
r22985 | r = state.repo.changelog.rev | ||
newtopmost = state.repo[sorted(final, key=r)[0]].p1().node() | ||||
Pierre-Yves David
|
r17758 | |||
return final, tmpnodes, new, newtopmost | ||||
Pierre-Yves David
|
r17663 | |||
Augie Fackler
|
r43346 | |||
Jun Wu
|
r33346 | def movetopmostbookmarks(repo, oldtopmost, newtopmost): | ||
"""Move bookmark from oldtopmost to newly created topmost | ||||
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. | ||||
""" | ||||
if not oldtopmost or not newtopmost: | ||||
return | ||||
oldbmarks = repo.nodebookmarks(oldtopmost) | ||||
if oldbmarks: | ||||
Augie Fackler
|
r43347 | with repo.lock(), repo.transaction(b'histedit') as tr: | ||
Jun Wu
|
r33346 | marks = repo._bookmarks | ||
Boris Feld
|
r33486 | changes = [] | ||
Jun Wu
|
r33346 | for name in oldbmarks: | ||
Boris Feld
|
r33486 | changes.append((name, newtopmost)) | ||
marks.applychanges(repo, tr, changes) | ||||
Jun Wu
|
r33346 | |||
Augie Fackler
|
r43346 | |||
Sushil khanchi
|
r38566 | def cleanupnode(ui, repo, nodes, nobackup=False): | ||
Pierre-Yves David
|
r31637 | """strip a group of nodes from the repository | ||
The set of node to strip may contains unknown nodes.""" | ||||
with repo.lock(): | ||||
# do not let filtering get in the way of the cleanse | ||||
# we should probably get rid of obsolescence marker created during the | ||||
# histedit, but we currently do not have such information. | ||||
repo = repo.unfiltered() | ||||
# Find all nodes that need to be stripped | ||||
# (we use %lr instead of %ln to silently ignore unknown items) | ||||
r43948 | has_node = repo.changelog.index.has_node | |||
nodes = sorted(n for n in nodes if has_node(n)) | ||||
Augie Fackler
|
r43347 | roots = [c.node() for c in repo.set(b"roots(%ln)", nodes)] | ||
Jun Wu
|
r33349 | if roots: | ||
Sushil khanchi
|
r38566 | backup = not nobackup | ||
repair.strip(ui, repo, roots, backup=backup) | ||||
Pierre-Yves David
|
r31637 | |||
Augie Fackler
|
r43346 | |||
Mateusz Kwapich
|
r24111 | def stripwrapper(orig, ui, repo, nodelist, *args, **kwargs): | ||
Matt Harbison
|
r44182 | if isinstance(nodelist, bytes): | ||
Mateusz Kwapich
|
r24111 | nodelist = [nodelist] | ||
Martin von Zweigbergk
|
r38822 | state = histeditstate(repo) | ||
if state.inprogress(): | ||||
Mateusz Kwapich
|
r24111 | state.read() | ||
Augie Fackler
|
r43346 | histedit_nodes = { | ||
action.node for action in state.actions if action.node | ||||
} | ||||
Martin von Zweigbergk
|
r30025 | common_nodes = histedit_nodes & set(nodelist) | ||
Mateusz Kwapich
|
r24111 | if common_nodes: | ||
Augie Fackler
|
r43346 | raise error.Abort( | ||
Augie Fackler
|
r43347 | _(b"histedit in progress, can't strip %s") | ||
Joerg Sonnenberger
|
r46729 | % b', '.join(short(x) for x in common_nodes) | ||
Augie Fackler
|
r43346 | ) | ||
Mateusz Kwapich
|
r24111 | return orig(ui, repo, nodelist, *args, **kwargs) | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | extensions.wrapfunction(repair, b'strip', stripwrapper) | ||
Mateusz Kwapich
|
r24111 | |||
Augie Fackler
|
r43346 | |||
Bryan O'Sullivan
|
r19215 | def summaryhook(ui, repo): | ||
Martin von Zweigbergk
|
r38822 | state = histeditstate(repo) | ||
if not state.inprogress(): | ||||
Bryan O'Sullivan
|
r19215 | return | ||
David Soria Parra
|
r22983 | state.read() | ||
Mateusz Kwapich
|
r27207 | if state.actions: | ||
Bryan O'Sullivan
|
r19215 | # i18n: column positioning for "hg summary" | ||
Augie Fackler
|
r43346 | ui.write( | ||
Augie Fackler
|
r43347 | _(b'hist: %s (histedit --continue)\n') | ||
Augie Fackler
|
r43346 | % ( | ||
Augie Fackler
|
r43347 | ui.label(_(b'%d remaining'), b'histedit.remaining') | ||
Augie Fackler
|
r43346 | % len(state.actions) | ||
) | ||||
) | ||||
Bryan O'Sullivan
|
r19215 | |||
def extsetup(ui): | ||||
Augie Fackler
|
r43347 | cmdutil.summaryhooks.add(b'histedit', summaryhook) | ||
Augie Fackler
|
r43346 | statemod.addunfinished( | ||
Augie Fackler
|
r43347 | b'histedit', | ||
fname=b'histedit-state', | ||||
Augie Fackler
|
r43346 | allowcommit=True, | ||
continueflag=True, | ||||
abortfunc=hgaborthistedit, | ||||
) | ||||