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