chiark / gitweb /
b8ca133ee7be9906ea8547e1b3232df7f323b1cd
[stgit] / stgit / commands / export.py
1 """Export command
2 """
3
4 __copyright__ = """
5 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 """
20
21 import sys, os
22 from optparse import OptionParser, make_option
23
24 from stgit.commands.common import *
25 from stgit.utils import *
26 from stgit import stack, git
27
28
29 help = 'exports a series of patches to <dir> (or patches)'
30 usage = """%prog [options] [<dir>]
31
32 Export the applied patches into a given directory (defaults to
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
36 patch format. The following variables are supported in the template
37 file:
38
39   %(description)s - patch description
40   %(shortdescr)s  - the first line of the patch description
41   %(longdescr)s   - the rest of the patch description, after the first line
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."""
50
51 options = [make_option('-n', '--numbered',
52                        help = 'prefix the patch names with order numbers',
53                        action = 'store_true'),
54            make_option('-d', '--diff',
55                        help = 'append .diff to the patch names',
56                        action = 'store_true'),
57            make_option('-t', '--template', metavar = 'FILE',
58                        help = 'Use FILE as a template'),
59            make_option('-r', '--range',
60                        metavar = '[PATCH1][:[PATCH2]]',
61                        help = 'export patches between PATCH1 and PATCH2'),
62            make_option('-b', '--branch',
63                        help = 'use BRANCH instead of the default one')]
64
65
66 def func(parser, options, args):
67     if len(args) == 0:
68         dirname = 'patches-%s' % crt_series.get_branch()
69     elif len(args) == 1:
70         dirname = args[0]
71     else:
72         parser.error('incorrect number of arguments')
73
74     if not options.branch and git.local_changes():
75         print 'Warning: local changes in the tree. ' \
76               'You might want to commit them first'
77
78     if not os.path.isdir(dirname):
79         os.makedirs(dirname)
80     series = file(os.path.join(dirname, 'series'), 'w+')
81
82     applied = crt_series.get_applied()
83     unapplied = crt_series.get_unapplied()
84
85     if options.range:
86         boundaries = options.range.split(':')
87         if len(boundaries) == 1:
88             start = boundaries[0]
89             stop = boundaries[0]
90         elif len(boundaries) == 2:
91             if boundaries[0] == '':
92                 start = applied[0]
93             else:
94                 start = boundaries[0]
95             if boundaries[1] == '':
96                 stop = applied[-1]
97             else:
98                 stop = boundaries[1]
99         else:
100             raise CmdException, 'incorrect parameters to "--range"'
101
102         if start in applied:
103             start_idx = applied.index(start)
104         else:
105             if start in unapplied:
106                 raise CmdException, 'Patch "%s" not applied' % start
107             else:
108                 raise CmdException, 'Patch "%s" does not exist' % start
109
110         if stop in applied:
111             stop_idx = applied.index(stop) + 1
112         else:
113             if stop in unapplied:
114                 raise CmdException, 'Patch "%s" not applied' % stop
115             else:
116                 raise CmdException, 'Patch "%s" does not exist' % stop
117
118         if start_idx >= stop_idx:
119             raise CmdException, 'Incorrect patch range order'
120     else:
121         start_idx = 0
122         stop_idx = len(applied)
123
124     patches = applied[start_idx:stop_idx]
125
126     num = len(patches)
127     if num == 0:
128         raise CmdException, 'No patches applied'
129
130     zpadding = len(str(num))
131     if zpadding < 2:
132         zpadding = 2
133
134     # get the template
135     if options.template:
136         patch_tmpl_list = [options.template]
137     else:
138         patch_tmpl_list = []
139
140     patch_tmpl_list += [os.path.join(git.get_base_dir(), 'patchexport.tmpl'),
141                         os.path.join(sys.prefix,
142                                      'share/stgit/templates/patchexport.tmpl')]
143     tmpl = ''
144     for patch_tmpl in patch_tmpl_list:
145         if os.path.isfile(patch_tmpl):
146             tmpl = file(patch_tmpl).read()
147             break
148
149     # note the base commit for this series
150     base_commit = crt_series.get_patch(patches[0]).get_bottom()
151     print >> series, '# This series applies on GIT commit %s' % base_commit
152
153     patch_no = 1;
154     for p in patches:
155         pname = p
156         if options.diff:
157             pname = '%s.diff' % pname
158         if options.numbered:
159             pname = '%s-%s' % (str(patch_no).zfill(zpadding), pname)
160         pfile = os.path.join(dirname, pname)
161         print >> series, pname
162
163         # get the patch description
164         patch = crt_series.get_patch(p)
165
166         descr = patch.get_description().strip()
167         descr_lines = descr.split('\n')
168
169         short_descr = descr_lines[0].rstrip()
170         long_descr = reduce(lambda x, y: x + '\n' + y,
171                             descr_lines[1:], '').strip()
172
173         tmpl_dict = {'description': patch.get_description().rstrip(),
174                      'shortdescr': short_descr,
175                      'longdescr': long_descr,
176                      'diffstat': git.diffstat(rev1 = patch.get_bottom(),
177                                               rev2 = patch.get_top()),
178                      'authname': patch.get_authname(),
179                      'authemail': patch.get_authemail(),
180                      'authdate': patch.get_authdate(),
181                      'commname': patch.get_commname(),
182                      'commemail': patch.get_commemail()}
183         for key in tmpl_dict:
184             if not tmpl_dict[key]:
185                 tmpl_dict[key] = ''
186
187         try:
188             descr = tmpl % tmpl_dict
189         except KeyError, err:
190             raise CmdException, 'Unknown patch template variable: %s' \
191                   % err
192         except TypeError:
193             raise CmdException, 'Only "%(name)s" variables are ' \
194                   'supported in the patch template'
195         f = open(pfile, 'w+')
196         f.write(descr)
197
198         # write the diff
199         git.diff(rev1 = patch.get_bottom(),
200                  rev2 = patch.get_top(),
201                  out_fd = f)
202         f.close()
203         patch_no += 1
204
205     series.close()