chiark / gitweb /
38de3a1dd6cb31b2e34ca02d5746109b3027b8b9
[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 pydoc import pager
21 from stgit.argparse import opt
22 from stgit.commands.common import *
23 from stgit.utils import *
24 from stgit.out import *
25 from stgit import argparse, stack, git
26
27 help = 'Show the tree diff'
28 kind = 'wc'
29 usage = ['[options] [<files or dirs>]']
30 description = """
31 Show the diff (default) or diffstat between the current working copy
32 or a tree-ish object and another tree-ish object (defaulting to HEAD).
33 File names can also be given to restrict the diff output. The
34 tree-ish object can be an StGIT patch, a standard git commit, tag or
35 tree. In addition to these, the command also supports '{base}',
36 representing the bottom of the current stack.
37
38 rev = '[branch:](<patch>|{base}) | <tree-ish>'"""
39
40 options = [
41     opt('-r', '--range', metavar = 'rev1[..[rev2]]', dest = 'revs',
42         short = 'Show the diff between revisions'),
43     opt('-s', '--stat', action = 'store_true',
44         short = 'Show the stat instead of the diff'),
45     ] + argparse.diff_opts_option()
46
47 directory = DirectoryHasRepository(log = False)
48
49 def func(parser, options, args):
50     """Show the tree diff
51     """
52     args = git.ls_files(args)
53     directory.cd_to_topdir()
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             rev1 = rev_list[0]
60             rev2 = None
61         elif rev_list_len == 2:
62             rev1 = rev_list[0]
63             rev2 = rev_list[1]
64         else:
65             parser.error('incorrect parameters to -r')
66     else:
67         rev1 = 'HEAD'
68         rev2 = None
69
70     diff_str = git.diff(args, git_id(crt_series, rev1),
71                         rev2 and git_id(crt_series, rev2),
72                         diff_flags = options.diff_flags)
73     if options.stat:
74         out.stdout_raw(git.diffstat(diff_str) + '\n')
75     else:
76         if diff_str:
77             pager(diff_str)