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