Mercurial > public > mercurial-scm > hg-stable
annotate mercurial/cmd_impls/graft.py @ 52366:77cb5d8643b3
graft: clarify the args passing depending of variants
Now that the dust as settled a bit, we can make things a bit clearer.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 20 Nov 2024 04:22:12 +0100 |
parents | da216ed31c3d |
children | 0b52283d50bb |
rev | line source |
---|---|
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
1 # graft.py - implementation of the graft command |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
2 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
3 from ..i18n import _ |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
4 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
5 from .. import cmdutil, error, logcmdutil, merge as mergemod, state as statemod |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
6 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
7 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
8 def cmd_graft(ui, repo, *revs, **opts): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
9 """implement the graft command as defined in mercuria/commands.py""" |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
10 ret = _process_args(ui, repo, *revs, **opts) |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
11 action, graftstate, args = ret |
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
12 if action == "ERROR": |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
13 return -1 |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
14 elif action == "ABORT": |
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
15 assert args is None |
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
16 return cmdutil.abortgraft(ui, repo, graftstate) |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
17 elif action == "STOP": |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
18 assert args is None |
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
19 return _stopgraft(ui, repo, graftstate) |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
20 elif action == "GRAFT": |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
21 return _graft_revisions(ui, repo, graftstate, *args) |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
22 else: |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
23 raise error.ProgrammingError(b'unknown action: %s' % action) |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
24 |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
25 |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
26 def _process_args(ui, repo, *revs, **opts): |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
27 """process the graft command argument to figure out what to do |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
28 |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
29 This also filter the selected revision to skip the one that cannot be graft |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
30 or were alredy grafted. |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
31 """ |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
32 if revs and opts.get('rev'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
33 ui.warn( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
34 _( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
35 b'warning: inconsistent use of --rev might give unexpected ' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
36 b'revision ordering!\n' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
37 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
38 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
39 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
40 revs = list(revs) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
41 revs.extend(opts.get('rev')) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
42 # a dict of data to be stored in state file |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
43 statedata = {} |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
44 # list of new nodes created by ongoing graft |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
45 statedata[b'newnodes'] = [] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
46 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
47 cmdutil.resolve_commit_options(ui, opts) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
48 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
49 editor = cmdutil.getcommiteditor(editform=b'graft', **opts) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
50 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
51 cmdutil.check_at_most_one_arg(opts, 'abort', 'stop', 'continue') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
52 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
53 cont = False |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
54 if opts.get('no_commit'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
55 cmdutil.check_incompatible_arguments( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
56 opts, |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
57 'no_commit', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
58 ['edit', 'currentuser', 'currentdate', 'log'], |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
59 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
60 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
61 graftstate = statemod.cmdstate(repo, b'graftstate') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
62 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
63 if opts.get('stop'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
64 cmdutil.check_incompatible_arguments( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
65 opts, |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
66 'stop', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
67 [ |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
68 'edit', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
69 'log', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
70 'user', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
71 'date', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
72 'currentdate', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
73 'currentuser', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
74 'rev', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
75 ], |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
76 ) |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
77 return "STOP", graftstate, None |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
78 elif opts.get('abort'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
79 cmdutil.check_incompatible_arguments( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
80 opts, |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
81 'abort', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
82 [ |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
83 'edit', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
84 'log', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
85 'user', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
86 'date', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
87 'currentdate', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
88 'currentuser', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
89 'rev', |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
90 ], |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
91 ) |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
92 return "ABORT", graftstate, None |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
93 elif opts.get('continue'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
94 cont = True |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
95 if revs: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
96 raise error.InputError(_(b"can't specify --continue and revisions")) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
97 # read in unfinished revisions |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
98 if graftstate.exists(): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
99 statedata = cmdutil.readgraftstate(repo, graftstate) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
100 if statedata.get(b'no_commit'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
101 opts['no_commit'] = statedata.get(b'no_commit') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
102 if statedata.get(b'base'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
103 opts['base'] = statedata.get(b'base') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
104 nodes = statedata[b'nodes'] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
105 revs = [repo[node].rev() for node in nodes] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
106 else: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
107 cmdutil.wrongtooltocontinue(repo, _(b'graft')) |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
108 elif not revs: |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
109 raise error.InputError(_(b'no revisions specified')) |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
110 else: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
111 cmdutil.checkunfinished(repo) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
112 cmdutil.bailifchanged(repo) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
113 revs = logcmdutil.revrange(repo, revs) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
114 |
52362
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
115 for o in ( |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
116 b'date', |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
117 b'user', |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
118 b'log', |
52363
11fb7f737456
graft: move no_commit into "statedata" too
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52362
diff
changeset
|
119 b'no_commit', |
52364
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
120 b'dry_run', |
52362
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
121 ): |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
122 v = opts.get(o.decode('ascii')) |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
123 # if statedata is already set, it comes from --continue and test says |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
124 # we should honor them above the options (which seems weird). |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
125 if v and o not in statedata: |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
126 statedata[o] = v |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
127 |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
128 skipped = set() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
129 basectx = None |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
130 if opts.get('base'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
131 basectx = logcmdutil.revsingle(repo, opts['base'], None) |
52364
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
132 statedata[b'base'] = basectx.hex() |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
133 if basectx is None: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
134 # check for merges |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
135 for rev in repo.revs(b'%ld and merge()', revs): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
136 ui.warn(_(b'skipping ungraftable merge revision %d\n') % rev) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
137 skipped.add(rev) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
138 revs = [r for r in revs if r not in skipped] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
139 if not revs: |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
140 return "ERROR", None, None |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
141 if basectx is not None and len(revs) != 1: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
142 raise error.InputError(_(b'only one revision allowed with --base ')) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
143 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
144 # Don't check in the --continue case, in effect retaining --force across |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
145 # --continues. That's because without --force, any revisions we decided to |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
146 # skip would have been filtered out here, so they wouldn't have made their |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
147 # way to the graftstate. With --force, any revisions we would have otherwise |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
148 # skipped would not have been filtered out, and if they hadn't been applied |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
149 # already, they'd have been in the graftstate. |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
150 if not (cont or opts.get('force')) and basectx is None: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
151 # check for ancestors of dest branch |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
152 ancestors = repo.revs(b'%ld & (::.)', revs) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
153 for rev in ancestors: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
154 ui.warn(_(b'skipping ancestor revision %d:%s\n') % (rev, repo[rev])) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
155 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
156 revs = [r for r in revs if r not in ancestors] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
157 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
158 if not revs: |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
159 return "ERROR", None, None |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
160 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
161 # analyze revs for earlier grafts |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
162 ids = {} |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
163 for ctx in repo.set(b"%ld", revs): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
164 ids[ctx.hex()] = ctx.rev() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
165 n = ctx.extra().get(b'source') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
166 if n: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
167 ids[n] = ctx.rev() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
168 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
169 # check ancestors for earlier grafts |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
170 ui.debug(b'scanning for duplicate grafts\n') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
171 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
172 # The only changesets we can be sure doesn't contain grafts of any |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
173 # revs, are the ones that are common ancestors of *all* revs: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
174 for rev in repo.revs(b'only(%d,ancestor(%ld))', repo[b'.'].rev(), revs): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
175 ctx = repo[rev] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
176 n = ctx.extra().get(b'source') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
177 if n in ids: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
178 try: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
179 r = repo[n].rev() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
180 except error.RepoLookupError: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
181 r = None |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
182 if r in revs: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
183 ui.warn( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
184 _( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
185 b'skipping revision %d:%s ' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
186 b'(already grafted to %d:%s)\n' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
187 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
188 % (r, repo[r], rev, ctx) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
189 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
190 revs.remove(r) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
191 elif ids[n] in revs: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
192 if r is None: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
193 ui.warn( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
194 _( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
195 b'skipping already grafted revision %d:%s ' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
196 b'(%d:%s also has unknown origin %s)\n' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
197 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
198 % (ids[n], repo[ids[n]], rev, ctx, n[:12]) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
199 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
200 else: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
201 ui.warn( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
202 _( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
203 b'skipping already grafted revision %d:%s ' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
204 b'(%d:%s also has origin %d:%s)\n' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
205 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
206 % (ids[n], repo[ids[n]], rev, ctx, r, n[:12]) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
207 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
208 revs.remove(ids[n]) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
209 elif ctx.hex() in ids: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
210 r = ids[ctx.hex()] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
211 if r in revs: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
212 ui.warn( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
213 _( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
214 b'skipping already grafted revision %d:%s ' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
215 b'(was grafted from %d:%s)\n' |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
216 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
217 % (r, repo[r], rev, ctx) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
218 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
219 revs.remove(r) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
220 if not revs: |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
221 return "ERROR", None, None |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
222 |
52364
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
223 dry_run = bool(opts.get("dry_run")) |
52365
da216ed31c3d
graft: explicitly pass the "tool" argument
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52364
diff
changeset
|
224 tool = opts.get('tool', b'') |
52366
77cb5d8643b3
graft: clarify the args passing depending of variants
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52365
diff
changeset
|
225 return "GRAFT", graftstate, (statedata, revs, editor, cont, dry_run, tool) |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
226 |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
227 |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
228 def _graft_revisions( |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
229 ui, |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
230 repo, |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
231 graftstate, |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
232 statedata, |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
233 revs, |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
234 editor, |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
235 cont=False, |
52364
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
236 dry_run=False, |
52365
da216ed31c3d
graft: explicitly pass the "tool" argument
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52364
diff
changeset
|
237 tool=b'', |
52361
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
238 ): |
5ab77b93567c
graft: split the argument processing from the grafting
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52360
diff
changeset
|
239 """actually graft some revisions""" |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
240 for pos, ctx in enumerate(repo.set(b"%ld", revs)): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
241 desc = b'%d:%s "%s"' % ( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
242 ctx.rev(), |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
243 ctx, |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
244 ctx.description().split(b'\n', 1)[0], |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
245 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
246 names = repo.nodetags(ctx.node()) + repo.nodebookmarks(ctx.node()) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
247 if names: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
248 desc += b' (%s)' % b' '.join(names) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
249 ui.status(_(b'grafting %s\n') % desc) |
52364
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
250 if dry_run: |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
251 continue |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
252 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
253 source = ctx.extra().get(b'source') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
254 extra = {} |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
255 if source: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
256 extra[b'source'] = source |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
257 extra[b'intermediate-source'] = ctx.hex() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
258 else: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
259 extra[b'source'] = ctx.hex() |
52362
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
260 user = statedata.get(b'user', ctx.user()) |
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
261 date = statedata.get(b'date', ctx.date()) |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
262 message = ctx.description() |
52362
8572e80f978c
graft: assign computed configuration value to statedata instead of opts
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52361
diff
changeset
|
263 if statedata.get(b'log'): |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
264 message += b'\n(grafted from %s)' % ctx.hex() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
265 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
266 # we don't merge the first commit when continuing |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
267 if not cont: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
268 # perform the graft merge with p1(rev) as 'ancestor' |
52365
da216ed31c3d
graft: explicitly pass the "tool" argument
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52364
diff
changeset
|
269 overrides = {(b'ui', b'forcemerge'): tool} |
52364
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
270 if b'base' in statedata: |
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
271 base = repo[statedata[b'base']] |
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
272 else: |
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
273 base = ctx.p1() |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
274 with ui.configoverride(overrides, b'graft'): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
275 stats = mergemod.graft( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
276 repo, ctx, base, [b'local', b'graft', b'parent of graft'] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
277 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
278 # report any conflicts |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
279 if stats.unresolvedcount > 0: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
280 # write out state for --continue |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
281 nodes = [repo[rev].hex() for rev in revs[pos:]] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
282 statedata[b'nodes'] = nodes |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
283 stateversion = 1 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
284 graftstate.save(stateversion, statedata) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
285 ui.error(_(b"abort: unresolved conflicts, can't continue\n")) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
286 ui.error(_(b"(use 'hg resolve' and 'hg graft --continue')\n")) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
287 return 1 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
288 else: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
289 cont = False |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
290 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
291 # commit if --no-commit is false |
52363
11fb7f737456
graft: move no_commit into "statedata" too
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52362
diff
changeset
|
292 if not statedata.get(b'no_commit'): |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
293 node = repo.commit( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
294 text=message, user=user, date=date, extra=extra, editor=editor |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
295 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
296 if node is None: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
297 ui.warn( |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
298 _(b'note: graft of %d:%s created no changes to commit\n') |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
299 % (ctx.rev(), ctx) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
300 ) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
301 # checking that newnodes exist because old state files won't have it |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
302 elif statedata.get(b'newnodes') is not None: |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
303 nn = statedata[b'newnodes'] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
304 assert isinstance(nn, list) # list of bytes |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
305 nn.append(node) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
306 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
307 # remove state when we complete successfully |
52364
8d7029218a61
graft: move "dry_run" and "base" in statedate
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
52363
diff
changeset
|
308 if not dry_run: |
52360
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
309 graftstate.delete() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
310 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
311 return 0 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
312 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
313 |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
314 def _stopgraft(ui, repo, graftstate): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
315 """stop the interrupted graft""" |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
316 if not graftstate.exists(): |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
317 raise error.StateError(_(b"no interrupted graft found")) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
318 pctx = repo[b'.'] |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
319 mergemod.clean_update(pctx) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
320 graftstate.delete() |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
321 ui.status(_(b"stopped the interrupted graft\n")) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
322 ui.status(_(b"working directory is now at %s\n") % pctx.hex()[:12]) |
f2fc0a91faca
commands: create a "mercurial.cmd_impls" module to host graft
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
323 return 0 |