Convert 'unhide' to the lib infrastructure
[stgit] / stgit / commands / unhide.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
21from stgit.argparse import opt
22
23help = 'Unhide a hidden patch'
24kind = 'stack'
25usage = ['[options] <patch-range>']
26description = """
27Unhide a hidden range of patches so that they are shown in the plain
28'stg series' command output."""
29
30args = [argparse.patch_range(argparse.hidden_patches)]
31options = [
32 opt('-b', '--branch', args = [argparse.stg_branches],
33 short = 'Use BRANCH instead of the default branch')]
34
35directory = common.DirectoryHasRepositoryLib()
36
37def func(parser, options, args):
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:
43 parser.error('No patches specified')
44
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()