Complete patch names after a patch (range) option
[stgit] / stgit / commands / diff.py
... / ...
CommitLineData
1
2__copyright__ = """
3Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License version 2 as
7published by the Free Software Foundation.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program; if not, write to the Free Software
16Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17"""
18
19import sys, os
20from optparse import OptionParser, make_option
21from pydoc import pager
22
23from stgit.commands.common import *
24from stgit.utils import *
25from stgit import stack, git
26
27
28help = 'show the tree diff'
29usage = """%prog [options] [<files...>]
30
31Show the diff (default) or diffstat between the current working copy
32or a tree-ish object and another tree-ish object. File names can also
33be given to restrict the diff output. The tree-ish object can be a
34standard git commit, tag or tree. In addition to these, the command
35also supports 'base', representing the bottom of the current stack,
36and '[patch][//[bottom | top]]' for the patch boundaries (defaulting to
37the current one):
38
39rev = '([patch][//[bottom | top]]) | <tree-ish> | base'
40
41If neither bottom nor top are given but a '//' is present, the command
42shows the specified patch (defaulting to the current one)."""
43
44options = [make_option('-r', '--range',
45 metavar = 'rev1[..[rev2]]', dest = 'revs',
46 help = 'show the diff between revisions'),
47 make_option('-s', '--stat',
48 help = 'show the stat instead of the diff',
49 action = 'store_true')]
50
51
52def func(parser, options, args):
53 """Show the tree diff
54 """
55 if options.revs:
56 rev_list = options.revs.split('..')
57 rev_list_len = len(rev_list)
58 if rev_list_len == 1:
59 rev = rev_list[0]
60 if rev.endswith('/'):
61 # the whole patch
62 rev = strip_suffix('/', rev)
63 if rev.endswith('/'):
64 rev = strip_suffix('/', rev)
65 rev1 = rev + '//bottom'
66 rev2 = rev + '//top'
67 else:
68 rev1 = rev_list[0]
69 rev2 = None
70 elif rev_list_len == 2:
71 rev1 = rev_list[0]
72 rev2 = rev_list[1]
73 else:
74 parser.error('incorrect parameters to -r')
75 else:
76 rev1 = 'HEAD'
77 rev2 = None
78
79 if options.stat:
80 print git.diffstat(args, git_id(rev1), git_id(rev2))
81 else:
82 diff_str = git.diff(args, git_id(rev1), git_id(rev2))
83 if diff_str:
84 pager(diff_str)