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