Convert 'hide' to the lib infrastructure
[stgit] / stgit / commands / hide.py
1 __copyright__ = """
2 Copyright (C) 2009, Catalin Marinas <catalin.marinas@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 as
6 published by the Free Software Foundation.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 """
17
18 from stgit.commands import common
19 from stgit.lib import transaction
20 from stgit import argparse, out
21 from stgit.argparse import opt
22
23 help = 'Hide a patch in the series'
24 kind = 'stack'
25 usage = ['[options] <patch-range>']
26 description = """
27 Hide a range of unapplied patches so that they are no longer shown in
28 the plain 'series' command output."""
29
30 args = [argparse.patch_range(argparse.applied_patches,
31 argparse.unapplied_patches)]
32 options = [
33 opt('-b', '--branch', args = [argparse.stg_branches],
34 short = 'Use BRANCH instead of the default branch')]
35
36 directory = common.DirectoryHasRepositoryLib()
37
38 def func(parser, options, args):
39 """Hide a range of patch in the series."""
40 stack = directory.repository.current_stack
41 trans = transaction.StackTransaction(stack, 'hide')
42
43 if not args:
44 parser.error('No patches specified')
45
46 patches = common.parse_patches(args, trans.all_patches)
47 for p in patches:
48 if p in trans.hidden:
49 out.warn('Patch "%s" already hidden' % p)
50 patches = [p for p in patches if not p in set(trans.hidden)]
51
52 applied = [p for p in trans.applied if not p in set(patches)]
53 unapplied = [p for p in trans.unapplied if not p in set(patches)]
54 hidden = patches + trans.hidden
55
56 trans.reorder_patches(applied, unapplied, hidden)
57 return trans.run()