blob: d56681c9e623cb8f581a14d18708e201e6a67ea1 [file] [log] [blame]
Guido van Rossum5d42b5b1998-10-22 21:56:44 +00001"""Utilities needed to emulate Python's interactive interpreter.
Guido van Rossum5227f0f1998-09-22 20:38:53 +00002
Guido van Rossum5227f0f1998-09-22 20:38:53 +00003"""
Guido van Rossum1557a731997-07-18 16:57:52 +00004
Guido van Rossum98d9fd32000-02-28 15:12:25 +00005# Inspired by similar code by Jeff Epler and Fredrik Lundh.
6
Guido van Rossum5d42b5b1998-10-22 21:56:44 +00007
Guido van Rossuma93b8481998-06-23 19:31:19 +00008import sys
Guido van Rossuma93b8481998-06-23 19:31:19 +00009import traceback
Guido van Rossum5d42b5b1998-10-22 21:56:44 +000010from codeop import compile_command
Guido van Rossum90981e01997-10-07 14:47:24 +000011
Skip Montanaroe99d5ea2001-01-20 19:54:20 +000012__all__ = ["InteractiveInterpreter","InteractiveConsole","interact",
13 "compile_command"]
14
Guido van Rossum4ec59c72001-01-13 22:10:41 +000015def softspace(file, newvalue):
16 oldvalue = 0
17 try:
18 oldvalue = file.softspace
19 except AttributeError:
20 pass
21 try:
22 file.softspace = newvalue
23 except TypeError: # "attribute-less object" or "read-only attributes"
24 pass
25 return oldvalue
Guido van Rossum90981e01997-10-07 14:47:24 +000026
Guido van Rossum5227f0f1998-09-22 20:38:53 +000027class InteractiveInterpreter:
28 """Base class for InteractiveConsole.
Guido van Rossuma93b8481998-06-23 19:31:19 +000029
Guido van Rossum5227f0f1998-09-22 20:38:53 +000030 This class deals with parsing and interpreter state (the user's
31 namespace); it doesn't deal with input buffering or prompting or
32 input file naming (the filename is always passed in explicitly).
33
Guido van Rossuma93b8481998-06-23 19:31:19 +000034 """
35
Guido van Rossum5227f0f1998-09-22 20:38:53 +000036 def __init__(self, locals=None):
Guido van Rossuma93b8481998-06-23 19:31:19 +000037 """Constructor.
38
Guido van Rossum5227f0f1998-09-22 20:38:53 +000039 The optional 'locals' argument specifies the dictionary in
40 which code will be executed; it defaults to a newly created
41 dictionary with key "__name__" set to "__console__" and key
42 "__doc__" set to None.
Guido van Rossuma93b8481998-06-23 19:31:19 +000043
44 """
Guido van Rossuma93b8481998-06-23 19:31:19 +000045 if locals is None:
Guido van Rossum5227f0f1998-09-22 20:38:53 +000046 locals = {"__name__": "__console__", "__doc__": None}
Guido van Rossuma93b8481998-06-23 19:31:19 +000047 self.locals = locals
Guido van Rossum5227f0f1998-09-22 20:38:53 +000048
49 def runsource(self, source, filename="<input>", symbol="single"):
50 """Compile and run some source in the interpreter.
51
52 Arguments are as for compile_command().
53
54 One several things can happen:
55
56 1) The input is incorrect; compile_command() raised an
57 exception (SyntaxError or OverflowError). A syntax traceback
58 will be printed by calling the showsyntaxerror() method.
59
60 2) The input is incomplete, and more input is required;
61 compile_command() returned None. Nothing happens.
62
63 3) The input is complete; compile_command() returned a code
64 object. The code is executed by calling self.runcode() (which
65 also handles run-time exceptions, except for SystemExit).
66
67 The return value is 1 in case 2, 0 in the other cases (unless
68 an exception is raised). The return value can be used to
69 decide whether to use sys.ps1 or sys.ps2 to prompt the next
70 line.
71
72 """
73 try:
74 code = compile_command(source, filename, symbol)
Guido van Rossum48450cf2001-01-15 18:13:35 +000075 except (OverflowError, SyntaxError, ValueError):
Guido van Rossum5227f0f1998-09-22 20:38:53 +000076 # Case 1
77 self.showsyntaxerror(filename)
78 return 0
79
80 if code is None:
81 # Case 2
82 return 1
83
84 # Case 3
85 self.runcode(code)
86 return 0
87
88 def runcode(self, code):
89 """Execute a code object.
90
91 When an exception occurs, self.showtraceback() is called to
92 display a traceback. All exceptions are caught except
93 SystemExit, which is reraised.
94
95 A note about KeyboardInterrupt: this exception may occur
96 elsewhere in this code, and may not always be caught. The
97 caller should be prepared to deal with it.
98
99 """
100 try:
101 exec code in self.locals
102 except SystemExit:
103 raise
104 except:
105 self.showtraceback()
Guido van Rossum4ec59c72001-01-13 22:10:41 +0000106 else:
107 if softspace(sys.stdout, 0):
108 print
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000109
110 def showsyntaxerror(self, filename=None):
111 """Display the syntax error that just occurred.
112
113 This doesn't display a stack trace because there isn't one.
114
115 If a filename is given, it is stuffed in the exception instead
116 of what was there before (because Python's parser always uses
117 "<string>" when reading from a string).
118
119 The output is written by self.write(), below.
120
121 """
122 type, value, sys.last_traceback = sys.exc_info()
123 sys.last_type = type
124 sys.last_value = value
125 if filename and type is SyntaxError:
126 # Work hard to stuff the correct filename in the exception
127 try:
128 msg, (dummy_filename, lineno, offset, line) = value
129 except:
130 # Not the format we expect; leave it alone
131 pass
132 else:
133 # Stuff in the right filename
134 try:
135 # Assume SyntaxError is a class exception
136 value = SyntaxError(msg, (filename, lineno, offset, line))
137 except:
138 # If that failed, assume SyntaxError is a string
139 value = msg, (filename, lineno, offset, line)
Fred Drakec7745d42001-05-03 04:58:49 +0000140 sys.last_value = value
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000141 list = traceback.format_exception_only(type, value)
142 map(self.write, list)
143
144 def showtraceback(self):
145 """Display the exception that just occurred.
146
147 We remove the first stack item because it is our own code.
148
149 The output is written by self.write(), below.
150
151 """
152 try:
153 type, value, tb = sys.exc_info()
154 sys.last_type = type
155 sys.last_value = value
156 sys.last_traceback = tb
157 tblist = traceback.extract_tb(tb)
158 del tblist[:1]
159 list = traceback.format_list(tblist)
160 if list:
Guido van Rossum7dd06962000-12-27 19:12:58 +0000161 list.insert(0, "Traceback (most recent call last):\n")
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000162 list[len(list):] = traceback.format_exception_only(type, value)
163 finally:
164 tblist = tb = None
165 map(self.write, list)
166
167 def write(self, data):
168 """Write a string.
169
170 The base implementation writes to sys.stderr; a subclass may
171 replace this with a different implementation.
172
173 """
174 sys.stderr.write(data)
175
176
177class InteractiveConsole(InteractiveInterpreter):
178 """Closely emulate the behavior of the interactive Python interpreter.
179
180 This class builds on InteractiveInterpreter and adds prompting
181 using the familiar sys.ps1 and sys.ps2, and input buffering.
182
183 """
184
185 def __init__(self, locals=None, filename="<console>"):
186 """Constructor.
187
188 The optional locals argument will be passed to the
189 InteractiveInterpreter base class.
190
191 The optional filename argument should specify the (file)name
192 of the input stream; it will show up in tracebacks.
193
194 """
195 InteractiveInterpreter.__init__(self, locals)
196 self.filename = filename
Guido van Rossuma93b8481998-06-23 19:31:19 +0000197 self.resetbuffer()
198
199 def resetbuffer(self):
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000200 """Reset the input buffer."""
Guido van Rossuma93b8481998-06-23 19:31:19 +0000201 self.buffer = []
202
203 def interact(self, banner=None):
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000204 """Closely emulate the interactive Python console.
205
206 The optional banner argument specify the banner to print
207 before the first interaction; by default it prints a banner
208 similar to the one printed by the real Python interpreter,
209 followed by the current class name in parentheses (so as not
210 to confuse this with the real interpreter -- since it's so
211 close!).
212
213 """
Guido van Rossuma93b8481998-06-23 19:31:19 +0000214 try:
215 sys.ps1
216 except AttributeError:
217 sys.ps1 = ">>> "
218 try:
219 sys.ps2
220 except AttributeError:
221 sys.ps2 = "... "
Guido van Rossumc5f15b02001-01-14 23:04:22 +0000222 cprt = 'Type "copyright", "credits" or "license" for more information.'
Guido van Rossuma93b8481998-06-23 19:31:19 +0000223 if banner is None:
224 self.write("Python %s on %s\n%s\n(%s)\n" %
Guido van Rossumc5f15b02001-01-14 23:04:22 +0000225 (sys.version, sys.platform, cprt,
Guido van Rossuma93b8481998-06-23 19:31:19 +0000226 self.__class__.__name__))
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000227 else:
Guido van Rossuma93b8481998-06-23 19:31:19 +0000228 self.write("%s\n" % str(banner))
229 more = 0
230 while 1:
231 try:
232 if more:
233 prompt = sys.ps2
234 else:
235 prompt = sys.ps1
236 try:
237 line = self.raw_input(prompt)
238 except EOFError:
239 self.write("\n")
240 break
241 else:
242 more = self.push(line)
243 except KeyboardInterrupt:
244 self.write("\nKeyboardInterrupt\n")
245 self.resetbuffer()
246 more = 0
247
248 def push(self, line):
249 """Push a line to the interpreter.
250
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000251 The line should not have a trailing newline; it may have
252 internal newlines. The line is appended to a buffer and the
253 interpreter's runsource() method is called with the
254 concatenated contents of the buffer as source. If this
255 indicates that the command was executed or invalid, the buffer
256 is reset; otherwise, the command is incomplete, and the buffer
257 is left as it was after the line was appended. The return
258 value is 1 if more input is required, 0 if the line was dealt
259 with in some way (this is the same as runsource()).
Guido van Rossuma93b8481998-06-23 19:31:19 +0000260
261 """
262 self.buffer.append(line)
Eric S. Raymond6b71e742001-02-09 08:56:30 +0000263 source = "\n".join(self.buffer)
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000264 more = self.runsource(source, self.filename)
265 if not more:
Guido van Rossuma93b8481998-06-23 19:31:19 +0000266 self.resetbuffer()
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000267 return more
Guido van Rossuma93b8481998-06-23 19:31:19 +0000268
269 def raw_input(self, prompt=""):
270 """Write a prompt and read a line.
271
272 The returned line does not include the trailing newline.
273 When the user enters the EOF key sequence, EOFError is raised.
274
275 The base implementation uses the built-in function
276 raw_input(); a subclass may replace this with a different
277 implementation.
278
279 """
280 return raw_input(prompt)
281
282
Guido van Rossumd90ae191998-10-19 18:42:53 +0000283def interact(banner=None, readfunc=None, local=None):
Guido van Rossuma93b8481998-06-23 19:31:19 +0000284 """Closely emulate the interactive Python interpreter.
285
286 This is a backwards compatible interface to the InteractiveConsole
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000287 class. When readfunc is not specified, it attempts to import the
288 readline module to enable GNU readline if it is available.
Guido van Rossuma93b8481998-06-23 19:31:19 +0000289
290 Arguments (all optional, all default to None):
291
292 banner -- passed to InteractiveConsole.interact()
293 readfunc -- if not None, replaces InteractiveConsole.raw_input()
Guido van Rossumd90ae191998-10-19 18:42:53 +0000294 local -- passed to InteractiveInterpreter.__init__()
Guido van Rossuma93b8481998-06-23 19:31:19 +0000295
296 """
Guido van Rossumd90ae191998-10-19 18:42:53 +0000297 console = InteractiveConsole(local)
Guido van Rossuma93b8481998-06-23 19:31:19 +0000298 if readfunc is not None:
299 console.raw_input = readfunc
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000300 else:
301 try:
302 import readline
303 except:
304 pass
Guido van Rossuma93b8481998-06-23 19:31:19 +0000305 console.interact(banner)
Guido van Rossum5227f0f1998-09-22 20:38:53 +0000306
307
Guido van Rossum90981e01997-10-07 14:47:24 +0000308if __name__ == '__main__':
309 interact()