##// END OF EJS Templates
Fixing small bug in activate....
Fixing small bug in activate. If the parallelmagic extension has not been loaded, activate would get an empty list from get_component. Now get_component returns None in that case and activate checks for None and prints a message to the user to load the extension.

File last commit:

r2303:cbd70b22
r2321:4b6047ed
Show More
application.py
364 lines | 13.1 KiB | text/x-python | PythonLexer
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 #!/usr/bin/env python
# encoding: utf-8
"""
Brian Granger
ipcontroller/ipengine use the new clusterdir.py module.
r2301 An application for IPython.
All top-level applications should use the classes in this module for
handling configuration and creating componenets.
The job of an :class:`Application` is to create the master configuration
object and then create the components, passing the config to them.
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
Authors:
* Brian Granger
* Fernando Perez
Notes
-----
"""
#-----------------------------------------------------------------------------
# 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
#-----------------------------------------------------------------------------
Brian Granger
Work on startup related things....
r2252 import logging
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 import os
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 import sys
Brian Granger
Massive refactoring of of the core....
r2245
Brian Granger
Work on ipcontroller....
r2296 from IPython.core import release
Brian Granger
ipcontroller/ipengine use the new clusterdir.py module.
r2301 from IPython.utils.genutils import get_ipython_dir
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 from IPython.config.loader import (
Brian Granger
Massive refactoring of of the core....
r2245 PyFileConfigLoader,
ArgParseConfigLoader,
Config,
NoConfigDefault
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 )
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
#-----------------------------------------------------------------------------
# Classes and functions
#-----------------------------------------------------------------------------
Brian Granger
Work on ipcontroller....
r2296 class BaseAppArgParseConfigLoader(ArgParseConfigLoader):
Brian Granger
Massive refactoring of of the core....
r2245 """Default command line options for IPython based applications."""
def _add_other_arguments(self):
Brian Granger
General work on the kernel config.
r2294 self.parser.add_argument('-ipythondir', '--ipython-dir',
Brian Granger
Work on refactoring ipcontroller to new config system.
r2287 dest='Global.ipythondir',type=str,
Brian Granger
Massive refactoring of of the core....
r2245 help='Set to override default location of Global.ipythondir.',
default=NoConfigDefault,
metavar='Global.ipythondir')
Brian Granger
Work on refactoring ipcontroller to new config system.
r2287 self.parser.add_argument('-p','-profile', '--profile',
dest='Global.profile',type=str,
Brian Granger
Massive refactoring of of the core....
r2245 help='The string name of the ipython profile to be used.',
default=NoConfigDefault,
metavar='Global.profile')
Brian Granger
Work on refactoring ipcontroller to new config system.
r2287 self.parser.add_argument('-log_level', '--log-level',
dest="Global.log_level",type=int,
Brian Granger
Work on startup related things....
r2252 help='Set the log level (0,10,20,30,40,50). Default is 30.',
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 default=NoConfigDefault,
metavar='Global.log_level')
Brian Granger
Work on refactoring ipcontroller to new config system.
r2287 self.parser.add_argument('-config_file', '--config-file',
dest='Global.config_file',type=str,
Brian Granger
Massive refactoring of of the core....
r2245 help='Set the config file name to override default.',
default=NoConfigDefault,
metavar='Global.config_file')
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 class ApplicationError(Exception):
pass
class Application(object):
Brian Granger
ipcontroller/ipengine use the new clusterdir.py module.
r2301 """Load a config, construct components and set them running."""
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 name = 'ipython'
Brian Granger
Work on ipcontroller....
r2296 description = 'IPython: an enhanced interactive Python shell.'
Brian Granger
Finished refactoring ipcontroller to be a proper application....
r2297 config_file_name = 'ipython_config.py'
Brian Granger
General work on the kernel config.
r2294 default_log_level = logging.WARN
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
def __init__(self):
Brian Granger
Lots more work on the kernel scripts.
r2303 self._exiting = False
Brian Granger
Work on startup related things....
r2252 self.init_logger()
Brian Granger
ipcontroller/ipengine use the new clusterdir.py module.
r2301 # Track the default and actual separately because some messages are
# only printed if we aren't using the default.
Brian Granger
Don't warn the user if the default config file is missing....
r2257 self.default_config_file_name = self.config_file_name
Brian Granger
Work on startup related things....
r2252
def init_logger(self):
self.log = logging.getLogger(self.__class__.__name__)
# This is used as the default until the command line arguments are read.
Brian Granger
General work on the kernel config.
r2294 self.log.setLevel(self.default_log_level)
Brian Granger
Work on startup related things....
r2252 self._log_handler = logging.StreamHandler()
self._log_formatter = logging.Formatter("[%(name)s] %(message)s")
self._log_handler.setFormatter(self._log_formatter)
self.log.addHandler(self._log_handler)
def _set_log_level(self, level):
self.log.setLevel(level)
def _get_log_level(self):
return self.log.level
log_level = property(_get_log_level, _set_log_level)
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
Brian Granger
Work on Application and loader testing.
r2187 def start(self):
"""Start the application."""
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.create_default_config)
Brian Granger
General work on the kernel config.
r2294 self.log_default_config()
self.set_default_config_log_level()
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.pre_load_command_line_config)
Brian Granger
More work on getting rid of ipmaker.
r2203 self.attempt(self.load_command_line_config, action='abort')
Brian Granger
General work on the kernel config.
r2294 self.set_command_line_config_log_level()
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.post_load_command_line_config)
Brian Granger
General work on the kernel config.
r2294 self.log_command_line_config()
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.find_ipythondir)
Brian Granger
Lots more work on the kernel scripts.
r2303 self.attempt(self.find_resources)
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.find_config_file_name)
self.attempt(self.find_config_file_paths)
self.attempt(self.pre_load_file_config)
self.attempt(self.load_file_config)
Brian Granger
General work on the kernel config.
r2294 self.set_file_config_log_level()
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.post_load_file_config)
Brian Granger
General work on the kernel config.
r2294 self.log_file_config()
Brian Granger
Work on Application and loader testing.
r2187 self.attempt(self.merge_configs)
Brian Granger
General work on the kernel config.
r2294 self.log_master_config()
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.pre_construct)
Brian Granger
Work on Application and loader testing.
r2187 self.attempt(self.construct)
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.attempt(self.post_construct)
Brian Granger
Work on Application and loader testing.
r2187 self.attempt(self.start_app)
#-------------------------------------------------------------------------
# Various stages of Application creation
#-------------------------------------------------------------------------
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def create_default_config(self):
Brian Granger
All code startup related things are working....
r2253 """Create defaults that can't be set elsewhere.
For the most part, we try to set default in the class attributes
of Components. But, defaults the top-level Application (which is
not a HasTraitlets or Component) are not set in this way. Instead
we set them here. The Global section is for variables like this that
don't belong to a particular component.
"""
Brian Granger
Massive refactoring of of the core....
r2245 self.default_config = Config()
self.default_config.Global.ipythondir = get_ipython_dir()
Brian Granger
Work on ipcontroller....
r2296 self.default_config.Global.log_level = self.log_level
Brian Granger
General work on the kernel config.
r2294
def log_default_config(self):
Brian Granger
Work on startup related things....
r2252 self.log.debug('Default config loaded:')
self.log.debug(repr(self.default_config))
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
Brian Granger
General work on the kernel config.
r2294 def set_default_config_log_level(self):
try:
self.log_level = self.default_config.Global.log_level
except AttributeError:
# Fallback to the default_log_level class attribute
pass
Brian Granger
Work on Application and loader testing.
r2187 def create_command_line_config(self):
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 """Create and return a command line config loader."""
Brian Granger
Work on ipcontroller....
r2296 return BaseAppArgParseConfigLoader(
description=self.description,
version=release.version
)
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
def pre_load_command_line_config(self):
"""Do actions just before loading the command line config."""
pass
Brian Granger
Work on Application and loader testing.
r2187
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def load_command_line_config(self):
Brian Granger
General work on the kernel config.
r2294 """Load the command line config."""
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 loader = self.create_command_line_config()
self.command_line_config = loader.load_config()
Brian Granger
All code startup related things are working....
r2253 self.extra_args = loader.get_extra_args()
Brian Granger
Work on startup related things....
r2252
Brian Granger
General work on the kernel config.
r2294 def set_command_line_config_log_level(self):
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 try:
Brian Granger
Work on startup related things....
r2252 self.log_level = self.command_line_config.Global.log_level
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 except AttributeError:
Brian Granger
General work on the kernel config.
r2294 pass
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
def post_load_command_line_config(self):
"""Do actions just after loading the command line config."""
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 pass
Brian Granger
General work on the kernel config.
r2294 def log_command_line_config(self):
self.log.debug("Command line config loaded:")
self.log.debug(repr(self.command_line_config))
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def find_ipythondir(self):
"""Set the IPython directory.
This sets ``self.ipythondir``, but the actual value that is passed
to the application is kept in either ``self.default_config`` or
Brian Granger
ipcontroller/ipengine use the new clusterdir.py module.
r2301 ``self.command_line_config``. This also adds ``self.ipythondir`` to
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 ``sys.path`` so config files there can be references by other config
files.
"""
try:
Brian Granger
Massive refactoring of of the core....
r2245 self.ipythondir = self.command_line_config.Global.ipythondir
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 except AttributeError:
Brian Granger
Massive refactoring of of the core....
r2245 self.ipythondir = self.default_config.Global.ipythondir
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 sys.path.append(os.path.abspath(self.ipythondir))
Brian Granger
The IPython dir is now created by Application if it doesn't exist.
r2201 if not os.path.isdir(self.ipythondir):
Brian Granger
General work on the kernel config.
r2294 os.makedirs(self.ipythondir, mode=0777)
Brian Granger
Work on startup related things....
r2252 self.log.debug("IPYTHONDIR set to: %s" % self.ipythondir)
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
Brian Granger
Lots more work on the kernel scripts.
r2303 def find_resources(self):
"""Find other resources that need to be in place.
Things like cluster directories need to be in place to find the
config file. These happen right after the IPython directory has
been set.
"""
pass
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def find_config_file_name(self):
"""Find the config file name for this application.
Brian Granger
General work on the kernel config.
r2294 This must set ``self.config_file_name`` to the filename of the
config file to use (just the filename). The search paths for the
config file are set in :meth:`find_config_file_paths` and then passed
to the config file loader where they are resolved to an absolute path.
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 If a profile has been set at the command line, this will resolve
Brian Granger
General work on the kernel config.
r2294 it.
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 """
Brian Granger
More work on getting rid of ipmaker.
r2203 try:
Brian Granger
Massive refactoring of of the core....
r2245 self.config_file_name = self.command_line_config.Global.config_file
Brian Granger
More work on getting rid of ipmaker.
r2203 except AttributeError:
pass
try:
Brian Granger
Massive refactoring of of the core....
r2245 self.profile_name = self.command_line_config.Global.profile
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 name_parts = self.config_file_name.split('.')
name_parts.insert(1, '_' + self.profile_name + '.')
self.config_file_name = ''.join(name_parts)
Brian Granger
More work on getting rid of ipmaker.
r2203 except AttributeError:
pass
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
def find_config_file_paths(self):
Brian Granger
General work on the kernel config.
r2294 """Set the search paths for resolving the config file.
This must set ``self.config_file_paths`` to a sequence of search
paths to pass to the config file loader.
"""
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 self.config_file_paths = (os.getcwd(), self.ipythondir)
def pre_load_file_config(self):
"""Do actions before the config file is loaded."""
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 pass
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def load_file_config(self):
"""Load the config file.
This tries to load the config file from disk. If successful, the
``CONFIG_FILE`` config variable is set to the resolved config file
location. If not successful, an empty config is used.
"""
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 self.log.debug("Attempting to load config file: %s" % self.config_file_name)
Brian Granger
Massive refactoring of of the core....
r2245 loader = PyFileConfigLoader(self.config_file_name,
path=self.config_file_paths)
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 try:
self.file_config = loader.load_config()
Brian Granger
Massive refactoring of of the core....
r2245 self.file_config.Global.config_file = loader.full_filename
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 except IOError:
Brian Granger
Don't warn the user if the default config file is missing....
r2257 # Only warn if the default config file was NOT being used.
if not self.config_file_name==self.default_config_file_name:
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 self.log.warn("Config file not found, skipping: %s" % \
Brian Granger
Don't warn the user if the default config file is missing....
r2257 self.config_file_name, exc_info=True)
Brian Granger
Work on startup related things....
r2252 self.file_config = Config()
except:
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 self.log.warn("Error loading config file: %s" % \
Brian Granger
Work on startup related things....
r2252 self.config_file_name, exc_info=True)
Brian Granger
Massive refactoring of of the core....
r2245 self.file_config = Config()
Brian Granger
General work on the kernel config.
r2294
def set_file_config_log_level(self):
Brian Granger
Fixing minor bug with the logging level in ipapp.py.
r2270 # We need to keeep self.log_level updated. But we only use the value
# of the file_config if a value was not specified at the command
Brian Granger
General work on the kernel config.
r2294 # line, because the command line overrides everything.
Brian Granger
Fixing minor bug with the logging level in ipapp.py.
r2270 if not hasattr(self.command_line_config.Global, 'log_level'):
try:
self.log_level = self.file_config.Global.log_level
except AttributeError:
pass # Use existing value
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
def post_load_file_config(self):
"""Do actions after the config file is loaded."""
pass
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
Brian Granger
General work on the kernel config.
r2294 def log_file_config(self):
if hasattr(self.file_config.Global, 'config_file'):
Brian Granger
The ipengine script has been refactored to use the new config system....
r2299 self.log.debug("Config file loaded: %s" % self.file_config.Global.config_file)
Brian Granger
General work on the kernel config.
r2294 self.log.debug(repr(self.file_config))
Brian Granger
Work on Application and loader testing.
r2187 def merge_configs(self):
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 """Merge the default, command line and file config objects."""
Brian Granger
Massive refactoring of of the core....
r2245 config = Config()
config._merge(self.default_config)
config._merge(self.file_config)
config._merge(self.command_line_config)
Brian Granger
Work on Application and loader testing.
r2187 self.master_config = config
Brian Granger
General work on the kernel config.
r2294
def log_master_config(self):
Brian Granger
Work on startup related things....
r2252 self.log.debug("Master config created:")
self.log.debug(repr(self.master_config))
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def pre_construct(self):
"""Do actions after the config has been built, but before construct."""
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 pass
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def construct(self):
"""Construct the main components that make up this app."""
Brian Granger
Work on startup related things....
r2252 self.log.debug("Constructing components for application")
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
def post_construct(self):
"""Do actions after construct, but before starting the app."""
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 pass
def start_app(self):
"""Actually start the app."""
Brian Granger
Work on startup related things....
r2252 self.log.debug("Starting application")
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
Brian Granger
Work on Application and loader testing.
r2187 #-------------------------------------------------------------------------
# Utility methods
#-------------------------------------------------------------------------
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 def abort(self):
"""Abort the starting of the application."""
Brian Granger
Lots more work on the kernel scripts.
r2303 if self._exiting:
pass
else:
self.log.critical("Aborting application: %s" % self.name, exc_info=True)
self._exiting = True
sys.exit(1)
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 def exit(self):
Brian Granger
Lots more work on the kernel scripts.
r2303 if self._exiting:
pass
else:
self.log.debug("Exiting application: %s" % self.name)
self._exiting = True
sys.exit(1)
Brian Granger
Semi-final Application and minor work on traitlets.
r2200
def attempt(self, func, action='abort'):
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 try:
func()
Brian Granger
Massive refactoring of of the core....
r2245 except SystemExit:
Brian Granger
Lots more work on the kernel scripts.
r2303 raise
Brian Granger
Working version of the new config loaders for .py files and argparse.
r2185 except:
Brian Granger
Semi-final Application and minor work on traitlets.
r2200 if action == 'abort':
self.abort()
elif action == 'exit':
self.exit()
Brian Granger
Work on ipcontroller....
r2296