Convert 'unhide' to the lib infrastructure
[stgit] / stgit / commands / unhide.py
CommitLineData
841c7b2a 1__copyright__ = """
f421375c 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
f421375c
CM
18from stgit.commands import common
19from stgit.lib import transaction
20from stgit import argparse
575bbdae 21from stgit.argparse import opt
841c7b2a 22
575bbdae 23help = 'Unhide a hidden patch'
33ff9cdd 24kind = 'stack'
575bbdae
KH
25usage = ['[options] <patch-range>']
26description = """
ca8b854c 27Unhide a hidden range of patches so that they are shown in the plain
575bbdae
KH
28'stg series' command output."""
29
6c8a90e1 30args = [argparse.patch_range(argparse.hidden_patches)]
575bbdae 31options = [
6c8a90e1 32 opt('-b', '--branch', args = [argparse.stg_branches],
575bbdae 33 short = 'Use BRANCH instead of the default branch')]
841c7b2a 34
f421375c 35directory = common.DirectoryHasRepositoryLib()
841c7b2a
CM
36
37def func(parser, options, args):
f421375c
CM
38 """Unhide a range of patch in the series."""
39 stack = directory.repository.current_stack
40 trans = transaction.StackTransaction(stack, 'hide')
41
42 if not args:
ca8b854c 43 parser.error('No patches specified')
841c7b2a 44
f421375c
CM
45 patches = common.parse_patches(args, trans.all_patches)
46 for p in patches:
47 if not p in trans.hidden:
48 raise common.CmdException('Patch "%s" not hidden' % p)
49
50 applied = list(trans.applied)
51 unapplied = trans.unapplied + patches
52 hidden = [p for p in trans.hidden if not p in set(patches)]
53
54 trans.reorder_patches(applied, unapplied, hidden)
55 return trans.run()