"stg mail" doesn't distinguish between unapplied and non-existent patches
[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.pick
48import stgit.commands.pop
49import stgit.commands.pull
50import stgit.commands.push
51import stgit.commands.refresh
52import stgit.commands.rename
53import stgit.commands.resolved
54import stgit.commands.rm
55import stgit.commands.series
56import stgit.commands.status
57import stgit.commands.top
58import stgit.commands.unapplied
59
60
61#
62# The commands map
63#
64commands = {
65 'add': stgit.commands.add,
66 'applied': stgit.commands.applied,
67 'branch': stgit.commands.branch,
68 'delete': stgit.commands.delete,
69 'diff': stgit.commands.diff,
70 'clean': stgit.commands.clean,
71 'clone': stgit.commands.clone,
72 'commit': stgit.commands.commit,
73 'export': stgit.commands.export,
74 'files': stgit.commands.files,
75 'fold': stgit.commands.fold,
76 'id': stgit.commands.id,
77 'import': stgit.commands.imprt,
78 'init': stgit.commands.init,
79 'mail': stgit.commands.mail,
80 'new': stgit.commands.new,
81 'pick': stgit.commands.pick,
82 'pop': stgit.commands.pop,
83 'pull': stgit.commands.pull,
84 'push': stgit.commands.push,
85 'refresh': stgit.commands.refresh,
86 'rename': stgit.commands.rename,
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,
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'
100 print ' version display version information'
101 print ' copyright display copyright information'
102 print
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 """
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)
128 if cmd in ['-v', '--version', 'version']:
129 print 'Stacked GIT %s' % version
130 print 'Python version %s' % sys.version
131 sys.exit(0)
132 if cmd in ['copyright']:
133 print __copyright__
134 sys.exit(0)
135 if not cmd in commands:
136 print >> sys.stderr, 'Unknown command: %s' % cmd
137 print >> sys.stderr, ' Try "%s help" for a list of supported ' \
138 'commands' % prog
139 sys.exit(1)
140
141 # re-build the command line arguments
142 sys.argv[0] += ' %s' % cmd
143 del(sys.argv[1])
144
145 command = commands[cmd]
146 parser = OptionParser(usage = command.usage,
147 option_list = command.options)
148 options, args = parser.parse_args()
149 try:
150 # 'clone' doesn't expect an already initialised GIT tree
151 if cmd == 'clone':
152 stgit.commands.common.crt_series = stack.Series('master')
153 elif hasattr(options, 'branch') and options.branch:
154 stgit.commands.common.crt_series = stack.Series(options.branch)
155 else:
156 stgit.commands.common.crt_series = stack.Series()
157 # the line below is a simple way to avoid an exception when
158 # stgit is run outside an initialised tree
159 setattr(command, 'crt_series', stgit.commands.common.crt_series)
160
161 command.func(parser, options, args)
162 except (IOError, CmdException, stack.StackException, git.GitException), \
163 err:
164 print >> sys.stderr, '%s %s: %s' % (prog, cmd, err)
165 sys.exit(2)
166
167 sys.exit(0)