Allow stg to be loaded in pydb and not run main()
[stgit] / stgit / main.py
... / ...
CommitLineData
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
24from stgit.utils import *
25from stgit import stack, git
26from stgit.version import version
27from stgit.config import config
28from stgit.commands.common import *
29
30# The commands
31import stgit.commands.add
32import stgit.commands.applied
33import stgit.commands.branch
34import stgit.commands.delete
35import stgit.commands.diff
36import stgit.commands.clean
37import stgit.commands.clone
38import stgit.commands.commit
39import stgit.commands.export
40import stgit.commands.files
41import stgit.commands.fold
42import stgit.commands.id
43import stgit.commands.imprt
44import stgit.commands.init
45import stgit.commands.mail
46import stgit.commands.new
47import stgit.commands.patches
48import stgit.commands.pick
49import stgit.commands.pop
50import stgit.commands.pull
51import stgit.commands.push
52import stgit.commands.refresh
53import stgit.commands.rename
54import stgit.commands.resolved
55import stgit.commands.rm
56import stgit.commands.series
57import stgit.commands.status
58import stgit.commands.top
59import stgit.commands.unapplied
60import stgit.commands.uncommit
61
62
63#
64# The commands map
65#
66commands = {
67 'add': stgit.commands.add,
68 'applied': stgit.commands.applied,
69 'branch': stgit.commands.branch,
70 'delete': stgit.commands.delete,
71 'diff': stgit.commands.diff,
72 'clean': stgit.commands.clean,
73 'clone': stgit.commands.clone,
74 'commit': stgit.commands.commit,
75 'export': stgit.commands.export,
76 'files': stgit.commands.files,
77 'fold': stgit.commands.fold,
78 'id': stgit.commands.id,
79 'import': stgit.commands.imprt,
80 'init': stgit.commands.init,
81 'mail': stgit.commands.mail,
82 'new': stgit.commands.new,
83 'patches': stgit.commands.patches,
84 'pick': stgit.commands.pick,
85 'pop': stgit.commands.pop,
86 'pull': stgit.commands.pull,
87 'push': stgit.commands.push,
88 'refresh': stgit.commands.refresh,
89 'rename': stgit.commands.rename,
90 'resolved': stgit.commands.resolved,
91 'rm': stgit.commands.rm,
92 'series': stgit.commands.series,
93 'status': stgit.commands.status,
94 'top': stgit.commands.top,
95 'unapplied':stgit.commands.unapplied,
96 'uncommit': stgit.commands.uncommit,
97 }
98
99def print_help():
100 print 'usage: %s <command> [options]' % os.path.basename(sys.argv[0])
101 print
102 print 'commands:'
103 print ' help print this message'
104 print ' version display version information'
105 print ' copyright display copyright information'
106 print
107
108 cmds = commands.keys()
109 cmds.sort()
110 for cmd in cmds:
111 print ' ' + cmd + ' ' * (12 - len(cmd)) + commands[cmd].help
112
113#
114# The main function (command dispatcher)
115#
116def main():
117 """The main function
118 """
119 prog = os.path.basename(sys.argv[0])
120
121 if len(sys.argv) < 2:
122 print >> sys.stderr, 'Unknown command'
123 print >> sys.stderr, \
124 ' Try "%s help" for a list of supported commands' % prog
125 sys.exit(1)
126
127 cmd = sys.argv[1]
128
129 if cmd in ['-h', '--help', 'help']:
130 if len(sys.argv) == 3 and sys.argv[2] in commands:
131 cmd = sys.argv[2]
132 sys.argv[2] = '--help';
133 else:
134 print_help()
135 sys.exit(0)
136 if cmd in ['-v', '--version', 'version']:
137 print 'Stacked GIT %s' % version
138 os.system('git --version')
139 print 'Python version %s' % sys.version
140 sys.exit(0)
141 if cmd in ['copyright']:
142 print __copyright__
143 sys.exit(0)
144 if not cmd in commands:
145 print >> sys.stderr, 'Unknown command: %s' % cmd
146 print >> sys.stderr, ' Try "%s help" for a list of supported ' \
147 'commands' % prog
148 sys.exit(1)
149
150 # re-build the command line arguments
151 sys.argv[0] += ' %s' % cmd
152 del(sys.argv[1])
153
154 command = commands[cmd]
155 parser = OptionParser(usage = command.usage,
156 option_list = command.options)
157 options, args = parser.parse_args()
158 try:
159 # 'clone' doesn't expect an already initialised GIT tree. A Series
160 # object will be created after the GIT tree is cloned
161 if cmd != 'clone':
162 if hasattr(options, 'branch') and options.branch:
163 command.crt_series = stack.Series(options.branch)
164 else:
165 command.crt_series = stack.Series()
166 stgit.commands.common.crt_series = command.crt_series
167
168 command.func(parser, options, args)
169 except (IOError, CmdException, stack.StackException, git.GitException), \
170 err:
171 print >> sys.stderr, '%s %s: %s' % (prog, cmd, err)
172 sys.exit(2)
173 except KeyboardInterrupt:
174 sys.exit(1)
175
176 sys.exit(0)