Convert 'hide' to the lib infrastructure
[stgit] / stgit / commands / hide.py
CommitLineData
841c7b2a 1__copyright__ = """
c9ab4162 2Copyright (C) 2009, Catalin Marinas <catalin.marinas@gmail.com>
841c7b2a
CM
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
c9ab4162
CM
18from stgit.commands import common
19from stgit.lib import transaction
20from stgit import argparse, out
575bbdae 21from stgit.argparse import opt
841c7b2a 22
575bbdae 23help = 'Hide a patch in the series'
33ff9cdd 24kind = 'stack'
575bbdae
KH
25usage = ['[options] <patch-range>']
26description = """
ca8b854c
CM
27Hide a range of unapplied patches so that they are no longer shown in
28the plain 'series' command output."""
841c7b2a 29
6c8a90e1
KH
30args = [argparse.patch_range(argparse.applied_patches,
31 argparse.unapplied_patches)]
575bbdae 32options = [
6c8a90e1 33 opt('-b', '--branch', args = [argparse.stg_branches],
575bbdae
KH
34 short = 'Use BRANCH instead of the default branch')]
35
c9ab4162 36directory = common.DirectoryHasRepositoryLib()
841c7b2a
CM
37
38def func(parser, options, args):
c9ab4162
CM
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:
ca8b854c 44 parser.error('No patches specified')
841c7b2a 45
c9ab4162
CM
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()