blob: fa43032a3b371e5dee72895bef9aecbb66f72bb4 [file] [log] [blame]
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +00001"""CallTips.py - An IDLE Extension to Jog Your Memory
David Scherer7aced172000-08-15 01:13:23 +00002
Kurt B. Kaisere54710b2002-12-12 19:15:39 +00003Call Tips are floating windows which display function, class, and method
4parameter and docstring information when you type an opening parenthesis, and
5which disappear when you type a closing parenthesis.
6
7Future plans include extending the functionality to include class attributes.
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +00008
9"""
10import sys
David Scherer7aced172000-08-15 01:13:23 +000011import string
David Scherer7aced172000-08-15 01:13:23 +000012import types
13
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000014import CallTipWindow
15
16import __main__
17
David Scherer7aced172000-08-15 01:13:23 +000018class CallTips:
19
20 menudefs = [
21 ]
22
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000023 def __init__(self, editwin=None):
24 if editwin == None: # subprocess and test
25 self.editwin = None
26 return
David Scherer7aced172000-08-15 01:13:23 +000027 self.editwin = editwin
28 self.text = editwin.text
29 self.calltip = None
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000030 self._make_calltip_window = self._make_tk_calltip_window
David Scherer7aced172000-08-15 01:13:23 +000031
32 def close(self):
33 self._make_calltip_window = None
34
David Scherer7aced172000-08-15 01:13:23 +000035 def _make_tk_calltip_window(self):
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000036 # See __init__ for usage
David Scherer7aced172000-08-15 01:13:23 +000037 return CallTipWindow.CallTip(self.text)
38
39 def _remove_calltip_window(self):
40 if self.calltip:
41 self.calltip.hidetip()
42 self.calltip = None
Kurt B. Kaiserae676472001-07-12 23:10:35 +000043
David Scherer7aced172000-08-15 01:13:23 +000044 def paren_open_event(self, event):
45 self._remove_calltip_window()
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000046 name = self.get_name_at_cursor()
47 arg_text = self.fetch_tip(name)
David Scherer7aced172000-08-15 01:13:23 +000048 if arg_text:
49 self.calltip_start = self.text.index("insert")
50 self.calltip = self._make_calltip_window()
51 self.calltip.showtip(arg_text)
52 return "" #so the event is handled normally.
53
54 def paren_close_event(self, event):
55 # Now just hides, but later we should check if other
56 # paren'd expressions remain open.
57 self._remove_calltip_window()
58 return "" #so the event is handled normally.
59
60 def check_calltip_cancel_event(self, event):
61 if self.calltip:
62 # If we have moved before the start of the calltip,
63 # or off the calltip line, then cancel the tip.
64 # (Later need to be smarter about multi-line, etc)
65 if self.text.compare("insert", "<=", self.calltip_start) or \
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000066 self.text.compare("insert", ">", self.calltip_start
67 + " lineend"):
David Scherer7aced172000-08-15 01:13:23 +000068 self._remove_calltip_window()
69 return "" #so the event is handled normally.
70
71 def calltip_cancel_event(self, event):
72 self._remove_calltip_window()
73 return "" #so the event is handled normally.
74
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000075 __IDCHARS = "._" + string.ascii_letters + string.digits
Kurt B. Kaiser92cfaf62002-09-14 00:55:21 +000076
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +000077 def get_name_at_cursor(self):
78 idchars = self.__IDCHARS
79 str = self.text.get("insert linestart", "insert")
80 i = len(str)
81 while i and str[i-1] in idchars:
82 i -= 1
83 return str[i:]
84
85 def fetch_tip(self, name):
Kurt B. Kaisere54710b2002-12-12 19:15:39 +000086 """Return the argument list and docstring of a function or class
87
88 If there is a Python subprocess, get the calltip there. Otherwise,
89 either fetch_tip() is running in the subprocess itself or it was called
90 in an IDLE EditorWindow before any script had been run.
91
92 The subprocess environment is that of the most recently run script. If
93 two unrelated modules are being edited some calltips in the current
94 module may be inoperative if the module was not the last to run.
95
96 """
97 try:
98 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
99 except:
100 rpcclt = None
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000101 if rpcclt:
102 return rpcclt.remotecall("exec", "get_the_calltip",
103 (name,), {})
104 else:
105 entity = self.get_entity(name)
106 return get_arg_text(entity)
107
108 def get_entity(self, name):
Kurt B. Kaisere54710b2002-12-12 19:15:39 +0000109 "Lookup name in a namespace spanning sys.modules and __main.dict__"
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000110 if name:
David Scherer7aced172000-08-15 01:13:23 +0000111 namespace = sys.modules.copy()
112 namespace.update(__main__.__dict__)
113 try:
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000114 return eval(name, namespace)
David Scherer7aced172000-08-15 01:13:23 +0000115 except:
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000116 return None
David Scherer7aced172000-08-15 01:13:23 +0000117
118def _find_constructor(class_ob):
119 # Given a class object, return a function object used for the
120 # constructor (ie, __init__() ) or None if we can't find one.
121 try:
122 return class_ob.__init__.im_func
123 except AttributeError:
124 for base in class_ob.__bases__:
125 rc = _find_constructor(base)
126 if rc is not None: return rc
127 return None
128
129def get_arg_text(ob):
Kurt B. Kaisere54710b2002-12-12 19:15:39 +0000130 "Get a string describing the arguments for the given object"
David Scherer7aced172000-08-15 01:13:23 +0000131 argText = ""
132 if ob is not None:
133 argOffset = 0
134 if type(ob)==types.ClassType:
135 # Look for the highest __init__ in the class chain.
136 fob = _find_constructor(ob)
137 if fob is None:
138 fob = lambda: None
139 else:
140 argOffset = 1
141 elif type(ob)==types.MethodType:
142 # bit of a hack for methods - turn it into a function
143 # but we drop the "self" param.
144 fob = ob.im_func
145 argOffset = 1
146 else:
147 fob = ob
148 # Try and build one for Python defined functions
149 if type(fob) in [types.FunctionType, types.LambdaType]:
150 try:
151 realArgs = fob.func_code.co_varnames[argOffset:fob.func_code.co_argcount]
152 defaults = fob.func_defaults or []
153 defaults = list(map(lambda name: "=%s" % name, defaults))
154 defaults = [""] * (len(realArgs)-len(defaults)) + defaults
155 items = map(lambda arg, dflt: arg+dflt, realArgs, defaults)
156 if fob.func_code.co_flags & 0x4:
157 items.append("...")
158 if fob.func_code.co_flags & 0x8:
159 items.append("***")
Kurt B. Kaiser908aece2002-09-15 22:02:58 +0000160 argText = ", ".join(items)
David Scherer7aced172000-08-15 01:13:23 +0000161 argText = "(%s)" % argText
162 except:
163 pass
164 # See if we can use the docstring
Kurt B. Kaiser908aece2002-09-15 22:02:58 +0000165 doc = getattr(ob, "__doc__", "")
166 if doc:
167 while doc[:1] in " \t\n":
168 doc = doc[1:]
169 pos = doc.find("\n")
170 if pos < 0 or pos > 70:
171 pos = 70
172 if argText:
173 argText += "\n"
174 argText += doc[:pos]
David Scherer7aced172000-08-15 01:13:23 +0000175 return argText
176
177#################################################
178#
179# Test code
180#
181if __name__=='__main__':
182
183 def t1(): "()"
184 def t2(a, b=None): "(a, b=None)"
185 def t3(a, *args): "(a, ...)"
186 def t4(*args): "(...)"
187 def t5(a, *args): "(a, ...)"
188 def t6(a, b=None, *args, **kw): "(a, b=None, ..., ***)"
189
190 class TC:
191 "(a=None, ...)"
192 def __init__(self, a=None, *b): "(a=None, ...)"
193 def t1(self): "()"
194 def t2(self, a, b=None): "(a, b=None)"
195 def t3(self, a, *args): "(a, ...)"
196 def t4(self, *args): "(...)"
197 def t5(self, a, *args): "(a, ...)"
198 def t6(self, a, b=None, *args, **kw): "(a, b=None, ..., ***)"
199
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000200 def test(tests):
201 ct = CallTips()
David Scherer7aced172000-08-15 01:13:23 +0000202 failed=[]
203 for t in tests:
204 expected = t.__doc__ + "\n" + t.__doc__
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000205 name = t.__name__
206 arg_text = ct.fetch_tip(name)
207 if arg_text != expected:
David Scherer7aced172000-08-15 01:13:23 +0000208 failed.append(t)
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000209 print "%s - expected %s, but got %s" % (t, expected,
210 get_arg_text(entity))
David Scherer7aced172000-08-15 01:13:23 +0000211 print "%d of %d tests failed" % (len(failed), len(tests))
212
213 tc = TC()
Kurt B. Kaiser5afa1df2002-10-10 08:25:24 +0000214 tests = (t1, t2, t3, t4, t5, t6,
215 TC, tc.t1, tc.t2, tc.t3, tc.t4, tc.t5, tc.t6)
David Scherer7aced172000-08-15 01:13:23 +0000216
217 test(tests)