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