Notify when a cherry-picked commit was modified by 'pick'
[stgit] / stgit / main.py
CommitLineData
41a6d859
CM
1"""Basic quilt-like functionality
2"""
3
4__copyright__ = """
5Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License version 2 as
9published by the Free Software Foundation.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19"""
20
21import sys, os
22from optparse import OptionParser, make_option
23
873a27fd 24from stgit.utils import *
41a6d859
CM
25from stgit import stack, git
26from stgit.version import version
27from stgit.config import config
fcee87cf
CM
28from stgit.commands.common import *
29
30# The commands
31import stgit.commands.add
32import stgit.commands.applied
7b1ba1a6 33import stgit.commands.branch
fcee87cf
CM
34import stgit.commands.delete
35import stgit.commands.diff
de4c9d27 36import stgit.commands.clean
1008fbce 37import stgit.commands.clone
6a093bbb 38import stgit.commands.commit
fcee87cf
CM
39import stgit.commands.export
40import stgit.commands.files
c14444b9 41import stgit.commands.fold
e1261152 42import stgit.commands.id
0d2cd1e4 43import stgit.commands.imprt
fcee87cf 44import stgit.commands.init
b4bddc06 45import stgit.commands.mail
fcee87cf 46import stgit.commands.new
0618ea9c 47import stgit.commands.pick
fcee87cf 48import stgit.commands.pop
f338c3c0 49import stgit.commands.pull
fcee87cf
CM
50import stgit.commands.push
51import stgit.commands.refresh
e55b53e0 52import stgit.commands.rename
fcee87cf
CM
53import stgit.commands.resolved
54import stgit.commands.rm
55import stgit.commands.series
56import stgit.commands.status
57import stgit.commands.top
58import stgit.commands.unapplied
41a6d859
CM
59
60
41a6d859
CM
61#
62# The commands map
63#
64commands = {
fcee87cf
CM
65 'add': stgit.commands.add,
66 'applied': stgit.commands.applied,
7b1ba1a6 67 'branch': stgit.commands.branch,
fcee87cf
CM
68 'delete': stgit.commands.delete,
69 'diff': stgit.commands.diff,
de4c9d27 70 'clean': stgit.commands.clean,
1008fbce 71 'clone': stgit.commands.clone,
6a093bbb 72 'commit': stgit.commands.commit,
fcee87cf
CM
73 'export': stgit.commands.export,
74 'files': stgit.commands.files,
c14444b9 75 'fold': stgit.commands.fold,
e1261152 76 'id': stgit.commands.id,
0d2cd1e4 77 'import': stgit.commands.imprt,
fcee87cf 78 'init': stgit.commands.init,
b4bddc06 79 'mail': stgit.commands.mail,
fcee87cf 80 'new': stgit.commands.new,
0618ea9c 81 'pick': stgit.commands.pick,
fcee87cf 82 'pop': stgit.commands.pop,
f338c3c0 83 'pull': stgit.commands.pull,
fcee87cf
CM
84 'push': stgit.commands.push,
85 'refresh': stgit.commands.refresh,
e55b53e0 86 'rename': stgit.commands.rename,
fcee87cf
CM
87 'resolved': stgit.commands.resolved,
88 'rm': stgit.commands.rm,
89 'series': stgit.commands.series,
90 'status': stgit.commands.status,
91 'top': stgit.commands.top,
92 'unapplied':stgit.commands.unapplied,
41a6d859
CM
93 }
94
95def print_help():
96 print 'usage: %s <command> [options]' % os.path.basename(sys.argv[0])
97 print
98 print 'commands:'
99 print ' help print this message'
1e0bdf2a 100 print ' version display version information'
22ea9102 101 print ' copyright display copyright information'
1e0bdf2a 102 print
41a6d859
CM
103
104 cmds = commands.keys()
105 cmds.sort()
106 for cmd in cmds:
107 print ' ' + cmd + ' ' * (12 - len(cmd)) + commands[cmd].help
108
109#
110# The main function (command dispatcher)
111#
112def main():
113 """The main function
114 """
41a6d859
CM
115 prog = os.path.basename(sys.argv[0])
116
117 if len(sys.argv) < 2:
118 print >> sys.stderr, 'Unknown command'
119 print >> sys.stderr, \
120 ' Try "%s help" for a list of supported commands' % prog
121 sys.exit(1)
122
123 cmd = sys.argv[1]
124
125 if cmd in ['-h', '--help', 'help']:
126 print_help()
127 sys.exit(0)
1e0bdf2a 128 if cmd in ['-v', '--version', 'version']:
4df2f866 129 print 'Stacked GIT %s' % version
50725547 130 os.system('git --version')
1e0bdf2a 131 print 'Python version %s' % sys.version
41a6d859 132 sys.exit(0)
22ea9102
CM
133 if cmd in ['copyright']:
134 print __copyright__
135 sys.exit(0)
41a6d859
CM
136 if not cmd in commands:
137 print >> sys.stderr, 'Unknown command: %s' % cmd
2f7c8b0b
CM
138 print >> sys.stderr, ' Try "%s help" for a list of supported ' \
139 'commands' % prog
41a6d859
CM
140 sys.exit(1)
141
142 # re-build the command line arguments
143 sys.argv[0] += ' %s' % cmd
144 del(sys.argv[1])
145
146 command = commands[cmd]
147 parser = OptionParser(usage = command.usage,
fcee87cf 148 option_list = command.options)
41a6d859
CM
149 options, args = parser.parse_args()
150 try:
1008fbce
CM
151 # 'clone' doesn't expect an already initialised GIT tree
152 if cmd == 'clone':
153 stgit.commands.common.crt_series = stack.Series('master')
2f7c8b0b
CM
154 elif hasattr(options, 'branch') and options.branch:
155 stgit.commands.common.crt_series = stack.Series(options.branch)
1008fbce
CM
156 else:
157 stgit.commands.common.crt_series = stack.Series()
158 # the line below is a simple way to avoid an exception when
9ac09909 159 # stgit is run outside an initialised tree
9ac09909
CM
160 setattr(command, 'crt_series', stgit.commands.common.crt_series)
161
41a6d859 162 command.func(parser, options, args)
fcee87cf 163 except (IOError, CmdException, stack.StackException, git.GitException), \
41a6d859
CM
164 err:
165 print >> sys.stderr, '%s %s: %s' % (prog, cmd, err)
166 sys.exit(2)
167
168 sys.exit(0)