Convert 'hide' to the lib infrastructure
[stgit] / stgit / commands / diff.py
CommitLineData
fcee87cf
CM
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
52f3900c 20from pydoc import pager
575bbdae 21from stgit.argparse import opt
fcee87cf
CM
22from stgit.commands.common import *
23from stgit.utils import *
5e888f30 24from stgit.out import *
20a52e06 25from stgit import argparse, stack, git
ef954fe6 26from stgit.lib import git as gitlib
fcee87cf 27
575bbdae 28help = 'Show the tree diff'
33ff9cdd 29kind = 'wc'
575bbdae
KH
30usage = ['[options] [<files or dirs>]']
31description = """
26aab5b0 32Show the diff (default) or diffstat between the current working copy
e4560d7e
CM
33or a tree-ish object and another tree-ish object (defaulting to HEAD).
34File names can also be given to restrict the diff output. The
35tree-ish object can be an StGIT patch, a standard git commit, tag or
36tree. In addition to these, the command also supports '{base}',
37representing the bottom of the current stack.
26aab5b0 38
575bbdae
KH
39rev = '[branch:](<patch>|{base}) | <tree-ish>'"""
40
6c8a90e1 41args = [argparse.known_files, argparse.dirty_files]
575bbdae
KH
42options = [
43 opt('-r', '--range', metavar = 'rev1[..[rev2]]', dest = 'revs',
6c8a90e1
KH
44 args = [argparse.patch_range(argparse.applied_patches,
45 argparse.unapplied_patches,
46 argparse.hidden_patches)],
575bbdae
KH
47 short = 'Show the diff between revisions'),
48 opt('-s', '--stat', action = 'store_true',
49 short = 'Show the stat instead of the diff'),
50 ] + argparse.diff_opts_option()
fcee87cf 51
117ed129 52directory = DirectoryHasRepository(log = False)
fcee87cf
CM
53
54def func(parser, options, args):
55 """Show the tree diff
56 """
d4356ac6
CM
57 args = git.ls_files(args)
58 directory.cd_to_topdir()
59
fcee87cf 60 if options.revs:
6b1e0111 61 rev_list = options.revs.split('..')
fcee87cf
CM
62 rev_list_len = len(rev_list)
63 if rev_list_len == 1:
e4560d7e
CM
64 rev1 = rev_list[0]
65 rev2 = None
fcee87cf
CM
66 elif rev_list_len == 2:
67 rev1 = rev_list[0]
68 rev2 = rev_list[1]
fcee87cf
CM
69 else:
70 parser.error('incorrect parameters to -r')
71 else:
72 rev1 = 'HEAD'
73 rev2 = None
74
a45cea15 75 diff_str = git.diff(args, git_id(crt_series, rev1),
e4560d7e 76 rev2 and git_id(crt_series, rev2),
a45cea15 77 diff_flags = options.diff_flags)
fcee87cf 78 if options.stat:
ef954fe6 79 out.stdout_raw(gitlib.diffstat(diff_str) + '\n')
fcee87cf 80 else:
fdf4cb43
CM
81 if diff_str:
82 pager(diff_str)