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