~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/shellcomplete.py

  • Committer: John Arbash Meinel
  • Date: 2008-08-18 22:34:21 UTC
  • mto: (3606.5.6 1.6)
  • mto: This revision was merged to the branch mainline in revision 3641.
  • Revision ID: john@arbash-meinel.com-20080818223421-todjny24vj4faj4t
Add tests for the fetching behavior.

The proper parameter passed is 'unordered' add an assert for it, and
fix callers that were passing 'unsorted' instead.
Add tests that we make the right get_record_stream call based
on the value of _fetch_uses_deltas.
Fix the fetch request for signatures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
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
 
1
17
import sys
2
18
 
3
19
 
4
20
def shellcomplete(context=None, outfile = None):
5
 
    if outfile == None:
 
21
    if outfile is None:
6
22
        outfile = sys.stdout
7
 
    if context == None:
 
23
    if context is None:
8
24
        shellcomplete_commands(outfile = outfile)
9
25
    else:
10
26
        shellcomplete_on_command(context, outfile = outfile)
11
27
 
12
 
def shellcomplete_on_command(cmdname, outfile = None):
 
28
 
 
29
def shellcomplete_on_command(cmdname, outfile=None):
13
30
    cmdname = str(cmdname)
14
31
 
15
 
    if outfile == None:
 
32
    if outfile is None:
16
33
        outfile = sys.stdout
17
34
 
18
35
    from inspect import getdoc
20
37
    cmdobj = commands.get_cmd_object(cmdname)
21
38
 
22
39
    doc = getdoc(cmdobj)
23
 
    if doc == None:
 
40
    if doc is None:
24
41
        raise NotImplementedError("sorry, no detailed shellcomplete yet for %r" % cmdname)
25
42
 
26
 
    shellcomplete_on_option(cmdobj.takes_options, outfile = None)
 
43
    shellcomplete_on_options(cmdobj.options().values(), outfile=outfile)
27
44
    for aname in cmdobj.takes_args:
28
45
        outfile.write(aname + '\n')
29
46
 
30
47
 
31
 
def shellcomplete_on_option(options, outfile=None):
32
 
    from bzrlib.option import Option
33
 
    if not options:
34
 
        return
35
 
    if outfile == None:
36
 
        outfile = sys.stdout
37
 
    for on in options:
38
 
        for shortname, longname in Option.SHORT_OPTIONS.items():
39
 
            if longname == on:
40
 
                l = '"(--' + on + ' -' + shortname + ')"{--' + on + ',-' + shortname + '}'
41
 
                break
42
 
            else:
43
 
                l = '--' + on
44
 
        outfile.write(l + '\n')
 
48
def shellcomplete_on_options(options, outfile=None):
 
49
    for opt in options:
 
50
        if opt.short_name:
 
51
            outfile.write('"(--%s -%s)"{--%s,-%s}\n'
 
52
                    % (opt.name, opt.short_name(), opt.name, opt.short_name()))
 
53
        else:
 
54
            outfile.write('--%s\n' % opt.name)
45
55
 
46
56
 
47
57
def shellcomplete_commands(outfile = None):
50
60
    import commands
51
61
    from inspect import getdoc
52
62
    
53
 
    if outfile == None:
 
63
    if outfile is None:
54
64
        outfile = sys.stdout
55
65
    
56
66
    cmds = []
57
67
    for cmdname, cmdclass in commands.get_all_cmds():
58
68
        cmds.append((cmdname, cmdclass))
59
 
        for alias in cmdclass.aliases:
60
 
            cmds.append((alias, cmdclass))
 
69
        for alias in cmdclass.aliases:
 
70
            cmds.append((alias, cmdclass))
61
71
    cmds.sort()
62
72
    for cmdname, cmdclass in cmds:
63
73
        if cmdclass.hidden:
64
74
            continue
65
75
        doc = getdoc(cmdclass)
66
 
        if doc == None:
67
 
            outfile.write(cmdname + '\n')
 
76
        if doc is None:
 
77
            outfile.write(cmdname + '\n')
68
78
        else:
69
 
            doclines = doc.splitlines()
70
 
            firstline = doclines[0].lower()
71
 
            outfile.write(cmdname + ':' + firstline[0:-1] + '\n')
 
79
            doclines = doc.splitlines()
 
80
            firstline = doclines[0].lower()
 
81
            outfile.write(cmdname + ':' + firstline[0:-1] + '\n')