Show More
@@ -1,999 +1,999 b'' | |||
|
1 | 1 | #!/usr/bin/env python |
|
2 | 2 | # encoding: utf-8 |
|
3 | 3 | """ |
|
4 | 4 | Prefiltering components. |
|
5 | 5 | |
|
6 | 6 | Prefilters transform user input before it is exec'd by Python. These |
|
7 | 7 | transforms are used to implement additional syntax such as !ls and %magic. |
|
8 | 8 | |
|
9 | 9 | Authors: |
|
10 | 10 | |
|
11 | 11 | * Brian Granger |
|
12 | 12 | * Fernando Perez |
|
13 | 13 | * Dan Milstein |
|
14 | 14 | * Ville Vainio |
|
15 | 15 | """ |
|
16 | 16 | |
|
17 | 17 | #----------------------------------------------------------------------------- |
|
18 | 18 | # Copyright (C) 2008-2009 The IPython Development Team |
|
19 | 19 | # |
|
20 | 20 | # Distributed under the terms of the BSD License. The full license is in |
|
21 | 21 | # the file COPYING, distributed as part of this software. |
|
22 | 22 | #----------------------------------------------------------------------------- |
|
23 | 23 | |
|
24 | 24 | #----------------------------------------------------------------------------- |
|
25 | 25 | # Imports |
|
26 | 26 | #----------------------------------------------------------------------------- |
|
27 | 27 | |
|
28 | 28 | import __builtin__ |
|
29 | 29 | import codeop |
|
30 | 30 | import keyword |
|
31 | 31 | import os |
|
32 | 32 | import re |
|
33 | 33 | import sys |
|
34 | 34 | |
|
35 | 35 | from IPython.core.alias import AliasManager |
|
36 | 36 | from IPython.core.autocall import IPyAutocall |
|
37 | 37 | from IPython.core.component import Component |
|
38 | 38 | from IPython.core.splitinput import split_user_input |
|
39 | 39 | from IPython.core.page import page |
|
40 | 40 | |
|
41 | 41 | from IPython.utils.traitlets import List, Int, Any, Str, CBool, Bool |
|
42 | 42 | from IPython.utils.genutils import make_quoted_expr, Term |
|
43 | 43 | from IPython.utils.autoattr import auto_attr |
|
44 | 44 | |
|
45 | 45 | #----------------------------------------------------------------------------- |
|
46 | 46 | # Global utilities, errors and constants |
|
47 | 47 | #----------------------------------------------------------------------------- |
|
48 | 48 | |
|
49 | 49 | # Warning, these cannot be changed unless various regular expressions |
|
50 | 50 | # are updated in a number of places. Not great, but at least we told you. |
|
51 | 51 | ESC_SHELL = '!' |
|
52 | 52 | ESC_SH_CAP = '!!' |
|
53 | 53 | ESC_HELP = '?' |
|
54 | 54 | ESC_MAGIC = '%' |
|
55 | 55 | ESC_QUOTE = ',' |
|
56 | 56 | ESC_QUOTE2 = ';' |
|
57 | 57 | ESC_PAREN = '/' |
|
58 | 58 | |
|
59 | 59 | |
|
60 | 60 | class PrefilterError(Exception): |
|
61 | 61 | pass |
|
62 | 62 | |
|
63 | 63 | |
|
64 | 64 | # RegExp to identify potential function names |
|
65 | 65 | re_fun_name = re.compile(r'[a-zA-Z_]([a-zA-Z0-9_.]*) *$') |
|
66 | 66 | |
|
67 | 67 | # RegExp to exclude strings with this start from autocalling. In |
|
68 | 68 | # particular, all binary operators should be excluded, so that if foo is |
|
69 | 69 | # callable, foo OP bar doesn't become foo(OP bar), which is invalid. The |
|
70 | 70 | # characters '!=()' don't need to be checked for, as the checkPythonChars |
|
71 | 71 | # routine explicitely does so, to catch direct calls and rebindings of |
|
72 | 72 | # existing names. |
|
73 | 73 | |
|
74 | 74 | # Warning: the '-' HAS TO BE AT THE END of the first group, otherwise |
|
75 | 75 | # it affects the rest of the group in square brackets. |
|
76 | 76 | re_exclude_auto = re.compile(r'^[,&^\|\*/\+-]' |
|
77 | 77 | r'|^is |^not |^in |^and |^or ') |
|
78 | 78 | |
|
79 | 79 | # try to catch also methods for stuff in lists/tuples/dicts: off |
|
80 | 80 | # (experimental). For this to work, the line_split regexp would need |
|
81 | 81 | # to be modified so it wouldn't break things at '['. That line is |
|
82 | 82 | # nasty enough that I shouldn't change it until I can test it _well_. |
|
83 | 83 | #self.re_fun_name = re.compile (r'[a-zA-Z_]([a-zA-Z0-9_.\[\]]*) ?$') |
|
84 | 84 | |
|
85 | 85 | |
|
86 | 86 | # Handler Check Utilities |
|
87 | 87 | def is_shadowed(identifier, ip): |
|
88 | 88 | """Is the given identifier defined in one of the namespaces which shadow |
|
89 | 89 | the alias and magic namespaces? Note that an identifier is different |
|
90 | 90 | than ifun, because it can not contain a '.' character.""" |
|
91 | 91 | # This is much safer than calling ofind, which can change state |
|
92 | 92 | return (identifier in ip.user_ns \ |
|
93 | 93 | or identifier in ip.internal_ns \ |
|
94 | 94 | or identifier in ip.ns_table['builtin']) |
|
95 | 95 | |
|
96 | 96 | |
|
97 | 97 | #----------------------------------------------------------------------------- |
|
98 | 98 | # The LineInfo class used throughout |
|
99 | 99 | #----------------------------------------------------------------------------- |
|
100 | 100 | |
|
101 | 101 | |
|
102 | 102 | class LineInfo(object): |
|
103 | 103 | """A single line of input and associated info. |
|
104 | 104 | |
|
105 | 105 | Includes the following as properties: |
|
106 | 106 | |
|
107 | 107 | line |
|
108 | 108 | The original, raw line |
|
109 | 109 | |
|
110 | 110 | continue_prompt |
|
111 | 111 | Is this line a continuation in a sequence of multiline input? |
|
112 | 112 | |
|
113 | 113 | pre |
|
114 | 114 | The initial esc character or whitespace. |
|
115 | 115 | |
|
116 | 116 | pre_char |
|
117 | 117 | The escape character(s) in pre or the empty string if there isn't one. |
|
118 | 118 | Note that '!!' is a possible value for pre_char. Otherwise it will |
|
119 | 119 | always be a single character. |
|
120 | 120 | |
|
121 | 121 | pre_whitespace |
|
122 | 122 | The leading whitespace from pre if it exists. If there is a pre_char, |
|
123 | 123 | this is just ''. |
|
124 | 124 | |
|
125 | 125 | ifun |
|
126 | 126 | The 'function part', which is basically the maximal initial sequence |
|
127 | 127 | of valid python identifiers and the '.' character. This is what is |
|
128 | 128 | checked for alias and magic transformations, used for auto-calling, |
|
129 | 129 | etc. |
|
130 | 130 | |
|
131 | 131 | the_rest |
|
132 | 132 | Everything else on the line. |
|
133 | 133 | """ |
|
134 | 134 | def __init__(self, line, continue_prompt): |
|
135 | 135 | self.line = line |
|
136 | 136 | self.continue_prompt = continue_prompt |
|
137 | 137 | self.pre, self.ifun, self.the_rest = split_user_input(line) |
|
138 | 138 | |
|
139 | 139 | self.pre_char = self.pre.strip() |
|
140 | 140 | if self.pre_char: |
|
141 | 141 | self.pre_whitespace = '' # No whitespace allowd before esc chars |
|
142 | 142 | else: |
|
143 | 143 | self.pre_whitespace = self.pre |
|
144 | 144 | |
|
145 | 145 | self._oinfo = None |
|
146 | 146 | |
|
147 | 147 | def ofind(self, ip): |
|
148 | 148 | """Do a full, attribute-walking lookup of the ifun in the various |
|
149 | 149 | namespaces for the given IPython InteractiveShell instance. |
|
150 | 150 | |
|
151 | 151 | Return a dict with keys: found,obj,ospace,ismagic |
|
152 | 152 | |
|
153 | 153 | Note: can cause state changes because of calling getattr, but should |
|
154 | 154 | only be run if autocall is on and if the line hasn't matched any |
|
155 | 155 | other, less dangerous handlers. |
|
156 | 156 | |
|
157 | 157 | Does cache the results of the call, so can be called multiple times |
|
158 | 158 | without worrying about *further* damaging state. |
|
159 | 159 | """ |
|
160 | 160 | if not self._oinfo: |
|
161 | 161 | self._oinfo = ip.shell._ofind(self.ifun) |
|
162 | 162 | return self._oinfo |
|
163 | 163 | |
|
164 | 164 | def __str__(self): |
|
165 | 165 | return "Lineinfo [%s|%s|%s]" %(self.pre,self.ifun,self.the_rest) |
|
166 | 166 | |
|
167 | 167 | |
|
168 | 168 | #----------------------------------------------------------------------------- |
|
169 | 169 | # Main Prefilter manager |
|
170 | 170 | #----------------------------------------------------------------------------- |
|
171 | 171 | |
|
172 | 172 | |
|
173 | 173 | class PrefilterManager(Component): |
|
174 | 174 | """Main prefilter component. |
|
175 | 175 | |
|
176 | 176 | The IPython prefilter is run on all user input before it is run. The |
|
177 | 177 | prefilter consumes lines of input and produces transformed lines of |
|
178 | 178 | input. |
|
179 | 179 | |
|
180 | 180 | The iplementation consists of two phases: |
|
181 | 181 | |
|
182 | 182 | 1. Transformers |
|
183 | 183 | 2. Checkers and handlers |
|
184 | 184 | |
|
185 | 185 | Over time, we plan on deprecating the checkers and handlers and doing |
|
186 | 186 | everything in the transformers. |
|
187 | 187 | |
|
188 | 188 | The transformers are instances of :class:`PrefilterTransformer` and have |
|
189 | 189 | a single method :meth:`transform` that takes a line and returns a |
|
190 | 190 | transformed line. The transformation can be accomplished using any |
|
191 | 191 | tool, but our current ones use regular expressions for speed. We also |
|
192 | 192 | ship :mod:`pyparsing` in :mod:`IPython.external` for use in transformers. |
|
193 | 193 | |
|
194 | 194 | After all the transformers have been run, the line is fed to the checkers, |
|
195 | 195 | which are instances of :class:`PrefilterChecker`. The line is passed to |
|
196 | 196 | the :meth:`check` method, which either returns `None` or a |
|
197 | 197 | :class:`PrefilterHandler` instance. If `None` is returned, the other |
|
198 | 198 | checkers are tried. If an :class:`PrefilterHandler` instance is returned, |
|
199 | 199 | the line is passed to the :meth:`handle` method of the returned |
|
200 | 200 | handler and no further checkers are tried. |
|
201 | 201 | |
|
202 | 202 | Both transformers and checkers have a `priority` attribute, that determines |
|
203 | 203 | the order in which they are called. Smaller priorities are tried first. |
|
204 | 204 | |
|
205 | 205 | Both transformers and checkers also have `enabled` attribute, which is |
|
206 | 206 | a boolean that determines if the instance is used. |
|
207 | 207 | |
|
208 | 208 | Users or developers can change the priority or enabled attribute of |
|
209 | 209 | transformers or checkers, but they must call the :meth:`sort_checkers` |
|
210 | 210 | or :meth:`sort_transformers` method after changing the priority. |
|
211 | 211 | """ |
|
212 | 212 | |
|
213 | 213 | multi_line_specials = CBool(True, config=True) |
|
214 | 214 | |
|
215 | 215 | def __init__(self, parent, config=None): |
|
216 | 216 | super(PrefilterManager, self).__init__(parent, config=config) |
|
217 | 217 | self.init_transformers() |
|
218 | 218 | self.init_handlers() |
|
219 | 219 | self.init_checkers() |
|
220 | 220 | |
|
221 | 221 | @auto_attr |
|
222 | 222 | def shell(self): |
|
223 | 223 | return Component.get_instances( |
|
224 | 224 | root=self.root, |
|
225 | 225 | klass='IPython.core.iplib.InteractiveShell')[0] |
|
226 | 226 | |
|
227 | 227 | #------------------------------------------------------------------------- |
|
228 | 228 | # API for managing transformers |
|
229 | 229 | #------------------------------------------------------------------------- |
|
230 | 230 | |
|
231 | 231 | def init_transformers(self): |
|
232 | 232 | """Create the default transformers.""" |
|
233 | 233 | self._transformers = [] |
|
234 | 234 | for transformer_cls in _default_transformers: |
|
235 | 235 | transformer_cls(self, config=self.config) |
|
236 | 236 | |
|
237 | 237 | def sort_transformers(self): |
|
238 | 238 | """Sort the transformers by priority. |
|
239 | 239 | |
|
240 | 240 | This must be called after the priority of a transformer is changed. |
|
241 | 241 | The :meth:`register_transformer` method calls this automatically. |
|
242 | 242 | """ |
|
243 | 243 | self._transformers.sort(cmp=lambda x,y: x.priority-y.priority) |
|
244 | 244 | |
|
245 | 245 | @property |
|
246 | 246 | def transformers(self): |
|
247 | 247 | """Return a list of checkers, sorted by priority.""" |
|
248 | 248 | return self._transformers |
|
249 | 249 | |
|
250 | 250 | def register_transformer(self, transformer): |
|
251 | 251 | """Register a transformer instance.""" |
|
252 | 252 | if transformer not in self._transformers: |
|
253 | 253 | self._transformers.append(transformer) |
|
254 | 254 | self.sort_transformers() |
|
255 | 255 | |
|
256 | 256 | def unregister_transformer(self, transformer): |
|
257 | 257 | """Unregister a transformer instance.""" |
|
258 | 258 | if transformer in self._transformers: |
|
259 | 259 | self._transformers.remove(transformer) |
|
260 | 260 | |
|
261 | 261 | #------------------------------------------------------------------------- |
|
262 | 262 | # API for managing checkers |
|
263 | 263 | #------------------------------------------------------------------------- |
|
264 | 264 | |
|
265 | 265 | def init_checkers(self): |
|
266 | 266 | """Create the default checkers.""" |
|
267 | 267 | self._checkers = [] |
|
268 | 268 | for checker in _default_checkers: |
|
269 | 269 | checker(self, config=self.config) |
|
270 | 270 | |
|
271 | 271 | def sort_checkers(self): |
|
272 | 272 | """Sort the checkers by priority. |
|
273 | 273 | |
|
274 | 274 | This must be called after the priority of a checker is changed. |
|
275 | 275 | The :meth:`register_checker` method calls this automatically. |
|
276 | 276 | """ |
|
277 | 277 | self._checkers.sort(cmp=lambda x,y: x.priority-y.priority) |
|
278 | 278 | |
|
279 | 279 | @property |
|
280 | 280 | def checkers(self): |
|
281 | 281 | """Return a list of checkers, sorted by priority.""" |
|
282 | 282 | return self._checkers |
|
283 | 283 | |
|
284 | 284 | def register_checker(self, checker): |
|
285 | 285 | """Register a checker instance.""" |
|
286 | 286 | if checker not in self._checkers: |
|
287 | 287 | self._checkers.append(checker) |
|
288 | 288 | self.sort_checkers() |
|
289 | 289 | |
|
290 | 290 | def unregister_checker(self, checker): |
|
291 | 291 | """Unregister a checker instance.""" |
|
292 | 292 | if checker in self._checkers: |
|
293 | 293 | self._checkers.remove(checker) |
|
294 | 294 | |
|
295 | 295 | #------------------------------------------------------------------------- |
|
296 | 296 | # API for managing checkers |
|
297 | 297 | #------------------------------------------------------------------------- |
|
298 | 298 | |
|
299 | 299 | def init_handlers(self): |
|
300 | 300 | """Create the default handlers.""" |
|
301 | 301 | self._handlers = {} |
|
302 | 302 | self._esc_handlers = {} |
|
303 | 303 | for handler in _default_handlers: |
|
304 | 304 | handler(self, config=self.config) |
|
305 | 305 | |
|
306 | 306 | @property |
|
307 | 307 | def handlers(self): |
|
308 | 308 | """Return a dict of all the handlers.""" |
|
309 | 309 | return self._handlers |
|
310 | 310 | |
|
311 | 311 | def register_handler(self, name, handler, esc_strings): |
|
312 | 312 | """Register a handler instance by name with esc_strings.""" |
|
313 | 313 | self._handlers[name] = handler |
|
314 | 314 | for esc_str in esc_strings: |
|
315 | 315 | self._esc_handlers[esc_str] = handler |
|
316 | 316 | |
|
317 | 317 | def unregister_handler(self, name, handler, esc_strings): |
|
318 | 318 | """Unregister a handler instance by name with esc_strings.""" |
|
319 | 319 | try: |
|
320 | 320 | del self._handlers[name] |
|
321 | 321 | except KeyError: |
|
322 | 322 | pass |
|
323 | 323 | for esc_str in esc_strings: |
|
324 | 324 | h = self._esc_handlers.get(esc_str) |
|
325 | 325 | if h is handler: |
|
326 | 326 | del self._esc_handlers[esc_str] |
|
327 | 327 | |
|
328 | 328 | def get_handler_by_name(self, name): |
|
329 | 329 | """Get a handler by its name.""" |
|
330 | 330 | return self._handlers.get(name) |
|
331 | 331 | |
|
332 | 332 | def get_handler_by_esc(self, esc_str): |
|
333 | 333 | """Get a handler by its escape string.""" |
|
334 | 334 | return self._esc_handlers.get(esc_str) |
|
335 | 335 | |
|
336 | 336 | #------------------------------------------------------------------------- |
|
337 | 337 | # Main prefiltering API |
|
338 | 338 | #------------------------------------------------------------------------- |
|
339 | 339 | |
|
340 | 340 | def prefilter_line_info(self, line_info): |
|
341 | 341 | """Prefilter a line that has been converted to a LineInfo object. |
|
342 | 342 | |
|
343 | 343 | This implements the checker/handler part of the prefilter pipe. |
|
344 | 344 | """ |
|
345 | 345 | # print "prefilter_line_info: ", line_info |
|
346 | 346 | handler = self.find_handler(line_info) |
|
347 | 347 | return handler.handle(line_info) |
|
348 | 348 | |
|
349 | 349 | def find_handler(self, line_info): |
|
350 | 350 | """Find a handler for the line_info by trying checkers.""" |
|
351 | 351 | for checker in self.checkers: |
|
352 | 352 | if checker.enabled: |
|
353 | 353 | handler = checker.check(line_info) |
|
354 | 354 | if handler: |
|
355 | 355 | return handler |
|
356 | 356 | return self.get_handler_by_name('normal') |
|
357 | 357 | |
|
358 | 358 | def transform_line(self, line, continue_prompt): |
|
359 | 359 | """Calls the enabled transformers in order of increasing priority.""" |
|
360 | 360 | for transformer in self.transformers: |
|
361 | 361 | if transformer.enabled: |
|
362 | 362 | line = transformer.transform(line, continue_prompt) |
|
363 | 363 | return line |
|
364 | 364 | |
|
365 | 365 | def prefilter_line(self, line, continue_prompt): |
|
366 | 366 | """Prefilter a single input line as text. |
|
367 | 367 | |
|
368 | 368 | This method prefilters a single line of text by calling the |
|
369 | 369 | transformers and then the checkers/handlers. |
|
370 | 370 | """ |
|
371 | 371 | |
|
372 | 372 | # print "prefilter_line: ", line, continue_prompt |
|
373 | 373 | # All handlers *must* return a value, even if it's blank (''). |
|
374 | 374 | |
|
375 | 375 | # Lines are NOT logged here. Handlers should process the line as |
|
376 | 376 | # needed, update the cache AND log it (so that the input cache array |
|
377 | 377 | # stays synced). |
|
378 | 378 | |
|
379 | 379 | # save the line away in case we crash, so the post-mortem handler can |
|
380 | 380 | # record it |
|
381 | 381 | self.shell._last_input_line = line |
|
382 | 382 | |
|
383 | 383 | if not line: |
|
384 | 384 | # Return immediately on purely empty lines, so that if the user |
|
385 | 385 | # previously typed some whitespace that started a continuation |
|
386 | 386 | # prompt, he can break out of that loop with just an empty line. |
|
387 | 387 | # This is how the default python prompt works. |
|
388 | 388 | |
|
389 | 389 | # Only return if the accumulated input buffer was just whitespace! |
|
390 | 390 | if ''.join(self.shell.buffer).isspace(): |
|
391 | 391 | self.shell.buffer[:] = [] |
|
392 | 392 | return '' |
|
393 | 393 | |
|
394 | 394 | # At this point, we invoke our transformers. |
|
395 | 395 | if not continue_prompt or (continue_prompt and self.multi_line_specials): |
|
396 | 396 | line = self.transform_line(line, continue_prompt) |
|
397 | 397 | |
|
398 | 398 | # Now we compute line_info for the checkers and handlers |
|
399 | 399 | line_info = LineInfo(line, continue_prompt) |
|
400 | 400 | |
|
401 | 401 | # the input history needs to track even empty lines |
|
402 | 402 | stripped = line.strip() |
|
403 | 403 | |
|
404 | 404 | normal_handler = self.get_handler_by_name('normal') |
|
405 | 405 | if not stripped: |
|
406 | 406 | if not continue_prompt: |
|
407 | 407 | self.shell.outputcache.prompt_count -= 1 |
|
408 | 408 | |
|
409 | 409 | return normal_handler.handle(line_info) |
|
410 | 410 | |
|
411 | 411 | # special handlers are only allowed for single line statements |
|
412 | 412 | if continue_prompt and not self.multi_line_specials: |
|
413 | 413 | return normal_handler.handle(line_info) |
|
414 | 414 | |
|
415 | 415 | prefiltered = self.prefilter_line_info(line_info) |
|
416 | 416 | # print "prefiltered line: %r" % prefiltered |
|
417 | 417 | return prefiltered |
|
418 | 418 | |
|
419 | 419 | def prefilter_lines(self, lines, continue_prompt): |
|
420 | 420 | """Prefilter multiple input lines of text. |
|
421 | 421 | |
|
422 | 422 | This is the main entry point for prefiltering multiple lines of |
|
423 | 423 | input. This simply calls :meth:`prefilter_line` for each line of |
|
424 | 424 | input. |
|
425 | 425 | |
|
426 | 426 | This covers cases where there are multiple lines in the user entry, |
|
427 | 427 | which is the case when the user goes back to a multiline history |
|
428 | 428 | entry and presses enter. |
|
429 | 429 | """ |
|
430 | 430 | out = [] |
|
431 | 431 | for line in lines.rstrip('\n').split('\n'): |
|
432 | 432 | out.append(self.prefilter_line(line, continue_prompt)) |
|
433 | 433 | return '\n'.join(out) |
|
434 | 434 | |
|
435 | 435 | |
|
436 | 436 | #----------------------------------------------------------------------------- |
|
437 | 437 | # Prefilter transformers |
|
438 | 438 | #----------------------------------------------------------------------------- |
|
439 | 439 | |
|
440 | 440 | |
|
441 | 441 | class PrefilterTransformer(Component): |
|
442 | 442 | """Transform a line of user input.""" |
|
443 | 443 | |
|
444 | 444 | priority = Int(100, config=True) |
|
445 | 445 | shell = Any |
|
446 | 446 | prefilter_manager = Any |
|
447 | 447 | enabled = Bool(True, config=True) |
|
448 | 448 | |
|
449 | 449 | def __init__(self, parent, config=None): |
|
450 | 450 | super(PrefilterTransformer, self).__init__(parent, config=config) |
|
451 | 451 | self.prefilter_manager.register_transformer(self) |
|
452 | 452 | |
|
453 | 453 | @auto_attr |
|
454 | 454 | def shell(self): |
|
455 | 455 | return Component.get_instances( |
|
456 | 456 | root=self.root, |
|
457 | 457 | klass='IPython.core.iplib.InteractiveShell')[0] |
|
458 | 458 | |
|
459 | 459 | @auto_attr |
|
460 | 460 | def prefilter_manager(self): |
|
461 | 461 | return PrefilterManager.get_instances(root=self.root)[0] |
|
462 | 462 | |
|
463 | 463 | def transform(self, line, continue_prompt): |
|
464 | 464 | """Transform a line, returning the new one.""" |
|
465 | 465 | return None |
|
466 | 466 | |
|
467 | 467 | def __repr__(self): |
|
468 | 468 | return "<%s(priority=%r, enabled=%r)>" % ( |
|
469 | 469 | self.__class__.__name__, self.priority, self.enabled) |
|
470 | 470 | |
|
471 | 471 | |
|
472 | 472 | _assign_system_re = re.compile(r'(?P<lhs>(\s*)([\w\.]+)((\s*,\s*[\w\.]+)*))' |
|
473 | 473 | r'\s*=\s*!(?P<cmd>.*)') |
|
474 | 474 | |
|
475 | 475 | |
|
476 | 476 | class AssignSystemTransformer(PrefilterTransformer): |
|
477 | 477 | """Handle the `files = !ls` syntax.""" |
|
478 | 478 | |
|
479 | 479 | priority = Int(100, config=True) |
|
480 | 480 | |
|
481 | 481 | def transform(self, line, continue_prompt): |
|
482 | 482 | m = _assign_system_re.match(line) |
|
483 | 483 | if m is not None: |
|
484 | 484 | cmd = m.group('cmd') |
|
485 | 485 | lhs = m.group('lhs') |
|
486 | 486 | expr = make_quoted_expr("sc -l =%s" % cmd) |
|
487 | 487 | new_line = '%s = get_ipython().magic(%s)' % (lhs, expr) |
|
488 | 488 | return new_line |
|
489 | 489 | return line |
|
490 | 490 | |
|
491 | 491 | |
|
492 | 492 | _assign_magic_re = re.compile(r'(?P<lhs>(\s*)([\w\.]+)((\s*,\s*[\w\.]+)*))' |
|
493 | 493 | r'\s*=\s*%(?P<cmd>.*)') |
|
494 | 494 | |
|
495 | 495 | class AssignMagicTransformer(PrefilterTransformer): |
|
496 | 496 | """Handle the `a = %who` syntax.""" |
|
497 | 497 | |
|
498 | 498 | priority = Int(200, config=True) |
|
499 | 499 | |
|
500 | 500 | def transform(self, line, continue_prompt): |
|
501 | 501 | m = _assign_magic_re.match(line) |
|
502 | 502 | if m is not None: |
|
503 | 503 | cmd = m.group('cmd') |
|
504 | 504 | lhs = m.group('lhs') |
|
505 | 505 | expr = make_quoted_expr(cmd) |
|
506 | 506 | new_line = '%s = get_ipython().magic(%s)' % (lhs, expr) |
|
507 | 507 | return new_line |
|
508 | 508 | return line |
|
509 | 509 | |
|
510 | 510 | |
|
511 | 511 | #----------------------------------------------------------------------------- |
|
512 | 512 | # Prefilter checkers |
|
513 | 513 | #----------------------------------------------------------------------------- |
|
514 | 514 | |
|
515 | 515 | |
|
516 | 516 | class PrefilterChecker(Component): |
|
517 | 517 | """Inspect an input line and return a handler for that line.""" |
|
518 | 518 | |
|
519 | 519 | priority = Int(100, config=True) |
|
520 | 520 | shell = Any |
|
521 | 521 | prefilter_manager = Any |
|
522 | 522 | enabled = Bool(True, config=True) |
|
523 | 523 | |
|
524 | 524 | def __init__(self, parent, config=None): |
|
525 | 525 | super(PrefilterChecker, self).__init__(parent, config=config) |
|
526 | 526 | self.prefilter_manager.register_checker(self) |
|
527 | 527 | |
|
528 | 528 | @auto_attr |
|
529 | 529 | def shell(self): |
|
530 | 530 | return Component.get_instances( |
|
531 | 531 | root=self.root, |
|
532 | 532 | klass='IPython.core.iplib.InteractiveShell')[0] |
|
533 | 533 | |
|
534 | 534 | @auto_attr |
|
535 | 535 | def prefilter_manager(self): |
|
536 | 536 | return PrefilterManager.get_instances(root=self.root)[0] |
|
537 | 537 | |
|
538 | 538 | def check(self, line_info): |
|
539 | 539 | """Inspect line_info and return a handler instance or None.""" |
|
540 | 540 | return None |
|
541 | 541 | |
|
542 | 542 | def __repr__(self): |
|
543 | 543 | return "<%s(priority=%r, enabled=%r)>" % ( |
|
544 | 544 | self.__class__.__name__, self.priority, self.enabled) |
|
545 | 545 | |
|
546 | 546 | |
|
547 | 547 | class EmacsChecker(PrefilterChecker): |
|
548 | 548 | |
|
549 | 549 | priority = Int(100, config=True) |
|
550 | 550 | enabled = Bool(False, config=True) |
|
551 | 551 | |
|
552 | 552 | def check(self, line_info): |
|
553 | 553 | "Emacs ipython-mode tags certain input lines." |
|
554 | 554 | if line_info.line.endswith('# PYTHON-MODE'): |
|
555 | 555 | return self.prefilter_manager.get_handler_by_name('emacs') |
|
556 | 556 | else: |
|
557 | 557 | return None |
|
558 | 558 | |
|
559 | 559 | |
|
560 | 560 | class ShellEscapeChecker(PrefilterChecker): |
|
561 | 561 | |
|
562 | 562 | priority = Int(200, config=True) |
|
563 | 563 | |
|
564 | 564 | def check(self, line_info): |
|
565 | 565 | if line_info.line.lstrip().startswith(ESC_SHELL): |
|
566 | 566 | return self.prefilter_manager.get_handler_by_name('shell') |
|
567 | 567 | |
|
568 | 568 | |
|
569 | 569 | class IPyAutocallChecker(PrefilterChecker): |
|
570 | 570 | |
|
571 | 571 | priority = Int(300, config=True) |
|
572 | 572 | |
|
573 | 573 | def check(self, line_info): |
|
574 | 574 | "Instances of IPyAutocall in user_ns get autocalled immediately" |
|
575 | 575 | obj = self.shell.user_ns.get(line_info.ifun, None) |
|
576 | 576 | if isinstance(obj, IPyAutocall): |
|
577 | 577 | obj.set_ip(self.shell) |
|
578 | 578 | return self.prefilter_manager.get_handler_by_name('auto') |
|
579 | 579 | else: |
|
580 | 580 | return None |
|
581 | 581 | |
|
582 | 582 | |
|
583 | 583 | class MultiLineMagicChecker(PrefilterChecker): |
|
584 | 584 | |
|
585 | 585 | priority = Int(400, config=True) |
|
586 | 586 | |
|
587 | 587 | def check(self, line_info): |
|
588 | 588 | "Allow ! and !! in multi-line statements if multi_line_specials is on" |
|
589 | 589 | # Note that this one of the only places we check the first character of |
|
590 | 590 | # ifun and *not* the pre_char. Also note that the below test matches |
|
591 | 591 | # both ! and !!. |
|
592 | 592 | if line_info.continue_prompt \ |
|
593 | 593 | and self.prefilter_manager.multi_line_specials: |
|
594 | 594 | if line_info.ifun.startswith(ESC_MAGIC): |
|
595 | 595 | return self.prefilter_manager.get_handler_by_name('magic') |
|
596 | 596 | else: |
|
597 | 597 | return None |
|
598 | 598 | |
|
599 | 599 | |
|
600 | 600 | class EscCharsChecker(PrefilterChecker): |
|
601 | 601 | |
|
602 | 602 | priority = Int(500, config=True) |
|
603 | 603 | |
|
604 | 604 | def check(self, line_info): |
|
605 | 605 | """Check for escape character and return either a handler to handle it, |
|
606 | 606 | or None if there is no escape char.""" |
|
607 | 607 | if line_info.line[-1] == ESC_HELP \ |
|
608 | 608 | and line_info.pre_char != ESC_SHELL \ |
|
609 | 609 | and line_info.pre_char != ESC_SH_CAP: |
|
610 | 610 | # the ? can be at the end, but *not* for either kind of shell escape, |
|
611 | 611 | # because a ? can be a vaild final char in a shell cmd |
|
612 | 612 | return self.prefilter_manager.get_handler_by_name('help') |
|
613 | 613 | else: |
|
614 | 614 | # This returns None like it should if no handler exists |
|
615 | 615 | return self.prefilter_manager.get_handler_by_esc(line_info.pre_char) |
|
616 | 616 | |
|
617 | 617 | |
|
618 | 618 | class AssignmentChecker(PrefilterChecker): |
|
619 | 619 | |
|
620 | 620 | priority = Int(600, config=True) |
|
621 | 621 | |
|
622 | 622 | def check(self, line_info): |
|
623 | 623 | """Check to see if user is assigning to a var for the first time, in |
|
624 | 624 | which case we want to avoid any sort of automagic / autocall games. |
|
625 | 625 | |
|
626 | 626 | This allows users to assign to either alias or magic names true python |
|
627 | 627 | variables (the magic/alias systems always take second seat to true |
|
628 | 628 | python code). E.g. ls='hi', or ls,that=1,2""" |
|
629 | 629 | if line_info.the_rest: |
|
630 | 630 | if line_info.the_rest[0] in '=,': |
|
631 | 631 | return self.prefilter_manager.get_handler_by_name('normal') |
|
632 | 632 | else: |
|
633 | 633 | return None |
|
634 | 634 | |
|
635 | 635 | |
|
636 | 636 | class AutoMagicChecker(PrefilterChecker): |
|
637 | 637 | |
|
638 | 638 | priority = Int(700, config=True) |
|
639 | 639 | |
|
640 | 640 | def check(self, line_info): |
|
641 | 641 | """If the ifun is magic, and automagic is on, run it. Note: normal, |
|
642 | 642 | non-auto magic would already have been triggered via '%' in |
|
643 | 643 | check_esc_chars. This just checks for automagic. Also, before |
|
644 | 644 | triggering the magic handler, make sure that there is nothing in the |
|
645 | 645 | user namespace which could shadow it.""" |
|
646 | 646 | if not self.shell.automagic or not hasattr(self.shell,'magic_'+line_info.ifun): |
|
647 | 647 | return None |
|
648 | 648 | |
|
649 | 649 | # We have a likely magic method. Make sure we should actually call it. |
|
650 | 650 | if line_info.continue_prompt and not self.shell.multi_line_specials: |
|
651 | 651 | return None |
|
652 | 652 | |
|
653 | 653 | head = line_info.ifun.split('.',1)[0] |
|
654 | 654 | if is_shadowed(head, self.shell): |
|
655 | 655 | return None |
|
656 | 656 | |
|
657 | 657 | return self.prefilter_manager.get_handler_by_name('magic') |
|
658 | 658 | |
|
659 | 659 | |
|
660 | 660 | class AliasChecker(PrefilterChecker): |
|
661 | 661 | |
|
662 | 662 | priority = Int(800, config=True) |
|
663 | 663 | |
|
664 | 664 | @auto_attr |
|
665 | 665 | def alias_manager(self): |
|
666 | 666 | return AliasManager.get_instances(root=self.root)[0] |
|
667 | 667 | |
|
668 | 668 | def check(self, line_info): |
|
669 | 669 | "Check if the initital identifier on the line is an alias." |
|
670 | 670 | # Note: aliases can not contain '.' |
|
671 | 671 | head = line_info.ifun.split('.',1)[0] |
|
672 | 672 | if line_info.ifun not in self.alias_manager \ |
|
673 | 673 | or head not in self.alias_manager \ |
|
674 | 674 | or is_shadowed(head, self.shell): |
|
675 | 675 | return None |
|
676 | 676 | |
|
677 | 677 | return self.prefilter_manager.get_handler_by_name('alias') |
|
678 | 678 | |
|
679 | 679 | |
|
680 | 680 | class PythonOpsChecker(PrefilterChecker): |
|
681 | 681 | |
|
682 | 682 | priority = Int(900, config=True) |
|
683 | 683 | |
|
684 | 684 | def check(self, line_info): |
|
685 | 685 | """If the 'rest' of the line begins with a function call or pretty much |
|
686 | 686 | any python operator, we should simply execute the line (regardless of |
|
687 | 687 | whether or not there's a possible autocall expansion). This avoids |
|
688 | 688 | spurious (and very confusing) geattr() accesses.""" |
|
689 | 689 | if line_info.the_rest and line_info.the_rest[0] in '!=()<>,+*/%^&|': |
|
690 | 690 | return self.prefilter_manager.get_handler_by_name('normal') |
|
691 | 691 | else: |
|
692 | 692 | return None |
|
693 | 693 | |
|
694 | 694 | |
|
695 | 695 | class AutocallChecker(PrefilterChecker): |
|
696 | 696 | |
|
697 | 697 | priority = Int(1000, config=True) |
|
698 | 698 | |
|
699 | 699 | def check(self, line_info): |
|
700 | 700 | "Check if the initial word/function is callable and autocall is on." |
|
701 | 701 | if not self.shell.autocall: |
|
702 | 702 | return None |
|
703 | 703 | |
|
704 | 704 | oinfo = line_info.ofind(self.shell) # This can mutate state via getattr |
|
705 | 705 | if not oinfo['found']: |
|
706 | 706 | return None |
|
707 | 707 | |
|
708 | 708 | if callable(oinfo['obj']) \ |
|
709 | 709 | and (not re_exclude_auto.match(line_info.the_rest)) \ |
|
710 | 710 | and re_fun_name.match(line_info.ifun): |
|
711 | 711 | return self.prefilter_manager.get_handler_by_name('auto') |
|
712 | 712 | else: |
|
713 | 713 | return None |
|
714 | 714 | |
|
715 | 715 | |
|
716 | 716 | #----------------------------------------------------------------------------- |
|
717 | 717 | # Prefilter handlers |
|
718 | 718 | #----------------------------------------------------------------------------- |
|
719 | 719 | |
|
720 | 720 | |
|
721 | 721 | class PrefilterHandler(Component): |
|
722 | 722 | |
|
723 | 723 | handler_name = Str('normal') |
|
724 | 724 | esc_strings = List([]) |
|
725 | 725 | shell = Any |
|
726 | 726 | prefilter_manager = Any |
|
727 | 727 | |
|
728 | 728 | def __init__(self, parent, config=None): |
|
729 | 729 | super(PrefilterHandler, self).__init__(parent, config=config) |
|
730 | 730 | self.prefilter_manager.register_handler( |
|
731 | 731 | self.handler_name, |
|
732 | 732 | self, |
|
733 | 733 | self.esc_strings |
|
734 | 734 | ) |
|
735 | 735 | |
|
736 | 736 | @auto_attr |
|
737 | 737 | def shell(self): |
|
738 | 738 | return Component.get_instances( |
|
739 | 739 | root=self.root, |
|
740 | 740 | klass='IPython.core.iplib.InteractiveShell')[0] |
|
741 | 741 | |
|
742 | 742 | @auto_attr |
|
743 | 743 | def prefilter_manager(self): |
|
744 | 744 | return PrefilterManager.get_instances(root=self.root)[0] |
|
745 | 745 | |
|
746 | 746 | def handle(self, line_info): |
|
747 | 747 | # print "normal: ", line_info |
|
748 | 748 | """Handle normal input lines. Use as a template for handlers.""" |
|
749 | 749 | |
|
750 | 750 | # With autoindent on, we need some way to exit the input loop, and I |
|
751 | 751 | # don't want to force the user to have to backspace all the way to |
|
752 | 752 | # clear the line. The rule will be in this case, that either two |
|
753 | 753 | # lines of pure whitespace in a row, or a line of pure whitespace but |
|
754 | 754 | # of a size different to the indent level, will exit the input loop. |
|
755 | 755 | line = line_info.line |
|
756 | 756 | continue_prompt = line_info.continue_prompt |
|
757 | 757 | |
|
758 | 758 | if (continue_prompt and self.shell.autoindent and line.isspace() and |
|
759 | 759 | (0 < abs(len(line) - self.shell.indent_current_nsp) <= 2 or |
|
760 | 760 | (self.shell.buffer[-1]).isspace() )): |
|
761 | 761 | line = '' |
|
762 | 762 | |
|
763 | 763 | self.shell.log(line, line, continue_prompt) |
|
764 | 764 | return line |
|
765 | 765 | |
|
766 | 766 | def __str__(self): |
|
767 | 767 | return "<%s(name=%s)>" % (self.__class__.__name__, self.handler_name) |
|
768 | 768 | |
|
769 | 769 | |
|
770 | 770 | class AliasHandler(PrefilterHandler): |
|
771 | 771 | |
|
772 | 772 | handler_name = Str('alias') |
|
773 | 773 | |
|
774 | 774 | @auto_attr |
|
775 | 775 | def alias_manager(self): |
|
776 | 776 | return AliasManager.get_instances(root=self.root)[0] |
|
777 | 777 | |
|
778 | 778 | def handle(self, line_info): |
|
779 | 779 | """Handle alias input lines. """ |
|
780 | 780 | transformed = self.alias_manager.expand_aliases(line_info.ifun,line_info.the_rest) |
|
781 | 781 | # pre is needed, because it carries the leading whitespace. Otherwise |
|
782 | 782 | # aliases won't work in indented sections. |
|
783 | 783 | line_out = '%sget_ipython().system(%s)' % (line_info.pre_whitespace, |
|
784 | 784 | make_quoted_expr(transformed)) |
|
785 | 785 | |
|
786 | 786 | self.shell.log(line_info.line, line_out, line_info.continue_prompt) |
|
787 | 787 | return line_out |
|
788 | 788 | |
|
789 | 789 | |
|
790 | 790 | class ShellEscapeHandler(PrefilterHandler): |
|
791 | 791 | |
|
792 | 792 | handler_name = Str('shell') |
|
793 | 793 | esc_strings = List([ESC_SHELL, ESC_SH_CAP]) |
|
794 | 794 | |
|
795 | 795 | def handle(self, line_info): |
|
796 | 796 | """Execute the line in a shell, empty return value""" |
|
797 | 797 | magic_handler = self.prefilter_manager.get_handler_by_name('magic') |
|
798 | 798 | |
|
799 | 799 | line = line_info.line |
|
800 | 800 | if line.lstrip().startswith(ESC_SH_CAP): |
|
801 | 801 | # rewrite LineInfo's line, ifun and the_rest to properly hold the |
|
802 | 802 | # call to %sx and the actual command to be executed, so |
|
803 | 803 | # handle_magic can work correctly. Note that this works even if |
|
804 | 804 | # the line is indented, so it handles multi_line_specials |
|
805 | 805 | # properly. |
|
806 | 806 | new_rest = line.lstrip()[2:] |
|
807 | 807 | line_info.line = '%ssx %s' % (ESC_MAGIC, new_rest) |
|
808 | 808 | line_info.ifun = 'sx' |
|
809 | 809 | line_info.the_rest = new_rest |
|
810 | 810 | return magic_handler.handle(line_info) |
|
811 | 811 | else: |
|
812 | 812 | cmd = line.lstrip().lstrip(ESC_SHELL) |
|
813 | 813 | line_out = '%sget_ipython().system(%s)' % (line_info.pre_whitespace, |
|
814 | 814 | make_quoted_expr(cmd)) |
|
815 | 815 | # update cache/log and return |
|
816 | 816 | self.shell.log(line, line_out, line_info.continue_prompt) |
|
817 | 817 | return line_out |
|
818 | 818 | |
|
819 | 819 | |
|
820 | 820 | class MagicHandler(PrefilterHandler): |
|
821 | 821 | |
|
822 | 822 | handler_name = Str('magic') |
|
823 | 823 | esc_strings = List([ESC_MAGIC]) |
|
824 | 824 | |
|
825 | 825 | def handle(self, line_info): |
|
826 | 826 | """Execute magic functions.""" |
|
827 | 827 | ifun = line_info.ifun |
|
828 | 828 | the_rest = line_info.the_rest |
|
829 | 829 | cmd = '%sget_ipython().magic(%s)' % (line_info.pre_whitespace, |
|
830 | 830 | make_quoted_expr(ifun + " " + the_rest)) |
|
831 | 831 | self.shell.log(line_info.line, cmd, line_info.continue_prompt) |
|
832 | 832 | return cmd |
|
833 | 833 | |
|
834 | 834 | |
|
835 | 835 | class AutoHandler(PrefilterHandler): |
|
836 | 836 | |
|
837 | 837 | handler_name = Str('auto') |
|
838 | 838 | esc_strings = List([ESC_PAREN, ESC_QUOTE, ESC_QUOTE2]) |
|
839 | 839 | |
|
840 | 840 | def handle(self, line_info): |
|
841 | 841 | """Hande lines which can be auto-executed, quoting if requested.""" |
|
842 | 842 | line = line_info.line |
|
843 | 843 | ifun = line_info.ifun |
|
844 | 844 | the_rest = line_info.the_rest |
|
845 | 845 | pre = line_info.pre |
|
846 | 846 | continue_prompt = line_info.continue_prompt |
|
847 | 847 | obj = line_info.ofind(self)['obj'] |
|
848 | 848 | |
|
849 | 849 | #print 'pre <%s> ifun <%s> rest <%s>' % (pre,ifun,the_rest) # dbg |
|
850 | 850 | |
|
851 | 851 | # This should only be active for single-line input! |
|
852 | 852 | if continue_prompt: |
|
853 | 853 | # XXX - Ugly hack! We are breaking on multiline input and I'm out |
|
854 | 854 | # of time tonight to disentangle the component hirerarchy issue |
|
855 | 855 | # here... Fix this more cleanly later. |
|
856 |
self. |
|
|
856 | self.shell.log(line,line,continue_prompt) | |
|
857 | 857 | |
|
858 | 858 | return line |
|
859 | 859 | |
|
860 | 860 | force_auto = isinstance(obj, IPyAutocall) |
|
861 | 861 | auto_rewrite = True |
|
862 | 862 | |
|
863 | 863 | if pre == ESC_QUOTE: |
|
864 | 864 | # Auto-quote splitting on whitespace |
|
865 | 865 | newcmd = '%s("%s")' % (ifun,'", "'.join(the_rest.split()) ) |
|
866 | 866 | elif pre == ESC_QUOTE2: |
|
867 | 867 | # Auto-quote whole string |
|
868 | 868 | newcmd = '%s("%s")' % (ifun,the_rest) |
|
869 | 869 | elif pre == ESC_PAREN: |
|
870 | 870 | newcmd = '%s(%s)' % (ifun,",".join(the_rest.split())) |
|
871 | 871 | else: |
|
872 | 872 | # Auto-paren. |
|
873 | 873 | # We only apply it to argument-less calls if the autocall |
|
874 | 874 | # parameter is set to 2. We only need to check that autocall is < |
|
875 | 875 | # 2, since this function isn't called unless it's at least 1. |
|
876 | 876 | if not the_rest and (self.shell.autocall < 2) and not force_auto: |
|
877 | 877 | newcmd = '%s %s' % (ifun,the_rest) |
|
878 | 878 | auto_rewrite = False |
|
879 | 879 | else: |
|
880 | 880 | if not force_auto and the_rest.startswith('['): |
|
881 | 881 | if hasattr(obj,'__getitem__'): |
|
882 | 882 | # Don't autocall in this case: item access for an object |
|
883 | 883 | # which is BOTH callable and implements __getitem__. |
|
884 | 884 | newcmd = '%s %s' % (ifun,the_rest) |
|
885 | 885 | auto_rewrite = False |
|
886 | 886 | else: |
|
887 | 887 | # if the object doesn't support [] access, go ahead and |
|
888 | 888 | # autocall |
|
889 | 889 | newcmd = '%s(%s)' % (ifun.rstrip(),the_rest) |
|
890 | 890 | elif the_rest.endswith(';'): |
|
891 | 891 | newcmd = '%s(%s);' % (ifun.rstrip(),the_rest[:-1]) |
|
892 | 892 | else: |
|
893 | 893 | newcmd = '%s(%s)' % (ifun.rstrip(), the_rest) |
|
894 | 894 | |
|
895 | 895 | if auto_rewrite: |
|
896 | 896 | rw = self.shell.outputcache.prompt1.auto_rewrite() + newcmd |
|
897 | 897 | |
|
898 | 898 | try: |
|
899 | 899 | # plain ascii works better w/ pyreadline, on some machines, so |
|
900 | 900 | # we use it and only print uncolored rewrite if we have unicode |
|
901 | 901 | rw = str(rw) |
|
902 | 902 | print >>Term.cout, rw |
|
903 | 903 | except UnicodeEncodeError: |
|
904 | 904 | print "-------------->" + newcmd |
|
905 | 905 | |
|
906 | 906 | # log what is now valid Python, not the actual user input (without the |
|
907 | 907 | # final newline) |
|
908 | 908 | self.shell.log(line,newcmd,continue_prompt) |
|
909 | 909 | return newcmd |
|
910 | 910 | |
|
911 | 911 | |
|
912 | 912 | class HelpHandler(PrefilterHandler): |
|
913 | 913 | |
|
914 | 914 | handler_name = Str('help') |
|
915 | 915 | esc_strings = List([ESC_HELP]) |
|
916 | 916 | |
|
917 | 917 | def handle(self, line_info): |
|
918 | 918 | """Try to get some help for the object. |
|
919 | 919 | |
|
920 | 920 | obj? or ?obj -> basic information. |
|
921 | 921 | obj?? or ??obj -> more details. |
|
922 | 922 | """ |
|
923 | 923 | normal_handler = self.prefilter_manager.get_handler_by_name('normal') |
|
924 | 924 | line = line_info.line |
|
925 | 925 | # We need to make sure that we don't process lines which would be |
|
926 | 926 | # otherwise valid python, such as "x=1 # what?" |
|
927 | 927 | try: |
|
928 | 928 | codeop.compile_command(line) |
|
929 | 929 | except SyntaxError: |
|
930 | 930 | # We should only handle as help stuff which is NOT valid syntax |
|
931 | 931 | if line[0]==ESC_HELP: |
|
932 | 932 | line = line[1:] |
|
933 | 933 | elif line[-1]==ESC_HELP: |
|
934 | 934 | line = line[:-1] |
|
935 | 935 | self.shell.log(line, '#?'+line, line_info.continue_prompt) |
|
936 | 936 | if line: |
|
937 | 937 | #print 'line:<%r>' % line # dbg |
|
938 | 938 | self.shell.magic_pinfo(line) |
|
939 | 939 | else: |
|
940 | 940 | page(self.shell.usage, screen_lines=self.shell.usable_screen_length) |
|
941 | 941 | return '' # Empty string is needed here! |
|
942 | 942 | except: |
|
943 | 943 | raise |
|
944 | 944 | # Pass any other exceptions through to the normal handler |
|
945 | 945 | return normal_handler.handle(line_info) |
|
946 | 946 | else: |
|
947 | 947 | raise |
|
948 | 948 | # If the code compiles ok, we should handle it normally |
|
949 | 949 | return normal_handler.handle(line_info) |
|
950 | 950 | |
|
951 | 951 | |
|
952 | 952 | class EmacsHandler(PrefilterHandler): |
|
953 | 953 | |
|
954 | 954 | handler_name = Str('emacs') |
|
955 | 955 | esc_strings = List([]) |
|
956 | 956 | |
|
957 | 957 | def handle(self, line_info): |
|
958 | 958 | """Handle input lines marked by python-mode.""" |
|
959 | 959 | |
|
960 | 960 | # Currently, nothing is done. Later more functionality can be added |
|
961 | 961 | # here if needed. |
|
962 | 962 | |
|
963 | 963 | # The input cache shouldn't be updated |
|
964 | 964 | return line_info.line |
|
965 | 965 | |
|
966 | 966 | |
|
967 | 967 | #----------------------------------------------------------------------------- |
|
968 | 968 | # Defaults |
|
969 | 969 | #----------------------------------------------------------------------------- |
|
970 | 970 | |
|
971 | 971 | |
|
972 | 972 | _default_transformers = [ |
|
973 | 973 | AssignSystemTransformer, |
|
974 | 974 | AssignMagicTransformer |
|
975 | 975 | ] |
|
976 | 976 | |
|
977 | 977 | _default_checkers = [ |
|
978 | 978 | EmacsChecker, |
|
979 | 979 | ShellEscapeChecker, |
|
980 | 980 | IPyAutocallChecker, |
|
981 | 981 | MultiLineMagicChecker, |
|
982 | 982 | EscCharsChecker, |
|
983 | 983 | AssignmentChecker, |
|
984 | 984 | AutoMagicChecker, |
|
985 | 985 | AliasChecker, |
|
986 | 986 | PythonOpsChecker, |
|
987 | 987 | AutocallChecker |
|
988 | 988 | ] |
|
989 | 989 | |
|
990 | 990 | _default_handlers = [ |
|
991 | 991 | PrefilterHandler, |
|
992 | 992 | AliasHandler, |
|
993 | 993 | ShellEscapeHandler, |
|
994 | 994 | MagicHandler, |
|
995 | 995 | AutoHandler, |
|
996 | 996 | HelpHandler, |
|
997 | 997 | EmacsHandler |
|
998 | 998 | ] |
|
999 | 999 |
General Comments 0
You need to be logged in to leave comments.
Login now