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