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