Add the --patch option to export
[stgit] / stgit / commands / export.py
CommitLineData
fcee87cf
CM
1"""Export command
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.commands.common import *
25from stgit.utils import *
26from stgit import stack, git
27
28
29help = 'exports a series of patches to <dir> (or patches)'
26aab5b0
CM
30usage = """%prog [options] [<dir>]
31
32Export the applied patches into a given directory (defaults to
23a88c7d
CM
33'patches') in a standard unified GNU diff format. A template file
34(defaulting to '.git/patchexport.tmpl or
35/usr/share/stgit/templates/patchexport.tmpl') can be used for the
36patch format. The following variables are supported in the template
37file:
26aab5b0
CM
38
39 %(description)s - patch description
99e73103
CM
40 %(shortdescr)s - the first line of the patch description
41 %(longdescr)s - the rest of the patch description, after the first line
26aab5b0
CM
42 %(diffstat)s - the diff statistics
43 %(authname)s - author's name
44 %(authemail)s - author's e-mail
45 %(authdate)s - patch creation date
46 %(commname)s - committer's name
47 %(commemail)s - committer's e-mail
48
49'export' can also generate a diff for a range of patches."""
fcee87cf
CM
50
51options = [make_option('-n', '--numbered',
26aab5b0 52 help = 'prefix the patch names with order numbers',
fcee87cf
CM
53 action = 'store_true'),
54 make_option('-d', '--diff',
55 help = 'append .diff to the patch names',
56 action = 'store_true'),
099ff6cd
CM
57 make_option('-p', '--patch',
58 help = 'append .patch to the patch names',
59 action = 'store_true'),
fcee87cf
CM
60 make_option('-t', '--template', metavar = 'FILE',
61 help = 'Use FILE as a template'),
62 make_option('-r', '--range',
63 metavar = '[PATCH1][:[PATCH2]]',
2f7c8b0b
CM
64 help = 'export patches between PATCH1 and PATCH2'),
65 make_option('-b', '--branch',
1fceece7
CM
66 help = 'use BRANCH instead of the default one'),
67 make_option('-s', '--stdout',
68 help = 'dump the patches to the standard output',
69 action = 'store_true')]
fcee87cf
CM
70
71
72def func(parser, options, args):
73 if len(args) == 0:
629ddd02 74 dirname = 'patches-%s' % crt_series.get_branch()
fcee87cf
CM
75 elif len(args) == 1:
76 dirname = args[0]
77 else:
78 parser.error('incorrect number of arguments')
79
2f7c8b0b 80 if not options.branch and git.local_changes():
fcee87cf
CM
81 print 'Warning: local changes in the tree. ' \
82 'You might want to commit them first'
83
1fceece7
CM
84 if not options.stdout:
85 if not os.path.isdir(dirname):
86 os.makedirs(dirname)
87 series = file(os.path.join(dirname, 'series'), 'w+')
fcee87cf
CM
88
89 applied = crt_series.get_applied()
3888eb9a 90 unapplied = crt_series.get_unapplied()
fcee87cf
CM
91
92 if options.range:
93 boundaries = options.range.split(':')
94 if len(boundaries) == 1:
95 start = boundaries[0]
96 stop = boundaries[0]
8f4d71da 97 elif len(boundaries) == 2:
fcee87cf
CM
98 if boundaries[0] == '':
99 start = applied[0]
100 else:
101 start = boundaries[0]
102 if boundaries[1] == '':
103 stop = applied[-1]
104 else:
105 stop = boundaries[1]
106 else:
8f4d71da 107 raise CmdException, 'incorrect parameters to "--range"'
fcee87cf
CM
108
109 if start in applied:
110 start_idx = applied.index(start)
111 else:
4dcb1859
CL
112 if start in unapplied:
113 raise CmdException, 'Patch "%s" not applied' % start
114 else:
115 raise CmdException, 'Patch "%s" does not exist' % start
116
fcee87cf
CM
117 if stop in applied:
118 stop_idx = applied.index(stop) + 1
119 else:
4dcb1859
CL
120 if stop in unapplied:
121 raise CmdException, 'Patch "%s" not applied' % stop
122 else:
123 raise CmdException, 'Patch "%s" does not exist' % stop
fcee87cf
CM
124
125 if start_idx >= stop_idx:
8f4d71da 126 raise CmdException, 'Incorrect patch range order'
fcee87cf
CM
127 else:
128 start_idx = 0
b054c8bd 129 stop_idx = len(applied)
fcee87cf
CM
130
131 patches = applied[start_idx:stop_idx]
132
133 num = len(patches)
16ad223e
PR
134 if num == 0:
135 raise CmdException, 'No patches applied'
136
fcee87cf
CM
137 zpadding = len(str(num))
138 if zpadding < 2:
139 zpadding = 2
140
23a88c7d
CM
141 # get the template
142 if options.template:
143 patch_tmpl_list = [options.template]
144 else:
145 patch_tmpl_list = []
146
bae29ddd 147 patch_tmpl_list += [os.path.join(git.get_base_dir(), 'patchexport.tmpl'),
23a88c7d
CM
148 os.path.join(sys.prefix,
149 'share/stgit/templates/patchexport.tmpl')]
150 tmpl = ''
151 for patch_tmpl in patch_tmpl_list:
152 if os.path.isfile(patch_tmpl):
153 tmpl = file(patch_tmpl).read()
154 break
155
6c4e4b68 156 # note the base commit for this series
1fceece7
CM
157 if not options.stdout:
158 base_commit = crt_series.get_patch(patches[0]).get_bottom()
159 print >> series, '# This series applies on GIT commit %s' % base_commit
6c4e4b68 160
fcee87cf
CM
161 patch_no = 1;
162 for p in patches:
163 pname = p
164 if options.diff:
165 pname = '%s.diff' % pname
099ff6cd
CM
166 elif options.patch:
167 pname = '%s.patch' % pname
fcee87cf
CM
168 if options.numbered:
169 pname = '%s-%s' % (str(patch_no).zfill(zpadding), pname)
170 pfile = os.path.join(dirname, pname)
1fceece7
CM
171 if not options.stdout:
172 print >> series, pname
fcee87cf 173
fcee87cf
CM
174 # get the patch description
175 patch = crt_series.get_patch(p)
176
99e73103
CM
177 descr = patch.get_description().strip()
178 descr_lines = descr.split('\n')
179
180 short_descr = descr_lines[0].rstrip()
181 long_descr = reduce(lambda x, y: x + '\n' + y,
182 descr_lines[1:], '').strip()
183
fcee87cf 184 tmpl_dict = {'description': patch.get_description().rstrip(),
99e73103
CM
185 'shortdescr': short_descr,
186 'longdescr': long_descr,
ed7ec17a
CM
187 'diffstat': git.diffstat(rev1 = patch.get_bottom(),
188 rev2 = patch.get_top()),
fcee87cf
CM
189 'authname': patch.get_authname(),
190 'authemail': patch.get_authemail(),
191 'authdate': patch.get_authdate(),
192 'commname': patch.get_commname(),
193 'commemail': patch.get_commemail()}
194 for key in tmpl_dict:
195 if not tmpl_dict[key]:
196 tmpl_dict[key] = ''
197
198 try:
199 descr = tmpl % tmpl_dict
200 except KeyError, err:
8f4d71da 201 raise CmdException, 'Unknown patch template variable: %s' \
fcee87cf
CM
202 % err
203 except TypeError:
8f4d71da 204 raise CmdException, 'Only "%(name)s" variables are ' \
fcee87cf 205 'supported in the patch template'
fcee87cf 206
1fceece7
CM
207 if options.stdout:
208 f = sys.stdout
209 else:
210 f = open(pfile, 'w+')
211
212 if options.stdout and num > 1:
213 print '-------------------------------------------------------------------------------'
214 print patch.get_name()
215 print '-------------------------------------------------------------------------------'
216
217 # write description
218 f.write(descr)
fcee87cf 219 # write the diff
ed7ec17a
CM
220 git.diff(rev1 = patch.get_bottom(),
221 rev2 = patch.get_top(),
26dba451 222 out_fd = f)
1fceece7
CM
223 if not options.stdout:
224 f.close()
fcee87cf
CM
225 patch_no += 1
226
1fceece7
CM
227 if not options.stdout:
228 series.close()