0b618fefa4ac6a1e2014a82f10beee1cd76b82f9
[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.out import *
25 from stgit import stack, git
26
27
28 help = 'show the applied patches modifying a file'
29 usage = """%prog [options] [<files...>]
30
31 Show the applied patches modifying the given files. Without arguments,
32 it shows the patches affected by the local tree modifications. The
33 '--diff' option also lists the patch log and the diff for the given
34 files."""
35
36 directory = DirectoryHasRepository()
37 options = [make_option('-d', '--diff',
38 help = 'show the diff for the given files',
39 action = 'store_true'),
40 make_option('-b', '--branch',
41 help = 'use BRANCH instead of the default one')]
42
43 diff_tmpl = \
44 '-------------------------------------------------------------------------------\n' \
45 '%s\n' \
46 '-------------------------------------------------------------------------------\n' \
47 '%s' \
48 '---\n\n' \
49 '%s'
50
51 def func(parser, options, args):
52 """Show the patches modifying a file
53 """
54 if not args:
55 files = [path for (stat,path) in git.tree_status(verbose = True)]
56 else:
57 files = args
58
59 if not files:
60 raise CmdException, 'No files specified or no local changes'
61
62 applied = crt_series.get_applied()
63 if not applied:
64 raise CmdException, 'No patches applied'
65
66 revs = git.modifying_revs(files, crt_series.get_base(),
67 crt_series.get_head())
68 revs.reverse()
69
70 # build the patch/revision mapping
71 rev_patch = dict()
72 for name in applied:
73 patch = crt_series.get_patch(name)
74 rev_patch[patch.get_top()] = patch
75
76 # print the patch names
77 diff_output = ''
78 for rev in revs:
79 if rev in rev_patch:
80 patch = rev_patch[rev]
81 if options.diff:
82 diff_output += diff_tmpl \
83 % (patch.get_name(), patch.get_description(),
84 git.diff(files, patch.get_bottom(),
85 patch.get_top()))
86 else:
87 out.stdout(patch.get_name())
88
89 if options.diff:
90 pager(diff_output)