Convert 'hide' to the lib infrastructure
[stgit] / stgit / commands / hide.py
... / ...
CommitLineData
1__copyright__ = """
2Copyright (C) 2009, Catalin Marinas <catalin.marinas@gmail.com>
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License version 2 as
6published by the Free Software Foundation.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16"""
17
18from stgit.commands import common
19from stgit.lib import transaction
20from stgit import argparse, out
21from stgit.argparse import opt
22
23help = 'Hide a patch in the series'
24kind = 'stack'
25usage = ['[options] <patch-range>']
26description = """
27Hide a range of unapplied patches so that they are no longer shown in
28the plain 'series' command output."""
29
30args = [argparse.patch_range(argparse.applied_patches,
31 argparse.unapplied_patches)]
32options = [
33 opt('-b', '--branch', args = [argparse.stg_branches],
34 short = 'Use BRANCH instead of the default branch')]
35
36directory = common.DirectoryHasRepositoryLib()
37
38def 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()