##// END OF EJS Templates
More work on componentizing everything....
More work on componentizing everything. I have also done some work on component: * componenets whose __init__ method fails are now unregistered. * Added a masquerade_as function to enable components to masquerade as one another. This is really a cheap and informal way of doing parts of an interface system.

File last commit:

r2243:5b86c0c8
r2243:5b86c0c8
Show More
builtin_trap.py
107 lines | 3.5 KiB | text/x-python | PythonLexer
#!/usr/bin/env python
# encoding: utf-8
"""
A context manager for managing things injected into :mod:`__builtin__`.
Authors:
* Brian Granger
"""
#-----------------------------------------------------------------------------
# Copyright (C) 2008-2009 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import __builtin__
from IPython.core.component import Component
from IPython.core.quitter import Quitter
from IPython.utils.traitlets import Instance
#-----------------------------------------------------------------------------
# Classes and functions
#-----------------------------------------------------------------------------
class BuiltinUndefined(object): pass
BuiltinUndefined = BuiltinUndefined()
class BuiltinTrap(Component):
def __init__(self, parent):
super(BuiltinTrap, self).__init__(parent, None, None)
# Don't just grab parent!!!
self.shell = Component.get_instances(
root=self.root,
klass='IPython.core.iplib.InteractiveShell'
)[0]
self._orig_builtins = {}
def __enter__(self):
self.set()
# I return self, so callers can use add_builtin in a with clause.
return self
def __exit__(self, type, value, traceback):
self.unset()
return True
def add_builtin(self, key, value):
"""Add a builtin and save the original."""
orig = __builtin__.__dict__.get(key, BuiltinUndefined)
self._orig_builtins[key] = orig
__builtin__.__dict__[key] = value
def remove_builtin(self, key):
"""Remove an added builtin and re-set the original."""
try:
orig = self._orig_builtins.pop(key)
except KeyError:
pass
else:
if orig is BuiltinUndefined:
del __builtin__.__dict__[key]
else:
__builtin__.__dict__[key] = orig
def set(self):
"""Store ipython references in the __builtin__ namespace."""
self.add_builtin('exit', Quitter(self.shell, 'exit'))
self.add_builtin('quit', Quitter(self.shell, 'quit'))
# Recursive reload function
try:
from IPython.lib import deepreload
if self.shell.deep_reload:
self.add_builtin('reload', deepreload.reload)
else:
self.add_builtin('dreload', deepreload.reload)
del deepreload
except ImportError:
pass
# Keep in the builtins a flag for when IPython is active. We set it
# with setdefault so that multiple nested IPythons don't clobber one
# another. Each will increase its value by one upon being activated,
# which also gives us a way to determine the nesting level.
__builtin__.__dict__.setdefault('__IPYTHON__active',0)
def unset(self):
"""Remove any builtins which might have been added by add_builtins, or
restore overwritten ones to their previous values."""
for key in self._orig_builtins.keys():
self.remove_builtin(key)
self._orig_builtins.clear()
self._builtins_added = False
try:
del __builtin__.__dict__['__IPYTHON__active']
except KeyError:
pass