]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/PyCrust/introspect.py
c9342c8a0c7dc78992925614effccb5abbfa1e67
1 """Provides a variety of introspective-type support functions for things
2 like call tips and command auto completion."""
4 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
6 __date__
= "August 8, 2001"
7 __version__
= "$Revision$"[11:-2]
12 def getAutoCompleteList(command
='', locals=None):
13 """Return list of auto-completion options for command.
15 The list of options will be based on the locals namespace."""
17 # Get the proper chunk of code from the command.
18 root
= getRoot(command
, terminator
='.')
20 object = eval(root
, locals)
21 attributes
= getAttributes(object)
26 def getAttributes(object):
27 """Return list of unique attributes, including inherited, for an object."""
30 # Remove duplicates from the attribute list.
31 for item
in getAllAttributes(object):
33 attributes
+= dict.keys()
37 def getAllAttributes(object):
38 """Return list of all attributes, including inherited, for an object.
40 Recursively walk through a class and all base classes.
44 attributes
+= dir(object)
45 if hasattr(object, '__class__'):
46 attributes
+= getAllAttributes(object.__class
__)
47 if hasattr(object, '__bases__'):
48 for base
in object.__bases
__:
49 attributes
+= getAllAttributes(base
)
53 def getCallTip(command
='', locals=None):
54 """Return call tip text for a command.
56 The call tip information will be based on the locals namespace."""
58 # Get the proper chunk of code from the command.
59 root
= getRoot(command
, terminator
='(')
61 object = eval(root
, locals)
65 if hasattr(object, '__name__'): # Make sure this is a useable object.
66 # Switch to the object that has the information we need.
67 if inspect
.ismethod(object):
68 # Get the function from the object otherwise inspec.getargspec()
69 # complains that the object isn't a Python function.
70 object = object.im_func
72 elif inspect
.isclass(object):
73 # Get the __init__ method for the class.
75 object = object.__init
__.im_func
77 except AttributeError:
78 for base
in object.__bases
__:
79 constructor
= _find_constructor(base
)
80 if constructor
is not None:
84 name
= object.__name
__
85 if inspect
.isbuiltin(object):
86 # Builtin functions don't have an argspec that we can get.
89 # tip1 is a string like: "getCallTip(command='', locals=None)"
90 argspec
= apply(inspect
.formatargspec
, inspect
.getargspec(object))
92 # The first parameter to a method is a reference to the
93 # instance, usually coded as "self", and is passed
94 # automatically by Python and therefore we want to drop it.
95 temp
= argspec
.split(',')
96 if len(temp
) == 1: # No other arguments.
98 else: # Drop the first argument.
99 argspec
= '(' + ','.join(temp
[1:]).lstrip()
100 tip1
= name
+ argspec
101 doc
= inspect
.getdoc(object)
103 # tip2 is the first separated line of the docstring, like:
104 # "Return call tip text for a command."
105 # tip3 is the rest of the docstring, like:
106 # "The call tip information will be based on ... <snip>
107 docpieces
= doc
.split('\n\n')
109 tip3
= '\n\n'.join(docpieces
[1:])
110 tip
= '%s\n\n%s\n\n%s' % (tip1
, tip2
, tip3
)
117 def getRoot(command
, terminator
=None):
118 """Return the rightmost root portion of an arbitrary Python command.
120 The command would normally terminate with a "(" or ".". Anything after
121 the terminator will be dropped, allowing you to get back to the root.
124 validChars
= "._" + string
.uppercase
+ string
.lowercase
+ string
.digits
125 # Remove all whitespace from the command.
126 command
= ''.join(command
.split())
127 # Deal with the terminator.
129 pieces
= command
.split(terminator
)
131 # Drop the final terminator and anything that follows.
132 command
= terminator
.join(pieces
[:-1])
133 # Go backward through the command until we hit an "invalid" character.
135 while i
and command
[i
-1] in validChars
:
137 # Grab everything from the "invalid" character to the end.