aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/ui/util/cmdutil.py
blob: b2d8a99108dd7a4695e238bc560c73bcfc17856b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
# Copyright (C) 2005-2009 Aaron Bentley and Panometrics, Inc.
#                         Gianluca Montecchi <gian@grys.it>
#                         Oleg Romanyshyn <oromanyshyn@panoramicfeedback.com>
#                         W. Trevor King <wking@drexel.edu>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

"""
Define assorted utilities to make command-line handling easier.
"""

import glob
import optparse
import os
from textwrap import TextWrapper
from StringIO import StringIO
import sys

import libbe
import bugdir
import comment
import plugin
import encoding
if libbe.TESTING == True:
    import doctest



def iter_commands():
    for name, module in plugin.iter_plugins("becommands"):
        yield name.replace("_", "-"), module

def execute(cmd, args,
            manipulate_encodings=True, restrict_file_access=False,
            dir="."):
    enc = encoding.get_encoding()
    cmd = get_command(cmd)
    ret = cmd.execute([a.decode(enc) for a in args],
                      manipulate_encodings=manipulate_encodings,
                      restrict_file_access=restrict_file_access,
                      dir=dir)
    if ret == None:
        ret = 0
    return ret

class GetHelp(Exception):
    pass


class GetCompletions(Exception):
    def __init__(self, completions=[]):
        msg = "Get allowed completions"
        Exception.__init__(self, msg)
        self.completions = completions

def raise_get_help(option, opt, value, parser):
    raise GetHelp

def raise_get_completions(option, opt, value, parser):
    if hasattr(parser, "command") and parser.command == "be":
        comps = []
        for command, module in iter_commands():
            comps.append(command)
        for opt in parser.option_list:
            comps.append(opt.get_opt_string())
        raise GetCompletions(comps)
    raise GetCompletions(completions(sys.argv[1]))

def completions(cmd):
    parser = get_command(cmd).get_parser()
    longopts = []
    for opt in parser.option_list:
        longopts.append(opt.get_opt_string())
    return longopts


class CmdOptionParser(optparse.OptionParser):
    def __init__(self, usage):
        optparse.OptionParser.__init__(self, usage)
        self.disable_interspersed_args()
        self.remove_option("-h")
        self.add_option("-h", "--help", action="callback", 
                        callback=raise_get_help, help="Print a help message")
        self.add_option("--complete", action="callback",
                        callback=raise_get_completions,
                        help="Print a list of available completions")

    def error(self, message):
        raise UsageError(message)

    def iter_options(self):
        return iter_combine([self._short_opt.iterkeys(), 
                            self._long_opt.iterkeys()])

    def help_str(self):
        f = StringIO()
        self.print_help(f)
        return f.getvalue()

def option_value_pairs(options, parser):
    """
    Iterate through OptionParser (option, value) pairs.
    """
    for option in [o.dest for o in parser.option_list if o.dest != None]:
        value = getattr(options, option)
        yield (option, value)

def default_complete(options, args, parser, bugid_args={}):
    """
    A dud complete implementation for becommands so that the
    --complete argument doesn't cause any problems.  Use this
    until you've set up a command-specific complete function.
    
    bugid_args is an optional dict where the keys are positional
    arguments taking bug shortnames and the values are functions for
    filtering, since that's a common enough operation.
    e.g. for "be open [options] BUGID"
      bugid_args = {0: lambda bug : bug.active == False}
    A positional argument of -1 specifies all remaining arguments
    (e.g in the case of "be show BUGID BUGID ...").
    """
    for option,value in option_value_pairs(options, parser):
        if value == "--complete":
            raise GetCompletions()
    if len(bugid_args.keys()) > 0:
        max_pos_arg = max(bugid_args.keys())
    else:
        max_pos_arg = -1
    for pos,value in enumerate(args):
        if value == "--complete":
            filter = None
            if pos in bugid_args:
                filter = bugid_args[pos]
            if pos > max_pos_arg and -1 in bugid_args:
                filter = bugid_args[-1]
            if filter != None:
                bugshortnames = []
                try:
                    bd = bugdir.BugDir(from_disk=True,
                                       manipulate_encodings=False)
                    bd.load_all_bugs()
                    bugs = [bug for bug in bd if filter(bug) == True]
                    bugshortnames = [bd.bug_shortname(bug) for bug in bugs]
                except bugdir.NoBugDir:
                    pass
                raise GetCompletions(bugshortnames)
            raise GetCompletions()

def complete_path(path):
    """List possible path completions for path."""
    comps = glob.glob(path+"*") + glob.glob(path+"/*")
    if len(comps) == 1 and os.path.isdir(comps[0]):
        comps.extend(glob.glob(comps[0]+"/*"))
    return comps


def restrict_file_access(bugdir, path):
    """
    Check that the file at path is inside bugdir.root.  This is
    important if you allow other users to execute becommands with your
    username (e.g. if you're running be-handle-mail through your
    ~/.procmailrc).  If this check wasn't made, a user could e.g.
    run
      be commit -b ~/.ssh/id_rsa "Hack to expose ssh key"
    which would expose your ssh key to anyone who could read the VCS
    log.
    """
    in_root = bugdir.vcs.path_in_root(path, bugdir.root)
    if in_root == False:
        raise UserError('file access restricted!\n  %s not in %s'
                        % (path, bugdir.root))

def parse_id(id):
    """
    Return (bug_id, comment_id) tuple.
    Basically inverts Comment.comment_shortnames()
    >>> parse_id('XYZ')
    ('XYZ', None)
    >>> parse_id('XYZ:123')
    ('XYZ', ':123')
    >>> parse_id('')
    Traceback (most recent call last):
      ...
    UserError: invalid id ''.
    >>> parse_id('::')
    Traceback (most recent call last):
      ...
    UserError: invalid id '::'.
    """
    if len(id) == 0:
        raise UserError("invalid id '%s'." % id)
    if id.count(':') > 1:
        raise UserError("invalid id '%s'." % id)
    elif id.count(':') == 1:
        # Split shortname generated by Comment.comment_shortnames()
        bug_id,comment_id = id.split(':')
        comment_id = ':'+comment_id
    else:
        bug_id = id
        comment_id = None
    return (bug_id, comment_id)

def bug_from_id(bdir, id):
    """
    Exception translation for the command-line interface.
    id can be either the bug shortname or the full uuid.
    """
    try:
        bug = bdir.bug_from_shortname(id)
    except (bugdir.MultipleBugMatches, bugdir.NoBugMatches), e:
        raise UserError(e.message)
    return bug

def bug_comment_from_id(bdir, id):
    """
    Return (bug,comment) tuple matching shortname.  id can be either
    the bug/comment shortname or the full uuid.  If there is no
    comment part to the id, the returned comment is the bug's
    .comment_root.
    """
    bug_id,comment_id = parse_id(id)
    try:
        bug = bdir.bug_from_shortname(bug_id)
    except (bugdir.MultipleBugMatches, bugdir.NoBugMatches), e:
        raise UserError(e.message)
    if comment_id == None:
        comm = bug.comment_root
    else:
        #bug.load_comments(load_full=False)
        try:
            comm = bug.comment_root.comment_from_shortname(comment_id)
        except comment.InvalidShortname, e:
            raise UserError(e.message)
    return (bug, comm)



if libbe.TESTING == True:
    suite = doctest.DocTestSuite()