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