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