##// END OF EJS Templates
More work to address review comments....
Brian Granger -
Show More
@@ -1,2558 +1,2561 b''
1 1 # -*- coding: utf-8 -*-
2 2 """
3 3 Main IPython Component
4 4 """
5 5
6 6 #-----------------------------------------------------------------------------
7 7 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
8 8 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
9 9 # Copyright (C) 2008-2009 The IPython Development Team
10 10 #
11 11 # Distributed under the terms of the BSD License. The full license is in
12 12 # the file COPYING, distributed as part of this software.
13 13 #-----------------------------------------------------------------------------
14 14
15 15 #-----------------------------------------------------------------------------
16 16 # Imports
17 17 #-----------------------------------------------------------------------------
18 18
19 19 from __future__ import with_statement
20 20 from __future__ import absolute_import
21 21
22 22 import __builtin__
23 23 import bdb
24 24 import codeop
25 25 import exceptions
26 26 import new
27 27 import os
28 28 import re
29 29 import string
30 30 import sys
31 31 import tempfile
32 32 from contextlib import nested
33 33
34 34 from IPython.core import debugger, oinspect
35 35 from IPython.core import history as ipcorehist
36 36 from IPython.core import prefilter
37 37 from IPython.core import shadowns
38 38 from IPython.core import ultratb
39 39 from IPython.core.alias import AliasManager
40 40 from IPython.core.builtin_trap import BuiltinTrap
41 41 from IPython.core.component import Component
42 42 from IPython.core.display_trap import DisplayTrap
43 43 from IPython.core.error import TryNext, UsageError
44 44 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
45 45 from IPython.core.logger import Logger
46 46 from IPython.core.magic import Magic
47 47 from IPython.core.prefilter import PrefilterManager
48 48 from IPython.core.prompts import CachedOutput
49 49 from IPython.core.usage import interactive_usage, default_banner
50 50 import IPython.core.hooks
51 51 from IPython.external.Itpl import ItplNS
52 52 from IPython.lib.inputhook import enable_gui
53 53 from IPython.lib.backgroundjobs import BackgroundJobManager
54 54 from IPython.lib.pylabtools import pylab_activate
55 55 from IPython.utils import PyColorize
56 56 from IPython.utils import pickleshare
57 57 from IPython.utils.doctestreload import doctest_reload
58 58 from IPython.utils.ipstruct import Struct
59 59 from IPython.utils.io import Term, ask_yes_no
60 60 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
61 61 from IPython.utils.process import (
62 62 abbrev_cwd,
63 63 getoutput,
64 64 getoutputerror
65 65 )
66 66 # import IPython.utils.rlineimpl as readline
67 67 from IPython.utils.strdispatch import StrDispatch
68 68 from IPython.utils.syspathcontext import prepended_to_syspath
69 69 from IPython.utils.terminal import toggle_set_term_title, set_term_title
70 70 from IPython.utils.warn import warn, error, fatal
71 71 from IPython.utils.traitlets import (
72 72 Int, Str, CBool, CaselessStrEnum, Enum, List, Unicode
73 73 )
74 74
75 75 # from IPython.utils import growl
76 76 # growl.start("IPython")
77 77
78 78 #-----------------------------------------------------------------------------
79 79 # Globals
80 80 #-----------------------------------------------------------------------------
81 81
82 82 # store the builtin raw_input globally, and use this always, in case user code
83 83 # overwrites it (like wx.py.PyShell does)
84 84 raw_input_original = raw_input
85 85
86 86 # compiled regexps for autoindent management
87 87 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
88 88
89 89 #-----------------------------------------------------------------------------
90 90 # Utilities
91 91 #-----------------------------------------------------------------------------
92 92
93 93 ini_spaces_re = re.compile(r'^(\s+)')
94 94
95 95
96 96 def num_ini_spaces(strng):
97 97 """Return the number of initial spaces in a string"""
98 98
99 99 ini_spaces = ini_spaces_re.match(strng)
100 100 if ini_spaces:
101 101 return ini_spaces.end()
102 102 else:
103 103 return 0
104 104
105 105
106 106 def softspace(file, newvalue):
107 107 """Copied from code.py, to remove the dependency"""
108 108
109 109 oldvalue = 0
110 110 try:
111 111 oldvalue = file.softspace
112 112 except AttributeError:
113 113 pass
114 114 try:
115 115 file.softspace = newvalue
116 116 except (AttributeError, TypeError):
117 117 # "attribute-less object" or "read-only attributes"
118 118 pass
119 119 return oldvalue
120 120
121 121
122 122 def no_op(*a, **kw): pass
123 123
124 124 class SpaceInInput(exceptions.Exception): pass
125 125
126 126 class Bunch: pass
127 127
128 128 class InputList(list):
129 129 """Class to store user input.
130 130
131 131 It's basically a list, but slices return a string instead of a list, thus
132 132 allowing things like (assuming 'In' is an instance):
133 133
134 134 exec In[4:7]
135 135
136 136 or
137 137
138 138 exec In[5:9] + In[14] + In[21:25]"""
139 139
140 140 def __getslice__(self,i,j):
141 141 return ''.join(list.__getslice__(self,i,j))
142 142
143 143
144 144 class SyntaxTB(ultratb.ListTB):
145 145 """Extension which holds some state: the last exception value"""
146 146
147 147 def __init__(self,color_scheme = 'NoColor'):
148 148 ultratb.ListTB.__init__(self,color_scheme)
149 149 self.last_syntax_error = None
150 150
151 151 def __call__(self, etype, value, elist):
152 152 self.last_syntax_error = value
153 153 ultratb.ListTB.__call__(self,etype,value,elist)
154 154
155 155 def clear_err_state(self):
156 156 """Return the current error state and clear it"""
157 157 e = self.last_syntax_error
158 158 self.last_syntax_error = None
159 159 return e
160 160
161 161
162 162 def get_default_editor():
163 163 try:
164 164 ed = os.environ['EDITOR']
165 165 except KeyError:
166 166 if os.name == 'posix':
167 167 ed = 'vi' # the only one guaranteed to be there!
168 168 else:
169 169 ed = 'notepad' # same in Windows!
170 170 return ed
171 171
172 172
173 173 def get_default_colors():
174 174 if sys.platform=='darwin':
175 175 return "LightBG"
176 176 elif os.name=='nt':
177 177 return 'Linux'
178 178 else:
179 179 return 'Linux'
180 180
181 181
182 182 class SeparateStr(Str):
183 183 """A Str subclass to validate separate_in, separate_out, etc.
184 184
185 185 This is a Str based traitlet that converts '0'->'' and '\\n'->'\n'.
186 186 """
187 187
188 188 def validate(self, obj, value):
189 189 if value == '0': value = ''
190 190 value = value.replace('\\n','\n')
191 191 return super(SeparateStr, self).validate(obj, value)
192 192
193 193
194 194 #-----------------------------------------------------------------------------
195 195 # Main IPython class
196 196 #-----------------------------------------------------------------------------
197 197
198 198
199 199 class InteractiveShell(Component, Magic):
200 200 """An enhanced, interactive shell for Python."""
201 201
202 202 autocall = Enum((0,1,2), default_value=1, config=True)
203 203 autoedit_syntax = CBool(False, config=True)
204 204 autoindent = CBool(True, config=True)
205 205 automagic = CBool(True, config=True)
206 206 banner = Str('')
207 207 banner1 = Str(default_banner, config=True)
208 208 banner2 = Str('', config=True)
209 209 cache_size = Int(1000, config=True)
210 210 color_info = CBool(True, config=True)
211 211 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
212 212 default_value=get_default_colors(), config=True)
213 213 confirm_exit = CBool(True, config=True)
214 214 debug = CBool(False, config=True)
215 215 deep_reload = CBool(False, config=True)
216 216 # This display_banner only controls whether or not self.show_banner()
217 217 # is called when mainloop/interact are called. The default is False
218 218 # because for the terminal based application, the banner behavior
219 219 # is controlled by Global.display_banner, which IPythonApp looks at
220 220 # to determine if *it* should call show_banner() by hand or not.
221 221 display_banner = CBool(False) # This isn't configurable!
222 222 embedded = CBool(False)
223 223 embedded_active = CBool(False)
224 224 editor = Str(get_default_editor(), config=True)
225 225 filename = Str("<ipython console>")
226 226 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
227 227 logstart = CBool(False, config=True)
228 228 logfile = Str('', config=True)
229 229 logappend = Str('', config=True)
230 230 object_info_string_level = Enum((0,1,2), default_value=0,
231 231 config=True)
232 232 pager = Str('less', config=True)
233 233 pdb = CBool(False, config=True)
234 234 pprint = CBool(True, config=True)
235 235 profile = Str('', config=True)
236 236 prompt_in1 = Str('In [\\#]: ', config=True)
237 237 prompt_in2 = Str(' .\\D.: ', config=True)
238 238 prompt_out = Str('Out[\\#]: ', config=True)
239 239 prompts_pad_left = CBool(True, config=True)
240 240 quiet = CBool(False, config=True)
241 241
242 242 readline_use = CBool(True, config=True)
243 243 readline_merge_completions = CBool(True, config=True)
244 244 readline_omit__names = Enum((0,1,2), default_value=0, config=True)
245 245 readline_remove_delims = Str('-/~', config=True)
246 246 readline_parse_and_bind = List([
247 247 'tab: complete',
248 248 '"\C-l": possible-completions',
249 249 'set show-all-if-ambiguous on',
250 250 '"\C-o": tab-insert',
251 251 '"\M-i": " "',
252 252 '"\M-o": "\d\d\d\d"',
253 253 '"\M-I": "\d\d\d\d"',
254 254 '"\C-r": reverse-search-history',
255 255 '"\C-s": forward-search-history',
256 256 '"\C-p": history-search-backward',
257 257 '"\C-n": history-search-forward',
258 258 '"\e[A": history-search-backward',
259 259 '"\e[B": history-search-forward',
260 260 '"\C-k": kill-line',
261 261 '"\C-u": unix-line-discard',
262 262 ], allow_none=False, config=True)
263 263
264 264 screen_length = Int(0, config=True)
265 265
266 266 # Use custom TraitletTypes that convert '0'->'' and '\\n'->'\n'
267 267 separate_in = SeparateStr('\n', config=True)
268 268 separate_out = SeparateStr('', config=True)
269 269 separate_out2 = SeparateStr('', config=True)
270 270
271 271 system_header = Str('IPython system call: ', config=True)
272 272 system_verbose = CBool(False, config=True)
273 273 term_title = CBool(False, config=True)
274 274 wildcards_case_sensitive = CBool(True, config=True)
275 275 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
276 276 default_value='Context', config=True)
277 277
278 278 autoexec = List(allow_none=False)
279 279
280 280 # class attribute to indicate whether the class supports threads or not.
281 281 # Subclasses with thread support should override this as needed.
282 282 isthreaded = False
283 283
284 284 def __init__(self, parent=None, config=None, ipython_dir=None, usage=None,
285 285 user_ns=None, user_global_ns=None,
286 286 banner1=None, banner2=None, display_banner=None,
287 287 custom_exceptions=((),None)):
288 288
289 289 # This is where traitlets with a config_key argument are updated
290 290 # from the values on config.
291 291 super(InteractiveShell, self).__init__(parent, config=config)
292 292
293 293 # These are relatively independent and stateless
294 294 self.init_ipython_dir(ipython_dir)
295 295 self.init_instance_attrs()
296 296 self.init_term_title()
297 297 self.init_usage(usage)
298 298 self.init_banner(banner1, banner2, display_banner)
299 299
300 300 # Create namespaces (user_ns, user_global_ns, etc.)
301 301 self.init_create_namespaces(user_ns, user_global_ns)
302 302 # This has to be done after init_create_namespaces because it uses
303 303 # something in self.user_ns, but before init_sys_modules, which
304 304 # is the first thing to modify sys.
305 305 self.save_sys_module_state()
306 306 self.init_sys_modules()
307 307
308 308 self.init_history()
309 309 self.init_encoding()
310 310 self.init_prefilter()
311 311
312 312 Magic.__init__(self, self)
313 313
314 314 self.init_syntax_highlighting()
315 315 self.init_hooks()
316 316 self.init_pushd_popd_magic()
317 317 self.init_traceback_handlers(custom_exceptions)
318 318 self.init_user_ns()
319 319 self.init_logger()
320 320 self.init_alias()
321 321 self.init_builtins()
322 322
323 323 # pre_config_initialization
324 324 self.init_shadow_hist()
325 325
326 326 # The next section should contain averything that was in ipmaker.
327 327 self.init_logstart()
328 328
329 329 # The following was in post_config_initialization
330 330 self.init_inspector()
331 331 self.init_readline()
332 332 self.init_prompts()
333 333 self.init_displayhook()
334 334 self.init_reload_doctest()
335 335 self.init_magics()
336 336 self.init_pdb()
337 337 self.hooks.late_startup_hook()
338 338
339 339 def get_ipython(self):
340 340 """Return the currently running IPython instance."""
341 341 return self
342 342
343 343 #-------------------------------------------------------------------------
344 344 # Traitlet changed handlers
345 345 #-------------------------------------------------------------------------
346 346
347 347 def _banner1_changed(self):
348 348 self.compute_banner()
349 349
350 350 def _banner2_changed(self):
351 351 self.compute_banner()
352 352
353 353 def _ipython_dir_changed(self, name, new):
354 354 if not os.path.isdir(new):
355 355 os.makedirs(new, mode = 0777)
356 356 if not os.path.isdir(self.ipython_extension_dir):
357 357 os.makedirs(self.ipython_extension_dir, mode = 0777)
358 358
359 359 @property
360 360 def ipython_extension_dir(self):
361 361 return os.path.join(self.ipython_dir, 'extensions')
362 362
363 363 @property
364 364 def usable_screen_length(self):
365 365 if self.screen_length == 0:
366 366 return 0
367 367 else:
368 368 num_lines_bot = self.separate_in.count('\n')+1
369 369 return self.screen_length - num_lines_bot
370 370
371 371 def _term_title_changed(self, name, new_value):
372 372 self.init_term_title()
373 373
374 374 def set_autoindent(self,value=None):
375 375 """Set the autoindent flag, checking for readline support.
376 376
377 377 If called with no arguments, it acts as a toggle."""
378 378
379 379 if not self.has_readline:
380 380 if os.name == 'posix':
381 381 warn("The auto-indent feature requires the readline library")
382 382 self.autoindent = 0
383 383 return
384 384 if value is None:
385 385 self.autoindent = not self.autoindent
386 386 else:
387 387 self.autoindent = value
388 388
389 389 #-------------------------------------------------------------------------
390 390 # init_* methods called by __init__
391 391 #-------------------------------------------------------------------------
392 392
393 393 def init_ipython_dir(self, ipython_dir):
394 394 if ipython_dir is not None:
395 395 self.ipython_dir = ipython_dir
396 396 self.config.Global.ipython_dir = self.ipython_dir
397 397 return
398 398
399 399 if hasattr(self.config.Global, 'ipython_dir'):
400 400 self.ipython_dir = self.config.Global.ipython_dir
401 401 else:
402 402 self.ipython_dir = get_ipython_dir()
403 403
404 404 # All children can just read this
405 405 self.config.Global.ipython_dir = self.ipython_dir
406 406
407 407 def init_instance_attrs(self):
408 408 self.jobs = BackgroundJobManager()
409 409 self.more = False
410 410
411 411 # command compiler
412 412 self.compile = codeop.CommandCompiler()
413 413
414 414 # User input buffer
415 415 self.buffer = []
416 416
417 417 # Make an empty namespace, which extension writers can rely on both
418 418 # existing and NEVER being used by ipython itself. This gives them a
419 419 # convenient location for storing additional information and state
420 420 # their extensions may require, without fear of collisions with other
421 421 # ipython names that may develop later.
422 422 self.meta = Struct()
423 423
424 424 # Object variable to store code object waiting execution. This is
425 425 # used mainly by the multithreaded shells, but it can come in handy in
426 426 # other situations. No need to use a Queue here, since it's a single
427 427 # item which gets cleared once run.
428 428 self.code_to_run = None
429 429
430 430 # Flag to mark unconditional exit
431 431 self.exit_now = False
432 432
433 433 # Temporary files used for various purposes. Deleted at exit.
434 434 self.tempfiles = []
435 435
436 436 # Keep track of readline usage (later set by init_readline)
437 437 self.has_readline = False
438 438
439 439 # keep track of where we started running (mainly for crash post-mortem)
440 440 # This is not being used anywhere currently.
441 441 self.starting_dir = os.getcwd()
442 442
443 443 # Indentation management
444 444 self.indent_current_nsp = 0
445 445
446 446 def init_term_title(self):
447 447 # Enable or disable the terminal title.
448 448 if self.term_title:
449 449 toggle_set_term_title(True)
450 450 set_term_title('IPython: ' + abbrev_cwd())
451 451 else:
452 452 toggle_set_term_title(False)
453 453
454 454 def init_usage(self, usage=None):
455 455 if usage is None:
456 456 self.usage = interactive_usage
457 457 else:
458 458 self.usage = usage
459 459
460 460 def init_encoding(self):
461 461 # Get system encoding at startup time. Certain terminals (like Emacs
462 462 # under Win32 have it set to None, and we need to have a known valid
463 463 # encoding to use in the raw_input() method
464 464 try:
465 465 self.stdin_encoding = sys.stdin.encoding or 'ascii'
466 466 except AttributeError:
467 467 self.stdin_encoding = 'ascii'
468 468
469 469 def init_syntax_highlighting(self):
470 470 # Python source parser/formatter for syntax highlighting
471 471 pyformat = PyColorize.Parser().format
472 472 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
473 473
474 474 def init_pushd_popd_magic(self):
475 475 # for pushd/popd management
476 476 try:
477 477 self.home_dir = get_home_dir()
478 478 except HomeDirError, msg:
479 479 fatal(msg)
480 480
481 481 self.dir_stack = []
482 482
483 483 def init_logger(self):
484 484 self.logger = Logger(self, logfname='ipython_log.py', logmode='rotate')
485 485 # local shortcut, this is used a LOT
486 486 self.log = self.logger.log
487 487
488 488 def init_logstart(self):
489 489 if self.logappend:
490 490 self.magic_logstart(self.logappend + ' append')
491 491 elif self.logfile:
492 492 self.magic_logstart(self.logfile)
493 493 elif self.logstart:
494 494 self.magic_logstart()
495 495
496 496 def init_builtins(self):
497 497 self.builtin_trap = BuiltinTrap(self)
498 498
499 499 def init_inspector(self):
500 500 # Object inspector
501 501 self.inspector = oinspect.Inspector(oinspect.InspectColors,
502 502 PyColorize.ANSICodeColors,
503 503 'NoColor',
504 504 self.object_info_string_level)
505 505
506 506 def init_prompts(self):
507 507 # Initialize cache, set in/out prompts and printing system
508 508 self.outputcache = CachedOutput(self,
509 509 self.cache_size,
510 510 self.pprint,
511 511 input_sep = self.separate_in,
512 512 output_sep = self.separate_out,
513 513 output_sep2 = self.separate_out2,
514 514 ps1 = self.prompt_in1,
515 515 ps2 = self.prompt_in2,
516 516 ps_out = self.prompt_out,
517 517 pad_left = self.prompts_pad_left)
518 518
519 519 # user may have over-ridden the default print hook:
520 520 try:
521 521 self.outputcache.__class__.display = self.hooks.display
522 522 except AttributeError:
523 523 pass
524 524
525 525 def init_displayhook(self):
526 526 self.display_trap = DisplayTrap(self, self.outputcache)
527 527
528 528 def init_reload_doctest(self):
529 529 # Do a proper resetting of doctest, including the necessary displayhook
530 530 # monkeypatching
531 531 try:
532 532 doctest_reload()
533 533 except ImportError:
534 534 warn("doctest module does not exist.")
535 535
536 536 #-------------------------------------------------------------------------
537 537 # Things related to the banner
538 538 #-------------------------------------------------------------------------
539 539
540 540 def init_banner(self, banner1, banner2, display_banner):
541 541 if banner1 is not None:
542 542 self.banner1 = banner1
543 543 if banner2 is not None:
544 544 self.banner2 = banner2
545 545 if display_banner is not None:
546 546 self.display_banner = display_banner
547 547 self.compute_banner()
548 548
549 549 def show_banner(self, banner=None):
550 550 if banner is None:
551 551 banner = self.banner
552 552 self.write(banner)
553 553
554 554 def compute_banner(self):
555 555 self.banner = self.banner1 + '\n'
556 556 if self.profile:
557 557 self.banner += '\nIPython profile: %s\n' % self.profile
558 558 if self.banner2:
559 559 self.banner += '\n' + self.banner2 + '\n'
560 560
561 561 #-------------------------------------------------------------------------
562 562 # Things related to injections into the sys module
563 563 #-------------------------------------------------------------------------
564 564
565 565 def save_sys_module_state(self):
566 566 """Save the state of hooks in the sys module.
567 567
568 568 This has to be called after self.user_ns is created.
569 569 """
570 570 self._orig_sys_module_state = {}
571 571 self._orig_sys_module_state['stdin'] = sys.stdin
572 572 self._orig_sys_module_state['stdout'] = sys.stdout
573 573 self._orig_sys_module_state['stderr'] = sys.stderr
574 574 self._orig_sys_module_state['excepthook'] = sys.excepthook
575 575 try:
576 576 self._orig_sys_modules_main_name = self.user_ns['__name__']
577 577 except KeyError:
578 578 pass
579 579
580 580 def restore_sys_module_state(self):
581 581 """Restore the state of the sys module."""
582 582 try:
583 583 for k, v in self._orig_sys_module_state.items():
584 584 setattr(sys, k, v)
585 585 except AttributeError:
586 586 pass
587 587 try:
588 588 delattr(sys, 'ipcompleter')
589 589 except AttributeError:
590 590 pass
591 591 # Reset what what done in self.init_sys_modules
592 592 try:
593 593 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
594 594 except (AttributeError, KeyError):
595 595 pass
596 596
597 597 #-------------------------------------------------------------------------
598 598 # Things related to hooks
599 599 #-------------------------------------------------------------------------
600 600
601 601 def init_hooks(self):
602 602 # hooks holds pointers used for user-side customizations
603 603 self.hooks = Struct()
604 604
605 605 self.strdispatchers = {}
606 606
607 607 # Set all default hooks, defined in the IPython.hooks module.
608 608 hooks = IPython.core.hooks
609 609 for hook_name in hooks.__all__:
610 610 # default hooks have priority 100, i.e. low; user hooks should have
611 611 # 0-100 priority
612 612 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
613 613
614 614 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
615 615 """set_hook(name,hook) -> sets an internal IPython hook.
616 616
617 617 IPython exposes some of its internal API as user-modifiable hooks. By
618 618 adding your function to one of these hooks, you can modify IPython's
619 619 behavior to call at runtime your own routines."""
620 620
621 621 # At some point in the future, this should validate the hook before it
622 622 # accepts it. Probably at least check that the hook takes the number
623 623 # of args it's supposed to.
624 624
625 625 f = new.instancemethod(hook,self,self.__class__)
626 626
627 627 # check if the hook is for strdispatcher first
628 628 if str_key is not None:
629 629 sdp = self.strdispatchers.get(name, StrDispatch())
630 630 sdp.add_s(str_key, f, priority )
631 631 self.strdispatchers[name] = sdp
632 632 return
633 633 if re_key is not None:
634 634 sdp = self.strdispatchers.get(name, StrDispatch())
635 635 sdp.add_re(re.compile(re_key), f, priority )
636 636 self.strdispatchers[name] = sdp
637 637 return
638 638
639 639 dp = getattr(self.hooks, name, None)
640 640 if name not in IPython.core.hooks.__all__:
641 641 print "Warning! Hook '%s' is not one of %s" % (name, IPython.core.hooks.__all__ )
642 642 if not dp:
643 643 dp = IPython.core.hooks.CommandChainDispatcher()
644 644
645 645 try:
646 646 dp.add(f,priority)
647 647 except AttributeError:
648 648 # it was not commandchain, plain old func - replace
649 649 dp = f
650 650
651 651 setattr(self.hooks,name, dp)
652 652
653 653 #-------------------------------------------------------------------------
654 654 # Things related to the "main" module
655 655 #-------------------------------------------------------------------------
656 656
657 657 def new_main_mod(self,ns=None):
658 658 """Return a new 'main' module object for user code execution.
659 659 """
660 660 main_mod = self._user_main_module
661 661 init_fakemod_dict(main_mod,ns)
662 662 return main_mod
663 663
664 664 def cache_main_mod(self,ns,fname):
665 665 """Cache a main module's namespace.
666 666
667 667 When scripts are executed via %run, we must keep a reference to the
668 668 namespace of their __main__ module (a FakeModule instance) around so
669 669 that Python doesn't clear it, rendering objects defined therein
670 670 useless.
671 671
672 672 This method keeps said reference in a private dict, keyed by the
673 673 absolute path of the module object (which corresponds to the script
674 674 path). This way, for multiple executions of the same script we only
675 675 keep one copy of the namespace (the last one), thus preventing memory
676 676 leaks from old references while allowing the objects from the last
677 677 execution to be accessible.
678 678
679 679 Note: we can not allow the actual FakeModule instances to be deleted,
680 680 because of how Python tears down modules (it hard-sets all their
681 681 references to None without regard for reference counts). This method
682 682 must therefore make a *copy* of the given namespace, to allow the
683 683 original module's __dict__ to be cleared and reused.
684 684
685 685
686 686 Parameters
687 687 ----------
688 688 ns : a namespace (a dict, typically)
689 689
690 690 fname : str
691 691 Filename associated with the namespace.
692 692
693 693 Examples
694 694 --------
695 695
696 696 In [10]: import IPython
697 697
698 698 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
699 699
700 700 In [12]: IPython.__file__ in _ip._main_ns_cache
701 701 Out[12]: True
702 702 """
703 703 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
704 704
705 705 def clear_main_mod_cache(self):
706 706 """Clear the cache of main modules.
707 707
708 708 Mainly for use by utilities like %reset.
709 709
710 710 Examples
711 711 --------
712 712
713 713 In [15]: import IPython
714 714
715 715 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
716 716
717 717 In [17]: len(_ip._main_ns_cache) > 0
718 718 Out[17]: True
719 719
720 720 In [18]: _ip.clear_main_mod_cache()
721 721
722 722 In [19]: len(_ip._main_ns_cache) == 0
723 723 Out[19]: True
724 724 """
725 725 self._main_ns_cache.clear()
726 726
727 727 #-------------------------------------------------------------------------
728 728 # Things related to debugging
729 729 #-------------------------------------------------------------------------
730 730
731 731 def init_pdb(self):
732 732 # Set calling of pdb on exceptions
733 733 # self.call_pdb is a property
734 734 self.call_pdb = self.pdb
735 735
736 736 def _get_call_pdb(self):
737 737 return self._call_pdb
738 738
739 739 def _set_call_pdb(self,val):
740 740
741 741 if val not in (0,1,False,True):
742 742 raise ValueError,'new call_pdb value must be boolean'
743 743
744 744 # store value in instance
745 745 self._call_pdb = val
746 746
747 747 # notify the actual exception handlers
748 748 self.InteractiveTB.call_pdb = val
749 749 if self.isthreaded:
750 750 try:
751 751 self.sys_excepthook.call_pdb = val
752 752 except:
753 753 warn('Failed to activate pdb for threaded exception handler')
754 754
755 755 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
756 756 'Control auto-activation of pdb at exceptions')
757 757
758 758 def debugger(self,force=False):
759 759 """Call the pydb/pdb debugger.
760 760
761 761 Keywords:
762 762
763 763 - force(False): by default, this routine checks the instance call_pdb
764 764 flag and does not actually invoke the debugger if the flag is false.
765 765 The 'force' option forces the debugger to activate even if the flag
766 766 is false.
767 767 """
768 768
769 769 if not (force or self.call_pdb):
770 770 return
771 771
772 772 if not hasattr(sys,'last_traceback'):
773 773 error('No traceback has been produced, nothing to debug.')
774 774 return
775 775
776 776 # use pydb if available
777 777 if debugger.has_pydb:
778 778 from pydb import pm
779 779 else:
780 780 # fallback to our internal debugger
781 781 pm = lambda : self.InteractiveTB.debugger(force=True)
782 782 self.history_saving_wrapper(pm)()
783 783
784 784 #-------------------------------------------------------------------------
785 785 # Things related to IPython's various namespaces
786 786 #-------------------------------------------------------------------------
787 787
788 788 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
789 789 # Create the namespace where the user will operate. user_ns is
790 790 # normally the only one used, and it is passed to the exec calls as
791 791 # the locals argument. But we do carry a user_global_ns namespace
792 792 # given as the exec 'globals' argument, This is useful in embedding
793 793 # situations where the ipython shell opens in a context where the
794 794 # distinction between locals and globals is meaningful. For
795 795 # non-embedded contexts, it is just the same object as the user_ns dict.
796 796
797 797 # FIXME. For some strange reason, __builtins__ is showing up at user
798 798 # level as a dict instead of a module. This is a manual fix, but I
799 799 # should really track down where the problem is coming from. Alex
800 800 # Schmolck reported this problem first.
801 801
802 802 # A useful post by Alex Martelli on this topic:
803 803 # Re: inconsistent value from __builtins__
804 804 # Von: Alex Martelli <aleaxit@yahoo.com>
805 805 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
806 806 # Gruppen: comp.lang.python
807 807
808 808 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
809 809 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
810 810 # > <type 'dict'>
811 811 # > >>> print type(__builtins__)
812 812 # > <type 'module'>
813 813 # > Is this difference in return value intentional?
814 814
815 815 # Well, it's documented that '__builtins__' can be either a dictionary
816 816 # or a module, and it's been that way for a long time. Whether it's
817 817 # intentional (or sensible), I don't know. In any case, the idea is
818 818 # that if you need to access the built-in namespace directly, you
819 819 # should start with "import __builtin__" (note, no 's') which will
820 820 # definitely give you a module. Yeah, it's somewhat confusing:-(.
821 821
822 822 # These routines return properly built dicts as needed by the rest of
823 823 # the code, and can also be used by extension writers to generate
824 824 # properly initialized namespaces.
825 825 user_ns, user_global_ns = self.make_user_namespaces(user_ns, user_global_ns)
826 826
827 827 # Assign namespaces
828 828 # This is the namespace where all normal user variables live
829 829 self.user_ns = user_ns
830 830 self.user_global_ns = user_global_ns
831 831
832 832 # An auxiliary namespace that checks what parts of the user_ns were
833 833 # loaded at startup, so we can list later only variables defined in
834 834 # actual interactive use. Since it is always a subset of user_ns, it
835 835 # doesn't need to be separately tracked in the ns_table.
836 self.user_config_ns = {}
836 self.user_ns_hidden = {}
837 837
838 838 # A namespace to keep track of internal data structures to prevent
839 839 # them from cluttering user-visible stuff. Will be updated later
840 840 self.internal_ns = {}
841 841
842 842 # Now that FakeModule produces a real module, we've run into a nasty
843 843 # problem: after script execution (via %run), the module where the user
844 844 # code ran is deleted. Now that this object is a true module (needed
845 845 # so docetst and other tools work correctly), the Python module
846 846 # teardown mechanism runs over it, and sets to None every variable
847 847 # present in that module. Top-level references to objects from the
848 848 # script survive, because the user_ns is updated with them. However,
849 849 # calling functions defined in the script that use other things from
850 850 # the script will fail, because the function's closure had references
851 851 # to the original objects, which are now all None. So we must protect
852 852 # these modules from deletion by keeping a cache.
853 853 #
854 854 # To avoid keeping stale modules around (we only need the one from the
855 855 # last run), we use a dict keyed with the full path to the script, so
856 856 # only the last version of the module is held in the cache. Note,
857 857 # however, that we must cache the module *namespace contents* (their
858 858 # __dict__). Because if we try to cache the actual modules, old ones
859 859 # (uncached) could be destroyed while still holding references (such as
860 860 # those held by GUI objects that tend to be long-lived)>
861 861 #
862 862 # The %reset command will flush this cache. See the cache_main_mod()
863 863 # and clear_main_mod_cache() methods for details on use.
864 864
865 865 # This is the cache used for 'main' namespaces
866 866 self._main_ns_cache = {}
867 867 # And this is the single instance of FakeModule whose __dict__ we keep
868 868 # copying and clearing for reuse on each %run
869 869 self._user_main_module = FakeModule()
870 870
871 871 # A table holding all the namespaces IPython deals with, so that
872 872 # introspection facilities can search easily.
873 873 self.ns_table = {'user':user_ns,
874 874 'user_global':user_global_ns,
875 875 'internal':self.internal_ns,
876 876 'builtin':__builtin__.__dict__
877 877 }
878 878
879 879 # Similarly, track all namespaces where references can be held and that
880 880 # we can safely clear (so it can NOT include builtin). This one can be
881 881 # a simple list.
882 self.ns_refs_table = [ user_ns, user_global_ns, self.user_config_ns,
882 self.ns_refs_table = [ user_ns, user_global_ns, self.user_ns_hidden,
883 883 self.internal_ns, self._main_ns_cache ]
884 884
885 885 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
886 886 """Return a valid local and global user interactive namespaces.
887 887
888 888 This builds a dict with the minimal information needed to operate as a
889 889 valid IPython user namespace, which you can pass to the various
890 890 embedding classes in ipython. The default implementation returns the
891 891 same dict for both the locals and the globals to allow functions to
892 892 refer to variables in the namespace. Customized implementations can
893 893 return different dicts. The locals dictionary can actually be anything
894 894 following the basic mapping protocol of a dict, but the globals dict
895 895 must be a true dict, not even a subclass. It is recommended that any
896 896 custom object for the locals namespace synchronize with the globals
897 897 dict somehow.
898 898
899 899 Raises TypeError if the provided globals namespace is not a true dict.
900 900
901 901 Parameters
902 902 ----------
903 903 user_ns : dict-like, optional
904 904 The current user namespace. The items in this namespace should
905 905 be included in the output. If None, an appropriate blank
906 906 namespace should be created.
907 907 user_global_ns : dict, optional
908 908 The current user global namespace. The items in this namespace
909 909 should be included in the output. If None, an appropriate
910 910 blank namespace should be created.
911 911
912 912 Returns
913 913 -------
914 914 A pair of dictionary-like object to be used as the local namespace
915 915 of the interpreter and a dict to be used as the global namespace.
916 916 """
917 917
918 918
919 919 # We must ensure that __builtin__ (without the final 's') is always
920 920 # available and pointing to the __builtin__ *module*. For more details:
921 921 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
922 922
923 923 if user_ns is None:
924 924 # Set __name__ to __main__ to better match the behavior of the
925 925 # normal interpreter.
926 926 user_ns = {'__name__' :'__main__',
927 927 '__builtin__' : __builtin__,
928 928 '__builtins__' : __builtin__,
929 929 }
930 930 else:
931 931 user_ns.setdefault('__name__','__main__')
932 932 user_ns.setdefault('__builtin__',__builtin__)
933 933 user_ns.setdefault('__builtins__',__builtin__)
934 934
935 935 if user_global_ns is None:
936 936 user_global_ns = user_ns
937 937 if type(user_global_ns) is not dict:
938 938 raise TypeError("user_global_ns must be a true dict; got %r"
939 939 % type(user_global_ns))
940 940
941 941 return user_ns, user_global_ns
942 942
943 943 def init_sys_modules(self):
944 944 # We need to insert into sys.modules something that looks like a
945 945 # module but which accesses the IPython namespace, for shelve and
946 946 # pickle to work interactively. Normally they rely on getting
947 947 # everything out of __main__, but for embedding purposes each IPython
948 948 # instance has its own private namespace, so we can't go shoving
949 949 # everything into __main__.
950 950
951 951 # note, however, that we should only do this for non-embedded
952 952 # ipythons, which really mimic the __main__.__dict__ with their own
953 953 # namespace. Embedded instances, on the other hand, should not do
954 954 # this because they need to manage the user local/global namespaces
955 955 # only, but they live within a 'normal' __main__ (meaning, they
956 956 # shouldn't overtake the execution environment of the script they're
957 957 # embedded in).
958 958
959 959 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
960 960
961 961 try:
962 962 main_name = self.user_ns['__name__']
963 963 except KeyError:
964 964 raise KeyError('user_ns dictionary MUST have a "__name__" key')
965 965 else:
966 966 sys.modules[main_name] = FakeModule(self.user_ns)
967 967
968 968 def init_user_ns(self):
969 969 """Initialize all user-visible namespaces to their minimum defaults.
970 970
971 971 Certain history lists are also initialized here, as they effectively
972 972 act as user namespaces.
973 973
974 974 Notes
975 975 -----
976 976 All data structures here are only filled in, they are NOT reset by this
977 977 method. If they were not empty before, data will simply be added to
978 978 therm.
979 979 """
980 980 # This function works in two parts: first we put a few things in
981 # user_ns, and we sync that contents into user_config_ns so that these
981 # user_ns, and we sync that contents into user_ns_hidden so that these
982 982 # initial variables aren't shown by %who. After the sync, we add the
983 983 # rest of what we *do* want the user to see with %who even on a new
984 984 # session (probably nothing, so theye really only see their own stuff)
985 985
986 986 # The user dict must *always* have a __builtin__ reference to the
987 987 # Python standard __builtin__ namespace, which must be imported.
988 988 # This is so that certain operations in prompt evaluation can be
989 989 # reliably executed with builtins. Note that we can NOT use
990 990 # __builtins__ (note the 's'), because that can either be a dict or a
991 991 # module, and can even mutate at runtime, depending on the context
992 992 # (Python makes no guarantees on it). In contrast, __builtin__ is
993 993 # always a module object, though it must be explicitly imported.
994 994
995 995 # For more details:
996 996 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
997 997 ns = dict(__builtin__ = __builtin__)
998 998
999 999 # Put 'help' in the user namespace
1000 1000 try:
1001 1001 from site import _Helper
1002 1002 ns['help'] = _Helper()
1003 1003 except ImportError:
1004 1004 warn('help() not available - check site.py')
1005 1005
1006 1006 # make global variables for user access to the histories
1007 1007 ns['_ih'] = self.input_hist
1008 1008 ns['_oh'] = self.output_hist
1009 1009 ns['_dh'] = self.dir_hist
1010 1010
1011 1011 ns['_sh'] = shadowns
1012 1012
1013 1013 # user aliases to input and output histories. These shouldn't show up
1014 1014 # in %who, as they can have very large reprs.
1015 1015 ns['In'] = self.input_hist
1016 1016 ns['Out'] = self.output_hist
1017 1017
1018 1018 # Store myself as the public api!!!
1019 1019 ns['get_ipython'] = self.get_ipython
1020 1020
1021 # Sync what we've added so far to user_config_ns so these aren't seen
1021 # Sync what we've added so far to user_ns_hidden so these aren't seen
1022 1022 # by %who
1023 self.user_config_ns.update(ns)
1023 self.user_ns_hidden.update(ns)
1024 1024
1025 1025 # Anything put into ns now would show up in %who. Think twice before
1026 1026 # putting anything here, as we really want %who to show the user their
1027 1027 # stuff, not our variables.
1028 1028
1029 1029 # Finally, update the real user's namespace
1030 1030 self.user_ns.update(ns)
1031 1031
1032 1032
1033 1033 def reset(self):
1034 1034 """Clear all internal namespaces.
1035 1035
1036 1036 Note that this is much more aggressive than %reset, since it clears
1037 1037 fully all namespaces, as well as all input/output lists.
1038 1038 """
1039 1039 for ns in self.ns_refs_table:
1040 1040 ns.clear()
1041 1041
1042 1042 self.alias_manager.clear_aliases()
1043 1043
1044 1044 # Clear input and output histories
1045 1045 self.input_hist[:] = []
1046 1046 self.input_hist_raw[:] = []
1047 1047 self.output_hist.clear()
1048 1048
1049 1049 # Restore the user namespaces to minimal usability
1050 1050 self.init_user_ns()
1051 1051
1052 1052 # Restore the default and user aliases
1053 1053 self.alias_manager.init_aliases()
1054 1054
1055 1055 def push(self, variables, interactive=True):
1056 1056 """Inject a group of variables into the IPython user namespace.
1057 1057
1058 1058 Parameters
1059 1059 ----------
1060 1060 variables : dict, str or list/tuple of str
1061 1061 The variables to inject into the user's namespace. If a dict,
1062 1062 a simple update is done. If a str, the string is assumed to
1063 1063 have variable names separated by spaces. A list/tuple of str
1064 1064 can also be used to give the variable names. If just the variable
1065 1065 names are give (list/tuple/str) then the variable values looked
1066 1066 up in the callers frame.
1067 1067 interactive : bool
1068 1068 If True (default), the variables will be listed with the ``who``
1069 1069 magic.
1070 1070 """
1071 1071 vdict = None
1072 1072
1073 1073 # We need a dict of name/value pairs to do namespace updates.
1074 1074 if isinstance(variables, dict):
1075 1075 vdict = variables
1076 1076 elif isinstance(variables, (basestring, list, tuple)):
1077 1077 if isinstance(variables, basestring):
1078 1078 vlist = variables.split()
1079 1079 else:
1080 1080 vlist = variables
1081 1081 vdict = {}
1082 1082 cf = sys._getframe(1)
1083 1083 for name in vlist:
1084 1084 try:
1085 1085 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1086 1086 except:
1087 1087 print ('Could not get variable %s from %s' %
1088 1088 (name,cf.f_code.co_name))
1089 1089 else:
1090 1090 raise ValueError('variables must be a dict/str/list/tuple')
1091 1091
1092 1092 # Propagate variables to user namespace
1093 1093 self.user_ns.update(vdict)
1094 1094
1095 1095 # And configure interactive visibility
1096 config_ns = self.user_config_ns
1096 config_ns = self.user_ns_hidden
1097 1097 if interactive:
1098 1098 for name, val in vdict.iteritems():
1099 1099 config_ns.pop(name, None)
1100 1100 else:
1101 1101 for name,val in vdict.iteritems():
1102 1102 config_ns[name] = val
1103 1103
1104 1104 #-------------------------------------------------------------------------
1105 1105 # Things related to history management
1106 1106 #-------------------------------------------------------------------------
1107 1107
1108 1108 def init_history(self):
1109 1109 # List of input with multi-line handling.
1110 1110 self.input_hist = InputList()
1111 1111 # This one will hold the 'raw' input history, without any
1112 1112 # pre-processing. This will allow users to retrieve the input just as
1113 1113 # it was exactly typed in by the user, with %hist -r.
1114 1114 self.input_hist_raw = InputList()
1115 1115
1116 1116 # list of visited directories
1117 1117 try:
1118 1118 self.dir_hist = [os.getcwd()]
1119 1119 except OSError:
1120 1120 self.dir_hist = []
1121 1121
1122 1122 # dict of output history
1123 1123 self.output_hist = {}
1124 1124
1125 1125 # Now the history file
1126 1126 if self.profile:
1127 1127 histfname = 'history-%s' % self.profile
1128 1128 else:
1129 1129 histfname = 'history'
1130 1130 self.histfile = os.path.join(self.ipython_dir, histfname)
1131 1131
1132 1132 # Fill the history zero entry, user counter starts at 1
1133 1133 self.input_hist.append('\n')
1134 1134 self.input_hist_raw.append('\n')
1135 1135
1136 1136 def init_shadow_hist(self):
1137 1137 try:
1138 1138 self.db = pickleshare.PickleShareDB(self.ipython_dir + "/db")
1139 1139 except exceptions.UnicodeDecodeError:
1140 1140 print "Your ipython_dir can't be decoded to unicode!"
1141 1141 print "Please set HOME environment variable to something that"
1142 1142 print r"only has ASCII characters, e.g. c:\home"
1143 1143 print "Now it is", self.ipython_dir
1144 1144 sys.exit()
1145 1145 self.shadowhist = ipcorehist.ShadowHist(self.db)
1146 1146
1147 1147 def savehist(self):
1148 1148 """Save input history to a file (via readline library)."""
1149 1149
1150 1150 try:
1151 1151 self.readline.write_history_file(self.histfile)
1152 1152 except:
1153 1153 print 'Unable to save IPython command history to file: ' + \
1154 1154 `self.histfile`
1155 1155
1156 1156 def reloadhist(self):
1157 1157 """Reload the input history from disk file."""
1158 1158
1159 1159 try:
1160 1160 self.readline.clear_history()
1161 1161 self.readline.read_history_file(self.shell.histfile)
1162 1162 except AttributeError:
1163 1163 pass
1164 1164
1165 1165 def history_saving_wrapper(self, func):
1166 1166 """ Wrap func for readline history saving
1167 1167
1168 1168 Convert func into callable that saves & restores
1169 1169 history around the call """
1170 1170
1171 1171 if self.has_readline:
1172 1172 from IPython.utils import rlineimpl as readline
1173 1173 else:
1174 1174 return func
1175 1175
1176 1176 def wrapper():
1177 1177 self.savehist()
1178 1178 try:
1179 1179 func()
1180 1180 finally:
1181 1181 readline.read_history_file(self.histfile)
1182 1182 return wrapper
1183 1183
1184 1184 #-------------------------------------------------------------------------
1185 1185 # Things related to exception handling and tracebacks (not debugging)
1186 1186 #-------------------------------------------------------------------------
1187 1187
1188 1188 def init_traceback_handlers(self, custom_exceptions):
1189 1189 # Syntax error handler.
1190 1190 self.SyntaxTB = SyntaxTB(color_scheme='NoColor')
1191 1191
1192 1192 # The interactive one is initialized with an offset, meaning we always
1193 1193 # want to remove the topmost item in the traceback, which is our own
1194 1194 # internal code. Valid modes: ['Plain','Context','Verbose']
1195 1195 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1196 1196 color_scheme='NoColor',
1197 1197 tb_offset = 1)
1198 1198
1199 1199 # The instance will store a pointer to the system-wide exception hook,
1200 1200 # so that runtime code (such as magics) can access it. This is because
1201 1201 # during the read-eval loop, it may get temporarily overwritten.
1202 1202 self.sys_excepthook = sys.excepthook
1203 1203
1204 1204 # and add any custom exception handlers the user may have specified
1205 1205 self.set_custom_exc(*custom_exceptions)
1206 1206
1207 1207 # Set the exception mode
1208 1208 self.InteractiveTB.set_mode(mode=self.xmode)
1209 1209
1210 1210 def set_custom_exc(self,exc_tuple,handler):
1211 1211 """set_custom_exc(exc_tuple,handler)
1212 1212
1213 1213 Set a custom exception handler, which will be called if any of the
1214 1214 exceptions in exc_tuple occur in the mainloop (specifically, in the
1215 1215 runcode() method.
1216 1216
1217 1217 Inputs:
1218 1218
1219 1219 - exc_tuple: a *tuple* of valid exceptions to call the defined
1220 1220 handler for. It is very important that you use a tuple, and NOT A
1221 1221 LIST here, because of the way Python's except statement works. If
1222 1222 you only want to trap a single exception, use a singleton tuple:
1223 1223
1224 1224 exc_tuple == (MyCustomException,)
1225 1225
1226 1226 - handler: this must be defined as a function with the following
1227 1227 basic interface: def my_handler(self,etype,value,tb).
1228 1228
1229 1229 This will be made into an instance method (via new.instancemethod)
1230 1230 of IPython itself, and it will be called if any of the exceptions
1231 1231 listed in the exc_tuple are caught. If the handler is None, an
1232 1232 internal basic one is used, which just prints basic info.
1233 1233
1234 1234 WARNING: by putting in your own exception handler into IPython's main
1235 1235 execution loop, you run a very good chance of nasty crashes. This
1236 1236 facility should only be used if you really know what you are doing."""
1237 1237
1238 1238 assert type(exc_tuple)==type(()) , \
1239 1239 "The custom exceptions must be given AS A TUPLE."
1240 1240
1241 1241 def dummy_handler(self,etype,value,tb):
1242 1242 print '*** Simple custom exception handler ***'
1243 1243 print 'Exception type :',etype
1244 1244 print 'Exception value:',value
1245 1245 print 'Traceback :',tb
1246 1246 print 'Source code :','\n'.join(self.buffer)
1247 1247
1248 1248 if handler is None: handler = dummy_handler
1249 1249
1250 1250 self.CustomTB = new.instancemethod(handler,self,self.__class__)
1251 1251 self.custom_exceptions = exc_tuple
1252 1252
1253 1253 def excepthook(self, etype, value, tb):
1254 1254 """One more defense for GUI apps that call sys.excepthook.
1255 1255
1256 1256 GUI frameworks like wxPython trap exceptions and call
1257 1257 sys.excepthook themselves. I guess this is a feature that
1258 1258 enables them to keep running after exceptions that would
1259 1259 otherwise kill their mainloop. This is a bother for IPython
1260 1260 which excepts to catch all of the program exceptions with a try:
1261 1261 except: statement.
1262 1262
1263 1263 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1264 1264 any app directly invokes sys.excepthook, it will look to the user like
1265 1265 IPython crashed. In order to work around this, we can disable the
1266 1266 CrashHandler and replace it with this excepthook instead, which prints a
1267 1267 regular traceback using our InteractiveTB. In this fashion, apps which
1268 1268 call sys.excepthook will generate a regular-looking exception from
1269 1269 IPython, and the CrashHandler will only be triggered by real IPython
1270 1270 crashes.
1271 1271
1272 1272 This hook should be used sparingly, only in places which are not likely
1273 1273 to be true IPython errors.
1274 1274 """
1275 1275 self.showtraceback((etype,value,tb),tb_offset=0)
1276 1276
1277 1277 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1278 1278 exception_only=False):
1279 1279 """Display the exception that just occurred.
1280 1280
1281 1281 If nothing is known about the exception, this is the method which
1282 1282 should be used throughout the code for presenting user tracebacks,
1283 1283 rather than directly invoking the InteractiveTB object.
1284 1284
1285 1285 A specific showsyntaxerror() also exists, but this method can take
1286 1286 care of calling it if needed, so unless you are explicitly catching a
1287 1287 SyntaxError exception, don't try to analyze the stack manually and
1288 1288 simply call this method."""
1289 1289
1290 1290 try:
1291 1291 if exc_tuple is None:
1292 1292 etype, value, tb = sys.exc_info()
1293 1293 else:
1294 1294 etype, value, tb = exc_tuple
1295 1295
1296 1296 if etype is None:
1297 1297 if hasattr(sys, 'last_type'):
1298 1298 etype, value, tb = sys.last_type, sys.last_value, \
1299 1299 sys.last_traceback
1300 1300 else:
1301 1301 self.write('No traceback available to show.\n')
1302 1302 return
1303 1303
1304 1304 if etype is SyntaxError:
1305 1305 # Though this won't be called by syntax errors in the input
1306 1306 # line, there may be SyntaxError cases whith imported code.
1307 1307 self.showsyntaxerror(filename)
1308 1308 elif etype is UsageError:
1309 1309 print "UsageError:", value
1310 1310 else:
1311 1311 # WARNING: these variables are somewhat deprecated and not
1312 1312 # necessarily safe to use in a threaded environment, but tools
1313 1313 # like pdb depend on their existence, so let's set them. If we
1314 1314 # find problems in the field, we'll need to revisit their use.
1315 1315 sys.last_type = etype
1316 1316 sys.last_value = value
1317 1317 sys.last_traceback = tb
1318 1318
1319 1319 if etype in self.custom_exceptions:
1320 1320 self.CustomTB(etype,value,tb)
1321 1321 else:
1322 1322 if exception_only:
1323 1323 m = ('An exception has occurred, use %tb to see the '
1324 1324 'full traceback.')
1325 1325 print m
1326 1326 self.InteractiveTB.show_exception_only(etype, value)
1327 1327 else:
1328 1328 self.InteractiveTB(etype,value,tb,tb_offset=tb_offset)
1329 1329 if self.InteractiveTB.call_pdb:
1330 1330 # pdb mucks up readline, fix it back
1331 1331 self.set_completer()
1332 1332
1333 1333 except KeyboardInterrupt:
1334 1334 self.write("\nKeyboardInterrupt\n")
1335 1335
1336 1336
1337 1337 def showsyntaxerror(self, filename=None):
1338 1338 """Display the syntax error that just occurred.
1339 1339
1340 1340 This doesn't display a stack trace because there isn't one.
1341 1341
1342 1342 If a filename is given, it is stuffed in the exception instead
1343 1343 of what was there before (because Python's parser always uses
1344 1344 "<string>" when reading from a string).
1345 1345 """
1346 1346 etype, value, last_traceback = sys.exc_info()
1347 1347
1348 1348 # See note about these variables in showtraceback() above
1349 1349 sys.last_type = etype
1350 1350 sys.last_value = value
1351 1351 sys.last_traceback = last_traceback
1352 1352
1353 1353 if filename and etype is SyntaxError:
1354 1354 # Work hard to stuff the correct filename in the exception
1355 1355 try:
1356 1356 msg, (dummy_filename, lineno, offset, line) = value
1357 1357 except:
1358 1358 # Not the format we expect; leave it alone
1359 1359 pass
1360 1360 else:
1361 1361 # Stuff in the right filename
1362 1362 try:
1363 1363 # Assume SyntaxError is a class exception
1364 1364 value = SyntaxError(msg, (filename, lineno, offset, line))
1365 1365 except:
1366 1366 # If that failed, assume SyntaxError is a string
1367 1367 value = msg, (filename, lineno, offset, line)
1368 1368 self.SyntaxTB(etype,value,[])
1369 1369
1370 1370 def edit_syntax_error(self):
1371 1371 """The bottom half of the syntax error handler called in the main loop.
1372 1372
1373 1373 Loop until syntax error is fixed or user cancels.
1374 1374 """
1375 1375
1376 1376 while self.SyntaxTB.last_syntax_error:
1377 1377 # copy and clear last_syntax_error
1378 1378 err = self.SyntaxTB.clear_err_state()
1379 1379 if not self._should_recompile(err):
1380 1380 return
1381 1381 try:
1382 1382 # may set last_syntax_error again if a SyntaxError is raised
1383 1383 self.safe_execfile(err.filename,self.user_ns)
1384 1384 except:
1385 1385 self.showtraceback()
1386 1386 else:
1387 1387 try:
1388 1388 f = file(err.filename)
1389 1389 try:
1390 1390 # This should be inside a display_trap block and I
1391 1391 # think it is.
1392 1392 sys.displayhook(f.read())
1393 1393 finally:
1394 1394 f.close()
1395 1395 except:
1396 1396 self.showtraceback()
1397 1397
1398 1398 def _should_recompile(self,e):
1399 1399 """Utility routine for edit_syntax_error"""
1400 1400
1401 1401 if e.filename in ('<ipython console>','<input>','<string>',
1402 1402 '<console>','<BackgroundJob compilation>',
1403 1403 None):
1404 1404
1405 1405 return False
1406 1406 try:
1407 1407 if (self.autoedit_syntax and
1408 1408 not self.ask_yes_no('Return to editor to correct syntax error? '
1409 1409 '[Y/n] ','y')):
1410 1410 return False
1411 1411 except EOFError:
1412 1412 return False
1413 1413
1414 1414 def int0(x):
1415 1415 try:
1416 1416 return int(x)
1417 1417 except TypeError:
1418 1418 return 0
1419 1419 # always pass integer line and offset values to editor hook
1420 1420 try:
1421 1421 self.hooks.fix_error_editor(e.filename,
1422 1422 int0(e.lineno),int0(e.offset),e.msg)
1423 1423 except TryNext:
1424 1424 warn('Could not open editor')
1425 1425 return False
1426 1426 return True
1427 1427
1428 1428 #-------------------------------------------------------------------------
1429 1429 # Things related to tab completion
1430 1430 #-------------------------------------------------------------------------
1431 1431
1432 1432 def complete(self, text):
1433 1433 """Return a sorted list of all possible completions on text.
1434 1434
1435 1435 Inputs:
1436 1436
1437 1437 - text: a string of text to be completed on.
1438 1438
1439 1439 This is a wrapper around the completion mechanism, similar to what
1440 1440 readline does at the command line when the TAB key is hit. By
1441 1441 exposing it as a method, it can be used by other non-readline
1442 1442 environments (such as GUIs) for text completion.
1443 1443
1444 1444 Simple usage example:
1445 1445
1446 1446 In [7]: x = 'hello'
1447 1447
1448 1448 In [8]: x
1449 1449 Out[8]: 'hello'
1450 1450
1451 1451 In [9]: print x
1452 1452 hello
1453 1453
1454 1454 In [10]: _ip.complete('x.l')
1455 1455 Out[10]: ['x.ljust', 'x.lower', 'x.lstrip']
1456 1456 """
1457 1457
1458 1458 # Inject names into __builtin__ so we can complete on the added names.
1459 1459 with self.builtin_trap:
1460 1460 complete = self.Completer.complete
1461 1461 state = 0
1462 1462 # use a dict so we get unique keys, since ipyhton's multiple
1463 1463 # completers can return duplicates. When we make 2.4 a requirement,
1464 1464 # start using sets instead, which are faster.
1465 1465 comps = {}
1466 1466 while True:
1467 1467 newcomp = complete(text,state,line_buffer=text)
1468 1468 if newcomp is None:
1469 1469 break
1470 1470 comps[newcomp] = 1
1471 1471 state += 1
1472 1472 outcomps = comps.keys()
1473 1473 outcomps.sort()
1474 1474 #print "T:",text,"OC:",outcomps # dbg
1475 1475 #print "vars:",self.user_ns.keys()
1476 1476 return outcomps
1477 1477
1478 1478 def set_custom_completer(self,completer,pos=0):
1479 1479 """Adds a new custom completer function.
1480 1480
1481 1481 The position argument (defaults to 0) is the index in the completers
1482 1482 list where you want the completer to be inserted."""
1483 1483
1484 1484 newcomp = new.instancemethod(completer,self.Completer,
1485 1485 self.Completer.__class__)
1486 1486 self.Completer.matchers.insert(pos,newcomp)
1487 1487
1488 1488 def set_completer(self):
1489 1489 """Reset readline's completer to be our own."""
1490 1490 self.readline.set_completer(self.Completer.complete)
1491 1491
1492 1492 def set_completer_frame(self, frame=None):
1493 1493 """Set the frame of the completer."""
1494 1494 if frame:
1495 1495 self.Completer.namespace = frame.f_locals
1496 1496 self.Completer.global_namespace = frame.f_globals
1497 1497 else:
1498 1498 self.Completer.namespace = self.user_ns
1499 1499 self.Completer.global_namespace = self.user_global_ns
1500 1500
1501 1501 #-------------------------------------------------------------------------
1502 1502 # Things related to readline
1503 1503 #-------------------------------------------------------------------------
1504 1504
1505 1505 def init_readline(self):
1506 1506 """Command history completion/saving/reloading."""
1507 1507
1508 1508 if self.readline_use:
1509 1509 import IPython.utils.rlineimpl as readline
1510 1510
1511 1511 self.rl_next_input = None
1512 1512 self.rl_do_indent = False
1513 1513
1514 1514 if not self.readline_use or not readline.have_readline:
1515 1515 self.has_readline = False
1516 1516 self.readline = None
1517 1517 # Set a number of methods that depend on readline to be no-op
1518 1518 self.savehist = no_op
1519 1519 self.reloadhist = no_op
1520 1520 self.set_completer = no_op
1521 1521 self.set_custom_completer = no_op
1522 1522 self.set_completer_frame = no_op
1523 1523 warn('Readline services not available or not loaded.')
1524 1524 else:
1525 1525 self.has_readline = True
1526 1526 self.readline = readline
1527 1527 sys.modules['readline'] = readline
1528 1528 import atexit
1529 1529 from IPython.core.completer import IPCompleter
1530 1530 self.Completer = IPCompleter(self,
1531 1531 self.user_ns,
1532 1532 self.user_global_ns,
1533 1533 self.readline_omit__names,
1534 1534 self.alias_manager.alias_table)
1535 1535 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1536 1536 self.strdispatchers['complete_command'] = sdisp
1537 1537 self.Completer.custom_completers = sdisp
1538 1538 # Platform-specific configuration
1539 1539 if os.name == 'nt':
1540 1540 self.readline_startup_hook = readline.set_pre_input_hook
1541 1541 else:
1542 1542 self.readline_startup_hook = readline.set_startup_hook
1543 1543
1544 1544 # Load user's initrc file (readline config)
1545 1545 # Or if libedit is used, load editrc.
1546 1546 inputrc_name = os.environ.get('INPUTRC')
1547 1547 if inputrc_name is None:
1548 1548 home_dir = get_home_dir()
1549 1549 if home_dir is not None:
1550 1550 inputrc_name = '.inputrc'
1551 1551 if readline.uses_libedit:
1552 1552 inputrc_name = '.editrc'
1553 1553 inputrc_name = os.path.join(home_dir, inputrc_name)
1554 1554 if os.path.isfile(inputrc_name):
1555 1555 try:
1556 1556 readline.read_init_file(inputrc_name)
1557 1557 except:
1558 1558 warn('Problems reading readline initialization file <%s>'
1559 1559 % inputrc_name)
1560 1560
1561 1561 # save this in sys so embedded copies can restore it properly
1562 1562 sys.ipcompleter = self.Completer.complete
1563 1563 self.set_completer()
1564 1564
1565 1565 # Configure readline according to user's prefs
1566 1566 # This is only done if GNU readline is being used. If libedit
1567 1567 # is being used (as on Leopard) the readline config is
1568 1568 # not run as the syntax for libedit is different.
1569 1569 if not readline.uses_libedit:
1570 1570 for rlcommand in self.readline_parse_and_bind:
1571 1571 #print "loading rl:",rlcommand # dbg
1572 1572 readline.parse_and_bind(rlcommand)
1573 1573
1574 1574 # Remove some chars from the delimiters list. If we encounter
1575 1575 # unicode chars, discard them.
1576 1576 delims = readline.get_completer_delims().encode("ascii", "ignore")
1577 1577 delims = delims.translate(string._idmap,
1578 1578 self.readline_remove_delims)
1579 1579 readline.set_completer_delims(delims)
1580 1580 # otherwise we end up with a monster history after a while:
1581 1581 readline.set_history_length(1000)
1582 1582 try:
1583 1583 #print '*** Reading readline history' # dbg
1584 1584 readline.read_history_file(self.histfile)
1585 1585 except IOError:
1586 1586 pass # It doesn't exist yet.
1587 1587
1588 1588 atexit.register(self.atexit_operations)
1589 1589 del atexit
1590 1590
1591 1591 # Configure auto-indent for all platforms
1592 1592 self.set_autoindent(self.autoindent)
1593 1593
1594 1594 def set_next_input(self, s):
1595 1595 """ Sets the 'default' input string for the next command line.
1596 1596
1597 1597 Requires readline.
1598 1598
1599 1599 Example:
1600 1600
1601 1601 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1602 1602 [D:\ipython]|2> Hello Word_ # cursor is here
1603 1603 """
1604 1604
1605 1605 self.rl_next_input = s
1606 1606
1607 1607 def pre_readline(self):
1608 1608 """readline hook to be used at the start of each line.
1609 1609
1610 1610 Currently it handles auto-indent only."""
1611 1611
1612 1612 #debugx('self.indent_current_nsp','pre_readline:')
1613 1613
1614 1614 if self.rl_do_indent:
1615 1615 self.readline.insert_text(self._indent_current_str())
1616 1616 if self.rl_next_input is not None:
1617 1617 self.readline.insert_text(self.rl_next_input)
1618 1618 self.rl_next_input = None
1619 1619
1620 1620 def _indent_current_str(self):
1621 1621 """return the current level of indentation as a string"""
1622 1622 return self.indent_current_nsp * ' '
1623 1623
1624 1624 #-------------------------------------------------------------------------
1625 1625 # Things related to magics
1626 1626 #-------------------------------------------------------------------------
1627 1627
1628 1628 def init_magics(self):
1629 1629 # Set user colors (don't do it in the constructor above so that it
1630 1630 # doesn't crash if colors option is invalid)
1631 1631 self.magic_colors(self.colors)
1632 1632 # History was moved to a separate module
1633 1633 from . import history
1634 1634 history.init_ipython(self)
1635 1635
1636 1636 def magic(self,arg_s):
1637 1637 """Call a magic function by name.
1638 1638
1639 1639 Input: a string containing the name of the magic function to call and any
1640 1640 additional arguments to be passed to the magic.
1641 1641
1642 1642 magic('name -opt foo bar') is equivalent to typing at the ipython
1643 1643 prompt:
1644 1644
1645 1645 In[1]: %name -opt foo bar
1646 1646
1647 1647 To call a magic without arguments, simply use magic('name').
1648 1648
1649 1649 This provides a proper Python function to call IPython's magics in any
1650 1650 valid Python code you can type at the interpreter, including loops and
1651 1651 compound statements.
1652 1652 """
1653 1653 args = arg_s.split(' ',1)
1654 1654 magic_name = args[0]
1655 1655 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1656 1656
1657 1657 try:
1658 1658 magic_args = args[1]
1659 1659 except IndexError:
1660 1660 magic_args = ''
1661 1661 fn = getattr(self,'magic_'+magic_name,None)
1662 1662 if fn is None:
1663 1663 error("Magic function `%s` not found." % magic_name)
1664 1664 else:
1665 1665 magic_args = self.var_expand(magic_args,1)
1666 1666 with nested(self.builtin_trap,):
1667 1667 result = fn(magic_args)
1668 1668 return result
1669 1669
1670 1670 def define_magic(self, magicname, func):
1671 1671 """Expose own function as magic function for ipython
1672 1672
1673 1673 def foo_impl(self,parameter_s=''):
1674 1674 'My very own magic!. (Use docstrings, IPython reads them).'
1675 1675 print 'Magic function. Passed parameter is between < >:'
1676 1676 print '<%s>' % parameter_s
1677 1677 print 'The self object is:',self
1678 1678
1679 1679 self.define_magic('foo',foo_impl)
1680 1680 """
1681 1681
1682 1682 import new
1683 1683 im = new.instancemethod(func,self, self.__class__)
1684 1684 old = getattr(self, "magic_" + magicname, None)
1685 1685 setattr(self, "magic_" + magicname, im)
1686 1686 return old
1687 1687
1688 1688 #-------------------------------------------------------------------------
1689 1689 # Things related to macros
1690 1690 #-------------------------------------------------------------------------
1691 1691
1692 1692 def define_macro(self, name, themacro):
1693 1693 """Define a new macro
1694 1694
1695 1695 Parameters
1696 1696 ----------
1697 1697 name : str
1698 1698 The name of the macro.
1699 1699 themacro : str or Macro
1700 1700 The action to do upon invoking the macro. If a string, a new
1701 1701 Macro object is created by passing the string to it.
1702 1702 """
1703 1703
1704 1704 from IPython.core import macro
1705 1705
1706 1706 if isinstance(themacro, basestring):
1707 1707 themacro = macro.Macro(themacro)
1708 1708 if not isinstance(themacro, macro.Macro):
1709 1709 raise ValueError('A macro must be a string or a Macro instance.')
1710 1710 self.user_ns[name] = themacro
1711 1711
1712 1712 #-------------------------------------------------------------------------
1713 1713 # Things related to the running of system commands
1714 1714 #-------------------------------------------------------------------------
1715 1715
1716 1716 def system(self, cmd):
1717 1717 """Make a system call, using IPython."""
1718 1718 return self.hooks.shell_hook(self.var_expand(cmd, depth=2))
1719 1719
1720 1720 #-------------------------------------------------------------------------
1721 1721 # Things related to aliases
1722 1722 #-------------------------------------------------------------------------
1723 1723
1724 1724 def init_alias(self):
1725 1725 self.alias_manager = AliasManager(self, config=self.config)
1726 1726 self.ns_table['alias'] = self.alias_manager.alias_table,
1727 1727
1728 1728 #-------------------------------------------------------------------------
1729 1729 # Things related to the running of code
1730 1730 #-------------------------------------------------------------------------
1731 1731
1732 1732 def ex(self, cmd):
1733 1733 """Execute a normal python statement in user namespace."""
1734 1734 with nested(self.builtin_trap,):
1735 1735 exec cmd in self.user_global_ns, self.user_ns
1736 1736
1737 1737 def ev(self, expr):
1738 1738 """Evaluate python expression expr in user namespace.
1739 1739
1740 1740 Returns the result of evaluation
1741 1741 """
1742 1742 with nested(self.builtin_trap,):
1743 1743 return eval(expr, self.user_global_ns, self.user_ns)
1744 1744
1745 1745 def mainloop(self, display_banner=None):
1746 1746 """Start the mainloop.
1747 1747
1748 1748 If an optional banner argument is given, it will override the
1749 1749 internally created default banner.
1750 1750 """
1751 1751
1752 1752 with nested(self.builtin_trap, self.display_trap):
1753 1753
1754 1754 # if you run stuff with -c <cmd>, raw hist is not updated
1755 1755 # ensure that it's in sync
1756 1756 if len(self.input_hist) != len (self.input_hist_raw):
1757 1757 self.input_hist_raw = InputList(self.input_hist)
1758 1758
1759 1759 while 1:
1760 1760 try:
1761 1761 self.interact(display_banner=display_banner)
1762 1762 #self.interact_with_readline()
1763 1763 # XXX for testing of a readline-decoupled repl loop, call
1764 1764 # interact_with_readline above
1765 1765 break
1766 1766 except KeyboardInterrupt:
1767 1767 # this should not be necessary, but KeyboardInterrupt
1768 1768 # handling seems rather unpredictable...
1769 1769 self.write("\nKeyboardInterrupt in interact()\n")
1770 1770
1771 1771 def interact_prompt(self):
1772 1772 """ Print the prompt (in read-eval-print loop)
1773 1773
1774 1774 Provided for those who want to implement their own read-eval-print loop (e.g. GUIs), not
1775 1775 used in standard IPython flow.
1776 1776 """
1777 1777 if self.more:
1778 1778 try:
1779 1779 prompt = self.hooks.generate_prompt(True)
1780 1780 except:
1781 1781 self.showtraceback()
1782 1782 if self.autoindent:
1783 1783 self.rl_do_indent = True
1784 1784
1785 1785 else:
1786 1786 try:
1787 1787 prompt = self.hooks.generate_prompt(False)
1788 1788 except:
1789 1789 self.showtraceback()
1790 1790 self.write(prompt)
1791 1791
1792 1792 def interact_handle_input(self,line):
1793 1793 """ Handle the input line (in read-eval-print loop)
1794 1794
1795 1795 Provided for those who want to implement their own read-eval-print loop (e.g. GUIs), not
1796 1796 used in standard IPython flow.
1797 1797 """
1798 1798 if line.lstrip() == line:
1799 1799 self.shadowhist.add(line.strip())
1800 1800 lineout = self.prefilter_manager.prefilter_lines(line,self.more)
1801 1801
1802 1802 if line.strip():
1803 1803 if self.more:
1804 1804 self.input_hist_raw[-1] += '%s\n' % line
1805 1805 else:
1806 1806 self.input_hist_raw.append('%s\n' % line)
1807 1807
1808 1808
1809 1809 self.more = self.push_line(lineout)
1810 1810 if (self.SyntaxTB.last_syntax_error and
1811 1811 self.autoedit_syntax):
1812 1812 self.edit_syntax_error()
1813 1813
1814 1814 def interact_with_readline(self):
1815 1815 """ Demo of using interact_handle_input, interact_prompt
1816 1816
1817 1817 This is the main read-eval-print loop. If you need to implement your own (e.g. for GUI),
1818 1818 it should work like this.
1819 1819 """
1820 1820 self.readline_startup_hook(self.pre_readline)
1821 1821 while not self.exit_now:
1822 1822 self.interact_prompt()
1823 1823 if self.more:
1824 1824 self.rl_do_indent = True
1825 1825 else:
1826 1826 self.rl_do_indent = False
1827 1827 line = raw_input_original().decode(self.stdin_encoding)
1828 1828 self.interact_handle_input(line)
1829 1829
1830 1830 def interact(self, display_banner=None):
1831 1831 """Closely emulate the interactive Python console."""
1832 1832
1833 1833 # batch run -> do not interact
1834 1834 if self.exit_now:
1835 1835 return
1836 1836
1837 1837 if display_banner is None:
1838 1838 display_banner = self.display_banner
1839 1839 if display_banner:
1840 1840 self.show_banner()
1841 1841
1842 1842 more = 0
1843 1843
1844 1844 # Mark activity in the builtins
1845 1845 __builtin__.__dict__['__IPYTHON__active'] += 1
1846 1846
1847 1847 if self.has_readline:
1848 1848 self.readline_startup_hook(self.pre_readline)
1849 1849 # exit_now is set by a call to %Exit or %Quit, through the
1850 1850 # ask_exit callback.
1851 1851
1852 1852 while not self.exit_now:
1853 1853 self.hooks.pre_prompt_hook()
1854 1854 if more:
1855 1855 try:
1856 1856 prompt = self.hooks.generate_prompt(True)
1857 1857 except:
1858 1858 self.showtraceback()
1859 1859 if self.autoindent:
1860 1860 self.rl_do_indent = True
1861 1861
1862 1862 else:
1863 1863 try:
1864 1864 prompt = self.hooks.generate_prompt(False)
1865 1865 except:
1866 1866 self.showtraceback()
1867 1867 try:
1868 1868 line = self.raw_input(prompt, more)
1869 1869 if self.exit_now:
1870 1870 # quick exit on sys.std[in|out] close
1871 1871 break
1872 1872 if self.autoindent:
1873 1873 self.rl_do_indent = False
1874 1874
1875 1875 except KeyboardInterrupt:
1876 1876 #double-guard against keyboardinterrupts during kbdint handling
1877 1877 try:
1878 1878 self.write('\nKeyboardInterrupt\n')
1879 1879 self.resetbuffer()
1880 1880 # keep cache in sync with the prompt counter:
1881 1881 self.outputcache.prompt_count -= 1
1882 1882
1883 1883 if self.autoindent:
1884 1884 self.indent_current_nsp = 0
1885 1885 more = 0
1886 1886 except KeyboardInterrupt:
1887 1887 pass
1888 1888 except EOFError:
1889 1889 if self.autoindent:
1890 1890 self.rl_do_indent = False
1891 1891 if self.has_readline:
1892 1892 self.readline_startup_hook(None)
1893 1893 self.write('\n')
1894 1894 self.exit()
1895 1895 except bdb.BdbQuit:
1896 1896 warn('The Python debugger has exited with a BdbQuit exception.\n'
1897 1897 'Because of how pdb handles the stack, it is impossible\n'
1898 1898 'for IPython to properly format this particular exception.\n'
1899 1899 'IPython will resume normal operation.')
1900 1900 except:
1901 1901 # exceptions here are VERY RARE, but they can be triggered
1902 1902 # asynchronously by signal handlers, for example.
1903 1903 self.showtraceback()
1904 1904 else:
1905 1905 more = self.push_line(line)
1906 1906 if (self.SyntaxTB.last_syntax_error and
1907 1907 self.autoedit_syntax):
1908 1908 self.edit_syntax_error()
1909 1909
1910 1910 # We are off again...
1911 1911 __builtin__.__dict__['__IPYTHON__active'] -= 1
1912 1912
1913 1913 # Turn off the exit flag, so the mainloop can be restarted if desired
1914 1914 self.exit_now = False
1915 1915
1916 1916 def safe_execfile(self, fname, *where, **kw):
1917 1917 """A safe version of the builtin execfile().
1918 1918
1919 1919 This version will never throw an exception, but instead print
1920 1920 helpful error messages to the screen. This only works on pure
1921 1921 Python files with the .py extension.
1922 1922
1923 1923 Parameters
1924 1924 ----------
1925 1925 fname : string
1926 1926 The name of the file to be executed.
1927 1927 where : tuple
1928 1928 One or two namespaces, passed to execfile() as (globals,locals).
1929 1929 If only one is given, it is passed as both.
1930 1930 exit_ignore : bool (False)
1931 1931 If True, then silence SystemExit for non-zero status (it is always
1932 1932 silenced for zero status, as it is so common).
1933 1933 """
1934 1934 kw.setdefault('exit_ignore', False)
1935 1935
1936 1936 fname = os.path.abspath(os.path.expanduser(fname))
1937 1937
1938 1938 # Make sure we have a .py file
1939 1939 if not fname.endswith('.py'):
1940 1940 warn('File must end with .py to be run using execfile: <%s>' % fname)
1941 1941
1942 1942 # Make sure we can open the file
1943 1943 try:
1944 1944 with open(fname) as thefile:
1945 1945 pass
1946 1946 except:
1947 1947 warn('Could not open file <%s> for safe execution.' % fname)
1948 1948 return
1949 1949
1950 1950 # Find things also in current directory. This is needed to mimic the
1951 1951 # behavior of running a script from the system command line, where
1952 1952 # Python inserts the script's directory into sys.path
1953 1953 dname = os.path.dirname(fname)
1954 1954
1955 1955 with prepended_to_syspath(dname):
1956 1956 try:
1957 1957 execfile(fname,*where)
1958 1958 except SystemExit, status:
1959 1959 # If the call was made with 0 or None exit status (sys.exit(0)
1960 1960 # or sys.exit() ), don't bother showing a traceback, as both of
1961 1961 # these are considered normal by the OS:
1962 1962 # > python -c'import sys;sys.exit(0)'; echo $?
1963 1963 # 0
1964 1964 # > python -c'import sys;sys.exit()'; echo $?
1965 1965 # 0
1966 1966 # For other exit status, we show the exception unless
1967 1967 # explicitly silenced, but only in short form.
1968 1968 if status.code not in (0, None) and not kw['exit_ignore']:
1969 1969 self.showtraceback(exception_only=True)
1970 1970 except:
1971 1971 self.showtraceback()
1972 1972
1973 1973 def safe_execfile_ipy(self, fname):
1974 1974 """Like safe_execfile, but for .ipy files with IPython syntax.
1975 1975
1976 1976 Parameters
1977 1977 ----------
1978 1978 fname : str
1979 1979 The name of the file to execute. The filename must have a
1980 1980 .ipy extension.
1981 1981 """
1982 1982 fname = os.path.abspath(os.path.expanduser(fname))
1983 1983
1984 1984 # Make sure we have a .py file
1985 1985 if not fname.endswith('.ipy'):
1986 1986 warn('File must end with .py to be run using execfile: <%s>' % fname)
1987 1987
1988 1988 # Make sure we can open the file
1989 1989 try:
1990 1990 with open(fname) as thefile:
1991 1991 pass
1992 1992 except:
1993 1993 warn('Could not open file <%s> for safe execution.' % fname)
1994 1994 return
1995 1995
1996 1996 # Find things also in current directory. This is needed to mimic the
1997 1997 # behavior of running a script from the system command line, where
1998 1998 # Python inserts the script's directory into sys.path
1999 1999 dname = os.path.dirname(fname)
2000 2000
2001 2001 with prepended_to_syspath(dname):
2002 2002 try:
2003 2003 with open(fname) as thefile:
2004 2004 script = thefile.read()
2005 2005 # self.runlines currently captures all exceptions
2006 2006 # raise in user code. It would be nice if there were
2007 2007 # versions of runlines, execfile that did raise, so
2008 2008 # we could catch the errors.
2009 2009 self.runlines(script, clean=True)
2010 2010 except:
2011 2011 self.showtraceback()
2012 2012 warn('Unknown failure executing file: <%s>' % fname)
2013 2013
2014 2014 def _is_secondary_block_start(self, s):
2015 2015 if not s.endswith(':'):
2016 2016 return False
2017 2017 if (s.startswith('elif') or
2018 2018 s.startswith('else') or
2019 2019 s.startswith('except') or
2020 2020 s.startswith('finally')):
2021 2021 return True
2022 2022
2023 2023 def cleanup_ipy_script(self, script):
2024 2024 """Make a script safe for self.runlines()
2025 2025
2026 2026 Currently, IPython is lines based, with blocks being detected by
2027 2027 empty lines. This is a problem for block based scripts that may
2028 2028 not have empty lines after blocks. This script adds those empty
2029 2029 lines to make scripts safe for running in the current line based
2030 2030 IPython.
2031 2031 """
2032 2032 res = []
2033 2033 lines = script.splitlines()
2034 2034 level = 0
2035 2035
2036 2036 for l in lines:
2037 2037 lstripped = l.lstrip()
2038 2038 stripped = l.strip()
2039 2039 if not stripped:
2040 2040 continue
2041 2041 newlevel = len(l) - len(lstripped)
2042 2042 if level > 0 and newlevel == 0 and \
2043 2043 not self._is_secondary_block_start(stripped):
2044 2044 # add empty line
2045 2045 res.append('')
2046 2046 res.append(l)
2047 2047 level = newlevel
2048 2048
2049 2049 return '\n'.join(res) + '\n'
2050 2050
2051 2051 def runlines(self, lines, clean=False):
2052 2052 """Run a string of one or more lines of source.
2053 2053
2054 2054 This method is capable of running a string containing multiple source
2055 2055 lines, as if they had been entered at the IPython prompt. Since it
2056 2056 exposes IPython's processing machinery, the given strings can contain
2057 2057 magic calls (%magic), special shell access (!cmd), etc.
2058 2058 """
2059 2059
2060 2060 if isinstance(lines, (list, tuple)):
2061 2061 lines = '\n'.join(lines)
2062 2062
2063 2063 if clean:
2064 2064 lines = self.cleanup_ipy_script(lines)
2065 2065
2066 2066 # We must start with a clean buffer, in case this is run from an
2067 2067 # interactive IPython session (via a magic, for example).
2068 2068 self.resetbuffer()
2069 2069 lines = lines.splitlines()
2070 2070 more = 0
2071 2071
2072 2072 with nested(self.builtin_trap, self.display_trap):
2073 2073 for line in lines:
2074 2074 # skip blank lines so we don't mess up the prompt counter, but do
2075 2075 # NOT skip even a blank line if we are in a code block (more is
2076 2076 # true)
2077 2077
2078 2078 if line or more:
2079 2079 # push to raw history, so hist line numbers stay in sync
2080 2080 self.input_hist_raw.append("# " + line + "\n")
2081 2081 prefiltered = self.prefilter_manager.prefilter_lines(line,more)
2082 2082 more = self.push_line(prefiltered)
2083 2083 # IPython's runsource returns None if there was an error
2084 2084 # compiling the code. This allows us to stop processing right
2085 2085 # away, so the user gets the error message at the right place.
2086 2086 if more is None:
2087 2087 break
2088 2088 else:
2089 2089 self.input_hist_raw.append("\n")
2090 2090 # final newline in case the input didn't have it, so that the code
2091 2091 # actually does get executed
2092 2092 if more:
2093 2093 self.push_line('\n')
2094 2094
2095 2095 def runsource(self, source, filename='<input>', symbol='single'):
2096 2096 """Compile and run some source in the interpreter.
2097 2097
2098 2098 Arguments are as for compile_command().
2099 2099
2100 2100 One several things can happen:
2101 2101
2102 2102 1) The input is incorrect; compile_command() raised an
2103 2103 exception (SyntaxError or OverflowError). A syntax traceback
2104 2104 will be printed by calling the showsyntaxerror() method.
2105 2105
2106 2106 2) The input is incomplete, and more input is required;
2107 2107 compile_command() returned None. Nothing happens.
2108 2108
2109 2109 3) The input is complete; compile_command() returned a code
2110 2110 object. The code is executed by calling self.runcode() (which
2111 2111 also handles run-time exceptions, except for SystemExit).
2112 2112
2113 2113 The return value is:
2114 2114
2115 2115 - True in case 2
2116 2116
2117 2117 - False in the other cases, unless an exception is raised, where
2118 2118 None is returned instead. This can be used by external callers to
2119 2119 know whether to continue feeding input or not.
2120 2120
2121 2121 The return value can be used to decide whether to use sys.ps1 or
2122 2122 sys.ps2 to prompt the next line."""
2123 2123
2124 2124 # if the source code has leading blanks, add 'if 1:\n' to it
2125 2125 # this allows execution of indented pasted code. It is tempting
2126 2126 # to add '\n' at the end of source to run commands like ' a=1'
2127 2127 # directly, but this fails for more complicated scenarios
2128 2128 source=source.encode(self.stdin_encoding)
2129 2129 if source[:1] in [' ', '\t']:
2130 2130 source = 'if 1:\n%s' % source
2131 2131
2132 2132 try:
2133 2133 code = self.compile(source,filename,symbol)
2134 2134 except (OverflowError, SyntaxError, ValueError, TypeError, MemoryError):
2135 2135 # Case 1
2136 2136 self.showsyntaxerror(filename)
2137 2137 return None
2138 2138
2139 2139 if code is None:
2140 2140 # Case 2
2141 2141 return True
2142 2142
2143 2143 # Case 3
2144 2144 # We store the code object so that threaded shells and
2145 2145 # custom exception handlers can access all this info if needed.
2146 2146 # The source corresponding to this can be obtained from the
2147 2147 # buffer attribute as '\n'.join(self.buffer).
2148 2148 self.code_to_run = code
2149 2149 # now actually execute the code object
2150 2150 if self.runcode(code) == 0:
2151 2151 return False
2152 2152 else:
2153 2153 return None
2154 2154
2155 2155 def runcode(self,code_obj):
2156 2156 """Execute a code object.
2157 2157
2158 2158 When an exception occurs, self.showtraceback() is called to display a
2159 2159 traceback.
2160 2160
2161 2161 Return value: a flag indicating whether the code to be run completed
2162 2162 successfully:
2163 2163
2164 2164 - 0: successful execution.
2165 2165 - 1: an error occurred.
2166 2166 """
2167 2167
2168 2168 # Set our own excepthook in case the user code tries to call it
2169 2169 # directly, so that the IPython crash handler doesn't get triggered
2170 2170 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2171 2171
2172 2172 # we save the original sys.excepthook in the instance, in case config
2173 2173 # code (such as magics) needs access to it.
2174 2174 self.sys_excepthook = old_excepthook
2175 2175 outflag = 1 # happens in more places, so it's easier as default
2176 2176 try:
2177 2177 try:
2178 2178 self.hooks.pre_runcode_hook()
2179 2179 exec code_obj in self.user_global_ns, self.user_ns
2180 2180 finally:
2181 2181 # Reset our crash handler in place
2182 2182 sys.excepthook = old_excepthook
2183 2183 except SystemExit:
2184 2184 self.resetbuffer()
2185 2185 self.showtraceback(exception_only=True)
2186 2186 warn("To exit: use any of 'exit', 'quit', %Exit or Ctrl-D.", level=1)
2187 2187 except self.custom_exceptions:
2188 2188 etype,value,tb = sys.exc_info()
2189 2189 self.CustomTB(etype,value,tb)
2190 2190 except:
2191 2191 self.showtraceback()
2192 2192 else:
2193 2193 outflag = 0
2194 2194 if softspace(sys.stdout, 0):
2195 2195 print
2196 2196 # Flush out code object which has been run (and source)
2197 2197 self.code_to_run = None
2198 2198 return outflag
2199 2199
2200 2200 def push_line(self, line):
2201 2201 """Push a line to the interpreter.
2202 2202
2203 2203 The line should not have a trailing newline; it may have
2204 2204 internal newlines. The line is appended to a buffer and the
2205 2205 interpreter's runsource() method is called with the
2206 2206 concatenated contents of the buffer as source. If this
2207 2207 indicates that the command was executed or invalid, the buffer
2208 2208 is reset; otherwise, the command is incomplete, and the buffer
2209 2209 is left as it was after the line was appended. The return
2210 2210 value is 1 if more input is required, 0 if the line was dealt
2211 2211 with in some way (this is the same as runsource()).
2212 2212 """
2213 2213
2214 2214 # autoindent management should be done here, and not in the
2215 2215 # interactive loop, since that one is only seen by keyboard input. We
2216 2216 # need this done correctly even for code run via runlines (which uses
2217 2217 # push).
2218 2218
2219 2219 #print 'push line: <%s>' % line # dbg
2220 2220 for subline in line.splitlines():
2221 2221 self._autoindent_update(subline)
2222 2222 self.buffer.append(line)
2223 2223 more = self.runsource('\n'.join(self.buffer), self.filename)
2224 2224 if not more:
2225 2225 self.resetbuffer()
2226 2226 return more
2227 2227
2228 2228 def _autoindent_update(self,line):
2229 2229 """Keep track of the indent level."""
2230 2230
2231 2231 #debugx('line')
2232 2232 #debugx('self.indent_current_nsp')
2233 2233 if self.autoindent:
2234 2234 if line:
2235 2235 inisp = num_ini_spaces(line)
2236 2236 if inisp < self.indent_current_nsp:
2237 2237 self.indent_current_nsp = inisp
2238 2238
2239 2239 if line[-1] == ':':
2240 2240 self.indent_current_nsp += 4
2241 2241 elif dedent_re.match(line):
2242 2242 self.indent_current_nsp -= 4
2243 2243 else:
2244 2244 self.indent_current_nsp = 0
2245 2245
2246 2246 def resetbuffer(self):
2247 2247 """Reset the input buffer."""
2248 2248 self.buffer[:] = []
2249 2249
2250 2250 def raw_input(self,prompt='',continue_prompt=False):
2251 2251 """Write a prompt and read a line.
2252 2252
2253 2253 The returned line does not include the trailing newline.
2254 2254 When the user enters the EOF key sequence, EOFError is raised.
2255 2255
2256 2256 Optional inputs:
2257 2257
2258 2258 - prompt(''): a string to be printed to prompt the user.
2259 2259
2260 2260 - continue_prompt(False): whether this line is the first one or a
2261 2261 continuation in a sequence of inputs.
2262 2262 """
2263 2263 # growl.notify("raw_input: ", "prompt = %r\ncontinue_prompt = %s" % (prompt, continue_prompt))
2264 2264
2265 2265 # Code run by the user may have modified the readline completer state.
2266 2266 # We must ensure that our completer is back in place.
2267 2267
2268 2268 if self.has_readline:
2269 2269 self.set_completer()
2270 2270
2271 2271 try:
2272 2272 line = raw_input_original(prompt).decode(self.stdin_encoding)
2273 2273 except ValueError:
2274 2274 warn("\n********\nYou or a %run:ed script called sys.stdin.close()"
2275 2275 " or sys.stdout.close()!\nExiting IPython!")
2276 2276 self.ask_exit()
2277 2277 return ""
2278 2278
2279 2279 # Try to be reasonably smart about not re-indenting pasted input more
2280 2280 # than necessary. We do this by trimming out the auto-indent initial
2281 2281 # spaces, if the user's actual input started itself with whitespace.
2282 2282 #debugx('self.buffer[-1]')
2283 2283
2284 2284 if self.autoindent:
2285 2285 if num_ini_spaces(line) > self.indent_current_nsp:
2286 2286 line = line[self.indent_current_nsp:]
2287 2287 self.indent_current_nsp = 0
2288 2288
2289 2289 # store the unfiltered input before the user has any chance to modify
2290 2290 # it.
2291 2291 if line.strip():
2292 2292 if continue_prompt:
2293 2293 self.input_hist_raw[-1] += '%s\n' % line
2294 2294 if self.has_readline and self.readline_use:
2295 2295 try:
2296 2296 histlen = self.readline.get_current_history_length()
2297 2297 if histlen > 1:
2298 2298 newhist = self.input_hist_raw[-1].rstrip()
2299 2299 self.readline.remove_history_item(histlen-1)
2300 2300 self.readline.replace_history_item(histlen-2,
2301 2301 newhist.encode(self.stdin_encoding))
2302 2302 except AttributeError:
2303 2303 pass # re{move,place}_history_item are new in 2.4.
2304 2304 else:
2305 2305 self.input_hist_raw.append('%s\n' % line)
2306 2306 # only entries starting at first column go to shadow history
2307 2307 if line.lstrip() == line:
2308 2308 self.shadowhist.add(line.strip())
2309 2309 elif not continue_prompt:
2310 2310 self.input_hist_raw.append('\n')
2311 2311 try:
2312 2312 lineout = self.prefilter_manager.prefilter_lines(line,continue_prompt)
2313 2313 except:
2314 2314 # blanket except, in case a user-defined prefilter crashes, so it
2315 2315 # can't take all of ipython with it.
2316 2316 self.showtraceback()
2317 2317 return ''
2318 2318 else:
2319 2319 return lineout
2320 2320
2321 2321 #-------------------------------------------------------------------------
2322 2322 # Working with components
2323 2323 #-------------------------------------------------------------------------
2324 2324
2325 2325 def get_component(self, name=None, klass=None):
2326 2326 """Fetch a component by name and klass in my tree."""
2327 2327 c = Component.get_instances(root=self, name=name, klass=klass)
2328 2328 if len(c) == 0:
2329 2329 return None
2330 2330 if len(c) == 1:
2331 2331 return c[0]
2332 2332 else:
2333 2333 return c
2334 2334
2335 2335 #-------------------------------------------------------------------------
2336 2336 # IPython extensions
2337 2337 #-------------------------------------------------------------------------
2338 2338
2339 2339 def load_extension(self, module_str):
2340 2340 """Load an IPython extension by its module name.
2341 2341
2342 2342 An IPython extension is an importable Python module that has
2343 2343 a function with the signature::
2344 2344
2345 2345 def load_ipython_extension(ipython):
2346 2346 # Do things with ipython
2347 2347
2348 2348 This function is called after your extension is imported and the
2349 2349 currently active :class:`InteractiveShell` instance is passed as
2350 2350 the only argument. You can do anything you want with IPython at
2351 2351 that point, including defining new magic and aliases, adding new
2352 2352 components, etc.
2353 2353
2354 2354 The :func:`load_ipython_extension` will be called again is you
2355 2355 load or reload the extension again. It is up to the extension
2356 2356 author to add code to manage that.
2357 2357
2358 2358 You can put your extension modules anywhere you want, as long as
2359 2359 they can be imported by Python's standard import mechanism. However,
2360 2360 to make it easy to write extensions, you can also put your extensions
2361 2361 in ``os.path.join(self.ipython_dir, 'extensions')``. This directory
2362 2362 is added to ``sys.path`` automatically.
2363
2364 If :func:`load_ipython_extension` returns anything, this function
2365 will return that object.
2363 2366 """
2364 2367 from IPython.utils.syspathcontext import prepended_to_syspath
2365 2368
2366 2369 if module_str not in sys.modules:
2367 2370 with prepended_to_syspath(self.ipython_extension_dir):
2368 2371 __import__(module_str)
2369 2372 mod = sys.modules[module_str]
2370 2373 return self._call_load_ipython_extension(mod)
2371 2374
2372 2375 def unload_extension(self, module_str):
2373 2376 """Unload an IPython extension by its module name.
2374 2377
2375 2378 This function looks up the extension's name in ``sys.modules`` and
2376 2379 simply calls ``mod.unload_ipython_extension(self)``.
2377 2380 """
2378 2381 if module_str in sys.modules:
2379 2382 mod = sys.modules[module_str]
2380 2383 self._call_unload_ipython_extension(mod)
2381 2384
2382 2385 def reload_extension(self, module_str):
2383 2386 """Reload an IPython extension by calling reload.
2384 2387
2385 2388 If the module has not been loaded before,
2386 2389 :meth:`InteractiveShell.load_extension` is called. Otherwise
2387 2390 :func:`reload` is called and then the :func:`load_ipython_extension`
2388 2391 function of the module, if it exists is called.
2389 2392 """
2390 2393 from IPython.utils.syspathcontext import prepended_to_syspath
2391 2394
2392 2395 with prepended_to_syspath(self.ipython_extension_dir):
2393 2396 if module_str in sys.modules:
2394 2397 mod = sys.modules[module_str]
2395 2398 reload(mod)
2396 2399 self._call_load_ipython_extension(mod)
2397 2400 else:
2398 2401 self.load_extension(module_str)
2399 2402
2400 2403 def _call_load_ipython_extension(self, mod):
2401 2404 if hasattr(mod, 'load_ipython_extension'):
2402 2405 return mod.load_ipython_extension(self)
2403 2406
2404 2407 def _call_unload_ipython_extension(self, mod):
2405 2408 if hasattr(mod, 'unload_ipython_extension'):
2406 2409 return mod.unload_ipython_extension(self)
2407 2410
2408 2411 #-------------------------------------------------------------------------
2409 2412 # Things related to the prefilter
2410 2413 #-------------------------------------------------------------------------
2411 2414
2412 2415 def init_prefilter(self):
2413 2416 self.prefilter_manager = PrefilterManager(self, config=self.config)
2414 2417 # Ultimately this will be refactored in the new interpreter code, but
2415 2418 # for now, we should expose the main prefilter method (there's legacy
2416 2419 # code out there that may rely on this).
2417 2420 self.prefilter = self.prefilter_manager.prefilter_lines
2418 2421
2419 2422 #-------------------------------------------------------------------------
2420 2423 # Utilities
2421 2424 #-------------------------------------------------------------------------
2422 2425
2423 2426 def getoutput(self, cmd):
2424 2427 return getoutput(self.var_expand(cmd,depth=2),
2425 2428 header=self.system_header,
2426 2429 verbose=self.system_verbose)
2427 2430
2428 2431 def getoutputerror(self, cmd):
2429 2432 return getoutputerror(self.var_expand(cmd,depth=2),
2430 2433 header=self.system_header,
2431 2434 verbose=self.system_verbose)
2432 2435
2433 2436 def var_expand(self,cmd,depth=0):
2434 2437 """Expand python variables in a string.
2435 2438
2436 2439 The depth argument indicates how many frames above the caller should
2437 2440 be walked to look for the local namespace where to expand variables.
2438 2441
2439 2442 The global namespace for expansion is always the user's interactive
2440 2443 namespace.
2441 2444 """
2442 2445
2443 2446 return str(ItplNS(cmd,
2444 2447 self.user_ns, # globals
2445 2448 # Skip our own frame in searching for locals:
2446 2449 sys._getframe(depth+1).f_locals # locals
2447 2450 ))
2448 2451
2449 2452 def mktempfile(self,data=None):
2450 2453 """Make a new tempfile and return its filename.
2451 2454
2452 2455 This makes a call to tempfile.mktemp, but it registers the created
2453 2456 filename internally so ipython cleans it up at exit time.
2454 2457
2455 2458 Optional inputs:
2456 2459
2457 2460 - data(None): if data is given, it gets written out to the temp file
2458 2461 immediately, and the file is closed again."""
2459 2462
2460 2463 filename = tempfile.mktemp('.py','ipython_edit_')
2461 2464 self.tempfiles.append(filename)
2462 2465
2463 2466 if data:
2464 2467 tmp_file = open(filename,'w')
2465 2468 tmp_file.write(data)
2466 2469 tmp_file.close()
2467 2470 return filename
2468 2471
2469 2472 def write(self,data):
2470 2473 """Write a string to the default output"""
2471 2474 Term.cout.write(data)
2472 2475
2473 2476 def write_err(self,data):
2474 2477 """Write a string to the default error output"""
2475 2478 Term.cerr.write(data)
2476 2479
2477 2480 def ask_yes_no(self,prompt,default=True):
2478 2481 if self.quiet:
2479 2482 return True
2480 2483 return ask_yes_no(prompt,default)
2481 2484
2482 2485 #-------------------------------------------------------------------------
2483 2486 # Things related to GUI support and pylab
2484 2487 #-------------------------------------------------------------------------
2485 2488
2486 2489 def enable_pylab(self, gui=None):
2487 2490 """Activate pylab support at runtime.
2488 2491
2489 2492 This turns on support for matplotlib, preloads into the interactive
2490 2493 namespace all of numpy and pylab, and configures IPython to correcdtly
2491 2494 interact with the GUI event loop. The GUI backend to be used can be
2492 2495 optionally selected with the optional :param:`gui` argument.
2493 2496
2494 2497 Parameters
2495 2498 ----------
2496 2499 gui : optional, string
2497 2500
2498 2501 If given, dictates the choice of matplotlib GUI backend to use
2499 2502 (should be one of IPython's supported backends, 'tk', 'qt', 'wx' or
2500 2503 'gtk'), otherwise we use the default chosen by matplotlib (as
2501 2504 dictated by the matplotlib build-time options plus the user's
2502 2505 matplotlibrc configuration file).
2503 2506 """
2504 2507 # We want to prevent the loading of pylab to pollute the user's
2505 2508 # namespace as shown by the %who* magics, so we execute the activation
2506 2509 # code in an empty namespace, and we update *both* user_ns and
2507 # user_config_ns with this information.
2510 # user_ns_hidden with this information.
2508 2511 ns = {}
2509 2512 gui = pylab_activate(ns, gui)
2510 2513 self.user_ns.update(ns)
2511 self.user_config_ns.update(ns)
2514 self.user_ns_hidden.update(ns)
2512 2515 # Now we must activate the gui pylab wants to use, and fix %run to take
2513 2516 # plot updates into account
2514 2517 enable_gui(gui)
2515 2518 self.magic_run = self._pylab_magic_run
2516 2519
2517 2520 #-------------------------------------------------------------------------
2518 2521 # Things related to IPython exiting
2519 2522 #-------------------------------------------------------------------------
2520 2523
2521 2524 def ask_exit(self):
2522 2525 """ Ask the shell to exit. Can be overiden and used as a callback. """
2523 2526 self.exit_now = True
2524 2527
2525 2528 def exit(self):
2526 2529 """Handle interactive exit.
2527 2530
2528 2531 This method calls the ask_exit callback."""
2529 2532 if self.confirm_exit:
2530 2533 if self.ask_yes_no('Do you really want to exit ([y]/n)?','y'):
2531 2534 self.ask_exit()
2532 2535 else:
2533 2536 self.ask_exit()
2534 2537
2535 2538 def atexit_operations(self):
2536 2539 """This will be executed at the time of exit.
2537 2540
2538 2541 Saving of persistent data should be performed here.
2539 2542 """
2540 2543 self.savehist()
2541 2544
2542 2545 # Cleanup all tempfiles left around
2543 2546 for tfile in self.tempfiles:
2544 2547 try:
2545 2548 os.unlink(tfile)
2546 2549 except OSError:
2547 2550 pass
2548 2551
2549 2552 # Clear all user namespaces to release all references cleanly.
2550 2553 self.reset()
2551 2554
2552 2555 # Run user hooks
2553 2556 self.hooks.shutdown_hook()
2554 2557
2555 2558 def cleanup(self):
2556 2559 self.restore_sys_module_state()
2557 2560
2558 2561
@@ -1,3618 +1,3618 b''
1 1 # encoding: utf-8
2 2 """Magic functions for InteractiveShell.
3 3 """
4 4
5 5 #-----------------------------------------------------------------------------
6 6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
7 7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
8 8 # Copyright (C) 2008-2009 The IPython Development Team
9 9
10 10 # Distributed under the terms of the BSD License. The full license is in
11 11 # the file COPYING, distributed as part of this software.
12 12 #-----------------------------------------------------------------------------
13 13
14 14 #-----------------------------------------------------------------------------
15 15 # Imports
16 16 #-----------------------------------------------------------------------------
17 17
18 18 import __builtin__
19 19 import bdb
20 20 import inspect
21 21 import os
22 22 import sys
23 23 import shutil
24 24 import re
25 25 import time
26 26 import textwrap
27 27 import types
28 28 from cStringIO import StringIO
29 29 from getopt import getopt,GetoptError
30 30 from pprint import pformat
31 31
32 32 # cProfile was added in Python2.5
33 33 try:
34 34 import cProfile as profile
35 35 import pstats
36 36 except ImportError:
37 37 # profile isn't bundled by default in Debian for license reasons
38 38 try:
39 39 import profile,pstats
40 40 except ImportError:
41 41 profile = pstats = None
42 42
43 43 import IPython
44 44 from IPython.core import debugger, oinspect
45 45 from IPython.core.error import TryNext
46 46 from IPython.core.error import UsageError
47 47 from IPython.core.fakemodule import FakeModule
48 48 from IPython.core.macro import Macro
49 49 from IPython.core.page import page
50 50 from IPython.core.prefilter import ESC_MAGIC
51 51 from IPython.lib.pylabtools import mpl_runner
52 52 from IPython.lib.inputhook import enable_gui
53 53 from IPython.external.Itpl import itpl, printpl
54 54 from IPython.testing import decorators as testdec
55 55 from IPython.utils.io import Term, file_read, nlprint
56 56 from IPython.utils.path import get_py_filename
57 57 from IPython.utils.process import arg_split, abbrev_cwd
58 58 from IPython.utils.terminal import set_term_title
59 59 from IPython.utils.text import LSString, SList, StringTypes
60 60 from IPython.utils.timing import clock, clock2
61 61 from IPython.utils.warn import warn, error
62 62 from IPython.utils.ipstruct import Struct
63 63 import IPython.utils.generics
64 64
65 65 #-----------------------------------------------------------------------------
66 66 # Utility functions
67 67 #-----------------------------------------------------------------------------
68 68
69 69 def on_off(tag):
70 70 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
71 71 return ['OFF','ON'][tag]
72 72
73 73 class Bunch: pass
74 74
75 75 def compress_dhist(dh):
76 76 head, tail = dh[:-10], dh[-10:]
77 77
78 78 newhead = []
79 79 done = set()
80 80 for h in head:
81 81 if h in done:
82 82 continue
83 83 newhead.append(h)
84 84 done.add(h)
85 85
86 86 return newhead + tail
87 87
88 88
89 89 #***************************************************************************
90 90 # Main class implementing Magic functionality
91 91
92 92 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
93 93 # on construction of the main InteractiveShell object. Something odd is going
94 94 # on with super() calls, Component and the MRO... For now leave it as-is, but
95 95 # eventually this needs to be clarified.
96 96 # BG: This is because InteractiveShell inherits from this, but is itself a
97 97 # Component. This messes up the MRO in some way. The fix is that we need to
98 98 # make Magic a component that InteractiveShell does not subclass.
99 99
100 100 class Magic:
101 101 """Magic functions for InteractiveShell.
102 102
103 103 Shell functions which can be reached as %function_name. All magic
104 104 functions should accept a string, which they can parse for their own
105 105 needs. This can make some functions easier to type, eg `%cd ../`
106 106 vs. `%cd("../")`
107 107
108 108 ALL definitions MUST begin with the prefix magic_. The user won't need it
109 109 at the command line, but it is is needed in the definition. """
110 110
111 111 # class globals
112 112 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
113 113 'Automagic is ON, % prefix NOT needed for magic functions.']
114 114
115 115 #......................................................................
116 116 # some utility functions
117 117
118 118 def __init__(self,shell):
119 119
120 120 self.options_table = {}
121 121 if profile is None:
122 122 self.magic_prun = self.profile_missing_notice
123 123 self.shell = shell
124 124
125 125 # namespace for holding state we may need
126 126 self._magic_state = Bunch()
127 127
128 128 def profile_missing_notice(self, *args, **kwargs):
129 129 error("""\
130 130 The profile module could not be found. It has been removed from the standard
131 131 python packages because of its non-free license. To use profiling, install the
132 132 python-profiler package from non-free.""")
133 133
134 134 def default_option(self,fn,optstr):
135 135 """Make an entry in the options_table for fn, with value optstr"""
136 136
137 137 if fn not in self.lsmagic():
138 138 error("%s is not a magic function" % fn)
139 139 self.options_table[fn] = optstr
140 140
141 141 def lsmagic(self):
142 142 """Return a list of currently available magic functions.
143 143
144 144 Gives a list of the bare names after mangling (['ls','cd', ...], not
145 145 ['magic_ls','magic_cd',...]"""
146 146
147 147 # FIXME. This needs a cleanup, in the way the magics list is built.
148 148
149 149 # magics in class definition
150 150 class_magic = lambda fn: fn.startswith('magic_') and \
151 151 callable(Magic.__dict__[fn])
152 152 # in instance namespace (run-time user additions)
153 153 inst_magic = lambda fn: fn.startswith('magic_') and \
154 154 callable(self.__dict__[fn])
155 155 # and bound magics by user (so they can access self):
156 156 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
157 157 callable(self.__class__.__dict__[fn])
158 158 magics = filter(class_magic,Magic.__dict__.keys()) + \
159 159 filter(inst_magic,self.__dict__.keys()) + \
160 160 filter(inst_bound_magic,self.__class__.__dict__.keys())
161 161 out = []
162 162 for fn in set(magics):
163 163 out.append(fn.replace('magic_','',1))
164 164 out.sort()
165 165 return out
166 166
167 167 def extract_input_slices(self,slices,raw=False):
168 168 """Return as a string a set of input history slices.
169 169
170 170 Inputs:
171 171
172 172 - slices: the set of slices is given as a list of strings (like
173 173 ['1','4:8','9'], since this function is for use by magic functions
174 174 which get their arguments as strings.
175 175
176 176 Optional inputs:
177 177
178 178 - raw(False): by default, the processed input is used. If this is
179 179 true, the raw input history is used instead.
180 180
181 181 Note that slices can be called with two notations:
182 182
183 183 N:M -> standard python form, means including items N...(M-1).
184 184
185 185 N-M -> include items N..M (closed endpoint)."""
186 186
187 187 if raw:
188 188 hist = self.shell.input_hist_raw
189 189 else:
190 190 hist = self.shell.input_hist
191 191
192 192 cmds = []
193 193 for chunk in slices:
194 194 if ':' in chunk:
195 195 ini,fin = map(int,chunk.split(':'))
196 196 elif '-' in chunk:
197 197 ini,fin = map(int,chunk.split('-'))
198 198 fin += 1
199 199 else:
200 200 ini = int(chunk)
201 201 fin = ini+1
202 202 cmds.append(hist[ini:fin])
203 203 return cmds
204 204
205 205 def _ofind(self, oname, namespaces=None):
206 206 """Find an object in the available namespaces.
207 207
208 208 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
209 209
210 210 Has special code to detect magic functions.
211 211 """
212 212
213 213 oname = oname.strip()
214 214
215 215 alias_ns = None
216 216 if namespaces is None:
217 217 # Namespaces to search in:
218 218 # Put them in a list. The order is important so that we
219 219 # find things in the same order that Python finds them.
220 220 namespaces = [ ('Interactive', self.shell.user_ns),
221 221 ('IPython internal', self.shell.internal_ns),
222 222 ('Python builtin', __builtin__.__dict__),
223 223 ('Alias', self.shell.alias_manager.alias_table),
224 224 ]
225 225 alias_ns = self.shell.alias_manager.alias_table
226 226
227 227 # initialize results to 'null'
228 228 found = 0; obj = None; ospace = None; ds = None;
229 229 ismagic = 0; isalias = 0; parent = None
230 230
231 231 # Look for the given name by splitting it in parts. If the head is
232 232 # found, then we look for all the remaining parts as members, and only
233 233 # declare success if we can find them all.
234 234 oname_parts = oname.split('.')
235 235 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
236 236 for nsname,ns in namespaces:
237 237 try:
238 238 obj = ns[oname_head]
239 239 except KeyError:
240 240 continue
241 241 else:
242 242 #print 'oname_rest:', oname_rest # dbg
243 243 for part in oname_rest:
244 244 try:
245 245 parent = obj
246 246 obj = getattr(obj,part)
247 247 except:
248 248 # Blanket except b/c some badly implemented objects
249 249 # allow __getattr__ to raise exceptions other than
250 250 # AttributeError, which then crashes IPython.
251 251 break
252 252 else:
253 253 # If we finish the for loop (no break), we got all members
254 254 found = 1
255 255 ospace = nsname
256 256 if ns == alias_ns:
257 257 isalias = 1
258 258 break # namespace loop
259 259
260 260 # Try to see if it's magic
261 261 if not found:
262 262 if oname.startswith(ESC_MAGIC):
263 263 oname = oname[1:]
264 264 obj = getattr(self,'magic_'+oname,None)
265 265 if obj is not None:
266 266 found = 1
267 267 ospace = 'IPython internal'
268 268 ismagic = 1
269 269
270 270 # Last try: special-case some literals like '', [], {}, etc:
271 271 if not found and oname_head in ["''",'""','[]','{}','()']:
272 272 obj = eval(oname_head)
273 273 found = 1
274 274 ospace = 'Interactive'
275 275
276 276 return {'found':found, 'obj':obj, 'namespace':ospace,
277 277 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
278 278
279 279 def arg_err(self,func):
280 280 """Print docstring if incorrect arguments were passed"""
281 281 print 'Error in arguments:'
282 282 print oinspect.getdoc(func)
283 283
284 284 def format_latex(self,strng):
285 285 """Format a string for latex inclusion."""
286 286
287 287 # Characters that need to be escaped for latex:
288 288 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
289 289 # Magic command names as headers:
290 290 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
291 291 re.MULTILINE)
292 292 # Magic commands
293 293 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
294 294 re.MULTILINE)
295 295 # Paragraph continue
296 296 par_re = re.compile(r'\\$',re.MULTILINE)
297 297
298 298 # The "\n" symbol
299 299 newline_re = re.compile(r'\\n')
300 300
301 301 # Now build the string for output:
302 302 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
303 303 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
304 304 strng)
305 305 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
306 306 strng = par_re.sub(r'\\\\',strng)
307 307 strng = escape_re.sub(r'\\\1',strng)
308 308 strng = newline_re.sub(r'\\textbackslash{}n',strng)
309 309 return strng
310 310
311 311 def format_screen(self,strng):
312 312 """Format a string for screen printing.
313 313
314 314 This removes some latex-type format codes."""
315 315 # Paragraph continue
316 316 par_re = re.compile(r'\\$',re.MULTILINE)
317 317 strng = par_re.sub('',strng)
318 318 return strng
319 319
320 320 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
321 321 """Parse options passed to an argument string.
322 322
323 323 The interface is similar to that of getopt(), but it returns back a
324 324 Struct with the options as keys and the stripped argument string still
325 325 as a string.
326 326
327 327 arg_str is quoted as a true sys.argv vector by using shlex.split.
328 328 This allows us to easily expand variables, glob files, quote
329 329 arguments, etc.
330 330
331 331 Options:
332 332 -mode: default 'string'. If given as 'list', the argument string is
333 333 returned as a list (split on whitespace) instead of a string.
334 334
335 335 -list_all: put all option values in lists. Normally only options
336 336 appearing more than once are put in a list.
337 337
338 338 -posix (True): whether to split the input line in POSIX mode or not,
339 339 as per the conventions outlined in the shlex module from the
340 340 standard library."""
341 341
342 342 # inject default options at the beginning of the input line
343 343 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
344 344 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
345 345
346 346 mode = kw.get('mode','string')
347 347 if mode not in ['string','list']:
348 348 raise ValueError,'incorrect mode given: %s' % mode
349 349 # Get options
350 350 list_all = kw.get('list_all',0)
351 351 posix = kw.get('posix', os.name == 'posix')
352 352
353 353 # Check if we have more than one argument to warrant extra processing:
354 354 odict = {} # Dictionary with options
355 355 args = arg_str.split()
356 356 if len(args) >= 1:
357 357 # If the list of inputs only has 0 or 1 thing in it, there's no
358 358 # need to look for options
359 359 argv = arg_split(arg_str,posix)
360 360 # Do regular option processing
361 361 try:
362 362 opts,args = getopt(argv,opt_str,*long_opts)
363 363 except GetoptError,e:
364 364 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
365 365 " ".join(long_opts)))
366 366 for o,a in opts:
367 367 if o.startswith('--'):
368 368 o = o[2:]
369 369 else:
370 370 o = o[1:]
371 371 try:
372 372 odict[o].append(a)
373 373 except AttributeError:
374 374 odict[o] = [odict[o],a]
375 375 except KeyError:
376 376 if list_all:
377 377 odict[o] = [a]
378 378 else:
379 379 odict[o] = a
380 380
381 381 # Prepare opts,args for return
382 382 opts = Struct(odict)
383 383 if mode == 'string':
384 384 args = ' '.join(args)
385 385
386 386 return opts,args
387 387
388 388 #......................................................................
389 389 # And now the actual magic functions
390 390
391 391 # Functions for IPython shell work (vars,funcs, config, etc)
392 392 def magic_lsmagic(self, parameter_s = ''):
393 393 """List currently available magic functions."""
394 394 mesc = ESC_MAGIC
395 395 print 'Available magic functions:\n'+mesc+\
396 396 (' '+mesc).join(self.lsmagic())
397 397 print '\n' + Magic.auto_status[self.shell.automagic]
398 398 return None
399 399
400 400 def magic_magic(self, parameter_s = ''):
401 401 """Print information about the magic function system.
402 402
403 403 Supported formats: -latex, -brief, -rest
404 404 """
405 405
406 406 mode = ''
407 407 try:
408 408 if parameter_s.split()[0] == '-latex':
409 409 mode = 'latex'
410 410 if parameter_s.split()[0] == '-brief':
411 411 mode = 'brief'
412 412 if parameter_s.split()[0] == '-rest':
413 413 mode = 'rest'
414 414 rest_docs = []
415 415 except:
416 416 pass
417 417
418 418 magic_docs = []
419 419 for fname in self.lsmagic():
420 420 mname = 'magic_' + fname
421 421 for space in (Magic,self,self.__class__):
422 422 try:
423 423 fn = space.__dict__[mname]
424 424 except KeyError:
425 425 pass
426 426 else:
427 427 break
428 428 if mode == 'brief':
429 429 # only first line
430 430 if fn.__doc__:
431 431 fndoc = fn.__doc__.split('\n',1)[0]
432 432 else:
433 433 fndoc = 'No documentation'
434 434 else:
435 435 if fn.__doc__:
436 436 fndoc = fn.__doc__.rstrip()
437 437 else:
438 438 fndoc = 'No documentation'
439 439
440 440
441 441 if mode == 'rest':
442 442 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
443 443 fname,fndoc))
444 444
445 445 else:
446 446 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
447 447 fname,fndoc))
448 448
449 449 magic_docs = ''.join(magic_docs)
450 450
451 451 if mode == 'rest':
452 452 return "".join(rest_docs)
453 453
454 454 if mode == 'latex':
455 455 print self.format_latex(magic_docs)
456 456 return
457 457 else:
458 458 magic_docs = self.format_screen(magic_docs)
459 459 if mode == 'brief':
460 460 return magic_docs
461 461
462 462 outmsg = """
463 463 IPython's 'magic' functions
464 464 ===========================
465 465
466 466 The magic function system provides a series of functions which allow you to
467 467 control the behavior of IPython itself, plus a lot of system-type
468 468 features. All these functions are prefixed with a % character, but parameters
469 469 are given without parentheses or quotes.
470 470
471 471 NOTE: If you have 'automagic' enabled (via the command line option or with the
472 472 %automagic function), you don't need to type in the % explicitly. By default,
473 473 IPython ships with automagic on, so you should only rarely need the % escape.
474 474
475 475 Example: typing '%cd mydir' (without the quotes) changes you working directory
476 476 to 'mydir', if it exists.
477 477
478 478 You can define your own magic functions to extend the system. See the supplied
479 479 ipythonrc and example-magic.py files for details (in your ipython
480 480 configuration directory, typically $HOME/.ipython/).
481 481
482 482 You can also define your own aliased names for magic functions. In your
483 483 ipythonrc file, placing a line like:
484 484
485 485 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
486 486
487 487 will define %pf as a new name for %profile.
488 488
489 489 You can also call magics in code using the magic() function, which IPython
490 490 automatically adds to the builtin namespace. Type 'magic?' for details.
491 491
492 492 For a list of the available magic functions, use %lsmagic. For a description
493 493 of any of them, type %magic_name?, e.g. '%cd?'.
494 494
495 495 Currently the magic system has the following functions:\n"""
496 496
497 497 mesc = ESC_MAGIC
498 498 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
499 499 "\n\n%s%s\n\n%s" % (outmsg,
500 500 magic_docs,mesc,mesc,
501 501 (' '+mesc).join(self.lsmagic()),
502 502 Magic.auto_status[self.shell.automagic] ) )
503 503
504 504 page(outmsg,screen_lines=self.shell.usable_screen_length)
505 505
506 506
507 507 def magic_autoindent(self, parameter_s = ''):
508 508 """Toggle autoindent on/off (if available)."""
509 509
510 510 self.shell.set_autoindent()
511 511 print "Automatic indentation is:",['OFF','ON'][self.shell.autoindent]
512 512
513 513
514 514 def magic_automagic(self, parameter_s = ''):
515 515 """Make magic functions callable without having to type the initial %.
516 516
517 517 Without argumentsl toggles on/off (when off, you must call it as
518 518 %automagic, of course). With arguments it sets the value, and you can
519 519 use any of (case insensitive):
520 520
521 521 - on,1,True: to activate
522 522
523 523 - off,0,False: to deactivate.
524 524
525 525 Note that magic functions have lowest priority, so if there's a
526 526 variable whose name collides with that of a magic fn, automagic won't
527 527 work for that function (you get the variable instead). However, if you
528 528 delete the variable (del var), the previously shadowed magic function
529 529 becomes visible to automagic again."""
530 530
531 531 arg = parameter_s.lower()
532 532 if parameter_s in ('on','1','true'):
533 533 self.shell.automagic = True
534 534 elif parameter_s in ('off','0','false'):
535 535 self.shell.automagic = False
536 536 else:
537 537 self.shell.automagic = not self.shell.automagic
538 538 print '\n' + Magic.auto_status[self.shell.automagic]
539 539
540 540 @testdec.skip_doctest
541 541 def magic_autocall(self, parameter_s = ''):
542 542 """Make functions callable without having to type parentheses.
543 543
544 544 Usage:
545 545
546 546 %autocall [mode]
547 547
548 548 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
549 549 value is toggled on and off (remembering the previous state).
550 550
551 551 In more detail, these values mean:
552 552
553 553 0 -> fully disabled
554 554
555 555 1 -> active, but do not apply if there are no arguments on the line.
556 556
557 557 In this mode, you get:
558 558
559 559 In [1]: callable
560 560 Out[1]: <built-in function callable>
561 561
562 562 In [2]: callable 'hello'
563 563 ------> callable('hello')
564 564 Out[2]: False
565 565
566 566 2 -> Active always. Even if no arguments are present, the callable
567 567 object is called:
568 568
569 569 In [2]: float
570 570 ------> float()
571 571 Out[2]: 0.0
572 572
573 573 Note that even with autocall off, you can still use '/' at the start of
574 574 a line to treat the first argument on the command line as a function
575 575 and add parentheses to it:
576 576
577 577 In [8]: /str 43
578 578 ------> str(43)
579 579 Out[8]: '43'
580 580
581 581 # all-random (note for auto-testing)
582 582 """
583 583
584 584 if parameter_s:
585 585 arg = int(parameter_s)
586 586 else:
587 587 arg = 'toggle'
588 588
589 589 if not arg in (0,1,2,'toggle'):
590 590 error('Valid modes: (0->Off, 1->Smart, 2->Full')
591 591 return
592 592
593 593 if arg in (0,1,2):
594 594 self.shell.autocall = arg
595 595 else: # toggle
596 596 if self.shell.autocall:
597 597 self._magic_state.autocall_save = self.shell.autocall
598 598 self.shell.autocall = 0
599 599 else:
600 600 try:
601 601 self.shell.autocall = self._magic_state.autocall_save
602 602 except AttributeError:
603 603 self.shell.autocall = self._magic_state.autocall_save = 1
604 604
605 605 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
606 606
607 607 def magic_system_verbose(self, parameter_s = ''):
608 608 """Set verbose printing of system calls.
609 609
610 610 If called without an argument, act as a toggle"""
611 611
612 612 if parameter_s:
613 613 val = bool(eval(parameter_s))
614 614 else:
615 615 val = None
616 616
617 617 if self.shell.system_verbose:
618 618 self.shell.system_verbose = False
619 619 else:
620 620 self.shell.system_verbose = True
621 621 print "System verbose printing is:",\
622 622 ['OFF','ON'][self.shell.system_verbose]
623 623
624 624
625 625 def magic_page(self, parameter_s=''):
626 626 """Pretty print the object and display it through a pager.
627 627
628 628 %page [options] OBJECT
629 629
630 630 If no object is given, use _ (last output).
631 631
632 632 Options:
633 633
634 634 -r: page str(object), don't pretty-print it."""
635 635
636 636 # After a function contributed by Olivier Aubert, slightly modified.
637 637
638 638 # Process options/args
639 639 opts,args = self.parse_options(parameter_s,'r')
640 640 raw = 'r' in opts
641 641
642 642 oname = args and args or '_'
643 643 info = self._ofind(oname)
644 644 if info['found']:
645 645 txt = (raw and str or pformat)( info['obj'] )
646 646 page(txt)
647 647 else:
648 648 print 'Object `%s` not found' % oname
649 649
650 650 def magic_profile(self, parameter_s=''):
651 651 """Print your currently active IPyhton profile."""
652 652 if self.shell.profile:
653 653 printpl('Current IPython profile: $self.shell.profile.')
654 654 else:
655 655 print 'No profile active.'
656 656
657 657 def magic_pinfo(self, parameter_s='', namespaces=None):
658 658 """Provide detailed information about an object.
659 659
660 660 '%pinfo object' is just a synonym for object? or ?object."""
661 661
662 662 #print 'pinfo par: <%s>' % parameter_s # dbg
663 663
664 664
665 665 # detail_level: 0 -> obj? , 1 -> obj??
666 666 detail_level = 0
667 667 # We need to detect if we got called as 'pinfo pinfo foo', which can
668 668 # happen if the user types 'pinfo foo?' at the cmd line.
669 669 pinfo,qmark1,oname,qmark2 = \
670 670 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
671 671 if pinfo or qmark1 or qmark2:
672 672 detail_level = 1
673 673 if "*" in oname:
674 674 self.magic_psearch(oname)
675 675 else:
676 676 self._inspect('pinfo', oname, detail_level=detail_level,
677 677 namespaces=namespaces)
678 678
679 679 def magic_pdef(self, parameter_s='', namespaces=None):
680 680 """Print the definition header for any callable object.
681 681
682 682 If the object is a class, print the constructor information."""
683 683 self._inspect('pdef',parameter_s, namespaces)
684 684
685 685 def magic_pdoc(self, parameter_s='', namespaces=None):
686 686 """Print the docstring for an object.
687 687
688 688 If the given object is a class, it will print both the class and the
689 689 constructor docstrings."""
690 690 self._inspect('pdoc',parameter_s, namespaces)
691 691
692 692 def magic_psource(self, parameter_s='', namespaces=None):
693 693 """Print (or run through pager) the source code for an object."""
694 694 self._inspect('psource',parameter_s, namespaces)
695 695
696 696 def magic_pfile(self, parameter_s=''):
697 697 """Print (or run through pager) the file where an object is defined.
698 698
699 699 The file opens at the line where the object definition begins. IPython
700 700 will honor the environment variable PAGER if set, and otherwise will
701 701 do its best to print the file in a convenient form.
702 702
703 703 If the given argument is not an object currently defined, IPython will
704 704 try to interpret it as a filename (automatically adding a .py extension
705 705 if needed). You can thus use %pfile as a syntax highlighting code
706 706 viewer."""
707 707
708 708 # first interpret argument as an object name
709 709 out = self._inspect('pfile',parameter_s)
710 710 # if not, try the input as a filename
711 711 if out == 'not found':
712 712 try:
713 713 filename = get_py_filename(parameter_s)
714 714 except IOError,msg:
715 715 print msg
716 716 return
717 717 page(self.shell.inspector.format(file(filename).read()))
718 718
719 719 def _inspect(self,meth,oname,namespaces=None,**kw):
720 720 """Generic interface to the inspector system.
721 721
722 722 This function is meant to be called by pdef, pdoc & friends."""
723 723
724 724 #oname = oname.strip()
725 725 #print '1- oname: <%r>' % oname # dbg
726 726 try:
727 727 oname = oname.strip().encode('ascii')
728 728 #print '2- oname: <%r>' % oname # dbg
729 729 except UnicodeEncodeError:
730 730 print 'Python identifiers can only contain ascii characters.'
731 731 return 'not found'
732 732
733 733 info = Struct(self._ofind(oname, namespaces))
734 734
735 735 if info.found:
736 736 try:
737 737 IPython.utils.generics.inspect_object(info.obj)
738 738 return
739 739 except TryNext:
740 740 pass
741 741 # Get the docstring of the class property if it exists.
742 742 path = oname.split('.')
743 743 root = '.'.join(path[:-1])
744 744 if info.parent is not None:
745 745 try:
746 746 target = getattr(info.parent, '__class__')
747 747 # The object belongs to a class instance.
748 748 try:
749 749 target = getattr(target, path[-1])
750 750 # The class defines the object.
751 751 if isinstance(target, property):
752 752 oname = root + '.__class__.' + path[-1]
753 753 info = Struct(self._ofind(oname))
754 754 except AttributeError: pass
755 755 except AttributeError: pass
756 756
757 757 pmethod = getattr(self.shell.inspector,meth)
758 758 formatter = info.ismagic and self.format_screen or None
759 759 if meth == 'pdoc':
760 760 pmethod(info.obj,oname,formatter)
761 761 elif meth == 'pinfo':
762 762 pmethod(info.obj,oname,formatter,info,**kw)
763 763 else:
764 764 pmethod(info.obj,oname)
765 765 else:
766 766 print 'Object `%s` not found.' % oname
767 767 return 'not found' # so callers can take other action
768 768
769 769 def magic_psearch(self, parameter_s=''):
770 770 """Search for object in namespaces by wildcard.
771 771
772 772 %psearch [options] PATTERN [OBJECT TYPE]
773 773
774 774 Note: ? can be used as a synonym for %psearch, at the beginning or at
775 775 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
776 776 rest of the command line must be unchanged (options come first), so
777 777 for example the following forms are equivalent
778 778
779 779 %psearch -i a* function
780 780 -i a* function?
781 781 ?-i a* function
782 782
783 783 Arguments:
784 784
785 785 PATTERN
786 786
787 787 where PATTERN is a string containing * as a wildcard similar to its
788 788 use in a shell. The pattern is matched in all namespaces on the
789 789 search path. By default objects starting with a single _ are not
790 790 matched, many IPython generated objects have a single
791 791 underscore. The default is case insensitive matching. Matching is
792 792 also done on the attributes of objects and not only on the objects
793 793 in a module.
794 794
795 795 [OBJECT TYPE]
796 796
797 797 Is the name of a python type from the types module. The name is
798 798 given in lowercase without the ending type, ex. StringType is
799 799 written string. By adding a type here only objects matching the
800 800 given type are matched. Using all here makes the pattern match all
801 801 types (this is the default).
802 802
803 803 Options:
804 804
805 805 -a: makes the pattern match even objects whose names start with a
806 806 single underscore. These names are normally ommitted from the
807 807 search.
808 808
809 809 -i/-c: make the pattern case insensitive/sensitive. If neither of
810 810 these options is given, the default is read from your ipythonrc
811 811 file. The option name which sets this value is
812 812 'wildcards_case_sensitive'. If this option is not specified in your
813 813 ipythonrc file, IPython's internal default is to do a case sensitive
814 814 search.
815 815
816 816 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
817 817 specifiy can be searched in any of the following namespaces:
818 818 'builtin', 'user', 'user_global','internal', 'alias', where
819 819 'builtin' and 'user' are the search defaults. Note that you should
820 820 not use quotes when specifying namespaces.
821 821
822 822 'Builtin' contains the python module builtin, 'user' contains all
823 823 user data, 'alias' only contain the shell aliases and no python
824 824 objects, 'internal' contains objects used by IPython. The
825 825 'user_global' namespace is only used by embedded IPython instances,
826 826 and it contains module-level globals. You can add namespaces to the
827 827 search with -s or exclude them with -e (these options can be given
828 828 more than once).
829 829
830 830 Examples:
831 831
832 832 %psearch a* -> objects beginning with an a
833 833 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
834 834 %psearch a* function -> all functions beginning with an a
835 835 %psearch re.e* -> objects beginning with an e in module re
836 836 %psearch r*.e* -> objects that start with e in modules starting in r
837 837 %psearch r*.* string -> all strings in modules beginning with r
838 838
839 839 Case sensitve search:
840 840
841 841 %psearch -c a* list all object beginning with lower case a
842 842
843 843 Show objects beginning with a single _:
844 844
845 845 %psearch -a _* list objects beginning with a single underscore"""
846 846 try:
847 847 parameter_s = parameter_s.encode('ascii')
848 848 except UnicodeEncodeError:
849 849 print 'Python identifiers can only contain ascii characters.'
850 850 return
851 851
852 852 # default namespaces to be searched
853 853 def_search = ['user','builtin']
854 854
855 855 # Process options/args
856 856 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
857 857 opt = opts.get
858 858 shell = self.shell
859 859 psearch = shell.inspector.psearch
860 860
861 861 # select case options
862 862 if opts.has_key('i'):
863 863 ignore_case = True
864 864 elif opts.has_key('c'):
865 865 ignore_case = False
866 866 else:
867 867 ignore_case = not shell.wildcards_case_sensitive
868 868
869 869 # Build list of namespaces to search from user options
870 870 def_search.extend(opt('s',[]))
871 871 ns_exclude = ns_exclude=opt('e',[])
872 872 ns_search = [nm for nm in def_search if nm not in ns_exclude]
873 873
874 874 # Call the actual search
875 875 try:
876 876 psearch(args,shell.ns_table,ns_search,
877 877 show_all=opt('a'),ignore_case=ignore_case)
878 878 except:
879 879 shell.showtraceback()
880 880
881 881 def magic_who_ls(self, parameter_s=''):
882 882 """Return a sorted list of all interactive variables.
883 883
884 884 If arguments are given, only variables of types matching these
885 885 arguments are returned."""
886 886
887 887 user_ns = self.shell.user_ns
888 888 internal_ns = self.shell.internal_ns
889 user_config_ns = self.shell.user_config_ns
889 user_ns_hidden = self.shell.user_ns_hidden
890 890 out = [ i for i in user_ns
891 891 if not i.startswith('_') \
892 and not (i in internal_ns or i in user_config_ns) ]
892 and not (i in internal_ns or i in user_ns_hidden) ]
893 893
894 894 typelist = parameter_s.split()
895 895 if typelist:
896 896 typeset = set(typelist)
897 897 out = [i for i in out if type(i).__name__ in typeset]
898 898
899 899 out.sort()
900 900 return out
901 901
902 902 def magic_who(self, parameter_s=''):
903 903 """Print all interactive variables, with some minimal formatting.
904 904
905 905 If any arguments are given, only variables whose type matches one of
906 906 these are printed. For example:
907 907
908 908 %who function str
909 909
910 910 will only list functions and strings, excluding all other types of
911 911 variables. To find the proper type names, simply use type(var) at a
912 912 command line to see how python prints type names. For example:
913 913
914 914 In [1]: type('hello')\\
915 915 Out[1]: <type 'str'>
916 916
917 917 indicates that the type name for strings is 'str'.
918 918
919 919 %who always excludes executed names loaded through your configuration
920 920 file and things which are internal to IPython.
921 921
922 922 This is deliberate, as typically you may load many modules and the
923 923 purpose of %who is to show you only what you've manually defined."""
924 924
925 925 varlist = self.magic_who_ls(parameter_s)
926 926 if not varlist:
927 927 if parameter_s:
928 928 print 'No variables match your requested type.'
929 929 else:
930 930 print 'Interactive namespace is empty.'
931 931 return
932 932
933 933 # if we have variables, move on...
934 934 count = 0
935 935 for i in varlist:
936 936 print i+'\t',
937 937 count += 1
938 938 if count > 8:
939 939 count = 0
940 940 print
941 941 print
942 942
943 943 def magic_whos(self, parameter_s=''):
944 944 """Like %who, but gives some extra information about each variable.
945 945
946 946 The same type filtering of %who can be applied here.
947 947
948 948 For all variables, the type is printed. Additionally it prints:
949 949
950 950 - For {},[],(): their length.
951 951
952 952 - For numpy and Numeric arrays, a summary with shape, number of
953 953 elements, typecode and size in memory.
954 954
955 955 - Everything else: a string representation, snipping their middle if
956 956 too long."""
957 957
958 958 varnames = self.magic_who_ls(parameter_s)
959 959 if not varnames:
960 960 if parameter_s:
961 961 print 'No variables match your requested type.'
962 962 else:
963 963 print 'Interactive namespace is empty.'
964 964 return
965 965
966 966 # if we have variables, move on...
967 967
968 968 # for these types, show len() instead of data:
969 969 seq_types = [types.DictType,types.ListType,types.TupleType]
970 970
971 971 # for numpy/Numeric arrays, display summary info
972 972 try:
973 973 import numpy
974 974 except ImportError:
975 975 ndarray_type = None
976 976 else:
977 977 ndarray_type = numpy.ndarray.__name__
978 978 try:
979 979 import Numeric
980 980 except ImportError:
981 981 array_type = None
982 982 else:
983 983 array_type = Numeric.ArrayType.__name__
984 984
985 985 # Find all variable names and types so we can figure out column sizes
986 986 def get_vars(i):
987 987 return self.shell.user_ns[i]
988 988
989 989 # some types are well known and can be shorter
990 990 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
991 991 def type_name(v):
992 992 tn = type(v).__name__
993 993 return abbrevs.get(tn,tn)
994 994
995 995 varlist = map(get_vars,varnames)
996 996
997 997 typelist = []
998 998 for vv in varlist:
999 999 tt = type_name(vv)
1000 1000
1001 1001 if tt=='instance':
1002 1002 typelist.append( abbrevs.get(str(vv.__class__),
1003 1003 str(vv.__class__)))
1004 1004 else:
1005 1005 typelist.append(tt)
1006 1006
1007 1007 # column labels and # of spaces as separator
1008 1008 varlabel = 'Variable'
1009 1009 typelabel = 'Type'
1010 1010 datalabel = 'Data/Info'
1011 1011 colsep = 3
1012 1012 # variable format strings
1013 1013 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
1014 1014 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
1015 1015 aformat = "%s: %s elems, type `%s`, %s bytes"
1016 1016 # find the size of the columns to format the output nicely
1017 1017 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
1018 1018 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
1019 1019 # table header
1020 1020 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
1021 1021 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
1022 1022 # and the table itself
1023 1023 kb = 1024
1024 1024 Mb = 1048576 # kb**2
1025 1025 for vname,var,vtype in zip(varnames,varlist,typelist):
1026 1026 print itpl(vformat),
1027 1027 if vtype in seq_types:
1028 1028 print len(var)
1029 1029 elif vtype in [array_type,ndarray_type]:
1030 1030 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
1031 1031 if vtype==ndarray_type:
1032 1032 # numpy
1033 1033 vsize = var.size
1034 1034 vbytes = vsize*var.itemsize
1035 1035 vdtype = var.dtype
1036 1036 else:
1037 1037 # Numeric
1038 1038 vsize = Numeric.size(var)
1039 1039 vbytes = vsize*var.itemsize()
1040 1040 vdtype = var.typecode()
1041 1041
1042 1042 if vbytes < 100000:
1043 1043 print aformat % (vshape,vsize,vdtype,vbytes)
1044 1044 else:
1045 1045 print aformat % (vshape,vsize,vdtype,vbytes),
1046 1046 if vbytes < Mb:
1047 1047 print '(%s kb)' % (vbytes/kb,)
1048 1048 else:
1049 1049 print '(%s Mb)' % (vbytes/Mb,)
1050 1050 else:
1051 1051 try:
1052 1052 vstr = str(var)
1053 1053 except UnicodeEncodeError:
1054 1054 vstr = unicode(var).encode(sys.getdefaultencoding(),
1055 1055 'backslashreplace')
1056 1056 vstr = vstr.replace('\n','\\n')
1057 1057 if len(vstr) < 50:
1058 1058 print vstr
1059 1059 else:
1060 1060 printpl(vfmt_short)
1061 1061
1062 1062 def magic_reset(self, parameter_s=''):
1063 1063 """Resets the namespace by removing all names defined by the user.
1064 1064
1065 1065 Input/Output history are left around in case you need them.
1066 1066
1067 1067 Parameters
1068 1068 ----------
1069 1069 -y : force reset without asking for confirmation.
1070 1070
1071 1071 Examples
1072 1072 --------
1073 1073 In [6]: a = 1
1074 1074
1075 1075 In [7]: a
1076 1076 Out[7]: 1
1077 1077
1078 1078 In [8]: 'a' in _ip.user_ns
1079 1079 Out[8]: True
1080 1080
1081 1081 In [9]: %reset -f
1082 1082
1083 1083 In [10]: 'a' in _ip.user_ns
1084 1084 Out[10]: False
1085 1085 """
1086 1086
1087 1087 if parameter_s == '-f':
1088 1088 ans = True
1089 1089 else:
1090 1090 ans = self.shell.ask_yes_no(
1091 1091 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1092 1092 if not ans:
1093 1093 print 'Nothing done.'
1094 1094 return
1095 1095 user_ns = self.shell.user_ns
1096 1096 for i in self.magic_who_ls():
1097 1097 del(user_ns[i])
1098 1098
1099 1099 # Also flush the private list of module references kept for script
1100 1100 # execution protection
1101 1101 self.shell.clear_main_mod_cache()
1102 1102
1103 1103 def magic_logstart(self,parameter_s=''):
1104 1104 """Start logging anywhere in a session.
1105 1105
1106 1106 %logstart [-o|-r|-t] [log_name [log_mode]]
1107 1107
1108 1108 If no name is given, it defaults to a file named 'ipython_log.py' in your
1109 1109 current directory, in 'rotate' mode (see below).
1110 1110
1111 1111 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1112 1112 history up to that point and then continues logging.
1113 1113
1114 1114 %logstart takes a second optional parameter: logging mode. This can be one
1115 1115 of (note that the modes are given unquoted):\\
1116 1116 append: well, that says it.\\
1117 1117 backup: rename (if exists) to name~ and start name.\\
1118 1118 global: single logfile in your home dir, appended to.\\
1119 1119 over : overwrite existing log.\\
1120 1120 rotate: create rotating logs name.1~, name.2~, etc.
1121 1121
1122 1122 Options:
1123 1123
1124 1124 -o: log also IPython's output. In this mode, all commands which
1125 1125 generate an Out[NN] prompt are recorded to the logfile, right after
1126 1126 their corresponding input line. The output lines are always
1127 1127 prepended with a '#[Out]# ' marker, so that the log remains valid
1128 1128 Python code.
1129 1129
1130 1130 Since this marker is always the same, filtering only the output from
1131 1131 a log is very easy, using for example a simple awk call:
1132 1132
1133 1133 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1134 1134
1135 1135 -r: log 'raw' input. Normally, IPython's logs contain the processed
1136 1136 input, so that user lines are logged in their final form, converted
1137 1137 into valid Python. For example, %Exit is logged as
1138 1138 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1139 1139 exactly as typed, with no transformations applied.
1140 1140
1141 1141 -t: put timestamps before each input line logged (these are put in
1142 1142 comments)."""
1143 1143
1144 1144 opts,par = self.parse_options(parameter_s,'ort')
1145 1145 log_output = 'o' in opts
1146 1146 log_raw_input = 'r' in opts
1147 1147 timestamp = 't' in opts
1148 1148
1149 1149 logger = self.shell.logger
1150 1150
1151 1151 # if no args are given, the defaults set in the logger constructor by
1152 1152 # ipytohn remain valid
1153 1153 if par:
1154 1154 try:
1155 1155 logfname,logmode = par.split()
1156 1156 except:
1157 1157 logfname = par
1158 1158 logmode = 'backup'
1159 1159 else:
1160 1160 logfname = logger.logfname
1161 1161 logmode = logger.logmode
1162 1162 # put logfname into rc struct as if it had been called on the command
1163 1163 # line, so it ends up saved in the log header Save it in case we need
1164 1164 # to restore it...
1165 1165 old_logfile = self.shell.logfile
1166 1166 if logfname:
1167 1167 logfname = os.path.expanduser(logfname)
1168 1168 self.shell.logfile = logfname
1169 1169
1170 1170 loghead = '# IPython log file\n\n'
1171 1171 try:
1172 1172 started = logger.logstart(logfname,loghead,logmode,
1173 1173 log_output,timestamp,log_raw_input)
1174 1174 except:
1175 1175 self.shell.logfile = old_logfile
1176 1176 warn("Couldn't start log: %s" % sys.exc_info()[1])
1177 1177 else:
1178 1178 # log input history up to this point, optionally interleaving
1179 1179 # output if requested
1180 1180
1181 1181 if timestamp:
1182 1182 # disable timestamping for the previous history, since we've
1183 1183 # lost those already (no time machine here).
1184 1184 logger.timestamp = False
1185 1185
1186 1186 if log_raw_input:
1187 1187 input_hist = self.shell.input_hist_raw
1188 1188 else:
1189 1189 input_hist = self.shell.input_hist
1190 1190
1191 1191 if log_output:
1192 1192 log_write = logger.log_write
1193 1193 output_hist = self.shell.output_hist
1194 1194 for n in range(1,len(input_hist)-1):
1195 1195 log_write(input_hist[n].rstrip())
1196 1196 if n in output_hist:
1197 1197 log_write(repr(output_hist[n]),'output')
1198 1198 else:
1199 1199 logger.log_write(input_hist[1:])
1200 1200 if timestamp:
1201 1201 # re-enable timestamping
1202 1202 logger.timestamp = True
1203 1203
1204 1204 print ('Activating auto-logging. '
1205 1205 'Current session state plus future input saved.')
1206 1206 logger.logstate()
1207 1207
1208 1208 def magic_logstop(self,parameter_s=''):
1209 1209 """Fully stop logging and close log file.
1210 1210
1211 1211 In order to start logging again, a new %logstart call needs to be made,
1212 1212 possibly (though not necessarily) with a new filename, mode and other
1213 1213 options."""
1214 1214 self.logger.logstop()
1215 1215
1216 1216 def magic_logoff(self,parameter_s=''):
1217 1217 """Temporarily stop logging.
1218 1218
1219 1219 You must have previously started logging."""
1220 1220 self.shell.logger.switch_log(0)
1221 1221
1222 1222 def magic_logon(self,parameter_s=''):
1223 1223 """Restart logging.
1224 1224
1225 1225 This function is for restarting logging which you've temporarily
1226 1226 stopped with %logoff. For starting logging for the first time, you
1227 1227 must use the %logstart function, which allows you to specify an
1228 1228 optional log filename."""
1229 1229
1230 1230 self.shell.logger.switch_log(1)
1231 1231
1232 1232 def magic_logstate(self,parameter_s=''):
1233 1233 """Print the status of the logging system."""
1234 1234
1235 1235 self.shell.logger.logstate()
1236 1236
1237 1237 def magic_pdb(self, parameter_s=''):
1238 1238 """Control the automatic calling of the pdb interactive debugger.
1239 1239
1240 1240 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1241 1241 argument it works as a toggle.
1242 1242
1243 1243 When an exception is triggered, IPython can optionally call the
1244 1244 interactive pdb debugger after the traceback printout. %pdb toggles
1245 1245 this feature on and off.
1246 1246
1247 1247 The initial state of this feature is set in your ipythonrc
1248 1248 configuration file (the variable is called 'pdb').
1249 1249
1250 1250 If you want to just activate the debugger AFTER an exception has fired,
1251 1251 without having to type '%pdb on' and rerunning your code, you can use
1252 1252 the %debug magic."""
1253 1253
1254 1254 par = parameter_s.strip().lower()
1255 1255
1256 1256 if par:
1257 1257 try:
1258 1258 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1259 1259 except KeyError:
1260 1260 print ('Incorrect argument. Use on/1, off/0, '
1261 1261 'or nothing for a toggle.')
1262 1262 return
1263 1263 else:
1264 1264 # toggle
1265 1265 new_pdb = not self.shell.call_pdb
1266 1266
1267 1267 # set on the shell
1268 1268 self.shell.call_pdb = new_pdb
1269 1269 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1270 1270
1271 1271 def magic_debug(self, parameter_s=''):
1272 1272 """Activate the interactive debugger in post-mortem mode.
1273 1273
1274 1274 If an exception has just occurred, this lets you inspect its stack
1275 1275 frames interactively. Note that this will always work only on the last
1276 1276 traceback that occurred, so you must call this quickly after an
1277 1277 exception that you wish to inspect has fired, because if another one
1278 1278 occurs, it clobbers the previous one.
1279 1279
1280 1280 If you want IPython to automatically do this on every exception, see
1281 1281 the %pdb magic for more details.
1282 1282 """
1283 1283 self.shell.debugger(force=True)
1284 1284
1285 1285 @testdec.skip_doctest
1286 1286 def magic_prun(self, parameter_s ='',user_mode=1,
1287 1287 opts=None,arg_lst=None,prog_ns=None):
1288 1288
1289 1289 """Run a statement through the python code profiler.
1290 1290
1291 1291 Usage:
1292 1292 %prun [options] statement
1293 1293
1294 1294 The given statement (which doesn't require quote marks) is run via the
1295 1295 python profiler in a manner similar to the profile.run() function.
1296 1296 Namespaces are internally managed to work correctly; profile.run
1297 1297 cannot be used in IPython because it makes certain assumptions about
1298 1298 namespaces which do not hold under IPython.
1299 1299
1300 1300 Options:
1301 1301
1302 1302 -l <limit>: you can place restrictions on what or how much of the
1303 1303 profile gets printed. The limit value can be:
1304 1304
1305 1305 * A string: only information for function names containing this string
1306 1306 is printed.
1307 1307
1308 1308 * An integer: only these many lines are printed.
1309 1309
1310 1310 * A float (between 0 and 1): this fraction of the report is printed
1311 1311 (for example, use a limit of 0.4 to see the topmost 40% only).
1312 1312
1313 1313 You can combine several limits with repeated use of the option. For
1314 1314 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1315 1315 information about class constructors.
1316 1316
1317 1317 -r: return the pstats.Stats object generated by the profiling. This
1318 1318 object has all the information about the profile in it, and you can
1319 1319 later use it for further analysis or in other functions.
1320 1320
1321 1321 -s <key>: sort profile by given key. You can provide more than one key
1322 1322 by using the option several times: '-s key1 -s key2 -s key3...'. The
1323 1323 default sorting key is 'time'.
1324 1324
1325 1325 The following is copied verbatim from the profile documentation
1326 1326 referenced below:
1327 1327
1328 1328 When more than one key is provided, additional keys are used as
1329 1329 secondary criteria when the there is equality in all keys selected
1330 1330 before them.
1331 1331
1332 1332 Abbreviations can be used for any key names, as long as the
1333 1333 abbreviation is unambiguous. The following are the keys currently
1334 1334 defined:
1335 1335
1336 1336 Valid Arg Meaning
1337 1337 "calls" call count
1338 1338 "cumulative" cumulative time
1339 1339 "file" file name
1340 1340 "module" file name
1341 1341 "pcalls" primitive call count
1342 1342 "line" line number
1343 1343 "name" function name
1344 1344 "nfl" name/file/line
1345 1345 "stdname" standard name
1346 1346 "time" internal time
1347 1347
1348 1348 Note that all sorts on statistics are in descending order (placing
1349 1349 most time consuming items first), where as name, file, and line number
1350 1350 searches are in ascending order (i.e., alphabetical). The subtle
1351 1351 distinction between "nfl" and "stdname" is that the standard name is a
1352 1352 sort of the name as printed, which means that the embedded line
1353 1353 numbers get compared in an odd way. For example, lines 3, 20, and 40
1354 1354 would (if the file names were the same) appear in the string order
1355 1355 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1356 1356 line numbers. In fact, sort_stats("nfl") is the same as
1357 1357 sort_stats("name", "file", "line").
1358 1358
1359 1359 -T <filename>: save profile results as shown on screen to a text
1360 1360 file. The profile is still shown on screen.
1361 1361
1362 1362 -D <filename>: save (via dump_stats) profile statistics to given
1363 1363 filename. This data is in a format understod by the pstats module, and
1364 1364 is generated by a call to the dump_stats() method of profile
1365 1365 objects. The profile is still shown on screen.
1366 1366
1367 1367 If you want to run complete programs under the profiler's control, use
1368 1368 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1369 1369 contains profiler specific options as described here.
1370 1370
1371 1371 You can read the complete documentation for the profile module with::
1372 1372
1373 1373 In [1]: import profile; profile.help()
1374 1374 """
1375 1375
1376 1376 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1377 1377 # protect user quote marks
1378 1378 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1379 1379
1380 1380 if user_mode: # regular user call
1381 1381 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1382 1382 list_all=1)
1383 1383 namespace = self.shell.user_ns
1384 1384 else: # called to run a program by %run -p
1385 1385 try:
1386 1386 filename = get_py_filename(arg_lst[0])
1387 1387 except IOError,msg:
1388 1388 error(msg)
1389 1389 return
1390 1390
1391 1391 arg_str = 'execfile(filename,prog_ns)'
1392 1392 namespace = locals()
1393 1393
1394 1394 opts.merge(opts_def)
1395 1395
1396 1396 prof = profile.Profile()
1397 1397 try:
1398 1398 prof = prof.runctx(arg_str,namespace,namespace)
1399 1399 sys_exit = ''
1400 1400 except SystemExit:
1401 1401 sys_exit = """*** SystemExit exception caught in code being profiled."""
1402 1402
1403 1403 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1404 1404
1405 1405 lims = opts.l
1406 1406 if lims:
1407 1407 lims = [] # rebuild lims with ints/floats/strings
1408 1408 for lim in opts.l:
1409 1409 try:
1410 1410 lims.append(int(lim))
1411 1411 except ValueError:
1412 1412 try:
1413 1413 lims.append(float(lim))
1414 1414 except ValueError:
1415 1415 lims.append(lim)
1416 1416
1417 1417 # Trap output.
1418 1418 stdout_trap = StringIO()
1419 1419
1420 1420 if hasattr(stats,'stream'):
1421 1421 # In newer versions of python, the stats object has a 'stream'
1422 1422 # attribute to write into.
1423 1423 stats.stream = stdout_trap
1424 1424 stats.print_stats(*lims)
1425 1425 else:
1426 1426 # For older versions, we manually redirect stdout during printing
1427 1427 sys_stdout = sys.stdout
1428 1428 try:
1429 1429 sys.stdout = stdout_trap
1430 1430 stats.print_stats(*lims)
1431 1431 finally:
1432 1432 sys.stdout = sys_stdout
1433 1433
1434 1434 output = stdout_trap.getvalue()
1435 1435 output = output.rstrip()
1436 1436
1437 1437 page(output,screen_lines=self.shell.usable_screen_length)
1438 1438 print sys_exit,
1439 1439
1440 1440 dump_file = opts.D[0]
1441 1441 text_file = opts.T[0]
1442 1442 if dump_file:
1443 1443 prof.dump_stats(dump_file)
1444 1444 print '\n*** Profile stats marshalled to file',\
1445 1445 `dump_file`+'.',sys_exit
1446 1446 if text_file:
1447 1447 pfile = file(text_file,'w')
1448 1448 pfile.write(output)
1449 1449 pfile.close()
1450 1450 print '\n*** Profile printout saved to text file',\
1451 1451 `text_file`+'.',sys_exit
1452 1452
1453 1453 if opts.has_key('r'):
1454 1454 return stats
1455 1455 else:
1456 1456 return None
1457 1457
1458 1458 @testdec.skip_doctest
1459 1459 def magic_run(self, parameter_s ='',runner=None,
1460 1460 file_finder=get_py_filename):
1461 1461 """Run the named file inside IPython as a program.
1462 1462
1463 1463 Usage:\\
1464 1464 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1465 1465
1466 1466 Parameters after the filename are passed as command-line arguments to
1467 1467 the program (put in sys.argv). Then, control returns to IPython's
1468 1468 prompt.
1469 1469
1470 1470 This is similar to running at a system prompt:\\
1471 1471 $ python file args\\
1472 1472 but with the advantage of giving you IPython's tracebacks, and of
1473 1473 loading all variables into your interactive namespace for further use
1474 1474 (unless -p is used, see below).
1475 1475
1476 1476 The file is executed in a namespace initially consisting only of
1477 1477 __name__=='__main__' and sys.argv constructed as indicated. It thus
1478 1478 sees its environment as if it were being run as a stand-alone program
1479 1479 (except for sharing global objects such as previously imported
1480 1480 modules). But after execution, the IPython interactive namespace gets
1481 1481 updated with all variables defined in the program (except for __name__
1482 1482 and sys.argv). This allows for very convenient loading of code for
1483 1483 interactive work, while giving each program a 'clean sheet' to run in.
1484 1484
1485 1485 Options:
1486 1486
1487 1487 -n: __name__ is NOT set to '__main__', but to the running file's name
1488 1488 without extension (as python does under import). This allows running
1489 1489 scripts and reloading the definitions in them without calling code
1490 1490 protected by an ' if __name__ == "__main__" ' clause.
1491 1491
1492 1492 -i: run the file in IPython's namespace instead of an empty one. This
1493 1493 is useful if you are experimenting with code written in a text editor
1494 1494 which depends on variables defined interactively.
1495 1495
1496 1496 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1497 1497 being run. This is particularly useful if IPython is being used to
1498 1498 run unittests, which always exit with a sys.exit() call. In such
1499 1499 cases you are interested in the output of the test results, not in
1500 1500 seeing a traceback of the unittest module.
1501 1501
1502 1502 -t: print timing information at the end of the run. IPython will give
1503 1503 you an estimated CPU time consumption for your script, which under
1504 1504 Unix uses the resource module to avoid the wraparound problems of
1505 1505 time.clock(). Under Unix, an estimate of time spent on system tasks
1506 1506 is also given (for Windows platforms this is reported as 0.0).
1507 1507
1508 1508 If -t is given, an additional -N<N> option can be given, where <N>
1509 1509 must be an integer indicating how many times you want the script to
1510 1510 run. The final timing report will include total and per run results.
1511 1511
1512 1512 For example (testing the script uniq_stable.py):
1513 1513
1514 1514 In [1]: run -t uniq_stable
1515 1515
1516 1516 IPython CPU timings (estimated):\\
1517 1517 User : 0.19597 s.\\
1518 1518 System: 0.0 s.\\
1519 1519
1520 1520 In [2]: run -t -N5 uniq_stable
1521 1521
1522 1522 IPython CPU timings (estimated):\\
1523 1523 Total runs performed: 5\\
1524 1524 Times : Total Per run\\
1525 1525 User : 0.910862 s, 0.1821724 s.\\
1526 1526 System: 0.0 s, 0.0 s.
1527 1527
1528 1528 -d: run your program under the control of pdb, the Python debugger.
1529 1529 This allows you to execute your program step by step, watch variables,
1530 1530 etc. Internally, what IPython does is similar to calling:
1531 1531
1532 1532 pdb.run('execfile("YOURFILENAME")')
1533 1533
1534 1534 with a breakpoint set on line 1 of your file. You can change the line
1535 1535 number for this automatic breakpoint to be <N> by using the -bN option
1536 1536 (where N must be an integer). For example:
1537 1537
1538 1538 %run -d -b40 myscript
1539 1539
1540 1540 will set the first breakpoint at line 40 in myscript.py. Note that
1541 1541 the first breakpoint must be set on a line which actually does
1542 1542 something (not a comment or docstring) for it to stop execution.
1543 1543
1544 1544 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1545 1545 first enter 'c' (without qoutes) to start execution up to the first
1546 1546 breakpoint.
1547 1547
1548 1548 Entering 'help' gives information about the use of the debugger. You
1549 1549 can easily see pdb's full documentation with "import pdb;pdb.help()"
1550 1550 at a prompt.
1551 1551
1552 1552 -p: run program under the control of the Python profiler module (which
1553 1553 prints a detailed report of execution times, function calls, etc).
1554 1554
1555 1555 You can pass other options after -p which affect the behavior of the
1556 1556 profiler itself. See the docs for %prun for details.
1557 1557
1558 1558 In this mode, the program's variables do NOT propagate back to the
1559 1559 IPython interactive namespace (because they remain in the namespace
1560 1560 where the profiler executes them).
1561 1561
1562 1562 Internally this triggers a call to %prun, see its documentation for
1563 1563 details on the options available specifically for profiling.
1564 1564
1565 1565 There is one special usage for which the text above doesn't apply:
1566 1566 if the filename ends with .ipy, the file is run as ipython script,
1567 1567 just as if the commands were written on IPython prompt.
1568 1568 """
1569 1569
1570 1570 # get arguments and set sys.argv for program to be run.
1571 1571 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1572 1572 mode='list',list_all=1)
1573 1573
1574 1574 try:
1575 1575 filename = file_finder(arg_lst[0])
1576 1576 except IndexError:
1577 1577 warn('you must provide at least a filename.')
1578 1578 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1579 1579 return
1580 1580 except IOError,msg:
1581 1581 error(msg)
1582 1582 return
1583 1583
1584 1584 if filename.lower().endswith('.ipy'):
1585 1585 self.shell.safe_execfile_ipy(filename)
1586 1586 return
1587 1587
1588 1588 # Control the response to exit() calls made by the script being run
1589 1589 exit_ignore = opts.has_key('e')
1590 1590
1591 1591 # Make sure that the running script gets a proper sys.argv as if it
1592 1592 # were run from a system shell.
1593 1593 save_argv = sys.argv # save it for later restoring
1594 1594 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1595 1595
1596 1596 if opts.has_key('i'):
1597 1597 # Run in user's interactive namespace
1598 1598 prog_ns = self.shell.user_ns
1599 1599 __name__save = self.shell.user_ns['__name__']
1600 1600 prog_ns['__name__'] = '__main__'
1601 1601 main_mod = self.shell.new_main_mod(prog_ns)
1602 1602 else:
1603 1603 # Run in a fresh, empty namespace
1604 1604 if opts.has_key('n'):
1605 1605 name = os.path.splitext(os.path.basename(filename))[0]
1606 1606 else:
1607 1607 name = '__main__'
1608 1608
1609 1609 main_mod = self.shell.new_main_mod()
1610 1610 prog_ns = main_mod.__dict__
1611 1611 prog_ns['__name__'] = name
1612 1612
1613 1613 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1614 1614 # set the __file__ global in the script's namespace
1615 1615 prog_ns['__file__'] = filename
1616 1616
1617 1617 # pickle fix. See iplib for an explanation. But we need to make sure
1618 1618 # that, if we overwrite __main__, we replace it at the end
1619 1619 main_mod_name = prog_ns['__name__']
1620 1620
1621 1621 if main_mod_name == '__main__':
1622 1622 restore_main = sys.modules['__main__']
1623 1623 else:
1624 1624 restore_main = False
1625 1625
1626 1626 # This needs to be undone at the end to prevent holding references to
1627 1627 # every single object ever created.
1628 1628 sys.modules[main_mod_name] = main_mod
1629 1629
1630 1630 stats = None
1631 1631 try:
1632 1632 self.shell.savehist()
1633 1633
1634 1634 if opts.has_key('p'):
1635 1635 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1636 1636 else:
1637 1637 if opts.has_key('d'):
1638 1638 deb = debugger.Pdb(self.shell.colors)
1639 1639 # reset Breakpoint state, which is moronically kept
1640 1640 # in a class
1641 1641 bdb.Breakpoint.next = 1
1642 1642 bdb.Breakpoint.bplist = {}
1643 1643 bdb.Breakpoint.bpbynumber = [None]
1644 1644 # Set an initial breakpoint to stop execution
1645 1645 maxtries = 10
1646 1646 bp = int(opts.get('b',[1])[0])
1647 1647 checkline = deb.checkline(filename,bp)
1648 1648 if not checkline:
1649 1649 for bp in range(bp+1,bp+maxtries+1):
1650 1650 if deb.checkline(filename,bp):
1651 1651 break
1652 1652 else:
1653 1653 msg = ("\nI failed to find a valid line to set "
1654 1654 "a breakpoint\n"
1655 1655 "after trying up to line: %s.\n"
1656 1656 "Please set a valid breakpoint manually "
1657 1657 "with the -b option." % bp)
1658 1658 error(msg)
1659 1659 return
1660 1660 # if we find a good linenumber, set the breakpoint
1661 1661 deb.do_break('%s:%s' % (filename,bp))
1662 1662 # Start file run
1663 1663 print "NOTE: Enter 'c' at the",
1664 1664 print "%s prompt to start your script." % deb.prompt
1665 1665 try:
1666 1666 deb.run('execfile("%s")' % filename,prog_ns)
1667 1667
1668 1668 except:
1669 1669 etype, value, tb = sys.exc_info()
1670 1670 # Skip three frames in the traceback: the %run one,
1671 1671 # one inside bdb.py, and the command-line typed by the
1672 1672 # user (run by exec in pdb itself).
1673 1673 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1674 1674 else:
1675 1675 if runner is None:
1676 1676 runner = self.shell.safe_execfile
1677 1677 if opts.has_key('t'):
1678 1678 # timed execution
1679 1679 try:
1680 1680 nruns = int(opts['N'][0])
1681 1681 if nruns < 1:
1682 1682 error('Number of runs must be >=1')
1683 1683 return
1684 1684 except (KeyError):
1685 1685 nruns = 1
1686 1686 if nruns == 1:
1687 1687 t0 = clock2()
1688 1688 runner(filename,prog_ns,prog_ns,
1689 1689 exit_ignore=exit_ignore)
1690 1690 t1 = clock2()
1691 1691 t_usr = t1[0]-t0[0]
1692 1692 t_sys = t1[1]-t0[1]
1693 1693 print "\nIPython CPU timings (estimated):"
1694 1694 print " User : %10s s." % t_usr
1695 1695 print " System: %10s s." % t_sys
1696 1696 else:
1697 1697 runs = range(nruns)
1698 1698 t0 = clock2()
1699 1699 for nr in runs:
1700 1700 runner(filename,prog_ns,prog_ns,
1701 1701 exit_ignore=exit_ignore)
1702 1702 t1 = clock2()
1703 1703 t_usr = t1[0]-t0[0]
1704 1704 t_sys = t1[1]-t0[1]
1705 1705 print "\nIPython CPU timings (estimated):"
1706 1706 print "Total runs performed:",nruns
1707 1707 print " Times : %10s %10s" % ('Total','Per run')
1708 1708 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1709 1709 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1710 1710
1711 1711 else:
1712 1712 # regular execution
1713 1713 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1714 1714
1715 1715 if opts.has_key('i'):
1716 1716 self.shell.user_ns['__name__'] = __name__save
1717 1717 else:
1718 1718 # The shell MUST hold a reference to prog_ns so after %run
1719 1719 # exits, the python deletion mechanism doesn't zero it out
1720 1720 # (leaving dangling references).
1721 1721 self.shell.cache_main_mod(prog_ns,filename)
1722 1722 # update IPython interactive namespace
1723 1723
1724 1724 # Some forms of read errors on the file may mean the
1725 1725 # __name__ key was never set; using pop we don't have to
1726 1726 # worry about a possible KeyError.
1727 1727 prog_ns.pop('__name__', None)
1728 1728
1729 1729 self.shell.user_ns.update(prog_ns)
1730 1730 finally:
1731 1731 # It's a bit of a mystery why, but __builtins__ can change from
1732 1732 # being a module to becoming a dict missing some key data after
1733 1733 # %run. As best I can see, this is NOT something IPython is doing
1734 1734 # at all, and similar problems have been reported before:
1735 1735 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1736 1736 # Since this seems to be done by the interpreter itself, the best
1737 1737 # we can do is to at least restore __builtins__ for the user on
1738 1738 # exit.
1739 1739 self.shell.user_ns['__builtins__'] = __builtin__
1740 1740
1741 1741 # Ensure key global structures are restored
1742 1742 sys.argv = save_argv
1743 1743 if restore_main:
1744 1744 sys.modules['__main__'] = restore_main
1745 1745 else:
1746 1746 # Remove from sys.modules the reference to main_mod we'd
1747 1747 # added. Otherwise it will trap references to objects
1748 1748 # contained therein.
1749 1749 del sys.modules[main_mod_name]
1750 1750
1751 1751 self.shell.reloadhist()
1752 1752
1753 1753 return stats
1754 1754
1755 1755 @testdec.skip_doctest
1756 1756 def magic_timeit(self, parameter_s =''):
1757 1757 """Time execution of a Python statement or expression
1758 1758
1759 1759 Usage:\\
1760 1760 %timeit [-n<N> -r<R> [-t|-c]] statement
1761 1761
1762 1762 Time execution of a Python statement or expression using the timeit
1763 1763 module.
1764 1764
1765 1765 Options:
1766 1766 -n<N>: execute the given statement <N> times in a loop. If this value
1767 1767 is not given, a fitting value is chosen.
1768 1768
1769 1769 -r<R>: repeat the loop iteration <R> times and take the best result.
1770 1770 Default: 3
1771 1771
1772 1772 -t: use time.time to measure the time, which is the default on Unix.
1773 1773 This function measures wall time.
1774 1774
1775 1775 -c: use time.clock to measure the time, which is the default on
1776 1776 Windows and measures wall time. On Unix, resource.getrusage is used
1777 1777 instead and returns the CPU user time.
1778 1778
1779 1779 -p<P>: use a precision of <P> digits to display the timing result.
1780 1780 Default: 3
1781 1781
1782 1782
1783 1783 Examples:
1784 1784
1785 1785 In [1]: %timeit pass
1786 1786 10000000 loops, best of 3: 53.3 ns per loop
1787 1787
1788 1788 In [2]: u = None
1789 1789
1790 1790 In [3]: %timeit u is None
1791 1791 10000000 loops, best of 3: 184 ns per loop
1792 1792
1793 1793 In [4]: %timeit -r 4 u == None
1794 1794 1000000 loops, best of 4: 242 ns per loop
1795 1795
1796 1796 In [5]: import time
1797 1797
1798 1798 In [6]: %timeit -n1 time.sleep(2)
1799 1799 1 loops, best of 3: 2 s per loop
1800 1800
1801 1801
1802 1802 The times reported by %timeit will be slightly higher than those
1803 1803 reported by the timeit.py script when variables are accessed. This is
1804 1804 due to the fact that %timeit executes the statement in the namespace
1805 1805 of the shell, compared with timeit.py, which uses a single setup
1806 1806 statement to import function or create variables. Generally, the bias
1807 1807 does not matter as long as results from timeit.py are not mixed with
1808 1808 those from %timeit."""
1809 1809
1810 1810 import timeit
1811 1811 import math
1812 1812
1813 1813 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1814 1814 # certain terminals. Until we figure out a robust way of
1815 1815 # auto-detecting if the terminal can deal with it, use plain 'us' for
1816 1816 # microseconds. I am really NOT happy about disabling the proper
1817 1817 # 'micro' prefix, but crashing is worse... If anyone knows what the
1818 1818 # right solution for this is, I'm all ears...
1819 1819 #
1820 1820 # Note: using
1821 1821 #
1822 1822 # s = u'\xb5'
1823 1823 # s.encode(sys.getdefaultencoding())
1824 1824 #
1825 1825 # is not sufficient, as I've seen terminals where that fails but
1826 1826 # print s
1827 1827 #
1828 1828 # succeeds
1829 1829 #
1830 1830 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1831 1831
1832 1832 #units = [u"s", u"ms",u'\xb5',"ns"]
1833 1833 units = [u"s", u"ms",u'us',"ns"]
1834 1834
1835 1835 scaling = [1, 1e3, 1e6, 1e9]
1836 1836
1837 1837 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1838 1838 posix=False)
1839 1839 if stmt == "":
1840 1840 return
1841 1841 timefunc = timeit.default_timer
1842 1842 number = int(getattr(opts, "n", 0))
1843 1843 repeat = int(getattr(opts, "r", timeit.default_repeat))
1844 1844 precision = int(getattr(opts, "p", 3))
1845 1845 if hasattr(opts, "t"):
1846 1846 timefunc = time.time
1847 1847 if hasattr(opts, "c"):
1848 1848 timefunc = clock
1849 1849
1850 1850 timer = timeit.Timer(timer=timefunc)
1851 1851 # this code has tight coupling to the inner workings of timeit.Timer,
1852 1852 # but is there a better way to achieve that the code stmt has access
1853 1853 # to the shell namespace?
1854 1854
1855 1855 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1856 1856 'setup': "pass"}
1857 1857 # Track compilation time so it can be reported if too long
1858 1858 # Minimum time above which compilation time will be reported
1859 1859 tc_min = 0.1
1860 1860
1861 1861 t0 = clock()
1862 1862 code = compile(src, "<magic-timeit>", "exec")
1863 1863 tc = clock()-t0
1864 1864
1865 1865 ns = {}
1866 1866 exec code in self.shell.user_ns, ns
1867 1867 timer.inner = ns["inner"]
1868 1868
1869 1869 if number == 0:
1870 1870 # determine number so that 0.2 <= total time < 2.0
1871 1871 number = 1
1872 1872 for i in range(1, 10):
1873 1873 if timer.timeit(number) >= 0.2:
1874 1874 break
1875 1875 number *= 10
1876 1876
1877 1877 best = min(timer.repeat(repeat, number)) / number
1878 1878
1879 1879 if best > 0.0:
1880 1880 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1881 1881 else:
1882 1882 order = 3
1883 1883 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1884 1884 precision,
1885 1885 best * scaling[order],
1886 1886 units[order])
1887 1887 if tc > tc_min:
1888 1888 print "Compiler time: %.2f s" % tc
1889 1889
1890 1890 @testdec.skip_doctest
1891 1891 def magic_time(self,parameter_s = ''):
1892 1892 """Time execution of a Python statement or expression.
1893 1893
1894 1894 The CPU and wall clock times are printed, and the value of the
1895 1895 expression (if any) is returned. Note that under Win32, system time
1896 1896 is always reported as 0, since it can not be measured.
1897 1897
1898 1898 This function provides very basic timing functionality. In Python
1899 1899 2.3, the timeit module offers more control and sophistication, so this
1900 1900 could be rewritten to use it (patches welcome).
1901 1901
1902 1902 Some examples:
1903 1903
1904 1904 In [1]: time 2**128
1905 1905 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1906 1906 Wall time: 0.00
1907 1907 Out[1]: 340282366920938463463374607431768211456L
1908 1908
1909 1909 In [2]: n = 1000000
1910 1910
1911 1911 In [3]: time sum(range(n))
1912 1912 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1913 1913 Wall time: 1.37
1914 1914 Out[3]: 499999500000L
1915 1915
1916 1916 In [4]: time print 'hello world'
1917 1917 hello world
1918 1918 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1919 1919 Wall time: 0.00
1920 1920
1921 1921 Note that the time needed by Python to compile the given expression
1922 1922 will be reported if it is more than 0.1s. In this example, the
1923 1923 actual exponentiation is done by Python at compilation time, so while
1924 1924 the expression can take a noticeable amount of time to compute, that
1925 1925 time is purely due to the compilation:
1926 1926
1927 1927 In [5]: time 3**9999;
1928 1928 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1929 1929 Wall time: 0.00 s
1930 1930
1931 1931 In [6]: time 3**999999;
1932 1932 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1933 1933 Wall time: 0.00 s
1934 1934 Compiler : 0.78 s
1935 1935 """
1936 1936
1937 1937 # fail immediately if the given expression can't be compiled
1938 1938
1939 1939 expr = self.shell.prefilter(parameter_s,False)
1940 1940
1941 1941 # Minimum time above which compilation time will be reported
1942 1942 tc_min = 0.1
1943 1943
1944 1944 try:
1945 1945 mode = 'eval'
1946 1946 t0 = clock()
1947 1947 code = compile(expr,'<timed eval>',mode)
1948 1948 tc = clock()-t0
1949 1949 except SyntaxError:
1950 1950 mode = 'exec'
1951 1951 t0 = clock()
1952 1952 code = compile(expr,'<timed exec>',mode)
1953 1953 tc = clock()-t0
1954 1954 # skew measurement as little as possible
1955 1955 glob = self.shell.user_ns
1956 1956 clk = clock2
1957 1957 wtime = time.time
1958 1958 # time execution
1959 1959 wall_st = wtime()
1960 1960 if mode=='eval':
1961 1961 st = clk()
1962 1962 out = eval(code,glob)
1963 1963 end = clk()
1964 1964 else:
1965 1965 st = clk()
1966 1966 exec code in glob
1967 1967 end = clk()
1968 1968 out = None
1969 1969 wall_end = wtime()
1970 1970 # Compute actual times and report
1971 1971 wall_time = wall_end-wall_st
1972 1972 cpu_user = end[0]-st[0]
1973 1973 cpu_sys = end[1]-st[1]
1974 1974 cpu_tot = cpu_user+cpu_sys
1975 1975 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1976 1976 (cpu_user,cpu_sys,cpu_tot)
1977 1977 print "Wall time: %.2f s" % wall_time
1978 1978 if tc > tc_min:
1979 1979 print "Compiler : %.2f s" % tc
1980 1980 return out
1981 1981
1982 1982 @testdec.skip_doctest
1983 1983 def magic_macro(self,parameter_s = ''):
1984 1984 """Define a set of input lines as a macro for future re-execution.
1985 1985
1986 1986 Usage:\\
1987 1987 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1988 1988
1989 1989 Options:
1990 1990
1991 1991 -r: use 'raw' input. By default, the 'processed' history is used,
1992 1992 so that magics are loaded in their transformed version to valid
1993 1993 Python. If this option is given, the raw input as typed as the
1994 1994 command line is used instead.
1995 1995
1996 1996 This will define a global variable called `name` which is a string
1997 1997 made of joining the slices and lines you specify (n1,n2,... numbers
1998 1998 above) from your input history into a single string. This variable
1999 1999 acts like an automatic function which re-executes those lines as if
2000 2000 you had typed them. You just type 'name' at the prompt and the code
2001 2001 executes.
2002 2002
2003 2003 The notation for indicating number ranges is: n1-n2 means 'use line
2004 2004 numbers n1,...n2' (the endpoint is included). That is, '5-7' means
2005 2005 using the lines numbered 5,6 and 7.
2006 2006
2007 2007 Note: as a 'hidden' feature, you can also use traditional python slice
2008 2008 notation, where N:M means numbers N through M-1.
2009 2009
2010 2010 For example, if your history contains (%hist prints it):
2011 2011
2012 2012 44: x=1
2013 2013 45: y=3
2014 2014 46: z=x+y
2015 2015 47: print x
2016 2016 48: a=5
2017 2017 49: print 'x',x,'y',y
2018 2018
2019 2019 you can create a macro with lines 44 through 47 (included) and line 49
2020 2020 called my_macro with:
2021 2021
2022 2022 In [55]: %macro my_macro 44-47 49
2023 2023
2024 2024 Now, typing `my_macro` (without quotes) will re-execute all this code
2025 2025 in one pass.
2026 2026
2027 2027 You don't need to give the line-numbers in order, and any given line
2028 2028 number can appear multiple times. You can assemble macros with any
2029 2029 lines from your input history in any order.
2030 2030
2031 2031 The macro is a simple object which holds its value in an attribute,
2032 2032 but IPython's display system checks for macros and executes them as
2033 2033 code instead of printing them when you type their name.
2034 2034
2035 2035 You can view a macro's contents by explicitly printing it with:
2036 2036
2037 2037 'print macro_name'.
2038 2038
2039 2039 For one-off cases which DON'T contain magic function calls in them you
2040 2040 can obtain similar results by explicitly executing slices from your
2041 2041 input history with:
2042 2042
2043 2043 In [60]: exec In[44:48]+In[49]"""
2044 2044
2045 2045 opts,args = self.parse_options(parameter_s,'r',mode='list')
2046 2046 if not args:
2047 2047 macs = [k for k,v in self.shell.user_ns.items() if isinstance(v, Macro)]
2048 2048 macs.sort()
2049 2049 return macs
2050 2050 if len(args) == 1:
2051 2051 raise UsageError(
2052 2052 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2053 2053 name,ranges = args[0], args[1:]
2054 2054
2055 2055 #print 'rng',ranges # dbg
2056 2056 lines = self.extract_input_slices(ranges,opts.has_key('r'))
2057 2057 macro = Macro(lines)
2058 2058 self.shell.define_macro(name, macro)
2059 2059 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2060 2060 print 'Macro contents:'
2061 2061 print macro,
2062 2062
2063 2063 def magic_save(self,parameter_s = ''):
2064 2064 """Save a set of lines to a given filename.
2065 2065
2066 2066 Usage:\\
2067 2067 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2068 2068
2069 2069 Options:
2070 2070
2071 2071 -r: use 'raw' input. By default, the 'processed' history is used,
2072 2072 so that magics are loaded in their transformed version to valid
2073 2073 Python. If this option is given, the raw input as typed as the
2074 2074 command line is used instead.
2075 2075
2076 2076 This function uses the same syntax as %macro for line extraction, but
2077 2077 instead of creating a macro it saves the resulting string to the
2078 2078 filename you specify.
2079 2079
2080 2080 It adds a '.py' extension to the file if you don't do so yourself, and
2081 2081 it asks for confirmation before overwriting existing files."""
2082 2082
2083 2083 opts,args = self.parse_options(parameter_s,'r',mode='list')
2084 2084 fname,ranges = args[0], args[1:]
2085 2085 if not fname.endswith('.py'):
2086 2086 fname += '.py'
2087 2087 if os.path.isfile(fname):
2088 2088 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2089 2089 if ans.lower() not in ['y','yes']:
2090 2090 print 'Operation cancelled.'
2091 2091 return
2092 2092 cmds = ''.join(self.extract_input_slices(ranges,opts.has_key('r')))
2093 2093 f = file(fname,'w')
2094 2094 f.write(cmds)
2095 2095 f.close()
2096 2096 print 'The following commands were written to file `%s`:' % fname
2097 2097 print cmds
2098 2098
2099 2099 def _edit_macro(self,mname,macro):
2100 2100 """open an editor with the macro data in a file"""
2101 2101 filename = self.shell.mktempfile(macro.value)
2102 2102 self.shell.hooks.editor(filename)
2103 2103
2104 2104 # and make a new macro object, to replace the old one
2105 2105 mfile = open(filename)
2106 2106 mvalue = mfile.read()
2107 2107 mfile.close()
2108 2108 self.shell.user_ns[mname] = Macro(mvalue)
2109 2109
2110 2110 def magic_ed(self,parameter_s=''):
2111 2111 """Alias to %edit."""
2112 2112 return self.magic_edit(parameter_s)
2113 2113
2114 2114 @testdec.skip_doctest
2115 2115 def magic_edit(self,parameter_s='',last_call=['','']):
2116 2116 """Bring up an editor and execute the resulting code.
2117 2117
2118 2118 Usage:
2119 2119 %edit [options] [args]
2120 2120
2121 2121 %edit runs IPython's editor hook. The default version of this hook is
2122 2122 set to call the __IPYTHON__.rc.editor command. This is read from your
2123 2123 environment variable $EDITOR. If this isn't found, it will default to
2124 2124 vi under Linux/Unix and to notepad under Windows. See the end of this
2125 2125 docstring for how to change the editor hook.
2126 2126
2127 2127 You can also set the value of this editor via the command line option
2128 2128 '-editor' or in your ipythonrc file. This is useful if you wish to use
2129 2129 specifically for IPython an editor different from your typical default
2130 2130 (and for Windows users who typically don't set environment variables).
2131 2131
2132 2132 This command allows you to conveniently edit multi-line code right in
2133 2133 your IPython session.
2134 2134
2135 2135 If called without arguments, %edit opens up an empty editor with a
2136 2136 temporary file and will execute the contents of this file when you
2137 2137 close it (don't forget to save it!).
2138 2138
2139 2139
2140 2140 Options:
2141 2141
2142 2142 -n <number>: open the editor at a specified line number. By default,
2143 2143 the IPython editor hook uses the unix syntax 'editor +N filename', but
2144 2144 you can configure this by providing your own modified hook if your
2145 2145 favorite editor supports line-number specifications with a different
2146 2146 syntax.
2147 2147
2148 2148 -p: this will call the editor with the same data as the previous time
2149 2149 it was used, regardless of how long ago (in your current session) it
2150 2150 was.
2151 2151
2152 2152 -r: use 'raw' input. This option only applies to input taken from the
2153 2153 user's history. By default, the 'processed' history is used, so that
2154 2154 magics are loaded in their transformed version to valid Python. If
2155 2155 this option is given, the raw input as typed as the command line is
2156 2156 used instead. When you exit the editor, it will be executed by
2157 2157 IPython's own processor.
2158 2158
2159 2159 -x: do not execute the edited code immediately upon exit. This is
2160 2160 mainly useful if you are editing programs which need to be called with
2161 2161 command line arguments, which you can then do using %run.
2162 2162
2163 2163
2164 2164 Arguments:
2165 2165
2166 2166 If arguments are given, the following possibilites exist:
2167 2167
2168 2168 - The arguments are numbers or pairs of colon-separated numbers (like
2169 2169 1 4:8 9). These are interpreted as lines of previous input to be
2170 2170 loaded into the editor. The syntax is the same of the %macro command.
2171 2171
2172 2172 - If the argument doesn't start with a number, it is evaluated as a
2173 2173 variable and its contents loaded into the editor. You can thus edit
2174 2174 any string which contains python code (including the result of
2175 2175 previous edits).
2176 2176
2177 2177 - If the argument is the name of an object (other than a string),
2178 2178 IPython will try to locate the file where it was defined and open the
2179 2179 editor at the point where it is defined. You can use `%edit function`
2180 2180 to load an editor exactly at the point where 'function' is defined,
2181 2181 edit it and have the file be executed automatically.
2182 2182
2183 2183 If the object is a macro (see %macro for details), this opens up your
2184 2184 specified editor with a temporary file containing the macro's data.
2185 2185 Upon exit, the macro is reloaded with the contents of the file.
2186 2186
2187 2187 Note: opening at an exact line is only supported under Unix, and some
2188 2188 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2189 2189 '+NUMBER' parameter necessary for this feature. Good editors like
2190 2190 (X)Emacs, vi, jed, pico and joe all do.
2191 2191
2192 2192 - If the argument is not found as a variable, IPython will look for a
2193 2193 file with that name (adding .py if necessary) and load it into the
2194 2194 editor. It will execute its contents with execfile() when you exit,
2195 2195 loading any code in the file into your interactive namespace.
2196 2196
2197 2197 After executing your code, %edit will return as output the code you
2198 2198 typed in the editor (except when it was an existing file). This way
2199 2199 you can reload the code in further invocations of %edit as a variable,
2200 2200 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2201 2201 the output.
2202 2202
2203 2203 Note that %edit is also available through the alias %ed.
2204 2204
2205 2205 This is an example of creating a simple function inside the editor and
2206 2206 then modifying it. First, start up the editor:
2207 2207
2208 2208 In [1]: ed
2209 2209 Editing... done. Executing edited code...
2210 2210 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2211 2211
2212 2212 We can then call the function foo():
2213 2213
2214 2214 In [2]: foo()
2215 2215 foo() was defined in an editing session
2216 2216
2217 2217 Now we edit foo. IPython automatically loads the editor with the
2218 2218 (temporary) file where foo() was previously defined:
2219 2219
2220 2220 In [3]: ed foo
2221 2221 Editing... done. Executing edited code...
2222 2222
2223 2223 And if we call foo() again we get the modified version:
2224 2224
2225 2225 In [4]: foo()
2226 2226 foo() has now been changed!
2227 2227
2228 2228 Here is an example of how to edit a code snippet successive
2229 2229 times. First we call the editor:
2230 2230
2231 2231 In [5]: ed
2232 2232 Editing... done. Executing edited code...
2233 2233 hello
2234 2234 Out[5]: "print 'hello'n"
2235 2235
2236 2236 Now we call it again with the previous output (stored in _):
2237 2237
2238 2238 In [6]: ed _
2239 2239 Editing... done. Executing edited code...
2240 2240 hello world
2241 2241 Out[6]: "print 'hello world'n"
2242 2242
2243 2243 Now we call it with the output #8 (stored in _8, also as Out[8]):
2244 2244
2245 2245 In [7]: ed _8
2246 2246 Editing... done. Executing edited code...
2247 2247 hello again
2248 2248 Out[7]: "print 'hello again'n"
2249 2249
2250 2250
2251 2251 Changing the default editor hook:
2252 2252
2253 2253 If you wish to write your own editor hook, you can put it in a
2254 2254 configuration file which you load at startup time. The default hook
2255 2255 is defined in the IPython.core.hooks module, and you can use that as a
2256 2256 starting example for further modifications. That file also has
2257 2257 general instructions on how to set a new hook for use once you've
2258 2258 defined it."""
2259 2259
2260 2260 # FIXME: This function has become a convoluted mess. It needs a
2261 2261 # ground-up rewrite with clean, simple logic.
2262 2262
2263 2263 def make_filename(arg):
2264 2264 "Make a filename from the given args"
2265 2265 try:
2266 2266 filename = get_py_filename(arg)
2267 2267 except IOError:
2268 2268 if args.endswith('.py'):
2269 2269 filename = arg
2270 2270 else:
2271 2271 filename = None
2272 2272 return filename
2273 2273
2274 2274 # custom exceptions
2275 2275 class DataIsObject(Exception): pass
2276 2276
2277 2277 opts,args = self.parse_options(parameter_s,'prxn:')
2278 2278 # Set a few locals from the options for convenience:
2279 2279 opts_p = opts.has_key('p')
2280 2280 opts_r = opts.has_key('r')
2281 2281
2282 2282 # Default line number value
2283 2283 lineno = opts.get('n',None)
2284 2284
2285 2285 if opts_p:
2286 2286 args = '_%s' % last_call[0]
2287 2287 if not self.shell.user_ns.has_key(args):
2288 2288 args = last_call[1]
2289 2289
2290 2290 # use last_call to remember the state of the previous call, but don't
2291 2291 # let it be clobbered by successive '-p' calls.
2292 2292 try:
2293 2293 last_call[0] = self.shell.outputcache.prompt_count
2294 2294 if not opts_p:
2295 2295 last_call[1] = parameter_s
2296 2296 except:
2297 2297 pass
2298 2298
2299 2299 # by default this is done with temp files, except when the given
2300 2300 # arg is a filename
2301 2301 use_temp = 1
2302 2302
2303 2303 if re.match(r'\d',args):
2304 2304 # Mode where user specifies ranges of lines, like in %macro.
2305 2305 # This means that you can't edit files whose names begin with
2306 2306 # numbers this way. Tough.
2307 2307 ranges = args.split()
2308 2308 data = ''.join(self.extract_input_slices(ranges,opts_r))
2309 2309 elif args.endswith('.py'):
2310 2310 filename = make_filename(args)
2311 2311 data = ''
2312 2312 use_temp = 0
2313 2313 elif args:
2314 2314 try:
2315 2315 # Load the parameter given as a variable. If not a string,
2316 2316 # process it as an object instead (below)
2317 2317
2318 2318 #print '*** args',args,'type',type(args) # dbg
2319 2319 data = eval(args,self.shell.user_ns)
2320 2320 if not type(data) in StringTypes:
2321 2321 raise DataIsObject
2322 2322
2323 2323 except (NameError,SyntaxError):
2324 2324 # given argument is not a variable, try as a filename
2325 2325 filename = make_filename(args)
2326 2326 if filename is None:
2327 2327 warn("Argument given (%s) can't be found as a variable "
2328 2328 "or as a filename." % args)
2329 2329 return
2330 2330
2331 2331 data = ''
2332 2332 use_temp = 0
2333 2333 except DataIsObject:
2334 2334
2335 2335 # macros have a special edit function
2336 2336 if isinstance(data,Macro):
2337 2337 self._edit_macro(args,data)
2338 2338 return
2339 2339
2340 2340 # For objects, try to edit the file where they are defined
2341 2341 try:
2342 2342 filename = inspect.getabsfile(data)
2343 2343 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2344 2344 # class created by %edit? Try to find source
2345 2345 # by looking for method definitions instead, the
2346 2346 # __module__ in those classes is FakeModule.
2347 2347 attrs = [getattr(data, aname) for aname in dir(data)]
2348 2348 for attr in attrs:
2349 2349 if not inspect.ismethod(attr):
2350 2350 continue
2351 2351 filename = inspect.getabsfile(attr)
2352 2352 if filename and 'fakemodule' not in filename.lower():
2353 2353 # change the attribute to be the edit target instead
2354 2354 data = attr
2355 2355 break
2356 2356
2357 2357 datafile = 1
2358 2358 except TypeError:
2359 2359 filename = make_filename(args)
2360 2360 datafile = 1
2361 2361 warn('Could not find file where `%s` is defined.\n'
2362 2362 'Opening a file named `%s`' % (args,filename))
2363 2363 # Now, make sure we can actually read the source (if it was in
2364 2364 # a temp file it's gone by now).
2365 2365 if datafile:
2366 2366 try:
2367 2367 if lineno is None:
2368 2368 lineno = inspect.getsourcelines(data)[1]
2369 2369 except IOError:
2370 2370 filename = make_filename(args)
2371 2371 if filename is None:
2372 2372 warn('The file `%s` where `%s` was defined cannot '
2373 2373 'be read.' % (filename,data))
2374 2374 return
2375 2375 use_temp = 0
2376 2376 else:
2377 2377 data = ''
2378 2378
2379 2379 if use_temp:
2380 2380 filename = self.shell.mktempfile(data)
2381 2381 print 'IPython will make a temporary file named:',filename
2382 2382
2383 2383 # do actual editing here
2384 2384 print 'Editing...',
2385 2385 sys.stdout.flush()
2386 2386 try:
2387 2387 self.shell.hooks.editor(filename,lineno)
2388 2388 except TryNext:
2389 2389 warn('Could not open editor')
2390 2390 return
2391 2391
2392 2392 # XXX TODO: should this be generalized for all string vars?
2393 2393 # For now, this is special-cased to blocks created by cpaste
2394 2394 if args.strip() == 'pasted_block':
2395 2395 self.shell.user_ns['pasted_block'] = file_read(filename)
2396 2396
2397 2397 if opts.has_key('x'): # -x prevents actual execution
2398 2398 print
2399 2399 else:
2400 2400 print 'done. Executing edited code...'
2401 2401 if opts_r:
2402 2402 self.shell.runlines(file_read(filename))
2403 2403 else:
2404 2404 self.shell.safe_execfile(filename,self.shell.user_ns,
2405 2405 self.shell.user_ns)
2406 2406
2407 2407
2408 2408 if use_temp:
2409 2409 try:
2410 2410 return open(filename).read()
2411 2411 except IOError,msg:
2412 2412 if msg.filename == filename:
2413 2413 warn('File not found. Did you forget to save?')
2414 2414 return
2415 2415 else:
2416 2416 self.shell.showtraceback()
2417 2417
2418 2418 def magic_xmode(self,parameter_s = ''):
2419 2419 """Switch modes for the exception handlers.
2420 2420
2421 2421 Valid modes: Plain, Context and Verbose.
2422 2422
2423 2423 If called without arguments, acts as a toggle."""
2424 2424
2425 2425 def xmode_switch_err(name):
2426 2426 warn('Error changing %s exception modes.\n%s' %
2427 2427 (name,sys.exc_info()[1]))
2428 2428
2429 2429 shell = self.shell
2430 2430 new_mode = parameter_s.strip().capitalize()
2431 2431 try:
2432 2432 shell.InteractiveTB.set_mode(mode=new_mode)
2433 2433 print 'Exception reporting mode:',shell.InteractiveTB.mode
2434 2434 except:
2435 2435 xmode_switch_err('user')
2436 2436
2437 2437 # threaded shells use a special handler in sys.excepthook
2438 2438 if shell.isthreaded:
2439 2439 try:
2440 2440 shell.sys_excepthook.set_mode(mode=new_mode)
2441 2441 except:
2442 2442 xmode_switch_err('threaded')
2443 2443
2444 2444 def magic_colors(self,parameter_s = ''):
2445 2445 """Switch color scheme for prompts, info system and exception handlers.
2446 2446
2447 2447 Currently implemented schemes: NoColor, Linux, LightBG.
2448 2448
2449 2449 Color scheme names are not case-sensitive."""
2450 2450
2451 2451 def color_switch_err(name):
2452 2452 warn('Error changing %s color schemes.\n%s' %
2453 2453 (name,sys.exc_info()[1]))
2454 2454
2455 2455
2456 2456 new_scheme = parameter_s.strip()
2457 2457 if not new_scheme:
2458 2458 raise UsageError(
2459 2459 "%colors: you must specify a color scheme. See '%colors?'")
2460 2460 return
2461 2461 # local shortcut
2462 2462 shell = self.shell
2463 2463
2464 2464 import IPython.utils.rlineimpl as readline
2465 2465
2466 2466 if not readline.have_readline and sys.platform == "win32":
2467 2467 msg = """\
2468 2468 Proper color support under MS Windows requires the pyreadline library.
2469 2469 You can find it at:
2470 2470 http://ipython.scipy.org/moin/PyReadline/Intro
2471 2471 Gary's readline needs the ctypes module, from:
2472 2472 http://starship.python.net/crew/theller/ctypes
2473 2473 (Note that ctypes is already part of Python versions 2.5 and newer).
2474 2474
2475 2475 Defaulting color scheme to 'NoColor'"""
2476 2476 new_scheme = 'NoColor'
2477 2477 warn(msg)
2478 2478
2479 2479 # readline option is 0
2480 2480 if not shell.has_readline:
2481 2481 new_scheme = 'NoColor'
2482 2482
2483 2483 # Set prompt colors
2484 2484 try:
2485 2485 shell.outputcache.set_colors(new_scheme)
2486 2486 except:
2487 2487 color_switch_err('prompt')
2488 2488 else:
2489 2489 shell.colors = \
2490 2490 shell.outputcache.color_table.active_scheme_name
2491 2491 # Set exception colors
2492 2492 try:
2493 2493 shell.InteractiveTB.set_colors(scheme = new_scheme)
2494 2494 shell.SyntaxTB.set_colors(scheme = new_scheme)
2495 2495 except:
2496 2496 color_switch_err('exception')
2497 2497
2498 2498 # threaded shells use a verbose traceback in sys.excepthook
2499 2499 if shell.isthreaded:
2500 2500 try:
2501 2501 shell.sys_excepthook.set_colors(scheme=new_scheme)
2502 2502 except:
2503 2503 color_switch_err('system exception handler')
2504 2504
2505 2505 # Set info (for 'object?') colors
2506 2506 if shell.color_info:
2507 2507 try:
2508 2508 shell.inspector.set_active_scheme(new_scheme)
2509 2509 except:
2510 2510 color_switch_err('object inspector')
2511 2511 else:
2512 2512 shell.inspector.set_active_scheme('NoColor')
2513 2513
2514 2514 def magic_color_info(self,parameter_s = ''):
2515 2515 """Toggle color_info.
2516 2516
2517 2517 The color_info configuration parameter controls whether colors are
2518 2518 used for displaying object details (by things like %psource, %pfile or
2519 2519 the '?' system). This function toggles this value with each call.
2520 2520
2521 2521 Note that unless you have a fairly recent pager (less works better
2522 2522 than more) in your system, using colored object information displays
2523 2523 will not work properly. Test it and see."""
2524 2524
2525 2525 self.shell.color_info = not self.shell.color_info
2526 2526 self.magic_colors(self.shell.colors)
2527 2527 print 'Object introspection functions have now coloring:',
2528 2528 print ['OFF','ON'][int(self.shell.color_info)]
2529 2529
2530 2530 def magic_Pprint(self, parameter_s=''):
2531 2531 """Toggle pretty printing on/off."""
2532 2532
2533 2533 self.shell.pprint = 1 - self.shell.pprint
2534 2534 print 'Pretty printing has been turned', \
2535 2535 ['OFF','ON'][self.shell.pprint]
2536 2536
2537 2537 def magic_Exit(self, parameter_s=''):
2538 2538 """Exit IPython without confirmation."""
2539 2539
2540 2540 self.shell.ask_exit()
2541 2541
2542 2542 # Add aliases as magics so all common forms work: exit, quit, Exit, Quit.
2543 2543 magic_exit = magic_quit = magic_Quit = magic_Exit
2544 2544
2545 2545 #......................................................................
2546 2546 # Functions to implement unix shell-type things
2547 2547
2548 2548 @testdec.skip_doctest
2549 2549 def magic_alias(self, parameter_s = ''):
2550 2550 """Define an alias for a system command.
2551 2551
2552 2552 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2553 2553
2554 2554 Then, typing 'alias_name params' will execute the system command 'cmd
2555 2555 params' (from your underlying operating system).
2556 2556
2557 2557 Aliases have lower precedence than magic functions and Python normal
2558 2558 variables, so if 'foo' is both a Python variable and an alias, the
2559 2559 alias can not be executed until 'del foo' removes the Python variable.
2560 2560
2561 2561 You can use the %l specifier in an alias definition to represent the
2562 2562 whole line when the alias is called. For example:
2563 2563
2564 2564 In [2]: alias all echo "Input in brackets: <%l>"
2565 2565 In [3]: all hello world
2566 2566 Input in brackets: <hello world>
2567 2567
2568 2568 You can also define aliases with parameters using %s specifiers (one
2569 2569 per parameter):
2570 2570
2571 2571 In [1]: alias parts echo first %s second %s
2572 2572 In [2]: %parts A B
2573 2573 first A second B
2574 2574 In [3]: %parts A
2575 2575 Incorrect number of arguments: 2 expected.
2576 2576 parts is an alias to: 'echo first %s second %s'
2577 2577
2578 2578 Note that %l and %s are mutually exclusive. You can only use one or
2579 2579 the other in your aliases.
2580 2580
2581 2581 Aliases expand Python variables just like system calls using ! or !!
2582 2582 do: all expressions prefixed with '$' get expanded. For details of
2583 2583 the semantic rules, see PEP-215:
2584 2584 http://www.python.org/peps/pep-0215.html. This is the library used by
2585 2585 IPython for variable expansion. If you want to access a true shell
2586 2586 variable, an extra $ is necessary to prevent its expansion by IPython:
2587 2587
2588 2588 In [6]: alias show echo
2589 2589 In [7]: PATH='A Python string'
2590 2590 In [8]: show $PATH
2591 2591 A Python string
2592 2592 In [9]: show $$PATH
2593 2593 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2594 2594
2595 2595 You can use the alias facility to acess all of $PATH. See the %rehash
2596 2596 and %rehashx functions, which automatically create aliases for the
2597 2597 contents of your $PATH.
2598 2598
2599 2599 If called with no parameters, %alias prints the current alias table."""
2600 2600
2601 2601 par = parameter_s.strip()
2602 2602 if not par:
2603 2603 stored = self.db.get('stored_aliases', {} )
2604 2604 aliases = sorted(self.shell.alias_manager.aliases)
2605 2605 # for k, v in stored:
2606 2606 # atab.append(k, v[0])
2607 2607
2608 2608 print "Total number of aliases:", len(aliases)
2609 2609 return aliases
2610 2610
2611 2611 # Now try to define a new one
2612 2612 try:
2613 2613 alias,cmd = par.split(None, 1)
2614 2614 except:
2615 2615 print oinspect.getdoc(self.magic_alias)
2616 2616 else:
2617 2617 self.shell.alias_manager.soft_define_alias(alias, cmd)
2618 2618 # end magic_alias
2619 2619
2620 2620 def magic_unalias(self, parameter_s = ''):
2621 2621 """Remove an alias"""
2622 2622
2623 2623 aname = parameter_s.strip()
2624 2624 self.shell.alias_manager.undefine_alias(aname)
2625 2625 stored = self.db.get('stored_aliases', {} )
2626 2626 if aname in stored:
2627 2627 print "Removing %stored alias",aname
2628 2628 del stored[aname]
2629 2629 self.db['stored_aliases'] = stored
2630 2630
2631 2631
2632 2632 def magic_rehashx(self, parameter_s = ''):
2633 2633 """Update the alias table with all executable files in $PATH.
2634 2634
2635 2635 This version explicitly checks that every entry in $PATH is a file
2636 2636 with execute access (os.X_OK), so it is much slower than %rehash.
2637 2637
2638 2638 Under Windows, it checks executability as a match agains a
2639 2639 '|'-separated string of extensions, stored in the IPython config
2640 2640 variable win_exec_ext. This defaults to 'exe|com|bat'.
2641 2641
2642 2642 This function also resets the root module cache of module completer,
2643 2643 used on slow filesystems.
2644 2644 """
2645 2645 from IPython.core.alias import InvalidAliasError
2646 2646
2647 2647 # for the benefit of module completer in ipy_completers.py
2648 2648 del self.db['rootmodules']
2649 2649
2650 2650 path = [os.path.abspath(os.path.expanduser(p)) for p in
2651 2651 os.environ.get('PATH','').split(os.pathsep)]
2652 2652 path = filter(os.path.isdir,path)
2653 2653
2654 2654 syscmdlist = []
2655 2655 # Now define isexec in a cross platform manner.
2656 2656 if os.name == 'posix':
2657 2657 isexec = lambda fname:os.path.isfile(fname) and \
2658 2658 os.access(fname,os.X_OK)
2659 2659 else:
2660 2660 try:
2661 2661 winext = os.environ['pathext'].replace(';','|').replace('.','')
2662 2662 except KeyError:
2663 2663 winext = 'exe|com|bat|py'
2664 2664 if 'py' not in winext:
2665 2665 winext += '|py'
2666 2666 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2667 2667 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2668 2668 savedir = os.getcwd()
2669 2669
2670 2670 # Now walk the paths looking for executables to alias.
2671 2671 try:
2672 2672 # write the whole loop for posix/Windows so we don't have an if in
2673 2673 # the innermost part
2674 2674 if os.name == 'posix':
2675 2675 for pdir in path:
2676 2676 os.chdir(pdir)
2677 2677 for ff in os.listdir(pdir):
2678 2678 if isexec(ff):
2679 2679 try:
2680 2680 # Removes dots from the name since ipython
2681 2681 # will assume names with dots to be python.
2682 2682 self.shell.alias_manager.define_alias(
2683 2683 ff.replace('.',''), ff)
2684 2684 except InvalidAliasError:
2685 2685 pass
2686 2686 else:
2687 2687 syscmdlist.append(ff)
2688 2688 else:
2689 2689 no_alias = self.shell.alias_manager.no_alias
2690 2690 for pdir in path:
2691 2691 os.chdir(pdir)
2692 2692 for ff in os.listdir(pdir):
2693 2693 base, ext = os.path.splitext(ff)
2694 2694 if isexec(ff) and base.lower() not in no_alias:
2695 2695 if ext.lower() == '.exe':
2696 2696 ff = base
2697 2697 try:
2698 2698 # Removes dots from the name since ipython
2699 2699 # will assume names with dots to be python.
2700 2700 self.shell.alias_manager.define_alias(
2701 2701 base.lower().replace('.',''), ff)
2702 2702 except InvalidAliasError:
2703 2703 pass
2704 2704 syscmdlist.append(ff)
2705 2705 db = self.db
2706 2706 db['syscmdlist'] = syscmdlist
2707 2707 finally:
2708 2708 os.chdir(savedir)
2709 2709
2710 2710 def magic_pwd(self, parameter_s = ''):
2711 2711 """Return the current working directory path."""
2712 2712 return os.getcwd()
2713 2713
2714 2714 def magic_cd(self, parameter_s=''):
2715 2715 """Change the current working directory.
2716 2716
2717 2717 This command automatically maintains an internal list of directories
2718 2718 you visit during your IPython session, in the variable _dh. The
2719 2719 command %dhist shows this history nicely formatted. You can also
2720 2720 do 'cd -<tab>' to see directory history conveniently.
2721 2721
2722 2722 Usage:
2723 2723
2724 2724 cd 'dir': changes to directory 'dir'.
2725 2725
2726 2726 cd -: changes to the last visited directory.
2727 2727
2728 2728 cd -<n>: changes to the n-th directory in the directory history.
2729 2729
2730 2730 cd --foo: change to directory that matches 'foo' in history
2731 2731
2732 2732 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2733 2733 (note: cd <bookmark_name> is enough if there is no
2734 2734 directory <bookmark_name>, but a bookmark with the name exists.)
2735 2735 'cd -b <tab>' allows you to tab-complete bookmark names.
2736 2736
2737 2737 Options:
2738 2738
2739 2739 -q: quiet. Do not print the working directory after the cd command is
2740 2740 executed. By default IPython's cd command does print this directory,
2741 2741 since the default prompts do not display path information.
2742 2742
2743 2743 Note that !cd doesn't work for this purpose because the shell where
2744 2744 !command runs is immediately discarded after executing 'command'."""
2745 2745
2746 2746 parameter_s = parameter_s.strip()
2747 2747 #bkms = self.shell.persist.get("bookmarks",{})
2748 2748
2749 2749 oldcwd = os.getcwd()
2750 2750 numcd = re.match(r'(-)(\d+)$',parameter_s)
2751 2751 # jump in directory history by number
2752 2752 if numcd:
2753 2753 nn = int(numcd.group(2))
2754 2754 try:
2755 2755 ps = self.shell.user_ns['_dh'][nn]
2756 2756 except IndexError:
2757 2757 print 'The requested directory does not exist in history.'
2758 2758 return
2759 2759 else:
2760 2760 opts = {}
2761 2761 elif parameter_s.startswith('--'):
2762 2762 ps = None
2763 2763 fallback = None
2764 2764 pat = parameter_s[2:]
2765 2765 dh = self.shell.user_ns['_dh']
2766 2766 # first search only by basename (last component)
2767 2767 for ent in reversed(dh):
2768 2768 if pat in os.path.basename(ent) and os.path.isdir(ent):
2769 2769 ps = ent
2770 2770 break
2771 2771
2772 2772 if fallback is None and pat in ent and os.path.isdir(ent):
2773 2773 fallback = ent
2774 2774
2775 2775 # if we have no last part match, pick the first full path match
2776 2776 if ps is None:
2777 2777 ps = fallback
2778 2778
2779 2779 if ps is None:
2780 2780 print "No matching entry in directory history"
2781 2781 return
2782 2782 else:
2783 2783 opts = {}
2784 2784
2785 2785
2786 2786 else:
2787 2787 #turn all non-space-escaping backslashes to slashes,
2788 2788 # for c:\windows\directory\names\
2789 2789 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2790 2790 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2791 2791 # jump to previous
2792 2792 if ps == '-':
2793 2793 try:
2794 2794 ps = self.shell.user_ns['_dh'][-2]
2795 2795 except IndexError:
2796 2796 raise UsageError('%cd -: No previous directory to change to.')
2797 2797 # jump to bookmark if needed
2798 2798 else:
2799 2799 if not os.path.isdir(ps) or opts.has_key('b'):
2800 2800 bkms = self.db.get('bookmarks', {})
2801 2801
2802 2802 if bkms.has_key(ps):
2803 2803 target = bkms[ps]
2804 2804 print '(bookmark:%s) -> %s' % (ps,target)
2805 2805 ps = target
2806 2806 else:
2807 2807 if opts.has_key('b'):
2808 2808 raise UsageError("Bookmark '%s' not found. "
2809 2809 "Use '%%bookmark -l' to see your bookmarks." % ps)
2810 2810
2811 2811 # at this point ps should point to the target dir
2812 2812 if ps:
2813 2813 try:
2814 2814 os.chdir(os.path.expanduser(ps))
2815 2815 if self.shell.term_title:
2816 2816 set_term_title('IPython: ' + abbrev_cwd())
2817 2817 except OSError:
2818 2818 print sys.exc_info()[1]
2819 2819 else:
2820 2820 cwd = os.getcwd()
2821 2821 dhist = self.shell.user_ns['_dh']
2822 2822 if oldcwd != cwd:
2823 2823 dhist.append(cwd)
2824 2824 self.db['dhist'] = compress_dhist(dhist)[-100:]
2825 2825
2826 2826 else:
2827 2827 os.chdir(self.shell.home_dir)
2828 2828 if self.shell.term_title:
2829 2829 set_term_title('IPython: ' + '~')
2830 2830 cwd = os.getcwd()
2831 2831 dhist = self.shell.user_ns['_dh']
2832 2832
2833 2833 if oldcwd != cwd:
2834 2834 dhist.append(cwd)
2835 2835 self.db['dhist'] = compress_dhist(dhist)[-100:]
2836 2836 if not 'q' in opts and self.shell.user_ns['_dh']:
2837 2837 print self.shell.user_ns['_dh'][-1]
2838 2838
2839 2839
2840 2840 def magic_env(self, parameter_s=''):
2841 2841 """List environment variables."""
2842 2842
2843 2843 return os.environ.data
2844 2844
2845 2845 def magic_pushd(self, parameter_s=''):
2846 2846 """Place the current dir on stack and change directory.
2847 2847
2848 2848 Usage:\\
2849 2849 %pushd ['dirname']
2850 2850 """
2851 2851
2852 2852 dir_s = self.shell.dir_stack
2853 2853 tgt = os.path.expanduser(parameter_s)
2854 2854 cwd = os.getcwd().replace(self.home_dir,'~')
2855 2855 if tgt:
2856 2856 self.magic_cd(parameter_s)
2857 2857 dir_s.insert(0,cwd)
2858 2858 return self.magic_dirs()
2859 2859
2860 2860 def magic_popd(self, parameter_s=''):
2861 2861 """Change to directory popped off the top of the stack.
2862 2862 """
2863 2863 if not self.shell.dir_stack:
2864 2864 raise UsageError("%popd on empty stack")
2865 2865 top = self.shell.dir_stack.pop(0)
2866 2866 self.magic_cd(top)
2867 2867 print "popd ->",top
2868 2868
2869 2869 def magic_dirs(self, parameter_s=''):
2870 2870 """Return the current directory stack."""
2871 2871
2872 2872 return self.shell.dir_stack
2873 2873
2874 2874 def magic_dhist(self, parameter_s=''):
2875 2875 """Print your history of visited directories.
2876 2876
2877 2877 %dhist -> print full history\\
2878 2878 %dhist n -> print last n entries only\\
2879 2879 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2880 2880
2881 2881 This history is automatically maintained by the %cd command, and
2882 2882 always available as the global list variable _dh. You can use %cd -<n>
2883 2883 to go to directory number <n>.
2884 2884
2885 2885 Note that most of time, you should view directory history by entering
2886 2886 cd -<TAB>.
2887 2887
2888 2888 """
2889 2889
2890 2890 dh = self.shell.user_ns['_dh']
2891 2891 if parameter_s:
2892 2892 try:
2893 2893 args = map(int,parameter_s.split())
2894 2894 except:
2895 2895 self.arg_err(Magic.magic_dhist)
2896 2896 return
2897 2897 if len(args) == 1:
2898 2898 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2899 2899 elif len(args) == 2:
2900 2900 ini,fin = args
2901 2901 else:
2902 2902 self.arg_err(Magic.magic_dhist)
2903 2903 return
2904 2904 else:
2905 2905 ini,fin = 0,len(dh)
2906 2906 nlprint(dh,
2907 2907 header = 'Directory history (kept in _dh)',
2908 2908 start=ini,stop=fin)
2909 2909
2910 2910 @testdec.skip_doctest
2911 2911 def magic_sc(self, parameter_s=''):
2912 2912 """Shell capture - execute a shell command and capture its output.
2913 2913
2914 2914 DEPRECATED. Suboptimal, retained for backwards compatibility.
2915 2915
2916 2916 You should use the form 'var = !command' instead. Example:
2917 2917
2918 2918 "%sc -l myfiles = ls ~" should now be written as
2919 2919
2920 2920 "myfiles = !ls ~"
2921 2921
2922 2922 myfiles.s, myfiles.l and myfiles.n still apply as documented
2923 2923 below.
2924 2924
2925 2925 --
2926 2926 %sc [options] varname=command
2927 2927
2928 2928 IPython will run the given command using commands.getoutput(), and
2929 2929 will then update the user's interactive namespace with a variable
2930 2930 called varname, containing the value of the call. Your command can
2931 2931 contain shell wildcards, pipes, etc.
2932 2932
2933 2933 The '=' sign in the syntax is mandatory, and the variable name you
2934 2934 supply must follow Python's standard conventions for valid names.
2935 2935
2936 2936 (A special format without variable name exists for internal use)
2937 2937
2938 2938 Options:
2939 2939
2940 2940 -l: list output. Split the output on newlines into a list before
2941 2941 assigning it to the given variable. By default the output is stored
2942 2942 as a single string.
2943 2943
2944 2944 -v: verbose. Print the contents of the variable.
2945 2945
2946 2946 In most cases you should not need to split as a list, because the
2947 2947 returned value is a special type of string which can automatically
2948 2948 provide its contents either as a list (split on newlines) or as a
2949 2949 space-separated string. These are convenient, respectively, either
2950 2950 for sequential processing or to be passed to a shell command.
2951 2951
2952 2952 For example:
2953 2953
2954 2954 # all-random
2955 2955
2956 2956 # Capture into variable a
2957 2957 In [1]: sc a=ls *py
2958 2958
2959 2959 # a is a string with embedded newlines
2960 2960 In [2]: a
2961 2961 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2962 2962
2963 2963 # which can be seen as a list:
2964 2964 In [3]: a.l
2965 2965 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2966 2966
2967 2967 # or as a whitespace-separated string:
2968 2968 In [4]: a.s
2969 2969 Out[4]: 'setup.py win32_manual_post_install.py'
2970 2970
2971 2971 # a.s is useful to pass as a single command line:
2972 2972 In [5]: !wc -l $a.s
2973 2973 146 setup.py
2974 2974 130 win32_manual_post_install.py
2975 2975 276 total
2976 2976
2977 2977 # while the list form is useful to loop over:
2978 2978 In [6]: for f in a.l:
2979 2979 ...: !wc -l $f
2980 2980 ...:
2981 2981 146 setup.py
2982 2982 130 win32_manual_post_install.py
2983 2983
2984 2984 Similiarly, the lists returned by the -l option are also special, in
2985 2985 the sense that you can equally invoke the .s attribute on them to
2986 2986 automatically get a whitespace-separated string from their contents:
2987 2987
2988 2988 In [7]: sc -l b=ls *py
2989 2989
2990 2990 In [8]: b
2991 2991 Out[8]: ['setup.py', 'win32_manual_post_install.py']
2992 2992
2993 2993 In [9]: b.s
2994 2994 Out[9]: 'setup.py win32_manual_post_install.py'
2995 2995
2996 2996 In summary, both the lists and strings used for ouptut capture have
2997 2997 the following special attributes:
2998 2998
2999 2999 .l (or .list) : value as list.
3000 3000 .n (or .nlstr): value as newline-separated string.
3001 3001 .s (or .spstr): value as space-separated string.
3002 3002 """
3003 3003
3004 3004 opts,args = self.parse_options(parameter_s,'lv')
3005 3005 # Try to get a variable name and command to run
3006 3006 try:
3007 3007 # the variable name must be obtained from the parse_options
3008 3008 # output, which uses shlex.split to strip options out.
3009 3009 var,_ = args.split('=',1)
3010 3010 var = var.strip()
3011 3011 # But the the command has to be extracted from the original input
3012 3012 # parameter_s, not on what parse_options returns, to avoid the
3013 3013 # quote stripping which shlex.split performs on it.
3014 3014 _,cmd = parameter_s.split('=',1)
3015 3015 except ValueError:
3016 3016 var,cmd = '',''
3017 3017 # If all looks ok, proceed
3018 3018 out,err = self.shell.getoutputerror(cmd)
3019 3019 if err:
3020 3020 print >> Term.cerr,err
3021 3021 if opts.has_key('l'):
3022 3022 out = SList(out.split('\n'))
3023 3023 else:
3024 3024 out = LSString(out)
3025 3025 if opts.has_key('v'):
3026 3026 print '%s ==\n%s' % (var,pformat(out))
3027 3027 if var:
3028 3028 self.shell.user_ns.update({var:out})
3029 3029 else:
3030 3030 return out
3031 3031
3032 3032 def magic_sx(self, parameter_s=''):
3033 3033 """Shell execute - run a shell command and capture its output.
3034 3034
3035 3035 %sx command
3036 3036
3037 3037 IPython will run the given command using commands.getoutput(), and
3038 3038 return the result formatted as a list (split on '\\n'). Since the
3039 3039 output is _returned_, it will be stored in ipython's regular output
3040 3040 cache Out[N] and in the '_N' automatic variables.
3041 3041
3042 3042 Notes:
3043 3043
3044 3044 1) If an input line begins with '!!', then %sx is automatically
3045 3045 invoked. That is, while:
3046 3046 !ls
3047 3047 causes ipython to simply issue system('ls'), typing
3048 3048 !!ls
3049 3049 is a shorthand equivalent to:
3050 3050 %sx ls
3051 3051
3052 3052 2) %sx differs from %sc in that %sx automatically splits into a list,
3053 3053 like '%sc -l'. The reason for this is to make it as easy as possible
3054 3054 to process line-oriented shell output via further python commands.
3055 3055 %sc is meant to provide much finer control, but requires more
3056 3056 typing.
3057 3057
3058 3058 3) Just like %sc -l, this is a list with special attributes:
3059 3059
3060 3060 .l (or .list) : value as list.
3061 3061 .n (or .nlstr): value as newline-separated string.
3062 3062 .s (or .spstr): value as whitespace-separated string.
3063 3063
3064 3064 This is very useful when trying to use such lists as arguments to
3065 3065 system commands."""
3066 3066
3067 3067 if parameter_s:
3068 3068 out,err = self.shell.getoutputerror(parameter_s)
3069 3069 if err:
3070 3070 print >> Term.cerr,err
3071 3071 return SList(out.split('\n'))
3072 3072
3073 3073 def magic_bg(self, parameter_s=''):
3074 3074 """Run a job in the background, in a separate thread.
3075 3075
3076 3076 For example,
3077 3077
3078 3078 %bg myfunc(x,y,z=1)
3079 3079
3080 3080 will execute 'myfunc(x,y,z=1)' in a background thread. As soon as the
3081 3081 execution starts, a message will be printed indicating the job
3082 3082 number. If your job number is 5, you can use
3083 3083
3084 3084 myvar = jobs.result(5) or myvar = jobs[5].result
3085 3085
3086 3086 to assign this result to variable 'myvar'.
3087 3087
3088 3088 IPython has a job manager, accessible via the 'jobs' object. You can
3089 3089 type jobs? to get more information about it, and use jobs.<TAB> to see
3090 3090 its attributes. All attributes not starting with an underscore are
3091 3091 meant for public use.
3092 3092
3093 3093 In particular, look at the jobs.new() method, which is used to create
3094 3094 new jobs. This magic %bg function is just a convenience wrapper
3095 3095 around jobs.new(), for expression-based jobs. If you want to create a
3096 3096 new job with an explicit function object and arguments, you must call
3097 3097 jobs.new() directly.
3098 3098
3099 3099 The jobs.new docstring also describes in detail several important
3100 3100 caveats associated with a thread-based model for background job
3101 3101 execution. Type jobs.new? for details.
3102 3102
3103 3103 You can check the status of all jobs with jobs.status().
3104 3104
3105 3105 The jobs variable is set by IPython into the Python builtin namespace.
3106 3106 If you ever declare a variable named 'jobs', you will shadow this
3107 3107 name. You can either delete your global jobs variable to regain
3108 3108 access to the job manager, or make a new name and assign it manually
3109 3109 to the manager (stored in IPython's namespace). For example, to
3110 3110 assign the job manager to the Jobs name, use:
3111 3111
3112 3112 Jobs = __builtins__.jobs"""
3113 3113
3114 3114 self.shell.jobs.new(parameter_s,self.shell.user_ns)
3115 3115
3116 3116 def magic_r(self, parameter_s=''):
3117 3117 """Repeat previous input.
3118 3118
3119 3119 Note: Consider using the more powerfull %rep instead!
3120 3120
3121 3121 If given an argument, repeats the previous command which starts with
3122 3122 the same string, otherwise it just repeats the previous input.
3123 3123
3124 3124 Shell escaped commands (with ! as first character) are not recognized
3125 3125 by this system, only pure python code and magic commands.
3126 3126 """
3127 3127
3128 3128 start = parameter_s.strip()
3129 3129 esc_magic = ESC_MAGIC
3130 3130 # Identify magic commands even if automagic is on (which means
3131 3131 # the in-memory version is different from that typed by the user).
3132 3132 if self.shell.automagic:
3133 3133 start_magic = esc_magic+start
3134 3134 else:
3135 3135 start_magic = start
3136 3136 # Look through the input history in reverse
3137 3137 for n in range(len(self.shell.input_hist)-2,0,-1):
3138 3138 input = self.shell.input_hist[n]
3139 3139 # skip plain 'r' lines so we don't recurse to infinity
3140 3140 if input != '_ip.magic("r")\n' and \
3141 3141 (input.startswith(start) or input.startswith(start_magic)):
3142 3142 #print 'match',`input` # dbg
3143 3143 print 'Executing:',input,
3144 3144 self.shell.runlines(input)
3145 3145 return
3146 3146 print 'No previous input matching `%s` found.' % start
3147 3147
3148 3148
3149 3149 def magic_bookmark(self, parameter_s=''):
3150 3150 """Manage IPython's bookmark system.
3151 3151
3152 3152 %bookmark <name> - set bookmark to current dir
3153 3153 %bookmark <name> <dir> - set bookmark to <dir>
3154 3154 %bookmark -l - list all bookmarks
3155 3155 %bookmark -d <name> - remove bookmark
3156 3156 %bookmark -r - remove all bookmarks
3157 3157
3158 3158 You can later on access a bookmarked folder with:
3159 3159 %cd -b <name>
3160 3160 or simply '%cd <name>' if there is no directory called <name> AND
3161 3161 there is such a bookmark defined.
3162 3162
3163 3163 Your bookmarks persist through IPython sessions, but they are
3164 3164 associated with each profile."""
3165 3165
3166 3166 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3167 3167 if len(args) > 2:
3168 3168 raise UsageError("%bookmark: too many arguments")
3169 3169
3170 3170 bkms = self.db.get('bookmarks',{})
3171 3171
3172 3172 if opts.has_key('d'):
3173 3173 try:
3174 3174 todel = args[0]
3175 3175 except IndexError:
3176 3176 raise UsageError(
3177 3177 "%bookmark -d: must provide a bookmark to delete")
3178 3178 else:
3179 3179 try:
3180 3180 del bkms[todel]
3181 3181 except KeyError:
3182 3182 raise UsageError(
3183 3183 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3184 3184
3185 3185 elif opts.has_key('r'):
3186 3186 bkms = {}
3187 3187 elif opts.has_key('l'):
3188 3188 bks = bkms.keys()
3189 3189 bks.sort()
3190 3190 if bks:
3191 3191 size = max(map(len,bks))
3192 3192 else:
3193 3193 size = 0
3194 3194 fmt = '%-'+str(size)+'s -> %s'
3195 3195 print 'Current bookmarks:'
3196 3196 for bk in bks:
3197 3197 print fmt % (bk,bkms[bk])
3198 3198 else:
3199 3199 if not args:
3200 3200 raise UsageError("%bookmark: You must specify the bookmark name")
3201 3201 elif len(args)==1:
3202 3202 bkms[args[0]] = os.getcwd()
3203 3203 elif len(args)==2:
3204 3204 bkms[args[0]] = args[1]
3205 3205 self.db['bookmarks'] = bkms
3206 3206
3207 3207 def magic_pycat(self, parameter_s=''):
3208 3208 """Show a syntax-highlighted file through a pager.
3209 3209
3210 3210 This magic is similar to the cat utility, but it will assume the file
3211 3211 to be Python source and will show it with syntax highlighting. """
3212 3212
3213 3213 try:
3214 3214 filename = get_py_filename(parameter_s)
3215 3215 cont = file_read(filename)
3216 3216 except IOError:
3217 3217 try:
3218 3218 cont = eval(parameter_s,self.user_ns)
3219 3219 except NameError:
3220 3220 cont = None
3221 3221 if cont is None:
3222 3222 print "Error: no such file or variable"
3223 3223 return
3224 3224
3225 3225 page(self.shell.pycolorize(cont),
3226 3226 screen_lines=self.shell.usable_screen_length)
3227 3227
3228 3228 def _rerun_pasted(self):
3229 3229 """ Rerun a previously pasted command.
3230 3230 """
3231 3231 b = self.user_ns.get('pasted_block', None)
3232 3232 if b is None:
3233 3233 raise UsageError('No previous pasted block available')
3234 3234 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3235 3235 exec b in self.user_ns
3236 3236
3237 3237 def _get_pasted_lines(self, sentinel):
3238 3238 """ Yield pasted lines until the user enters the given sentinel value.
3239 3239 """
3240 3240 from IPython.core import iplib
3241 3241 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3242 3242 while True:
3243 3243 l = iplib.raw_input_original(':')
3244 3244 if l == sentinel:
3245 3245 return
3246 3246 else:
3247 3247 yield l
3248 3248
3249 3249 def _strip_pasted_lines_for_code(self, raw_lines):
3250 3250 """ Strip non-code parts of a sequence of lines to return a block of
3251 3251 code.
3252 3252 """
3253 3253 # Regular expressions that declare text we strip from the input:
3254 3254 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3255 3255 r'^\s*(\s?>)+', # Python input prompt
3256 3256 r'^\s*\.{3,}', # Continuation prompts
3257 3257 r'^\++',
3258 3258 ]
3259 3259
3260 3260 strip_from_start = map(re.compile,strip_re)
3261 3261
3262 3262 lines = []
3263 3263 for l in raw_lines:
3264 3264 for pat in strip_from_start:
3265 3265 l = pat.sub('',l)
3266 3266 lines.append(l)
3267 3267
3268 3268 block = "\n".join(lines) + '\n'
3269 3269 #print "block:\n",block
3270 3270 return block
3271 3271
3272 3272 def _execute_block(self, block, par):
3273 3273 """ Execute a block, or store it in a variable, per the user's request.
3274 3274 """
3275 3275 if not par:
3276 3276 b = textwrap.dedent(block)
3277 3277 self.user_ns['pasted_block'] = b
3278 3278 exec b in self.user_ns
3279 3279 else:
3280 3280 self.user_ns[par] = SList(block.splitlines())
3281 3281 print "Block assigned to '%s'" % par
3282 3282
3283 3283 def magic_cpaste(self, parameter_s=''):
3284 3284 """Allows you to paste & execute a pre-formatted code block from clipboard.
3285 3285
3286 3286 You must terminate the block with '--' (two minus-signs) alone on the
3287 3287 line. You can also provide your own sentinel with '%paste -s %%' ('%%'
3288 3288 is the new sentinel for this operation)
3289 3289
3290 3290 The block is dedented prior to execution to enable execution of method
3291 3291 definitions. '>' and '+' characters at the beginning of a line are
3292 3292 ignored, to allow pasting directly from e-mails, diff files and
3293 3293 doctests (the '...' continuation prompt is also stripped). The
3294 3294 executed block is also assigned to variable named 'pasted_block' for
3295 3295 later editing with '%edit pasted_block'.
3296 3296
3297 3297 You can also pass a variable name as an argument, e.g. '%cpaste foo'.
3298 3298 This assigns the pasted block to variable 'foo' as string, without
3299 3299 dedenting or executing it (preceding >>> and + is still stripped)
3300 3300
3301 3301 '%cpaste -r' re-executes the block previously entered by cpaste.
3302 3302
3303 3303 Do not be alarmed by garbled output on Windows (it's a readline bug).
3304 3304 Just press enter and type -- (and press enter again) and the block
3305 3305 will be what was just pasted.
3306 3306
3307 3307 IPython statements (magics, shell escapes) are not supported (yet).
3308 3308
3309 3309 See also
3310 3310 --------
3311 3311 paste: automatically pull code from clipboard.
3312 3312 """
3313 3313
3314 3314 opts,args = self.parse_options(parameter_s,'rs:',mode='string')
3315 3315 par = args.strip()
3316 3316 if opts.has_key('r'):
3317 3317 self._rerun_pasted()
3318 3318 return
3319 3319
3320 3320 sentinel = opts.get('s','--')
3321 3321
3322 3322 block = self._strip_pasted_lines_for_code(
3323 3323 self._get_pasted_lines(sentinel))
3324 3324
3325 3325 self._execute_block(block, par)
3326 3326
3327 3327 def magic_paste(self, parameter_s=''):
3328 3328 """Allows you to paste & execute a pre-formatted code block from clipboard.
3329 3329
3330 3330 The text is pulled directly from the clipboard without user
3331 3331 intervention and printed back on the screen before execution (unless
3332 3332 the -q flag is given to force quiet mode).
3333 3333
3334 3334 The block is dedented prior to execution to enable execution of method
3335 3335 definitions. '>' and '+' characters at the beginning of a line are
3336 3336 ignored, to allow pasting directly from e-mails, diff files and
3337 3337 doctests (the '...' continuation prompt is also stripped). The
3338 3338 executed block is also assigned to variable named 'pasted_block' for
3339 3339 later editing with '%edit pasted_block'.
3340 3340
3341 3341 You can also pass a variable name as an argument, e.g. '%paste foo'.
3342 3342 This assigns the pasted block to variable 'foo' as string, without
3343 3343 dedenting or executing it (preceding >>> and + is still stripped)
3344 3344
3345 3345 Options
3346 3346 -------
3347 3347
3348 3348 -r: re-executes the block previously entered by cpaste.
3349 3349
3350 3350 -q: quiet mode: do not echo the pasted text back to the terminal.
3351 3351
3352 3352 IPython statements (magics, shell escapes) are not supported (yet).
3353 3353
3354 3354 See also
3355 3355 --------
3356 3356 cpaste: manually paste code into terminal until you mark its end.
3357 3357 """
3358 3358 opts,args = self.parse_options(parameter_s,'rq',mode='string')
3359 3359 par = args.strip()
3360 3360 if opts.has_key('r'):
3361 3361 self._rerun_pasted()
3362 3362 return
3363 3363
3364 3364 text = self.shell.hooks.clipboard_get()
3365 3365 block = self._strip_pasted_lines_for_code(text.splitlines())
3366 3366
3367 3367 # By default, echo back to terminal unless quiet mode is requested
3368 3368 if not opts.has_key('q'):
3369 3369 write = self.shell.write
3370 3370 write(self.shell.pycolorize(block))
3371 3371 if not block.endswith('\n'):
3372 3372 write('\n')
3373 3373 write("## -- End pasted text --\n")
3374 3374
3375 3375 self._execute_block(block, par)
3376 3376
3377 3377 def magic_quickref(self,arg):
3378 3378 """ Show a quick reference sheet """
3379 3379 import IPython.core.usage
3380 3380 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3381 3381
3382 3382 page(qr)
3383 3383
3384 3384 def magic_doctest_mode(self,parameter_s=''):
3385 3385 """Toggle doctest mode on and off.
3386 3386
3387 3387 This mode allows you to toggle the prompt behavior between normal
3388 3388 IPython prompts and ones that are as similar to the default IPython
3389 3389 interpreter as possible.
3390 3390
3391 3391 It also supports the pasting of code snippets that have leading '>>>'
3392 3392 and '...' prompts in them. This means that you can paste doctests from
3393 3393 files or docstrings (even if they have leading whitespace), and the
3394 3394 code will execute correctly. You can then use '%history -tn' to see
3395 3395 the translated history without line numbers; this will give you the
3396 3396 input after removal of all the leading prompts and whitespace, which
3397 3397 can be pasted back into an editor.
3398 3398
3399 3399 With these features, you can switch into this mode easily whenever you
3400 3400 need to do testing and changes to doctests, without having to leave
3401 3401 your existing IPython session.
3402 3402 """
3403 3403
3404 3404 from IPython.utils.ipstruct import Struct
3405 3405
3406 3406 # Shorthands
3407 3407 shell = self.shell
3408 3408 oc = shell.outputcache
3409 3409 meta = shell.meta
3410 3410 # dstore is a data store kept in the instance metadata bag to track any
3411 3411 # changes we make, so we can undo them later.
3412 3412 dstore = meta.setdefault('doctest_mode',Struct())
3413 3413 save_dstore = dstore.setdefault
3414 3414
3415 3415 # save a few values we'll need to recover later
3416 3416 mode = save_dstore('mode',False)
3417 3417 save_dstore('rc_pprint',shell.pprint)
3418 3418 save_dstore('xmode',shell.InteractiveTB.mode)
3419 3419 save_dstore('rc_separate_out',shell.separate_out)
3420 3420 save_dstore('rc_separate_out2',shell.separate_out2)
3421 3421 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3422 3422 save_dstore('rc_separate_in',shell.separate_in)
3423 3423
3424 3424 if mode == False:
3425 3425 # turn on
3426 3426 oc.prompt1.p_template = '>>> '
3427 3427 oc.prompt2.p_template = '... '
3428 3428 oc.prompt_out.p_template = ''
3429 3429
3430 3430 # Prompt separators like plain python
3431 3431 oc.input_sep = oc.prompt1.sep = ''
3432 3432 oc.output_sep = ''
3433 3433 oc.output_sep2 = ''
3434 3434
3435 3435 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3436 3436 oc.prompt_out.pad_left = False
3437 3437
3438 3438 shell.pprint = False
3439 3439
3440 3440 shell.magic_xmode('Plain')
3441 3441
3442 3442 else:
3443 3443 # turn off
3444 3444 oc.prompt1.p_template = shell.prompt_in1
3445 3445 oc.prompt2.p_template = shell.prompt_in2
3446 3446 oc.prompt_out.p_template = shell.prompt_out
3447 3447
3448 3448 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3449 3449
3450 3450 oc.output_sep = dstore.rc_separate_out
3451 3451 oc.output_sep2 = dstore.rc_separate_out2
3452 3452
3453 3453 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3454 3454 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3455 3455
3456 3456 shell.pprint = dstore.rc_pprint
3457 3457
3458 3458 shell.magic_xmode(dstore.xmode)
3459 3459
3460 3460 # Store new mode and inform
3461 3461 dstore.mode = bool(1-int(mode))
3462 3462 print 'Doctest mode is:',
3463 3463 print ['OFF','ON'][dstore.mode]
3464 3464
3465 3465 def magic_gui(self, parameter_s=''):
3466 3466 """Enable or disable IPython GUI event loop integration.
3467 3467
3468 3468 %gui [-a] [GUINAME]
3469 3469
3470 3470 This magic replaces IPython's threaded shells that were activated
3471 3471 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3472 3472 can now be enabled, disabled and swtiched at runtime and keyboard
3473 3473 interrupts should work without any problems. The following toolkits
3474 3474 are supported: wxPython, PyQt4, PyGTK, and Tk::
3475 3475
3476 3476 %gui wx # enable wxPython event loop integration
3477 3477 %gui qt4|qt # enable PyQt4 event loop integration
3478 3478 %gui gtk # enable PyGTK event loop integration
3479 3479 %gui tk # enable Tk event loop integration
3480 3480 %gui # disable all event loop integration
3481 3481
3482 3482 WARNING: after any of these has been called you can simply create
3483 3483 an application object, but DO NOT start the event loop yourself, as
3484 3484 we have already handled that.
3485 3485
3486 3486 If you want us to create an appropriate application object add the
3487 3487 "-a" flag to your command::
3488 3488
3489 3489 %gui -a wx
3490 3490
3491 3491 This is highly recommended for most users.
3492 3492 """
3493 3493 opts, arg = self.parse_options(parameter_s,'a')
3494 3494 if arg=='': arg = None
3495 3495 return enable_gui(arg, 'a' in opts)
3496 3496
3497 3497 def magic_load_ext(self, module_str):
3498 3498 """Load an IPython extension by its module name."""
3499 3499 return self.load_extension(module_str)
3500 3500
3501 3501 def magic_unload_ext(self, module_str):
3502 3502 """Unload an IPython extension by its module name."""
3503 3503 self.unload_extension(module_str)
3504 3504
3505 3505 def magic_reload_ext(self, module_str):
3506 3506 """Reload an IPython extension by its module name."""
3507 3507 self.reload_extension(module_str)
3508 3508
3509 3509 @testdec.skip_doctest
3510 3510 def magic_install_profiles(self, s):
3511 3511 """Install the default IPython profiles into the .ipython dir.
3512 3512
3513 3513 If the default profiles have already been installed, they will not
3514 3514 be overwritten. You can force overwriting them by using the ``-o``
3515 3515 option::
3516 3516
3517 3517 In [1]: %install_profiles -o
3518 3518 """
3519 3519 if '-o' in s:
3520 3520 overwrite = True
3521 3521 else:
3522 3522 overwrite = False
3523 3523 from IPython.config import profile
3524 3524 profile_dir = os.path.split(profile.__file__)[0]
3525 3525 ipython_dir = self.ipython_dir
3526 3526 files = os.listdir(profile_dir)
3527 3527
3528 3528 to_install = []
3529 3529 for f in files:
3530 3530 if f.startswith('ipython_config'):
3531 3531 src = os.path.join(profile_dir, f)
3532 3532 dst = os.path.join(ipython_dir, f)
3533 3533 if (not os.path.isfile(dst)) or overwrite:
3534 3534 to_install.append((f, src, dst))
3535 3535 if len(to_install)>0:
3536 3536 print "Installing profiles to: ", ipython_dir
3537 3537 for (f, src, dst) in to_install:
3538 3538 shutil.copy(src, dst)
3539 3539 print " %s" % f
3540 3540
3541 3541 def magic_install_default_config(self, s):
3542 3542 """Install IPython's default config file into the .ipython dir.
3543 3543
3544 3544 If the default config file (:file:`ipython_config.py`) is already
3545 3545 installed, it will not be overwritten. You can force overwriting
3546 3546 by using the ``-o`` option::
3547 3547
3548 3548 In [1]: %install_default_config
3549 3549 """
3550 3550 if '-o' in s:
3551 3551 overwrite = True
3552 3552 else:
3553 3553 overwrite = False
3554 3554 from IPython.config import default
3555 3555 config_dir = os.path.split(default.__file__)[0]
3556 3556 ipython_dir = self.ipython_dir
3557 3557 default_config_file_name = 'ipython_config.py'
3558 3558 src = os.path.join(config_dir, default_config_file_name)
3559 3559 dst = os.path.join(ipython_dir, default_config_file_name)
3560 3560 if (not os.path.isfile(dst)) or overwrite:
3561 3561 shutil.copy(src, dst)
3562 3562 print "Installing default config file: %s" % dst
3563 3563
3564 3564 # Pylab support: simple wrappers that activate pylab, load gui input
3565 3565 # handling and modify slightly %run
3566 3566
3567 3567 @testdec.skip_doctest
3568 3568 def _pylab_magic_run(self, parameter_s=''):
3569 3569 Magic.magic_run(self, parameter_s,
3570 3570 runner=mpl_runner(self.shell.safe_execfile))
3571 3571
3572 3572 _pylab_magic_run.__doc__ = magic_run.__doc__
3573 3573
3574 3574 @testdec.skip_doctest
3575 3575 def magic_pylab(self, s):
3576 3576 """Load numpy and matplotlib to work interactively.
3577 3577
3578 3578 %pylab [GUINAME]
3579 3579
3580 3580 This function lets you activate pylab (matplotlib, numpy and
3581 3581 interactive support) at any point during an IPython session.
3582 3582
3583 3583 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3584 3584 pylab and mlab, as well as all names from numpy and pylab.
3585 3585
3586 3586 Parameters
3587 3587 ----------
3588 3588 guiname : optional
3589 3589 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk' or
3590 3590 'tk'). If given, the corresponding Matplotlib backend is used,
3591 3591 otherwise matplotlib's default (which you can override in your
3592 3592 matplotlib config file) is used.
3593 3593
3594 3594 Examples
3595 3595 --------
3596 3596 In this case, where the MPL default is TkAgg:
3597 3597 In [2]: %pylab
3598 3598
3599 3599 Welcome to pylab, a matplotlib-based Python environment.
3600 3600 Backend in use: TkAgg
3601 3601 For more information, type 'help(pylab)'.
3602 3602
3603 3603 But you can explicitly request a different backend:
3604 3604 In [3]: %pylab qt
3605 3605
3606 3606 Welcome to pylab, a matplotlib-based Python environment.
3607 3607 Backend in use: Qt4Agg
3608 3608 For more information, type 'help(pylab)'.
3609 3609 """
3610 3610 self.shell.enable_pylab(s)
3611 3611
3612 3612 def magic_tb(self, s):
3613 3613 """Print the last traceback with the currently active exception mode.
3614 3614
3615 3615 See %xmode for changing exception reporting modes."""
3616 3616 self.shell.showtraceback()
3617 3617
3618 3618 # end Magic
@@ -1,245 +1,245 b''
1 1 """Tests for the key iplib module, where the main ipython class is defined.
2 2 """
3 3 #-----------------------------------------------------------------------------
4 4 # Module imports
5 5 #-----------------------------------------------------------------------------
6 6
7 7 # stdlib
8 8 import os
9 9 import shutil
10 10 import tempfile
11 11
12 12 # third party
13 13 import nose.tools as nt
14 14
15 15 # our own packages
16 16 from IPython.testing import decorators as dec
17 17 from IPython.testing.globalipapp import get_ipython
18 18
19 19 #-----------------------------------------------------------------------------
20 20 # Globals
21 21 #-----------------------------------------------------------------------------
22 22
23 23 # Get the public instance of IPython
24 24 ip = get_ipython()
25 25
26 26 #-----------------------------------------------------------------------------
27 27 # Test functions
28 28 #-----------------------------------------------------------------------------
29 29
30 30 @dec.parametric
31 31 def test_reset():
32 32 """reset must clear most namespaces."""
33 # The number of variables in the private user_config_ns is not zero, but it
33 # The number of variables in the private user_ns_hidden is not zero, but it
34 34 # should be constant regardless of what we do
35 nvars_config_ns = len(ip.user_config_ns)
35 nvars_config_ns = len(ip.user_ns_hidden)
36 36
37 37 # Check that reset runs without error
38 38 ip.reset()
39 39
40 40 # Once we've reset it (to clear of any junk that might have been there from
41 41 # other tests, we can count how many variables are in the user's namespace
42 42 nvars_user_ns = len(ip.user_ns)
43 43
44 44 # Now add a few variables to user_ns, and check that reset clears them
45 45 ip.user_ns['x'] = 1
46 46 ip.user_ns['y'] = 1
47 47 ip.reset()
48 48
49 49 # Finally, check that all namespaces have only as many variables as we
50 50 # expect to find in them:
51 51 for ns in ip.ns_refs_table:
52 52 if ns is ip.user_ns:
53 53 nvars_expected = nvars_user_ns
54 elif ns is ip.user_config_ns:
54 elif ns is ip.user_ns_hidden:
55 55 nvars_expected = nvars_config_ns
56 56 else:
57 57 nvars_expected = 0
58 58
59 59 yield nt.assert_equals(len(ns), nvars_expected)
60 60
61 61
62 62 # Tests for reporting of exceptions in various modes, handling of SystemExit,
63 63 # and %tb functionality. This is really a mix of testing ultraTB and iplib.
64 64
65 65 def doctest_tb_plain():
66 66 """
67 67 In [18]: xmode plain
68 68 Exception reporting mode: Plain
69 69
70 70 In [19]: run simpleerr.py
71 71 Traceback (most recent call last):
72 72 ...line 32, in <module>
73 73 bar(mode)
74 74 ...line 16, in bar
75 75 div0()
76 76 ...line 8, in div0
77 77 x/y
78 78 ZeroDivisionError: integer division or modulo by zero
79 79 """
80 80
81 81
82 82 def doctest_tb_context():
83 83 """
84 84 In [3]: xmode context
85 85 Exception reporting mode: Context
86 86
87 87 In [4]: run simpleerr.py
88 88 ---------------------------------------------------------------------------
89 89 ZeroDivisionError Traceback (most recent call last)
90 90 <BLANKLINE>
91 91 ... in <module>()
92 92 30 mode = 'div'
93 93 31
94 94 ---> 32 bar(mode)
95 95 33
96 96 34
97 97 <BLANKLINE>
98 98 ... in bar(mode)
99 99 14 "bar"
100 100 15 if mode=='div':
101 101 ---> 16 div0()
102 102 17 elif mode=='exit':
103 103 18 try:
104 104 <BLANKLINE>
105 105 ... in div0()
106 106 6 x = 1
107 107 7 y = 0
108 108 ----> 8 x/y
109 109 9
110 110 10 def sysexit(stat, mode):
111 111 <BLANKLINE>
112 112 ZeroDivisionError: integer division or modulo by zero
113 113 """
114 114
115 115
116 116 def doctest_tb_verbose():
117 117 """
118 118 In [5]: xmode verbose
119 119 Exception reporting mode: Verbose
120 120
121 121 In [6]: run simpleerr.py
122 122 ---------------------------------------------------------------------------
123 123 ZeroDivisionError Traceback (most recent call last)
124 124 <BLANKLINE>
125 125 ... in <module>()
126 126 30 mode = 'div'
127 127 31
128 128 ---> 32 bar(mode)
129 129 global bar = <function bar at ...>
130 130 global mode = 'div'
131 131 33
132 132 34
133 133 <BLANKLINE>
134 134 ... in bar(mode='div')
135 135 14 "bar"
136 136 15 if mode=='div':
137 137 ---> 16 div0()
138 138 global div0 = <function div0 at ...>
139 139 17 elif mode=='exit':
140 140 18 try:
141 141 <BLANKLINE>
142 142 ... in div0()
143 143 6 x = 1
144 144 7 y = 0
145 145 ----> 8 x/y
146 146 x = 1
147 147 y = 0
148 148 9
149 149 10 def sysexit(stat, mode):
150 150 <BLANKLINE>
151 151 ZeroDivisionError: integer division or modulo by zero
152 152 """
153 153
154 154
155 155 def doctest_tb_sysexit():
156 156 """
157 157 In [17]: %xmode plain
158 158 Exception reporting mode: Plain
159 159
160 160 In [18]: %run simpleerr.py exit
161 161 An exception has occurred, use %tb to see the full traceback.
162 162 SystemExit: (1, 'Mode = exit')
163 163
164 164 In [19]: %run simpleerr.py exit 2
165 165 An exception has occurred, use %tb to see the full traceback.
166 166 SystemExit: (2, 'Mode = exit')
167 167
168 168 In [20]: %tb
169 169 Traceback (most recent call last):
170 170 File ... in <module>
171 171 bar(mode)
172 172 File ... line 22, in bar
173 173 sysexit(stat, mode)
174 174 File ... line 11, in sysexit
175 175 raise SystemExit(stat, 'Mode = %s' % mode)
176 176 SystemExit: (2, 'Mode = exit')
177 177
178 178 In [21]: %xmode context
179 179 Exception reporting mode: Context
180 180
181 181 In [22]: %tb
182 182 ---------------------------------------------------------------------------
183 183 SystemExit Traceback (most recent call last)
184 184 <BLANKLINE>
185 185 ...<module>()
186 186 30 mode = 'div'
187 187 31
188 188 ---> 32 bar(mode)
189 189 33
190 190 34
191 191 <BLANKLINE>
192 192 ...bar(mode)
193 193 20 except:
194 194 21 stat = 1
195 195 ---> 22 sysexit(stat, mode)
196 196 23 else:
197 197 24 raise ValueError('Unknown mode')
198 198 <BLANKLINE>
199 199 ...sysexit(stat, mode)
200 200 9
201 201 10 def sysexit(stat, mode):
202 202 ---> 11 raise SystemExit(stat, 'Mode = %s' % mode)
203 203 12
204 204 13 def bar(mode):
205 205 <BLANKLINE>
206 206 SystemExit: (2, 'Mode = exit')
207 207
208 208 In [23]: %xmode verbose
209 209 Exception reporting mode: Verbose
210 210
211 211 In [24]: %tb
212 212 ---------------------------------------------------------------------------
213 213 SystemExit Traceback (most recent call last)
214 214 <BLANKLINE>
215 215 ... in <module>()
216 216 30 mode = 'div'
217 217 31
218 218 ---> 32 bar(mode)
219 219 global bar = <function bar at ...>
220 220 global mode = 'exit'
221 221 33
222 222 34
223 223 <BLANKLINE>
224 224 ... in bar(mode='exit')
225 225 20 except:
226 226 21 stat = 1
227 227 ---> 22 sysexit(stat, mode)
228 228 global sysexit = <function sysexit at ...>
229 229 stat = 2
230 230 mode = 'exit'
231 231 23 else:
232 232 24 raise ValueError('Unknown mode')
233 233 <BLANKLINE>
234 234 ... in sysexit(stat=2, mode='exit')
235 235 9
236 236 10 def sysexit(stat, mode):
237 237 ---> 11 raise SystemExit(stat, 'Mode = %s' % mode)
238 238 global SystemExit = undefined
239 239 stat = 2
240 240 mode = 'exit'
241 241 12
242 242 13 def bar(mode):
243 243 <BLANKLINE>
244 244 SystemExit: (2, 'Mode = exit')
245 245 """
@@ -1,207 +1,234 b''
1 1 # encoding: utf-8
2 2
3 3 """Classes and functions for kernel related errors and exceptions."""
4 4
5 5 __docformat__ = "restructuredtext en"
6 6
7 7 # Tell nose to skip this module
8 8 __test__ = {}
9 9
10 10 #-------------------------------------------------------------------------------
11 11 # Copyright (C) 2008 The IPython Development Team
12 12 #
13 13 # Distributed under the terms of the BSD License. The full license is in
14 14 # the file COPYING, distributed as part of this software.
15 15 #-------------------------------------------------------------------------------
16 16
17 17 #-------------------------------------------------------------------------------
18 18 # Imports
19 19 #-------------------------------------------------------------------------------
20 20
21 from twisted.python import failure
22
21 23 from IPython.kernel.core import error
22 24
23 25 #-------------------------------------------------------------------------------
24 26 # Error classes
25 27 #-------------------------------------------------------------------------------
26 28
27 29 class KernelError(error.IPythonError):
28 30 pass
29 31
32
30 33 class NotDefined(KernelError):
31 34 def __init__(self, name):
32 35 self.name = name
33 36 self.args = (name,)
34 37
35 38 def __repr__(self):
36 39 return '<NotDefined: %s>' % self.name
37 40
38 41 __str__ = __repr__
39 42
43
40 44 class QueueCleared(KernelError):
41 45 pass
42 46
47
43 48 class IdInUse(KernelError):
44 49 pass
45 50
51
46 52 class ProtocolError(KernelError):
47 53 pass
48 54
55
49 56 class ConnectionError(KernelError):
50 57 pass
51 58
59
52 60 class InvalidEngineID(KernelError):
53 61 pass
54
62
63
55 64 class NoEnginesRegistered(KernelError):
56 65 pass
57
66
67
58 68 class InvalidClientID(KernelError):
59 69 pass
60
70
71
61 72 class InvalidDeferredID(KernelError):
62 73 pass
63
74
75
64 76 class SerializationError(KernelError):
65 77 pass
66
78
79
67 80 class MessageSizeError(KernelError):
68 81 pass
69
82
83
70 84 class PBMessageSizeError(MessageSizeError):
71 85 pass
72
86
87
73 88 class ResultNotCompleted(KernelError):
74 89 pass
75
90
91
76 92 class ResultAlreadyRetrieved(KernelError):
77 93 pass
78
94
79 95 class ClientError(KernelError):
80 96 pass
81 97
98
82 99 class TaskAborted(KernelError):
83 100 pass
84 101
102
85 103 class TaskTimeout(KernelError):
86 104 pass
87 105
106
88 107 class NotAPendingResult(KernelError):
89 108 pass
90 109
110
91 111 class UnpickleableException(KernelError):
92 112 pass
93 113
114
94 115 class AbortedPendingDeferredError(KernelError):
95 116 pass
96 117
118
97 119 class InvalidProperty(KernelError):
98 120 pass
99 121
122
100 123 class MissingBlockArgument(KernelError):
101 124 pass
102 125
126
103 127 class StopLocalExecution(KernelError):
104 128 pass
105 129
130
106 131 class SecurityError(KernelError):
107 132 pass
108 133
134
109 135 class FileTimeoutError(KernelError):
110 136 pass
111 137
138
112 139 class TaskRejectError(KernelError):
113 140 """Exception to raise when a task should be rejected by an engine.
114 141
115 142 This exception can be used to allow a task running on an engine to test
116 143 if the engine (or the user's namespace on the engine) has the needed
117 144 task dependencies. If not, the task should raise this exception. For
118 145 the task to be retried on another engine, the task should be created
119 146 with the `retries` argument > 1.
120 147
121 148 The advantage of this approach over our older properties system is that
122 149 tasks have full access to the user's namespace on the engines and the
123 150 properties don't have to be managed or tested by the controller.
124 151 """
125 152
153
126 154 class CompositeError(KernelError):
127 155 def __init__(self, message, elist):
128 156 Exception.__init__(self, *(message, elist))
129 157 # Don't use pack_exception because it will conflict with the .message
130 158 # attribute that is being deprecated in 2.6 and beyond.
131 159 self.msg = message
132 160 self.elist = elist
133 161
134 162 def _get_engine_str(self, ev):
135 163 try:
136 164 ei = ev._ipython_engine_info
137 165 except AttributeError:
138 166 return '[Engine Exception]'
139 167 else:
140 168 return '[%i:%s]: ' % (ei['engineid'], ei['method'])
141 169
142 170 def _get_traceback(self, ev):
143 171 try:
144 172 tb = ev._ipython_traceback_text
145 173 except AttributeError:
146 174 return 'No traceback available'
147 175 else:
148 176 return tb
149 177
150 178 def __str__(self):
151 179 s = str(self.msg)
152 180 for et, ev, etb in self.elist:
153 181 engine_str = self._get_engine_str(ev)
154 182 s = s + '\n' + engine_str + str(et.__name__) + ': ' + str(ev)
155 183 return s
156 184
157 185 def print_tracebacks(self, excid=None):
158 186 if excid is None:
159 187 for (et,ev,etb) in self.elist:
160 188 print self._get_engine_str(ev)
161 189 print self._get_traceback(ev)
162 190 print
163 191 else:
164 192 try:
165 193 et,ev,etb = self.elist[excid]
166 194 except:
167 195 raise IndexError("an exception with index %i does not exist"%excid)
168 196 else:
169 197 print self._get_engine_str(ev)
170 198 print self._get_traceback(ev)
171 199
172 200 def raise_exception(self, excid=0):
173 201 try:
174 202 et,ev,etb = self.elist[excid]
175 203 except:
176 204 raise IndexError("an exception with index %i does not exist"%excid)
177 205 else:
178 206 raise et, ev, etb
179 207
180 def collect_exceptions(rlist, method):
181 from twisted.python import failure
182 208
209 def collect_exceptions(rlist, method):
183 210 elist = []
184 211 for r in rlist:
185 212 if isinstance(r, failure.Failure):
186 213 r.cleanFailure()
187 214 et, ev, etb = r.type, r.value, r.tb
188 215 # Sometimes we could have CompositeError in our list. Just take
189 216 # the errors out of them and put them in our new list. This
190 217 # has the effect of flattening lists of CompositeErrors into one
191 218 # CompositeError
192 219 if et==CompositeError:
193 220 for e in ev.elist:
194 221 elist.append(e)
195 222 else:
196 223 elist.append((et, ev, etb))
197 224 if len(elist)==0:
198 225 return rlist
199 226 else:
200 227 msg = "one or more exceptions from call to method: %s" % (method)
201 228 # This silliness is needed so the debugger has access to the exception
202 229 # instance (e in this case)
203 230 try:
204 231 raise CompositeError(msg, elist)
205 232 except CompositeError, e:
206 233 raise e
207 234
@@ -1,340 +1,345 b''
1 1 # encoding: utf-8
2 2 """
3 3 Utilities for path handling.
4 4 """
5 5
6 6 #-----------------------------------------------------------------------------
7 7 # Copyright (C) 2008-2009 The IPython Development Team
8 8 #
9 9 # Distributed under the terms of the BSD License. The full license is in
10 10 # the file COPYING, distributed as part of this software.
11 11 #-----------------------------------------------------------------------------
12 12
13 13 #-----------------------------------------------------------------------------
14 14 # Imports
15 15 #-----------------------------------------------------------------------------
16 16
17 17 import os
18 18 import sys
19 19
20 20 import IPython
21 21 from IPython.utils.process import xsys
22 22 from IPython.utils.importstring import import_item
23 23
24 24 #-----------------------------------------------------------------------------
25 25 # Code
26 26 #-----------------------------------------------------------------------------
27 27
28 28
29 29 def _get_long_path_name(path):
30 30 """Dummy no-op."""
31 31 return path
32 32
33 33
34 34 if sys.platform == 'win32':
35 35 def _get_long_path_name(path):
36 36 """Get a long path name (expand ~) on Windows using ctypes.
37 37
38 38 Examples
39 39 --------
40 40
41 41 >>> get_long_path_name('c:\\docume~1')
42 42 u'c:\\\\Documents and Settings'
43 43
44 44 """
45 45 try:
46 46 import ctypes
47 47 except ImportError:
48 48 raise ImportError('you need to have ctypes installed for this to work')
49 49 _GetLongPathName = ctypes.windll.kernel32.GetLongPathNameW
50 50 _GetLongPathName.argtypes = [ctypes.c_wchar_p, ctypes.c_wchar_p,
51 51 ctypes.c_uint ]
52 52
53 53 buf = ctypes.create_unicode_buffer(260)
54 54 rv = _GetLongPathName(path, buf, 260)
55 55 if rv == 0 or rv > 260:
56 56 return path
57 57 else:
58 58 return buf.value
59 59
60 60
61 61 def get_long_path_name(path):
62 62 """Expand a path into its long form.
63 63
64 64 On Windows this expands any ~ in the paths. On other platforms, it is
65 65 a null operation.
66 66 """
67 67 return _get_long_path_name(path)
68 68
69 69
70 70 def get_py_filename(name):
71 71 """Return a valid python filename in the current directory.
72 72
73 73 If the given name is not a file, it adds '.py' and searches again.
74 74 Raises IOError with an informative message if the file isn't found."""
75 75
76 76 name = os.path.expanduser(name)
77 77 if not os.path.isfile(name) and not name.endswith('.py'):
78 78 name += '.py'
79 79 if os.path.isfile(name):
80 80 return name
81 81 else:
82 82 raise IOError,'File `%s` not found.' % name
83 83
84 84
85 85 def filefind(filename, path_dirs=None):
86 86 """Find a file by looking through a sequence of paths.
87 87
88 88 This iterates through a sequence of paths looking for a file and returns
89 89 the full, absolute path of the first occurence of the file. If no set of
90 90 path dirs is given, the filename is tested as is, after running through
91 91 :func:`expandvars` and :func:`expanduser`. Thus a simple call::
92 92
93 93 filefind('myfile.txt')
94 94
95 95 will find the file in the current working dir, but::
96 96
97 97 filefind('~/myfile.txt')
98 98
99 99 Will find the file in the users home directory. This function does not
100 100 automatically try any paths, such as the cwd or the user's home directory.
101 101
102 102 Parameters
103 103 ----------
104 104 filename : str
105 105 The filename to look for.
106 106 path_dirs : str, None or sequence of str
107 107 The sequence of paths to look for the file in. If None, the filename
108 108 need to be absolute or be in the cwd. If a string, the string is
109 109 put into a sequence and the searched. If a sequence, walk through
110 110 each element and join with ``filename``, calling :func:`expandvars`
111 111 and :func:`expanduser` before testing for existence.
112 112
113 113 Returns
114 114 -------
115 115 Raises :exc:`IOError` or returns absolute path to file.
116 116 """
117 117
118 118 # If paths are quoted, abspath gets confused, strip them...
119 119 filename = filename.strip('"').strip("'")
120 120 # If the input is an absolute path, just check it exists
121 121 if os.path.isabs(filename) and os.path.isfile(filename):
122 122 return filename
123 123
124 124 if path_dirs is None:
125 125 path_dirs = ("",)
126 126 elif isinstance(path_dirs, basestring):
127 127 path_dirs = (path_dirs,)
128 128
129 129 for path in path_dirs:
130 130 if path == '.': path = os.getcwd()
131 131 testname = expand_path(os.path.join(path, filename))
132 132 if os.path.isfile(testname):
133 133 return os.path.abspath(testname)
134 134
135 135 raise IOError("File %r does not exist in any of the search paths: %r" %
136 136 (filename, path_dirs) )
137 137
138 138
139 139 class HomeDirError(Exception):
140 140 pass
141 141
142 142
143 143 def get_home_dir():
144 144 """Return the closest possible equivalent to a 'home' directory.
145 145
146 146 * On POSIX, we try $HOME.
147 147 * On Windows we try:
148 148 - %HOME%: rare, but some people with unix-like setups may have defined it
149 149 - %HOMESHARE%
150 150 - %HOMEDRIVE\%HOMEPATH%
151 151 - %USERPROFILE%
152 152 - Registry hack
153 153 * On Dos C:\
154 154
155 155 Currently only Posix and NT are implemented, a HomeDirError exception is
156 156 raised for all other OSes.
157 157 """
158 158
159 159 isdir = os.path.isdir
160 160 env = os.environ
161 161
162 162 # first, check py2exe distribution root directory for _ipython.
163 163 # This overrides all. Normally does not exist.
164 164
165 165 if hasattr(sys, "frozen"): #Is frozen by py2exe
166 166 if '\\library.zip\\' in IPython.__file__.lower():#libraries compressed to zip-file
167 167 root, rest = IPython.__file__.lower().split('library.zip')
168 168 else:
169 169 root=os.path.join(os.path.split(IPython.__file__)[0],"../../")
170 170 root=os.path.abspath(root).rstrip('\\')
171 171 if isdir(os.path.join(root, '_ipython')):
172 172 os.environ["IPYKITROOT"] = root
173 173 return root.decode(sys.getfilesystemencoding())
174 174
175 175 if os.name == 'posix':
176 176 # Linux, Unix, AIX, OS X
177 177 try:
178 178 homedir = env['HOME']
179 179 except KeyError:
180 180 raise HomeDirError('Undefined $HOME, IPython cannot proceed.')
181 181 else:
182 182 return homedir.decode(sys.getfilesystemencoding())
183 183 elif os.name == 'nt':
184 184 # Now for win9x, XP, Vista, 7?
185 185 # For some strange reason all of these return 'nt' for os.name.
186 186 # First look for a network home directory. This will return the UNC
187 187 # path (\\server\\Users\%username%) not the mapped path (Z:\). This
188 188 # is needed when running IPython on cluster where all paths have to
189 189 # be UNC.
190 190 try:
191 # A user with a lot of unix tools in win32 may have defined $HOME,
192 # honor it if it exists, but otherwise let the more typical
193 # %HOMESHARE% variable be used.
194 homedir = env.get('HOME')
195 if homedir is None:
196 homedir = env['HOMESHARE']
191 homedir = env['HOMESHARE']
197 192 except KeyError:
198 193 pass
199 194 else:
200 195 if isdir(homedir):
201 196 return homedir.decode(sys.getfilesystemencoding())
202 197
203 198 # Now look for a local home directory
204 199 try:
205 200 homedir = os.path.join(env['HOMEDRIVE'],env['HOMEPATH'])
206 201 except KeyError:
207 202 pass
208 203 else:
209 204 if isdir(homedir):
210 205 return homedir.decode(sys.getfilesystemencoding())
211 206
212 207 # Now the users profile directory
213 208 try:
214 209 homedir = os.path.join(env['USERPROFILE'])
215 210 except KeyError:
216 211 pass
217 212 else:
218 213 if isdir(homedir):
219 214 return homedir.decode(sys.getfilesystemencoding())
220 215
221 216 # Use the registry to get the 'My Documents' folder.
222 217 try:
223 218 import _winreg as wreg
224 219 key = wreg.OpenKey(
225 220 wreg.HKEY_CURRENT_USER,
226 221 "Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
227 222 )
228 223 homedir = wreg.QueryValueEx(key,'Personal')[0]
229 224 key.Close()
230 225 except:
231 226 pass
232 227 else:
233 228 if isdir(homedir):
234 229 return homedir.decode(sys.getfilesystemencoding())
235 230
231 # A user with a lot of unix tools in win32 may have defined $HOME.
232 # Try this as a last ditch option.
233 try:
234 homedir = env['HOME']
235 except KeyError:
236 pass
237 else:
238 if isdir(homedir):
239 return homedir.decode(sys.getfilesystemencoding())
240
236 241 # If all else fails, raise HomeDirError
237 242 raise HomeDirError('No valid home directory could be found')
238 243 elif os.name == 'dos':
239 244 # Desperate, may do absurd things in classic MacOS. May work under DOS.
240 245 return 'C:\\'.decode(sys.getfilesystemencoding())
241 246 else:
242 247 raise HomeDirError('No valid home directory could be found for your OS')
243 248
244 249
245 250 def get_ipython_dir():
246 251 """Get the IPython directory for this platform and user.
247 252
248 253 This uses the logic in `get_home_dir` to find the home directory
249 254 and the adds .ipython to the end of the path.
250 255 """
251 256 ipdir_def = '.ipython'
252 257 home_dir = get_home_dir()
253 258 # import pdb; pdb.set_trace() # dbg
254 259 ipdir = os.environ.get(
255 260 'IPYTHON_DIR', os.environ.get(
256 261 'IPYTHONDIR', os.path.join(home_dir, ipdir_def)
257 262 )
258 263 )
259 264 return ipdir.decode(sys.getfilesystemencoding())
260 265
261 266
262 267 def get_ipython_package_dir():
263 268 """Get the base directory where IPython itself is installed."""
264 269 ipdir = os.path.dirname(IPython.__file__)
265 270 return ipdir.decode(sys.getfilesystemencoding())
266 271
267 272
268 273 def get_ipython_module_path(module_str):
269 274 """Find the path to an IPython module in this version of IPython.
270 275
271 276 This will always find the version of the module that is in this importable
272 277 IPython package. This will always return the path to the ``.py``
273 278 version of the module.
274 279 """
275 280 if module_str == 'IPython':
276 281 return os.path.join(get_ipython_package_dir(), '__init__.py')
277 282 mod = import_item(module_str)
278 283 the_path = mod.__file__.replace('.pyc', '.py')
279 284 the_path = the_path.replace('.pyo', '.py')
280 285 return the_path.decode(sys.getfilesystemencoding())
281 286
282 287
283 288 def expand_path(s):
284 289 """Expand $VARS and ~names in a string, like a shell
285 290
286 291 :Examples:
287 292
288 293 In [2]: os.environ['FOO']='test'
289 294
290 295 In [3]: expand_path('variable FOO is $FOO')
291 296 Out[3]: 'variable FOO is test'
292 297 """
293 298 # This is a pretty subtle hack. When expand user is given a UNC path
294 299 # on Windows (\\server\share$\%username%), os.path.expandvars, removes
295 300 # the $ to get (\\server\share\%username%). I think it considered $
296 301 # alone an empty var. But, we need the $ to remains there (it indicates
297 302 # a hidden share).
298 303 if os.name=='nt':
299 304 s = s.replace('$\\', 'IPYTHON_TEMP')
300 305 s = os.path.expandvars(os.path.expanduser(s))
301 306 if os.name=='nt':
302 307 s = s.replace('IPYTHON_TEMP', '$\\')
303 308 return s
304 309
305 310
306 311 def target_outdated(target,deps):
307 312 """Determine whether a target is out of date.
308 313
309 314 target_outdated(target,deps) -> 1/0
310 315
311 316 deps: list of filenames which MUST exist.
312 317 target: single filename which may or may not exist.
313 318
314 319 If target doesn't exist or is older than any file listed in deps, return
315 320 true, otherwise return false.
316 321 """
317 322 try:
318 323 target_time = os.path.getmtime(target)
319 324 except os.error:
320 325 return 1
321 326 for dep in deps:
322 327 dep_time = os.path.getmtime(dep)
323 328 if dep_time > target_time:
324 329 #print "For target",target,"Dep failed:",dep # dbg
325 330 #print "times (dep,tar):",dep_time,target_time # dbg
326 331 return 1
327 332 return 0
328 333
329 334
330 335 def target_update(target,deps,cmd):
331 336 """Update a target with a given command given a list of dependencies.
332 337
333 338 target_update(target,deps,cmd) -> runs cmd if target is outdated.
334 339
335 340 This is just a wrapper around target_outdated() which calls the given
336 341 command if target is outdated."""
337 342
338 343 if target_outdated(target,deps):
339 344 xsys(cmd)
340 345
General Comments 0
You need to be logged in to leave comments. Login now