Merge branch 'stable'
[stgit] / stgit / commands / status.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 stgit.argparse import opt
21 from stgit.commands.common import *
22 from stgit.utils import *
23 from stgit import argparse, stack, git
24
25 help = 'Show the tree status'
26 kind = 'wc'
27 usage = ['[options] [<files or dirs>]']
28 description = """
29 Show the status of the whole working copy or the given files. The
30 command also shows the files in the current directory which are not
31 under revision control. The files are prefixed as follows:
32
33 M - locally modified
34 N - newly added to the repository
35 D - deleted from the repository
36 C - conflict
37 ? - unknown
38
39 An 'stg refresh' command clears the status of the modified, new and
40 deleted files."""
41
42 args = [argparse.files]
43 options = [
44 opt('-m', '--modified', action = 'store_true',
45 short = 'Show modified files only'),
46 opt('-n', '--new', action = 'store_true',
47 short = 'Show new files only'),
48 opt('-d', '--deleted', action = 'store_true',
49 short = 'Show deleted files only'),
50 opt('-c', '--conflict', action = 'store_true',
51 short = 'Show conflict files only'),
52 opt('-u', '--unknown', action = 'store_true',
53 short = 'Show unknown files only'),
54 opt('-x', '--noexclude', action = 'store_true',
55 short = 'Do not exclude any files from listing'),
56 opt('--reset', action = 'store_true',
57 short = 'Reset the current tree changes')]
58
59 directory = DirectoryHasRepository(needs_current_series = False, log = False)
60
61 def status(files, modified, new, deleted, conflict, unknown, noexclude):
62 """Show the tree status
63 """
64 cache_files = git.tree_status(files,
65 unknown = (not files),
66 noexclude = noexclude)
67 filtered = (modified or new or deleted or conflict or unknown)
68
69 if filtered:
70 filestat = []
71 if modified:
72 filestat.append('M')
73 if new:
74 filestat.append('A')
75 filestat.append('N')
76 if deleted:
77 filestat.append('D')
78 if conflict:
79 filestat.append('C')
80 if unknown:
81 filestat.append('?')
82 cache_files = [x for x in cache_files if x[0] in filestat]
83
84 output = []
85 for st, fn in cache_files:
86 if filtered:
87 output.append(fn)
88 else:
89 output.append('%s %s' % (st, fn))
90 for o in sorted(output):
91 out.stdout(o)
92
93 def func(parser, options, args):
94 """Show the tree status
95 """
96 args = git.ls_files(args)
97 directory.cd_to_topdir()
98
99 if options.reset:
100 directory.log = True
101 if args:
102 conflicts = git.get_conflicts()
103 git.resolved([fn for fn in args if fn in conflicts])
104 git.reset(args)
105 else:
106 resolved_all()
107 git.reset()
108 else:
109 status(args, options.modified, options.new, options.deleted,
110 options.conflict, options.unknown, options.noexclude)