Compile regexp just once
[stgit] / stgit / commands / patches.py
CommitLineData
cd25e03d
CM
1__copyright__ = """
2Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License version 2 as
6published by the Free Software Foundation.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16"""
17
18import sys, os
19from optparse import OptionParser, make_option
e45e1f85 20from pydoc import pager
cd25e03d
CM
21
22from stgit.commands.common import *
23from stgit.utils import *
24from stgit import stack, git
25
26
4ec67741 27help = 'show the applied patches modifying a file'
d436b1da 28usage = """%prog [options] [<files...>]
cd25e03d 29
d436b1da
CM
30Show the applied patches modifying the given files. Without arguments,
31it shows the patches affected by the local tree modifications. The
32'--diff' option also lists the patch log and the diff for the given
33files."""
cd25e03d
CM
34
35options = [make_option('-d', '--diff',
36 help = 'show the diff for the given files',
e078133e
CM
37 action = 'store_true'),
38 make_option('-b', '--branch',
39 help = 'use BRANCH instead of the default one')]
cd25e03d 40
e45e1f85
CM
41diff_tmpl = \
42 '-------------------------------------------------------------------------------\n' \
43 '%s\n' \
44 '-------------------------------------------------------------------------------\n' \
45 '%s' \
46 '---\n\n' \
47 '%s'
cd25e03d
CM
48
49def func(parser, options, args):
50 """Show the patches modifying a file
51 """
d436b1da
CM
52 if not args:
53 files = [stat[1] for stat in git.tree_status(verbose = True)]
54 else:
55 files = args
56
57 if not files:
58 raise CmdException, 'No files specified or no local changes'
cd25e03d
CM
59
60 applied = crt_series.get_applied()
61 if not applied:
62 raise CmdException, 'No patches applied'
63
d436b1da 64 revs = git.modifying_revs(files, crt_series.get_base(),
e078133e 65 crt_series.get_head())
cd25e03d
CM
66 revs.reverse()
67
68 # build the patch/revision mapping
69 rev_patch = dict()
70 for name in applied:
71 patch = crt_series.get_patch(name)
72 rev_patch[patch.get_top()] = patch
73
74 # print the patch names
e45e1f85 75 diff_output = ''
cd25e03d
CM
76 for rev in revs:
77 if rev in rev_patch:
78 patch = rev_patch[rev]
79 if options.diff:
e45e1f85
CM
80 diff_output += diff_tmpl \
81 % (patch.get_name(), patch.get_description(),
d436b1da 82 git.diff(files, patch.get_bottom(),
e45e1f85 83 patch.get_top()))
cd25e03d 84 else:
27ac2b7e 85 out.stdout(patch.get_name())
e45e1f85
CM
86
87 if options.diff:
88 pager(diff_output)