Allow export to write unapplied files as well
[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 *
5e888f30 26from stgit.out import *
1f3bb017 27from stgit import stack, git, templates
fcee87cf
CM
28
29
4ec67741 30help = 'exports patches to a directory'
8560c67b 31usage = """%prog [options] [<patch1>] [<patch2>] [<patch3>..<patch4>]
26aab5b0 32
8560c67b
CM
33Export a range of applied patches to a given directory (defaults to
34'patches-<branch>') in a standard unified GNU diff format. A template
35file (defaulting to '.git/patchexport.tmpl' or
94d18868
YD
36'~/.stgit/templates/patchexport.tmpl' or
37'/usr/share/stgit/templates/patchexport.tmpl') can be used for the
23a88c7d
CM
38patch format. The following variables are supported in the template
39file:
26aab5b0
CM
40
41 %(description)s - patch description
99e73103
CM
42 %(shortdescr)s - the first line of the patch description
43 %(longdescr)s - the rest of the patch description, after the first line
26aab5b0
CM
44 %(diffstat)s - the diff statistics
45 %(authname)s - author's name
46 %(authemail)s - author's e-mail
47 %(authdate)s - patch creation date
48 %(commname)s - committer's name
49 %(commemail)s - committer's e-mail
8560c67b 50"""
26aab5b0 51
6dd8fafa 52directory = DirectoryHasRepository()
8560c67b
CM
53options = [make_option('-d', '--dir',
54 help = 'export patches to DIR instead of the default'),
099ff6cd
CM
55 make_option('-p', '--patch',
56 help = 'append .patch to the patch names',
57 action = 'store_true'),
8560c67b
CM
58 make_option('-e', '--extension',
59 help = 'append .EXTENSION to the patch names'),
60 make_option('-n', '--numbered',
61 help = 'prefix the patch names with order numbers',
62 action = 'store_true'),
fcee87cf
CM
63 make_option('-t', '--template', metavar = 'FILE',
64 help = 'Use FILE as a template'),
2f7c8b0b 65 make_option('-b', '--branch',
1fceece7 66 help = 'use BRANCH instead of the default one'),
2ace36ab
YD
67 make_option('-O', '--diff-opts',
68 help = 'options to pass to git-diff'),
1fceece7
CM
69 make_option('-s', '--stdout',
70 help = 'dump the patches to the standard output',
71 action = 'store_true')]
fcee87cf
CM
72
73
74def func(parser, options, args):
8560c67b
CM
75 """Export a range of patches.
76 """
77 if options.dir:
78 dirname = options.dir
fcee87cf 79 else:
d37ff079 80 dirname = 'patches-%s' % crt_series.get_name()
7b601c9e 81 directory.cd_to_topdir()
fcee87cf 82
2f7c8b0b 83 if not options.branch and git.local_changes():
27ac2b7e
KH
84 out.warn('Local changes in the tree;'
85 ' you might want to commit them first')
fcee87cf 86
1fceece7
CM
87 if not options.stdout:
88 if not os.path.isdir(dirname):
89 os.makedirs(dirname)
90 series = file(os.path.join(dirname, 'series'), 'w+')
fcee87cf 91
2ace36ab
YD
92 if options.diff_opts:
93 diff_flags = options.diff_opts.split()
0d219030
YD
94 else:
95 diff_flags = []
96
fcee87cf 97 applied = crt_series.get_applied()
340793d1 98 unapplied = crt_series.get_unapplied()
8560c67b 99 if len(args) != 0:
340793d1 100 patches = parse_patches(args, applied + unapplied, len(applied))
fcee87cf 101 else:
6b1e0111 102 patches = applied
fcee87cf
CM
103
104 num = len(patches)
16ad223e
PR
105 if num == 0:
106 raise CmdException, 'No patches applied'
107
fcee87cf
CM
108 zpadding = len(str(num))
109 if zpadding < 2:
110 zpadding = 2
111
23a88c7d
CM
112 # get the template
113 if options.template:
1f3bb017 114 tmpl = file(options.template).read()
23a88c7d 115 else:
1f3bb017
CM
116 tmpl = templates.get_template('patchexport.tmpl')
117 if not tmpl:
118 tmpl = ''
23a88c7d 119
6c4e4b68 120 # note the base commit for this series
1fceece7
CM
121 if not options.stdout:
122 base_commit = crt_series.get_patch(patches[0]).get_bottom()
123 print >> series, '# This series applies on GIT commit %s' % base_commit
6c4e4b68 124
fcee87cf
CM
125 patch_no = 1;
126 for p in patches:
127 pname = p
8560c67b 128 if options.patch:
099ff6cd 129 pname = '%s.patch' % pname
8560c67b
CM
130 elif options.extension:
131 pname = '%s.%s' % (pname, options.extension)
fcee87cf
CM
132 if options.numbered:
133 pname = '%s-%s' % (str(patch_no).zfill(zpadding), pname)
134 pfile = os.path.join(dirname, pname)
1fceece7
CM
135 if not options.stdout:
136 print >> series, pname
fcee87cf 137
fcee87cf
CM
138 # get the patch description
139 patch = crt_series.get_patch(p)
140
99e73103
CM
141 descr = patch.get_description().strip()
142 descr_lines = descr.split('\n')
143
144 short_descr = descr_lines[0].rstrip()
145 long_descr = reduce(lambda x, y: x + '\n' + y,
146 descr_lines[1:], '').strip()
147
fcee87cf 148 tmpl_dict = {'description': patch.get_description().rstrip(),
99e73103
CM
149 'shortdescr': short_descr,
150 'longdescr': long_descr,
ed7ec17a
CM
151 'diffstat': git.diffstat(rev1 = patch.get_bottom(),
152 rev2 = patch.get_top()),
fcee87cf
CM
153 'authname': patch.get_authname(),
154 'authemail': patch.get_authemail(),
155 'authdate': patch.get_authdate(),
156 'commname': patch.get_commname(),
157 'commemail': patch.get_commemail()}
158 for key in tmpl_dict:
159 if not tmpl_dict[key]:
160 tmpl_dict[key] = ''
161
162 try:
163 descr = tmpl % tmpl_dict
164 except KeyError, err:
8f4d71da 165 raise CmdException, 'Unknown patch template variable: %s' \
fcee87cf
CM
166 % err
167 except TypeError:
8f4d71da 168 raise CmdException, 'Only "%(name)s" variables are ' \
fcee87cf 169 'supported in the patch template'
fcee87cf 170
1fceece7
CM
171 if options.stdout:
172 f = sys.stdout
173 else:
174 f = open(pfile, 'w+')
175
176 if options.stdout and num > 1:
27ac2b7e 177 print '-'*79
1fceece7 178 print patch.get_name()
27ac2b7e 179 print '-'*79
1fceece7 180
1fceece7 181 f.write(descr)
f0de3f92
KH
182 f.write(git.diff(rev1 = patch.get_bottom(),
183 rev2 = patch.get_top(),
184 diff_flags = diff_flags))
1fceece7
CM
185 if not options.stdout:
186 f.close()
fcee87cf
CM
187 patch_no += 1
188
1fceece7
CM
189 if not options.stdout:
190 series.close()