a6cd0136ae5c0dd74cce24bdd176f60b7a222714
[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 from stgit.lib import git as gitlib
27
28 help = 'Show the tree diff'
29 kind = 'wc'
30 usage = ['[options] [<files or dirs>]']
31 description = """
32 Show the diff (default) or diffstat between the current working copy
33 or a tree-ish object and another tree-ish object (defaulting to HEAD).
34 File names can also be given to restrict the diff output. The
35 tree-ish object has the format accepted by the linkstg:id[] command."""
36
37 args = [argparse.known_files, argparse.dirty_files]
38 options = [
39 opt('-r', '--range', metavar = 'rev1[..[rev2]]', dest = 'revs',
40 args = [argparse.patch_range(argparse.applied_patches,
41 argparse.unapplied_patches,
42 argparse.hidden_patches)],
43 short = 'Show the diff between revisions'),
44 opt('-s', '--stat', action = 'store_true',
45 short = 'Show the stat instead of the diff'),
46 ] + argparse.diff_opts_option()
47
48 directory = DirectoryHasRepository(log = False)
49
50 def func(parser, options, args):
51 """Show the tree diff
52 """
53 args = git.ls_files(args)
54 directory.cd_to_topdir()
55
56 if options.revs:
57 rev_list = options.revs.split('..')
58 rev_list_len = len(rev_list)
59 if rev_list_len == 1:
60 rev1 = rev_list[0]
61 rev2 = None
62 elif rev_list_len == 2:
63 rev1 = rev_list[0]
64 rev2 = rev_list[1]
65 else:
66 parser.error('incorrect parameters to -r')
67 else:
68 rev1 = 'HEAD'
69 rev2 = None
70
71 if not options.stat:
72 options.diff_flags.extend(color_diff_flags())
73 diff_str = git.diff(args, git_id(crt_series, rev1),
74 rev2 and git_id(crt_series, rev2),
75 diff_flags = options.diff_flags)
76 if options.stat:
77 out.stdout_raw(gitlib.diffstat(diff_str) + '\n')
78 else:
79 if diff_str:
80 pager(diff_str)