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
|
import sys
def shellcomplete(context=None, outfile = None):
if outfile == None:
outfile = sys.stdout
if context == None:
shellcomplete_commands(outfile = outfile)
else:
shellcomplete_on_command(context, outfile = outfile)
def shellcomplete_on_command(cmdname, outfile = None):
cmdname = str(cmdname)
if outfile == None:
outfile = sys.stdout
from inspect import getdoc
import commands
cmdobj = commands.get_cmd_object(cmdname)
doc = getdoc(cmdobj)
if doc == None:
raise NotImplementedError("sorry, no detailed shellcomplete yet for %r" % cmdname)
shellcomplete_on_option(cmdobj.takes_options, outfile = None)
for aname in cmdobj.takes_args:
outfile.write(aname + '\n')
def shellcomplete_on_option(options, outfile = None):
import commands
if not options:
return
if outfile == None:
outfile = sys.stdout
for on in options:
for shortname, longname in commands.SHORT_OPTIONS.items():
if longname == on:
l = '"(--' + on + ' -' + shortname + ')"{--' + on + ',-' + shortname + '}'
break
else:
l = '--' + on
outfile.write(l + '\n')
def shellcomplete_commands(outfile = None):
"""List all commands"""
import inspect
import commands
from inspect import getdoc
if outfile == None:
outfile = sys.stdout
cmds = []
for cmdname, cmdclass in commands.get_all_cmds():
cmds.append((cmdname, cmdclass))
for alias in cmdclass.aliases:
cmds.append((alias, cmdclass))
cmds.sort()
for cmdname, cmdclass in cmds:
if cmdclass.hidden:
continue
doc = getdoc(cmdclass)
if doc == None:
outfile.write(cmdname + '\n')
else:
doclines = doc.splitlines()
firstline = doclines[0].lower()
outfile.write(cmdname + ':' + firstline[0:-1] + '\n')
|