Implement a 'pick' command for cherry-picking
[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
33import stgit.commands.delete
34import stgit.commands.diff
de4c9d27 35import stgit.commands.clean
1008fbce 36import stgit.commands.clone
fcee87cf
CM
37import stgit.commands.export
38import stgit.commands.files
c14444b9 39import stgit.commands.fold
e1261152 40import stgit.commands.id
0d2cd1e4 41import stgit.commands.imprt
fcee87cf 42import stgit.commands.init
b4bddc06 43import stgit.commands.mail
fcee87cf 44import stgit.commands.new
0618ea9c 45import stgit.commands.pick
fcee87cf 46import stgit.commands.pop
f338c3c0 47import stgit.commands.pull
fcee87cf
CM
48import stgit.commands.push
49import stgit.commands.refresh
e55b53e0 50import stgit.commands.rename
fcee87cf
CM
51import stgit.commands.resolved
52import stgit.commands.rm
53import stgit.commands.series
54import stgit.commands.status
55import stgit.commands.top
56import stgit.commands.unapplied
41a6d859
CM
57
58
41a6d859
CM
59#
60# The commands map
61#
62commands = {
fcee87cf
CM
63 'add': stgit.commands.add,
64 'applied': stgit.commands.applied,
65 'delete': stgit.commands.delete,
66 'diff': stgit.commands.diff,
de4c9d27 67 'clean': stgit.commands.clean,
1008fbce 68 'clone': stgit.commands.clone,
fcee87cf
CM
69 'export': stgit.commands.export,
70 'files': stgit.commands.files,
c14444b9 71 'fold': stgit.commands.fold,
e1261152 72 'id': stgit.commands.id,
0d2cd1e4 73 'import': stgit.commands.imprt,
fcee87cf 74 'init': stgit.commands.init,
b4bddc06 75 'mail': stgit.commands.mail,
fcee87cf 76 'new': stgit.commands.new,
0618ea9c 77 'pick': stgit.commands.pick,
fcee87cf 78 'pop': stgit.commands.pop,
f338c3c0 79 'pull': stgit.commands.pull,
fcee87cf
CM
80 'push': stgit.commands.push,
81 'refresh': stgit.commands.refresh,
e55b53e0 82 'rename': stgit.commands.rename,
fcee87cf
CM
83 'resolved': stgit.commands.resolved,
84 'rm': stgit.commands.rm,
85 'series': stgit.commands.series,
86 'status': stgit.commands.status,
87 'top': stgit.commands.top,
88 'unapplied':stgit.commands.unapplied,
41a6d859
CM
89 }
90
91def print_help():
92 print 'usage: %s <command> [options]' % os.path.basename(sys.argv[0])
93 print
94 print 'commands:'
95 print ' help print this message'
1e0bdf2a 96 print ' version display version information'
22ea9102 97 print ' copyright display copyright information'
1e0bdf2a 98 print
41a6d859
CM
99
100 cmds = commands.keys()
101 cmds.sort()
102 for cmd in cmds:
103 print ' ' + cmd + ' ' * (12 - len(cmd)) + commands[cmd].help
104
105#
106# The main function (command dispatcher)
107#
108def main():
109 """The main function
110 """
41a6d859
CM
111 prog = os.path.basename(sys.argv[0])
112
113 if len(sys.argv) < 2:
114 print >> sys.stderr, 'Unknown command'
115 print >> sys.stderr, \
116 ' Try "%s help" for a list of supported commands' % prog
117 sys.exit(1)
118
119 cmd = sys.argv[1]
120
121 if cmd in ['-h', '--help', 'help']:
122 print_help()
123 sys.exit(0)
1e0bdf2a 124 if cmd in ['-v', '--version', 'version']:
4df2f866 125 print 'Stacked GIT %s' % version
1e0bdf2a 126 print 'Python version %s' % sys.version
41a6d859 127 sys.exit(0)
22ea9102
CM
128 if cmd in ['copyright']:
129 print __copyright__
130 sys.exit(0)
41a6d859
CM
131 if not cmd in commands:
132 print >> sys.stderr, 'Unknown command: %s' % cmd
2f7c8b0b
CM
133 print >> sys.stderr, ' Try "%s help" for a list of supported ' \
134 'commands' % prog
41a6d859
CM
135 sys.exit(1)
136
137 # re-build the command line arguments
138 sys.argv[0] += ' %s' % cmd
139 del(sys.argv[1])
140
141 command = commands[cmd]
142 parser = OptionParser(usage = command.usage,
fcee87cf 143 option_list = command.options)
41a6d859
CM
144 options, args = parser.parse_args()
145 try:
1008fbce
CM
146 # 'clone' doesn't expect an already initialised GIT tree
147 if cmd == 'clone':
148 stgit.commands.common.crt_series = stack.Series('master')
2f7c8b0b
CM
149 elif hasattr(options, 'branch') and options.branch:
150 stgit.commands.common.crt_series = stack.Series(options.branch)
1008fbce
CM
151 else:
152 stgit.commands.common.crt_series = stack.Series()
153 # the line below is a simple way to avoid an exception when
9ac09909 154 # stgit is run outside an initialised tree
9ac09909
CM
155 setattr(command, 'crt_series', stgit.commands.common.crt_series)
156
41a6d859 157 command.func(parser, options, args)
fcee87cf 158 except (IOError, CmdException, stack.StackException, git.GitException), \
41a6d859
CM
159 err:
160 print >> sys.stderr, '%s %s: %s' % (prog, cmd, err)
161 sys.exit(2)
162
163 sys.exit(0)