Merge commit 'kha/safe'
[stgit] / stgit / commands / patches.py
... / ...
CommitLineData
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
20from pydoc import pager
21
22from stgit.commands.common import *
23from stgit.utils import *
24from stgit.out import *
25from stgit import stack, git
26
27
28help = 'show the applied patches modifying a file'
29usage = """%prog [options] [<files or dirs>]
30
31Show the applied patches modifying the given files. Without arguments,
32it shows the patches affected by the local tree modifications. The
33'--diff' option also lists the patch log and the diff for the given
34files."""
35
36directory = DirectoryHasRepository()
37options = [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
43diff_tmpl = \
44 '-------------------------------------------------------------------------------\n' \
45 '%s\n' \
46 '-------------------------------------------------------------------------------\n' \
47 '%s' \
48 '---\n\n' \
49 '%s'
50
51def 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 # git.tree_status returns absolute paths
57 else:
58 files = git.ls_files(args)
59 directory.cd_to_topdir()
60
61 if not files:
62 raise CmdException, 'No files specified or no local changes'
63
64 applied = crt_series.get_applied()
65 if not applied:
66 raise CmdException, 'No patches applied'
67
68 revs = git.modifying_revs(files, crt_series.get_base(),
69 crt_series.get_head())
70 revs.reverse()
71
72 # build the patch/revision mapping
73 rev_patch = dict()
74 for name in applied:
75 patch = crt_series.get_patch(name)
76 rev_patch[patch.get_top()] = patch
77
78 # print the patch names
79 diff_output = ''
80 for rev in revs:
81 if rev in rev_patch:
82 patch = rev_patch[rev]
83 if options.diff:
84 diff_output += diff_tmpl \
85 % (patch.get_name(), patch.get_description(),
86 git.diff(files, patch.get_bottom(),
87 patch.get_top()))
88 else:
89 out.stdout(patch.get_name())
90
91 if options.diff:
92 pager(diff_output)