##// END OF EJS Templates
move ipcluster create|list to `ipython profile create|list`...
MinRK -
Show More
@@ -0,0 +1,174 b''
1 # encoding: utf-8
2 """
3 An application for managing IPython profiles.
4
5 To be invoked as the `ipython profile` subcommand.
6
7 Authors:
8
9 * Min RK
10
11 """
12
13 #-----------------------------------------------------------------------------
14 # Copyright (C) 2008-2011 The IPython Development Team
15 #
16 # Distributed under the terms of the BSD License. The full license is in
17 # the file COPYING, distributed as part of this software.
18 #-----------------------------------------------------------------------------
19
20 #-----------------------------------------------------------------------------
21 # Imports
22 #-----------------------------------------------------------------------------
23
24 import logging
25 import os
26
27 from IPython.config.application import Application, boolean_flag
28 from IPython.core.application import (
29 BaseIPythonApplication, base_flags, base_aliases
30 )
31 from IPython.core.profiledir import ProfileDir
32 from IPython.utils.path import get_ipython_dir
33 from IPython.utils.traitlets import Unicode, Bool, Dict
34
35 #-----------------------------------------------------------------------------
36 # Constants
37 #-----------------------------------------------------------------------------
38
39 create_help = """Create an ipcluster profile by name
40
41 Create an ipython profile directory by its name or
42 profile directory path. Profile directories contain
43 configuration, log and security related files and are named
44 using the convention 'profile_<name>'. By default they are
45 located in your ipython directory. Once created, you will
46 can edit the configuration files in the profile
47 directory to configure IPython. Most users will create a
48 cluster directory by profile name,
49 `ipython profile create myprofile`, which will put the directory
50 in `<ipython_dir>/profile_myprofile`.
51 """
52 list_help = """List available IPython profiles
53
54 List all available profiles, by profile location, that can
55 be found in the current working directly or in the ipython
56 directory. Profile directories are named using the convention
57 'profile_<profile>'.
58 """
59 profile_help = """Manage IPython profiles
60
61 Profile directories contain
62 configuration, log and security related files and are named
63 using the convention 'profile_<name>'. By default they are
64 located in your ipython directory. You can create profiles
65 with `ipython profile create <name>`, or see the profiles you
66 already have with `ipython profile list`
67
68 To get started configuring IPython, simply do:
69
70 $> ipython profile create
71
72 and IPython will create the default profile in <ipython_dir>/profile_default,
73 where you can edit ipython_config.py to start configuring IPython.
74
75 """
76
77 #-----------------------------------------------------------------------------
78 # Profile Application Class (for `ipython profile` subcommand)
79 #-----------------------------------------------------------------------------
80
81
82
83 class ProfileList(Application):
84 name = u'ipython-profile'
85 description = list_help
86
87 aliases = Dict(dict(
88 ipython_dir = 'ProfileList.ipython_dir',
89 log_level = 'Application.log_level',
90 ))
91 flags = Dict(dict(
92 debug = ({'Application' : {'log_level' : 0}},
93 "Set log_level to 0, maximizing log output."
94 )
95 ))
96 ipython_dir = Unicode(get_ipython_dir(), config=True,
97 help="""
98 The name of the IPython directory. This directory is used for logging
99 configuration (through profiles), history storage, etc. The default
100 is usually $HOME/.ipython. This options can also be specified through
101 the environment variable IPYTHON_DIR.
102 """
103 )
104
105 def list_profile_dirs(self):
106 # Find the search paths
107 paths = [os.getcwdu(), self.ipython_dir]
108
109 self.log.warn('Searching for IPython profiles in paths: %r' % paths)
110 for path in paths:
111 files = os.listdir(path)
112 for f in files:
113 full_path = os.path.join(path, f)
114 if os.path.isdir(full_path) and f.startswith('profile_'):
115 profile = f.split('_',1)[-1]
116 start_cmd = 'ipython profile=%s' % profile
117 print start_cmd + " ==> " + full_path
118
119 def start(self):
120 self.list_profile_dirs()
121
122
123 create_flags = {}
124 create_flags.update(base_flags)
125 create_flags.update(boolean_flag('reset', 'ProfileCreate.overwrite',
126 "reset config files to defaults", "leave existing config files"))
127 create_flags.update(boolean_flag('cluster', 'ProfileCreate.cluster',
128 "Include parallel computing config files",
129 "Don't include parallel computing config files"))
130
131 class ProfileCreate(BaseIPythonApplication):
132 name = u'ipython-profile'
133 description = create_help
134 auto_create = Bool(True, config=False)
135
136 def _copy_config_files_default(self):
137 return True
138
139 cluster = Bool(False, config=True,
140 help="whether to include parallel computing config files")
141 def _cluster_changed(self, name, old, new):
142 cluster_files = [ 'ipcontroller_config.py',
143 'ipengine_config.py',
144 'ipcluster_config.py'
145 ]
146 if new:
147 for cf in cluster_files:
148 self.config_files.append(cf)
149 else:
150 for cf in cluster_files:
151 if cf in self.config_files:
152 self.config_files.remove(cf)
153
154 def parse_command_line(self, argv):
155 super(ProfileCreate, self).parse_command_line(argv)
156 # accept positional arg as profile name
157 if self.extra_args:
158 self.profile = self.extra_args[0]
159
160 flags = Dict(create_flags)
161
162 aliases = Dict(dict(profile='BaseIPythonApplication.profile'))
163
164 classes = [ProfileDir]
165
166 class ProfileApp(Application):
167 name = u'ipython-profile'
168 description = profile_help
169
170 subcommands = Dict(dict(
171 create = (ProfileCreate, "Create a new profile dir with default config files"),
172 list = (ProfileList, "List existing profiles")
173 ))
174
@@ -0,0 +1,206 b''
1 # encoding: utf-8
2 """
3 An object for managing IPython profile directories.
4
5 Authors:
6
7 * Brian Granger
8 * Fernando Perez
9 * Min RK
10
11 """
12
13 #-----------------------------------------------------------------------------
14 # Copyright (C) 2008-2011 The IPython Development Team
15 #
16 # Distributed under the terms of the BSD License. The full license is in
17 # the file COPYING, distributed as part of this software.
18 #-----------------------------------------------------------------------------
19
20 #-----------------------------------------------------------------------------
21 # Imports
22 #-----------------------------------------------------------------------------
23
24 import os
25 import shutil
26 import sys
27
28 from IPython.config.configurable import Configurable
29 from IPython.config.loader import Config
30 from IPython.utils.path import get_ipython_package_dir, expand_path
31 from IPython.utils.traitlets import List, Unicode, Bool
32
33 #-----------------------------------------------------------------------------
34 # Classes and functions
35 #-----------------------------------------------------------------------------
36
37
38 #-----------------------------------------------------------------------------
39 # Module errors
40 #-----------------------------------------------------------------------------
41
42 class ProfileDirError(Exception):
43 pass
44
45
46 #-----------------------------------------------------------------------------
47 # Class for managing profile directories
48 #-----------------------------------------------------------------------------
49
50 class ProfileDir(Configurable):
51 """An object to manage the profile directory and its resources.
52
53 The profile directory is used by all IPython applications, to manage
54 configuration, logging and security.
55
56 This object knows how to find, create and manage these directories. This
57 should be used by any code that wants to handle profiles.
58 """
59
60 security_dir_name = Unicode('security')
61 log_dir_name = Unicode('log')
62 pid_dir_name = Unicode('pid')
63 security_dir = Unicode(u'')
64 log_dir = Unicode(u'')
65 pid_dir = Unicode(u'')
66
67 location = Unicode(u'', config=True,
68 help="""Set the profile location directly. This overrides the logic used by the
69 `profile` option.""",
70 )
71
72 _location_isset = Bool(False) # flag for detecting multiply set location
73
74 def _location_changed(self, name, old, new):
75 if self._location_isset:
76 raise RuntimeError("Cannot set profile location more than once.")
77 self._location_isset = True
78 if not os.path.isdir(new):
79 os.makedirs(new)
80
81 # ensure config files exist:
82 self.security_dir = os.path.join(new, self.security_dir_name)
83 self.log_dir = os.path.join(new, self.log_dir_name)
84 self.pid_dir = os.path.join(new, self.pid_dir_name)
85 self.check_dirs()
86
87 def _log_dir_changed(self, name, old, new):
88 self.check_log_dir()
89
90 def check_log_dir(self):
91 if not os.path.isdir(self.log_dir):
92 os.mkdir(self.log_dir)
93
94 def _security_dir_changed(self, name, old, new):
95 self.check_security_dir()
96
97 def check_security_dir(self):
98 if not os.path.isdir(self.security_dir):
99 os.mkdir(self.security_dir, 0700)
100 else:
101 os.chmod(self.security_dir, 0700)
102
103 def _pid_dir_changed(self, name, old, new):
104 self.check_pid_dir()
105
106 def check_pid_dir(self):
107 if not os.path.isdir(self.pid_dir):
108 os.mkdir(self.pid_dir, 0700)
109 else:
110 os.chmod(self.pid_dir, 0700)
111
112 def check_dirs(self):
113 self.check_security_dir()
114 self.check_log_dir()
115 self.check_pid_dir()
116
117 def copy_config_file(self, config_file, path=None, overwrite=False):
118 """Copy a default config file into the active profile directory.
119
120 Default configuration files are kept in :mod:`IPython.config.default`.
121 This function moves these from that location to the working profile
122 directory.
123 """
124 dst = os.path.join(self.location, config_file)
125 if os.path.isfile(dst) and not overwrite:
126 return
127 if path is None:
128 path = os.path.join(get_ipython_package_dir(), u'config', u'profile', u'default')
129 src = os.path.join(path, config_file)
130 shutil.copy(src, dst)
131
132 @classmethod
133 def create_profile_dir(cls, profile_dir, config=None):
134 """Create a new profile directory given a full path.
135
136 Parameters
137 ----------
138 profile_dir : str
139 The full path to the profile directory. If it does exist, it will
140 be used. If not, it will be created.
141 """
142 return cls(location=profile_dir, config=config)
143
144 @classmethod
145 def create_profile_dir_by_name(cls, path, name=u'default', config=None):
146 """Create a profile dir by profile name and path.
147
148 Parameters
149 ----------
150 path : unicode
151 The path (directory) to put the profile directory in.
152 name : unicode
153 The name of the profile. The name of the profile directory will
154 be "profile_<profile>".
155 """
156 if not os.path.isdir(path):
157 raise ProfileDirError('Directory not found: %s' % path)
158 profile_dir = os.path.join(path, u'profile_' + name)
159 return cls(location=profile_dir, config=config)
160
161 @classmethod
162 def find_profile_dir_by_name(cls, ipython_dir, name=u'default', config=None):
163 """Find an existing profile dir by profile name, return its ProfileDir.
164
165 This searches through a sequence of paths for a profile dir. If it
166 is not found, a :class:`ProfileDirError` exception will be raised.
167
168 The search path algorithm is:
169 1. ``os.getcwd()``
170 2. ``ipython_dir``
171
172 Parameters
173 ----------
174 ipython_dir : unicode or str
175 The IPython directory to use.
176 name : unicode or str
177 The name of the profile. The name of the profile directory
178 will be "profile_<profile>".
179 """
180 dirname = u'profile_' + name
181 paths = [os.getcwdu(), ipython_dir]
182 for p in paths:
183 profile_dir = os.path.join(p, dirname)
184 if os.path.isdir(profile_dir):
185 return cls(location=profile_dir, config=config)
186 else:
187 raise ProfileDirError('Profile directory not found in paths: %s' % dirname)
188
189 @classmethod
190 def find_profile_dir(cls, profile_dir, config=None):
191 """Find/create a profile dir and return its ProfileDir.
192
193 This will create the profile directory if it doesn't exist.
194
195 Parameters
196 ----------
197 profile_dir : unicode or str
198 The path of the profile directory. This is expanded using
199 :func:`IPython.utils.genutils.expand_path`.
200 """
201 profile_dir = expand_path(profile_dir)
202 if not os.path.isdir(profile_dir):
203 raise ProfileDirError('Profile directory not found: %s' % profile_dir)
204 return cls(location=profile_dir, config=config)
205
206
@@ -1,429 +1,259 b''
1 # encoding: utf-8
1 # encoding: utf-8
2 """
2 """
3 An application for IPython.
3 An application for IPython.
4
4
5 All top-level applications should use the classes in this module for
5 All top-level applications should use the classes in this module for
6 handling configuration and creating componenets.
6 handling configuration and creating componenets.
7
7
8 The job of an :class:`Application` is to create the master configuration
8 The job of an :class:`Application` is to create the master configuration
9 object and then create the configurable objects, passing the config to them.
9 object and then create the configurable objects, passing the config to them.
10
10
11 Authors:
11 Authors:
12
12
13 * Brian Granger
13 * Brian Granger
14 * Fernando Perez
14 * Fernando Perez
15 * Min RK
15 * Min RK
16
16
17 Notes
18 -----
19 """
17 """
20
18
21 #-----------------------------------------------------------------------------
19 #-----------------------------------------------------------------------------
22 # Copyright (C) 2008-2009 The IPython Development Team
20 # Copyright (C) 2008-2011 The IPython Development Team
23 #
21 #
24 # Distributed under the terms of the BSD License. The full license is in
22 # Distributed under the terms of the BSD License. The full license is in
25 # the file COPYING, distributed as part of this software.
23 # the file COPYING, distributed as part of this software.
26 #-----------------------------------------------------------------------------
24 #-----------------------------------------------------------------------------
27
25
28 #-----------------------------------------------------------------------------
26 #-----------------------------------------------------------------------------
29 # Imports
27 # Imports
30 #-----------------------------------------------------------------------------
28 #-----------------------------------------------------------------------------
31
29
32 import logging
30 import logging
33 import os
31 import os
34 import shutil
32 import shutil
35 import sys
33 import sys
36
34
37 from IPython.config.application import Application
35 from IPython.config.application import Application
38 from IPython.config.configurable import Configurable
36 from IPython.config.configurable import Configurable
39 from IPython.config.loader import Config
37 from IPython.config.loader import Config
40 from IPython.core import release, crashhandler
38 from IPython.core import release, crashhandler
41 from IPython.utils.path import get_ipython_dir, get_ipython_package_dir, expand_path
39 from IPython.core.profiledir import ProfileDir, ProfileDirError
40 from IPython.utils.path import get_ipython_dir, get_ipython_package_dir
42 from IPython.utils.traitlets import List, Unicode, Type, Bool, Dict
41 from IPython.utils.traitlets import List, Unicode, Type, Bool, Dict
43
42
44 #-----------------------------------------------------------------------------
43 #-----------------------------------------------------------------------------
45 # Classes and functions
44 # Classes and functions
46 #-----------------------------------------------------------------------------
45 #-----------------------------------------------------------------------------
47
46
48
47
49 #-----------------------------------------------------------------------------
48 #-----------------------------------------------------------------------------
50 # Module errors
51 #-----------------------------------------------------------------------------
52
53 class ProfileDirError(Exception):
54 pass
55
56
57 #-----------------------------------------------------------------------------
58 # Class for managing profile directories
59 #-----------------------------------------------------------------------------
60
61 class ProfileDir(Configurable):
62 """An object to manage the profile directory and its resources.
63
64 The profile directory is used by all IPython applications, to manage
65 configuration, logging and security.
66
67 This object knows how to find, create and manage these directories. This
68 should be used by any code that wants to handle profiles.
69 """
70
71 security_dir_name = Unicode('security')
72 log_dir_name = Unicode('log')
73 pid_dir_name = Unicode('pid')
74 security_dir = Unicode(u'')
75 log_dir = Unicode(u'')
76 pid_dir = Unicode(u'')
77
78 location = Unicode(u'', config=True,
79 help="""Set the profile location directly. This overrides the logic used by the
80 `profile` option.""",
81 )
82
83 _location_isset = Bool(False) # flag for detecting multiply set location
84
85 def _location_changed(self, name, old, new):
86 if self._location_isset:
87 raise RuntimeError("Cannot set profile location more than once.")
88 self._location_isset = True
89 if not os.path.isdir(new):
90 os.makedirs(new)
91
92 # ensure config files exist:
93 self.security_dir = os.path.join(new, self.security_dir_name)
94 self.log_dir = os.path.join(new, self.log_dir_name)
95 self.pid_dir = os.path.join(new, self.pid_dir_name)
96 self.check_dirs()
97
98 def _log_dir_changed(self, name, old, new):
99 self.check_log_dir()
100
101 def check_log_dir(self):
102 if not os.path.isdir(self.log_dir):
103 os.mkdir(self.log_dir)
104
105 def _security_dir_changed(self, name, old, new):
106 self.check_security_dir()
107
108 def check_security_dir(self):
109 if not os.path.isdir(self.security_dir):
110 os.mkdir(self.security_dir, 0700)
111 else:
112 os.chmod(self.security_dir, 0700)
113
114 def _pid_dir_changed(self, name, old, new):
115 self.check_pid_dir()
116
117 def check_pid_dir(self):
118 if not os.path.isdir(self.pid_dir):
119 os.mkdir(self.pid_dir, 0700)
120 else:
121 os.chmod(self.pid_dir, 0700)
122
123 def check_dirs(self):
124 self.check_security_dir()
125 self.check_log_dir()
126 self.check_pid_dir()
127
128 def copy_config_file(self, config_file, path=None, overwrite=False):
129 """Copy a default config file into the active profile directory.
130
131 Default configuration files are kept in :mod:`IPython.config.default`.
132 This function moves these from that location to the working profile
133 directory.
134 """
135 dst = os.path.join(self.location, config_file)
136 if os.path.isfile(dst) and not overwrite:
137 return
138 if path is None:
139 path = os.path.join(get_ipython_package_dir(), u'config', u'profile', u'default')
140 src = os.path.join(path, config_file)
141 shutil.copy(src, dst)
142
143 @classmethod
144 def create_profile_dir(cls, profile_dir, config=None):
145 """Create a new profile directory given a full path.
146
147 Parameters
148 ----------
149 profile_dir : str
150 The full path to the profile directory. If it does exist, it will
151 be used. If not, it will be created.
152 """
153 return cls(location=profile_dir, config=config)
154
155 @classmethod
156 def create_profile_dir_by_name(cls, path, name=u'default', config=None):
157 """Create a profile dir by profile name and path.
158
159 Parameters
160 ----------
161 path : unicode
162 The path (directory) to put the profile directory in.
163 name : unicode
164 The name of the profile. The name of the profile directory will
165 be "profile_<profile>".
166 """
167 if not os.path.isdir(path):
168 raise ProfileDirError('Directory not found: %s' % path)
169 profile_dir = os.path.join(path, u'profile_' + name)
170 return cls(location=profile_dir, config=config)
171
172 @classmethod
173 def find_profile_dir_by_name(cls, ipython_dir, name=u'default', config=None):
174 """Find an existing profile dir by profile name, return its ProfileDir.
175
176 This searches through a sequence of paths for a profile dir. If it
177 is not found, a :class:`ProfileDirError` exception will be raised.
178
179 The search path algorithm is:
180 1. ``os.getcwd()``
181 2. ``ipython_dir``
182
183 Parameters
184 ----------
185 ipython_dir : unicode or str
186 The IPython directory to use.
187 name : unicode or str
188 The name of the profile. The name of the profile directory
189 will be "profile_<profile>".
190 """
191 dirname = u'profile_' + name
192 paths = [os.getcwdu(), ipython_dir]
193 for p in paths:
194 profile_dir = os.path.join(p, dirname)
195 if os.path.isdir(profile_dir):
196 return cls(location=profile_dir, config=config)
197 else:
198 raise ProfileDirError('Profile directory not found in paths: %s' % dirname)
199
200 @classmethod
201 def find_profile_dir(cls, profile_dir, config=None):
202 """Find/create a profile dir and return its ProfileDir.
203
204 This will create the profile directory if it doesn't exist.
205
206 Parameters
207 ----------
208 profile_dir : unicode or str
209 The path of the profile directory. This is expanded using
210 :func:`IPython.utils.genutils.expand_path`.
211 """
212 profile_dir = expand_path(profile_dir)
213 if not os.path.isdir(profile_dir):
214 raise ProfileDirError('Profile directory not found: %s' % profile_dir)
215 return cls(location=profile_dir, config=config)
216
217
218 #-----------------------------------------------------------------------------
219 # Base Application Class
49 # Base Application Class
220 #-----------------------------------------------------------------------------
50 #-----------------------------------------------------------------------------
221
51
222 # aliases and flags
52 # aliases and flags
223
53
224 base_aliases = dict(
54 base_aliases = dict(
225 profile='BaseIPythonApplication.profile',
55 profile='BaseIPythonApplication.profile',
226 ipython_dir='BaseIPythonApplication.ipython_dir',
56 ipython_dir='BaseIPythonApplication.ipython_dir',
227 )
57 )
228
58
229 base_flags = dict(
59 base_flags = dict(
230 debug = ({'Application' : {'log_level' : logging.DEBUG}},
60 debug = ({'Application' : {'log_level' : logging.DEBUG}},
231 "set log level to logging.DEBUG (maximize logging output)"),
61 "set log level to logging.DEBUG (maximize logging output)"),
232 quiet = ({'Application' : {'log_level' : logging.CRITICAL}},
62 quiet = ({'Application' : {'log_level' : logging.CRITICAL}},
233 "set log level to logging.CRITICAL (minimize logging output)"),
63 "set log level to logging.CRITICAL (minimize logging output)"),
234 init = ({'BaseIPythonApplication' : {
64 init = ({'BaseIPythonApplication' : {
235 'copy_config_files' : True,
65 'copy_config_files' : True,
236 'auto_create' : True}
66 'auto_create' : True}
237 }, "Initialize profile with default config files")
67 }, "Initialize profile with default config files")
238 )
68 )
239
69
240
70
241 class BaseIPythonApplication(Application):
71 class BaseIPythonApplication(Application):
242
72
243 name = Unicode(u'ipython')
73 name = Unicode(u'ipython')
244 description = Unicode(u'IPython: an enhanced interactive Python shell.')
74 description = Unicode(u'IPython: an enhanced interactive Python shell.')
245 version = Unicode(release.version)
75 version = Unicode(release.version)
246
76
247 aliases = Dict(base_aliases)
77 aliases = Dict(base_aliases)
248 flags = Dict(base_flags)
78 flags = Dict(base_flags)
249
79
250 # Track whether the config_file has changed,
80 # Track whether the config_file has changed,
251 # because some logic happens only if we aren't using the default.
81 # because some logic happens only if we aren't using the default.
252 config_file_specified = Bool(False)
82 config_file_specified = Bool(False)
253
83
254 config_file_name = Unicode(u'ipython_config.py')
84 config_file_name = Unicode(u'ipython_config.py')
255 def _config_file_name_changed(self, name, old, new):
85 def _config_file_name_changed(self, name, old, new):
256 if new != old:
86 if new != old:
257 self.config_file_specified = True
87 self.config_file_specified = True
258
88
259 # The directory that contains IPython's builtin profiles.
89 # The directory that contains IPython's builtin profiles.
260 builtin_profile_dir = Unicode(
90 builtin_profile_dir = Unicode(
261 os.path.join(get_ipython_package_dir(), u'config', u'profile', u'default')
91 os.path.join(get_ipython_package_dir(), u'config', u'profile', u'default')
262 )
92 )
263
93
264 config_file_paths = List(Unicode)
94 config_file_paths = List(Unicode)
265 def _config_file_paths_default(self):
95 def _config_file_paths_default(self):
266 return [os.getcwdu()]
96 return [os.getcwdu()]
267
97
268 profile = Unicode(u'default', config=True,
98 profile = Unicode(u'default', config=True,
269 help="""The IPython profile to use."""
99 help="""The IPython profile to use."""
270 )
100 )
271 def _profile_changed(self, name, old, new):
101 def _profile_changed(self, name, old, new):
272 self.builtin_profile_dir = os.path.join(
102 self.builtin_profile_dir = os.path.join(
273 get_ipython_package_dir(), u'config', u'profile', new
103 get_ipython_package_dir(), u'config', u'profile', new
274 )
104 )
275
105
276
106
277 ipython_dir = Unicode(get_ipython_dir(), config=True,
107 ipython_dir = Unicode(get_ipython_dir(), config=True,
278 help="""
108 help="""
279 The name of the IPython directory. This directory is used for logging
109 The name of the IPython directory. This directory is used for logging
280 configuration (through profiles), history storage, etc. The default
110 configuration (through profiles), history storage, etc. The default
281 is usually $HOME/.ipython. This options can also be specified through
111 is usually $HOME/.ipython. This options can also be specified through
282 the environment variable IPYTHON_DIR.
112 the environment variable IPYTHON_DIR.
283 """
113 """
284 )
114 )
285
115
286 overwrite = Bool(False, config=True,
116 overwrite = Bool(False, config=True,
287 help="""Whether to overwrite existing config files when copying""")
117 help="""Whether to overwrite existing config files when copying""")
288 auto_create = Bool(False, config=True,
118 auto_create = Bool(False, config=True,
289 help="""Whether to create profile dir if it doesn't exist""")
119 help="""Whether to create profile dir if it doesn't exist""")
290
120
291 config_files = List(Unicode)
121 config_files = List(Unicode)
292 def _config_files_default(self):
122 def _config_files_default(self):
293 return [u'ipython_config.py']
123 return [u'ipython_config.py']
294
124
295 copy_config_files = Bool(False, config=True,
125 copy_config_files = Bool(False, config=True,
296 help="""Whether to copy the default config files into the profile dir.""")
126 help="""Whether to copy the default config files into the profile dir.""")
297
127
298 # The class to use as the crash handler.
128 # The class to use as the crash handler.
299 crash_handler_class = Type(crashhandler.CrashHandler)
129 crash_handler_class = Type(crashhandler.CrashHandler)
300
130
301 def __init__(self, **kwargs):
131 def __init__(self, **kwargs):
302 super(BaseIPythonApplication, self).__init__(**kwargs)
132 super(BaseIPythonApplication, self).__init__(**kwargs)
303 # ensure even default IPYTHON_DIR exists
133 # ensure even default IPYTHON_DIR exists
304 if not os.path.exists(self.ipython_dir):
134 if not os.path.exists(self.ipython_dir):
305 self._ipython_dir_changed('ipython_dir', self.ipython_dir, self.ipython_dir)
135 self._ipython_dir_changed('ipython_dir', self.ipython_dir, self.ipython_dir)
306
136
307 #-------------------------------------------------------------------------
137 #-------------------------------------------------------------------------
308 # Various stages of Application creation
138 # Various stages of Application creation
309 #-------------------------------------------------------------------------
139 #-------------------------------------------------------------------------
310
140
311 def init_crash_handler(self):
141 def init_crash_handler(self):
312 """Create a crash handler, typically setting sys.excepthook to it."""
142 """Create a crash handler, typically setting sys.excepthook to it."""
313 self.crash_handler = self.crash_handler_class(self)
143 self.crash_handler = self.crash_handler_class(self)
314 sys.excepthook = self.crash_handler
144 sys.excepthook = self.crash_handler
315
145
316 def _ipython_dir_changed(self, name, old, new):
146 def _ipython_dir_changed(self, name, old, new):
317 if old in sys.path:
147 if old in sys.path:
318 sys.path.remove(old)
148 sys.path.remove(old)
319 sys.path.append(os.path.abspath(new))
149 sys.path.append(os.path.abspath(new))
320 if not os.path.isdir(new):
150 if not os.path.isdir(new):
321 os.makedirs(new, mode=0777)
151 os.makedirs(new, mode=0777)
322 readme = os.path.join(new, 'README')
152 readme = os.path.join(new, 'README')
323 if not os.path.exists(readme):
153 if not os.path.exists(readme):
324 path = os.path.join(get_ipython_package_dir(), u'config', u'profile')
154 path = os.path.join(get_ipython_package_dir(), u'config', u'profile')
325 shutil.copy(os.path.join(path, 'README'), readme)
155 shutil.copy(os.path.join(path, 'README'), readme)
326 self.log.debug("IPYTHON_DIR set to: %s" % new)
156 self.log.debug("IPYTHON_DIR set to: %s" % new)
327
157
328 def load_config_file(self, suppress_errors=True):
158 def load_config_file(self, suppress_errors=True):
329 """Load the config file.
159 """Load the config file.
330
160
331 By default, errors in loading config are handled, and a warning
161 By default, errors in loading config are handled, and a warning
332 printed on screen. For testing, the suppress_errors option is set
162 printed on screen. For testing, the suppress_errors option is set
333 to False, so errors will make tests fail.
163 to False, so errors will make tests fail.
334 """
164 """
335 self.log.debug("Attempting to load config file: %s" %
165 self.log.debug("Attempting to load config file: %s" %
336 self.config_file_name)
166 self.config_file_name)
337 try:
167 try:
338 Application.load_config_file(
168 Application.load_config_file(
339 self,
169 self,
340 self.config_file_name,
170 self.config_file_name,
341 path=self.config_file_paths
171 path=self.config_file_paths
342 )
172 )
343 except IOError:
173 except IOError:
344 # Only warn if the default config file was NOT being used.
174 # Only warn if the default config file was NOT being used.
345 if self.config_file_specified:
175 if self.config_file_specified:
346 self.log.warn("Config file not found, skipping: %s" %
176 self.log.warn("Config file not found, skipping: %s" %
347 self.config_file_name)
177 self.config_file_name)
348 except:
178 except:
349 # For testing purposes.
179 # For testing purposes.
350 if not suppress_errors:
180 if not suppress_errors:
351 raise
181 raise
352 self.log.warn("Error loading config file: %s" %
182 self.log.warn("Error loading config file: %s" %
353 self.config_file_name, exc_info=True)
183 self.config_file_name, exc_info=True)
354
184
355 def init_profile_dir(self):
185 def init_profile_dir(self):
356 """initialize the profile dir"""
186 """initialize the profile dir"""
357 try:
187 try:
358 # location explicitly specified:
188 # location explicitly specified:
359 location = self.config.ProfileDir.location
189 location = self.config.ProfileDir.location
360 except AttributeError:
190 except AttributeError:
361 # location not specified, find by profile name
191 # location not specified, find by profile name
362 try:
192 try:
363 p = ProfileDir.find_profile_dir_by_name(self.ipython_dir, self.profile, self.config)
193 p = ProfileDir.find_profile_dir_by_name(self.ipython_dir, self.profile, self.config)
364 except ProfileDirError:
194 except ProfileDirError:
365 # not found, maybe create it (always create default profile)
195 # not found, maybe create it (always create default profile)
366 if self.auto_create or self.profile=='default':
196 if self.auto_create or self.profile=='default':
367 try:
197 try:
368 p = ProfileDir.create_profile_dir_by_name(self.ipython_dir, self.profile, self.config)
198 p = ProfileDir.create_profile_dir_by_name(self.ipython_dir, self.profile, self.config)
369 except ProfileDirError:
199 except ProfileDirError:
370 self.log.fatal("Could not create profile: %r"%self.profile)
200 self.log.fatal("Could not create profile: %r"%self.profile)
371 self.exit(1)
201 self.exit(1)
372 else:
202 else:
373 self.log.info("Created profile dir: %r"%p.location)
203 self.log.info("Created profile dir: %r"%p.location)
374 else:
204 else:
375 self.log.fatal("Profile %r not found."%self.profile)
205 self.log.fatal("Profile %r not found."%self.profile)
376 self.exit(1)
206 self.exit(1)
377 else:
207 else:
378 self.log.info("Using existing profile dir: %r"%p.location)
208 self.log.info("Using existing profile dir: %r"%p.location)
379 else:
209 else:
380 # location is fully specified
210 # location is fully specified
381 try:
211 try:
382 p = ProfileDir.find_profile_dir(location, self.config)
212 p = ProfileDir.find_profile_dir(location, self.config)
383 except ProfileDirError:
213 except ProfileDirError:
384 # not found, maybe create it
214 # not found, maybe create it
385 if self.auto_create:
215 if self.auto_create:
386 try:
216 try:
387 p = ProfileDir.create_profile_dir(location, self.config)
217 p = ProfileDir.create_profile_dir(location, self.config)
388 except ProfileDirError:
218 except ProfileDirError:
389 self.log.fatal("Could not create profile directory: %r"%location)
219 self.log.fatal("Could not create profile directory: %r"%location)
390 self.exit(1)
220 self.exit(1)
391 else:
221 else:
392 self.log.info("Creating new profile dir: %r"%location)
222 self.log.info("Creating new profile dir: %r"%location)
393 else:
223 else:
394 self.log.fatal("Profile directory %r not found."%location)
224 self.log.fatal("Profile directory %r not found."%location)
395 self.exit(1)
225 self.exit(1)
396 else:
226 else:
397 self.log.info("Using existing profile dir: %r"%location)
227 self.log.info("Using existing profile dir: %r"%location)
398
228
399 self.profile_dir = p
229 self.profile_dir = p
400 self.config_file_paths.append(p.location)
230 self.config_file_paths.append(p.location)
401
231
402 def init_config_files(self):
232 def init_config_files(self):
403 """[optionally] copy default config files into profile dir."""
233 """[optionally] copy default config files into profile dir."""
404 # copy config files
234 # copy config files
405 if self.copy_config_files:
235 if self.copy_config_files:
406 path = self.builtin_profile_dir
236 path = self.builtin_profile_dir
407 src = self.profile
237 src = self.profile
408 if not os.path.exists(path):
238 if not os.path.exists(path):
409 # use default if new profile doesn't have a preset
239 # use default if new profile doesn't have a preset
410 path = None
240 path = None
411 src = 'default'
241 src = 'default'
412
242
413 self.log.debug("Staging %s config files into %r [overwrite=%s]"%(
243 self.log.debug("Staging %s config files into %r [overwrite=%s]"%(
414 src, self.profile_dir.location, self.overwrite)
244 src, self.profile_dir.location, self.overwrite)
415 )
245 )
416
246
417 for cfg in self.config_files:
247 for cfg in self.config_files:
418 self.profile_dir.copy_config_file(cfg, path=path, overwrite=self.overwrite)
248 self.profile_dir.copy_config_file(cfg, path=path, overwrite=self.overwrite)
419
249
420 def initialize(self, argv=None):
250 def initialize(self, argv=None):
421 self.init_crash_handler()
251 self.init_crash_handler()
422 self.parse_command_line(argv)
252 self.parse_command_line(argv)
423 cl_config = self.config
253 cl_config = self.config
424 self.init_profile_dir()
254 self.init_profile_dir()
425 self.init_config_files()
255 self.init_config_files()
426 self.load_config_file()
256 self.load_config_file()
427 # enforce cl-opts override configfile opts:
257 # enforce cl-opts override configfile opts:
428 self.update_config(cl_config)
258 self.update_config(cl_config)
429
259
@@ -1,2553 +1,2553 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """Main IPython class."""
2 """Main IPython class."""
3
3
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
5 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
6 # Copyright (C) 2001-2007 Fernando Perez. <fperez@colorado.edu>
7 # Copyright (C) 2008-2011 The IPython Development Team
7 # Copyright (C) 2008-2011 The IPython Development Team
8 #
8 #
9 # Distributed under the terms of the BSD License. The full license is in
9 # Distributed under the terms of the BSD License. The full license is in
10 # the file COPYING, distributed as part of this software.
10 # the file COPYING, distributed as part of this software.
11 #-----------------------------------------------------------------------------
11 #-----------------------------------------------------------------------------
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Imports
14 # Imports
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 from __future__ import with_statement
17 from __future__ import with_statement
18 from __future__ import absolute_import
18 from __future__ import absolute_import
19
19
20 import __builtin__
20 import __builtin__
21 import __future__
21 import __future__
22 import abc
22 import abc
23 import ast
23 import ast
24 import atexit
24 import atexit
25 import codeop
25 import codeop
26 import inspect
26 import inspect
27 import os
27 import os
28 import re
28 import re
29 import sys
29 import sys
30 import tempfile
30 import tempfile
31 import types
31 import types
32 from contextlib import nested
32 from contextlib import nested
33
33
34 from IPython.config.configurable import SingletonConfigurable
34 from IPython.config.configurable import SingletonConfigurable
35 from IPython.core import debugger, oinspect
35 from IPython.core import debugger, oinspect
36 from IPython.core import history as ipcorehist
36 from IPython.core import history as ipcorehist
37 from IPython.core import page
37 from IPython.core import page
38 from IPython.core import prefilter
38 from IPython.core import prefilter
39 from IPython.core import shadowns
39 from IPython.core import shadowns
40 from IPython.core import ultratb
40 from IPython.core import ultratb
41 from IPython.core.alias import AliasManager, AliasError
41 from IPython.core.alias import AliasManager, AliasError
42 from IPython.core.autocall import ExitAutocall
42 from IPython.core.autocall import ExitAutocall
43 from IPython.core.builtin_trap import BuiltinTrap
43 from IPython.core.builtin_trap import BuiltinTrap
44 from IPython.core.compilerop import CachingCompiler
44 from IPython.core.compilerop import CachingCompiler
45 from IPython.core.display_trap import DisplayTrap
45 from IPython.core.display_trap import DisplayTrap
46 from IPython.core.displayhook import DisplayHook
46 from IPython.core.displayhook import DisplayHook
47 from IPython.core.displaypub import DisplayPublisher
47 from IPython.core.displaypub import DisplayPublisher
48 from IPython.core.error import TryNext, UsageError
48 from IPython.core.error import TryNext, UsageError
49 from IPython.core.extensions import ExtensionManager
49 from IPython.core.extensions import ExtensionManager
50 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
50 from IPython.core.fakemodule import FakeModule, init_fakemod_dict
51 from IPython.core.formatters import DisplayFormatter
51 from IPython.core.formatters import DisplayFormatter
52 from IPython.core.history import HistoryManager
52 from IPython.core.history import HistoryManager
53 from IPython.core.inputsplitter import IPythonInputSplitter
53 from IPython.core.inputsplitter import IPythonInputSplitter
54 from IPython.core.logger import Logger
54 from IPython.core.logger import Logger
55 from IPython.core.macro import Macro
55 from IPython.core.macro import Macro
56 from IPython.core.magic import Magic
56 from IPython.core.magic import Magic
57 from IPython.core.application import ProfileDir
58 from IPython.core.payload import PayloadManager
57 from IPython.core.payload import PayloadManager
59 from IPython.core.plugin import PluginManager
58 from IPython.core.plugin import PluginManager
60 from IPython.core.prefilter import PrefilterManager, ESC_MAGIC
59 from IPython.core.prefilter import PrefilterManager, ESC_MAGIC
60 from IPython.core.profiledir import ProfileDir
61 from IPython.external.Itpl import ItplNS
61 from IPython.external.Itpl import ItplNS
62 from IPython.utils import PyColorize
62 from IPython.utils import PyColorize
63 from IPython.utils import io
63 from IPython.utils import io
64 from IPython.utils.doctestreload import doctest_reload
64 from IPython.utils.doctestreload import doctest_reload
65 from IPython.utils.io import ask_yes_no, rprint
65 from IPython.utils.io import ask_yes_no, rprint
66 from IPython.utils.ipstruct import Struct
66 from IPython.utils.ipstruct import Struct
67 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
67 from IPython.utils.path import get_home_dir, get_ipython_dir, HomeDirError
68 from IPython.utils.pickleshare import PickleShareDB
68 from IPython.utils.pickleshare import PickleShareDB
69 from IPython.utils.process import system, getoutput
69 from IPython.utils.process import system, getoutput
70 from IPython.utils.strdispatch import StrDispatch
70 from IPython.utils.strdispatch import StrDispatch
71 from IPython.utils.syspathcontext import prepended_to_syspath
71 from IPython.utils.syspathcontext import prepended_to_syspath
72 from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList
72 from IPython.utils.text import num_ini_spaces, format_screen, LSString, SList
73 from IPython.utils.traitlets import (Int, Str, CBool, CaselessStrEnum, Enum,
73 from IPython.utils.traitlets import (Int, Str, CBool, CaselessStrEnum, Enum,
74 List, Unicode, Instance, Type)
74 List, Unicode, Instance, Type)
75 from IPython.utils.warn import warn, error, fatal
75 from IPython.utils.warn import warn, error, fatal
76 import IPython.core.hooks
76 import IPython.core.hooks
77
77
78 #-----------------------------------------------------------------------------
78 #-----------------------------------------------------------------------------
79 # Globals
79 # Globals
80 #-----------------------------------------------------------------------------
80 #-----------------------------------------------------------------------------
81
81
82 # compiled regexps for autoindent management
82 # compiled regexps for autoindent management
83 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
83 dedent_re = re.compile(r'^\s+raise|^\s+return|^\s+pass')
84
84
85 #-----------------------------------------------------------------------------
85 #-----------------------------------------------------------------------------
86 # Utilities
86 # Utilities
87 #-----------------------------------------------------------------------------
87 #-----------------------------------------------------------------------------
88
88
89 # store the builtin raw_input globally, and use this always, in case user code
89 # store the builtin raw_input globally, and use this always, in case user code
90 # overwrites it (like wx.py.PyShell does)
90 # overwrites it (like wx.py.PyShell does)
91 raw_input_original = raw_input
91 raw_input_original = raw_input
92
92
93 def softspace(file, newvalue):
93 def softspace(file, newvalue):
94 """Copied from code.py, to remove the dependency"""
94 """Copied from code.py, to remove the dependency"""
95
95
96 oldvalue = 0
96 oldvalue = 0
97 try:
97 try:
98 oldvalue = file.softspace
98 oldvalue = file.softspace
99 except AttributeError:
99 except AttributeError:
100 pass
100 pass
101 try:
101 try:
102 file.softspace = newvalue
102 file.softspace = newvalue
103 except (AttributeError, TypeError):
103 except (AttributeError, TypeError):
104 # "attribute-less object" or "read-only attributes"
104 # "attribute-less object" or "read-only attributes"
105 pass
105 pass
106 return oldvalue
106 return oldvalue
107
107
108
108
109 def no_op(*a, **kw): pass
109 def no_op(*a, **kw): pass
110
110
111 class SpaceInInput(Exception): pass
111 class SpaceInInput(Exception): pass
112
112
113 class Bunch: pass
113 class Bunch: pass
114
114
115
115
116 def get_default_colors():
116 def get_default_colors():
117 if sys.platform=='darwin':
117 if sys.platform=='darwin':
118 return "LightBG"
118 return "LightBG"
119 elif os.name=='nt':
119 elif os.name=='nt':
120 return 'Linux'
120 return 'Linux'
121 else:
121 else:
122 return 'Linux'
122 return 'Linux'
123
123
124
124
125 class SeparateStr(Str):
125 class SeparateStr(Str):
126 """A Str subclass to validate separate_in, separate_out, etc.
126 """A Str subclass to validate separate_in, separate_out, etc.
127
127
128 This is a Str based trait that converts '0'->'' and '\\n'->'\n'.
128 This is a Str based trait that converts '0'->'' and '\\n'->'\n'.
129 """
129 """
130
130
131 def validate(self, obj, value):
131 def validate(self, obj, value):
132 if value == '0': value = ''
132 if value == '0': value = ''
133 value = value.replace('\\n','\n')
133 value = value.replace('\\n','\n')
134 return super(SeparateStr, self).validate(obj, value)
134 return super(SeparateStr, self).validate(obj, value)
135
135
136
136
137 class ReadlineNoRecord(object):
137 class ReadlineNoRecord(object):
138 """Context manager to execute some code, then reload readline history
138 """Context manager to execute some code, then reload readline history
139 so that interactive input to the code doesn't appear when pressing up."""
139 so that interactive input to the code doesn't appear when pressing up."""
140 def __init__(self, shell):
140 def __init__(self, shell):
141 self.shell = shell
141 self.shell = shell
142 self._nested_level = 0
142 self._nested_level = 0
143
143
144 def __enter__(self):
144 def __enter__(self):
145 if self._nested_level == 0:
145 if self._nested_level == 0:
146 try:
146 try:
147 self.orig_length = self.current_length()
147 self.orig_length = self.current_length()
148 self.readline_tail = self.get_readline_tail()
148 self.readline_tail = self.get_readline_tail()
149 except (AttributeError, IndexError): # Can fail with pyreadline
149 except (AttributeError, IndexError): # Can fail with pyreadline
150 self.orig_length, self.readline_tail = 999999, []
150 self.orig_length, self.readline_tail = 999999, []
151 self._nested_level += 1
151 self._nested_level += 1
152
152
153 def __exit__(self, type, value, traceback):
153 def __exit__(self, type, value, traceback):
154 self._nested_level -= 1
154 self._nested_level -= 1
155 if self._nested_level == 0:
155 if self._nested_level == 0:
156 # Try clipping the end if it's got longer
156 # Try clipping the end if it's got longer
157 try:
157 try:
158 e = self.current_length() - self.orig_length
158 e = self.current_length() - self.orig_length
159 if e > 0:
159 if e > 0:
160 for _ in range(e):
160 for _ in range(e):
161 self.shell.readline.remove_history_item(self.orig_length)
161 self.shell.readline.remove_history_item(self.orig_length)
162
162
163 # If it still doesn't match, just reload readline history.
163 # If it still doesn't match, just reload readline history.
164 if self.current_length() != self.orig_length \
164 if self.current_length() != self.orig_length \
165 or self.get_readline_tail() != self.readline_tail:
165 or self.get_readline_tail() != self.readline_tail:
166 self.shell.refill_readline_hist()
166 self.shell.refill_readline_hist()
167 except (AttributeError, IndexError):
167 except (AttributeError, IndexError):
168 pass
168 pass
169 # Returning False will cause exceptions to propagate
169 # Returning False will cause exceptions to propagate
170 return False
170 return False
171
171
172 def current_length(self):
172 def current_length(self):
173 return self.shell.readline.get_current_history_length()
173 return self.shell.readline.get_current_history_length()
174
174
175 def get_readline_tail(self, n=10):
175 def get_readline_tail(self, n=10):
176 """Get the last n items in readline history."""
176 """Get the last n items in readline history."""
177 end = self.shell.readline.get_current_history_length() + 1
177 end = self.shell.readline.get_current_history_length() + 1
178 start = max(end-n, 1)
178 start = max(end-n, 1)
179 ghi = self.shell.readline.get_history_item
179 ghi = self.shell.readline.get_history_item
180 return [ghi(x) for x in range(start, end)]
180 return [ghi(x) for x in range(start, end)]
181
181
182
182
183 _autocall_help = """
183 _autocall_help = """
184 Make IPython automatically call any callable object even if
184 Make IPython automatically call any callable object even if
185 you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)'
185 you didn't type explicit parentheses. For example, 'str 43' becomes 'str(43)'
186 automatically. The value can be '0' to disable the feature, '1' for 'smart'
186 automatically. The value can be '0' to disable the feature, '1' for 'smart'
187 autocall, where it is not applied if there are no more arguments on the line,
187 autocall, where it is not applied if there are no more arguments on the line,
188 and '2' for 'full' autocall, where all callable objects are automatically
188 and '2' for 'full' autocall, where all callable objects are automatically
189 called (even if no arguments are present). The default is '1'.
189 called (even if no arguments are present). The default is '1'.
190 """
190 """
191
191
192 #-----------------------------------------------------------------------------
192 #-----------------------------------------------------------------------------
193 # Main IPython class
193 # Main IPython class
194 #-----------------------------------------------------------------------------
194 #-----------------------------------------------------------------------------
195
195
196 class InteractiveShell(SingletonConfigurable, Magic):
196 class InteractiveShell(SingletonConfigurable, Magic):
197 """An enhanced, interactive shell for Python."""
197 """An enhanced, interactive shell for Python."""
198
198
199 _instance = None
199 _instance = None
200
200
201 autocall = Enum((0,1,2), default_value=1, config=True, help=
201 autocall = Enum((0,1,2), default_value=1, config=True, help=
202 """
202 """
203 Make IPython automatically call any callable object even if you didn't
203 Make IPython automatically call any callable object even if you didn't
204 type explicit parentheses. For example, 'str 43' becomes 'str(43)'
204 type explicit parentheses. For example, 'str 43' becomes 'str(43)'
205 automatically. The value can be '0' to disable the feature, '1' for
205 automatically. The value can be '0' to disable the feature, '1' for
206 'smart' autocall, where it is not applied if there are no more
206 'smart' autocall, where it is not applied if there are no more
207 arguments on the line, and '2' for 'full' autocall, where all callable
207 arguments on the line, and '2' for 'full' autocall, where all callable
208 objects are automatically called (even if no arguments are present).
208 objects are automatically called (even if no arguments are present).
209 The default is '1'.
209 The default is '1'.
210 """
210 """
211 )
211 )
212 # TODO: remove all autoindent logic and put into frontends.
212 # TODO: remove all autoindent logic and put into frontends.
213 # We can't do this yet because even runlines uses the autoindent.
213 # We can't do this yet because even runlines uses the autoindent.
214 autoindent = CBool(True, config=True, help=
214 autoindent = CBool(True, config=True, help=
215 """
215 """
216 Autoindent IPython code entered interactively.
216 Autoindent IPython code entered interactively.
217 """
217 """
218 )
218 )
219 automagic = CBool(True, config=True, help=
219 automagic = CBool(True, config=True, help=
220 """
220 """
221 Enable magic commands to be called without the leading %.
221 Enable magic commands to be called without the leading %.
222 """
222 """
223 )
223 )
224 cache_size = Int(1000, config=True, help=
224 cache_size = Int(1000, config=True, help=
225 """
225 """
226 Set the size of the output cache. The default is 1000, you can
226 Set the size of the output cache. The default is 1000, you can
227 change it permanently in your config file. Setting it to 0 completely
227 change it permanently in your config file. Setting it to 0 completely
228 disables the caching system, and the minimum value accepted is 20 (if
228 disables the caching system, and the minimum value accepted is 20 (if
229 you provide a value less than 20, it is reset to 0 and a warning is
229 you provide a value less than 20, it is reset to 0 and a warning is
230 issued). This limit is defined because otherwise you'll spend more
230 issued). This limit is defined because otherwise you'll spend more
231 time re-flushing a too small cache than working
231 time re-flushing a too small cache than working
232 """
232 """
233 )
233 )
234 color_info = CBool(True, config=True, help=
234 color_info = CBool(True, config=True, help=
235 """
235 """
236 Use colors for displaying information about objects. Because this
236 Use colors for displaying information about objects. Because this
237 information is passed through a pager (like 'less'), and some pagers
237 information is passed through a pager (like 'less'), and some pagers
238 get confused with color codes, this capability can be turned off.
238 get confused with color codes, this capability can be turned off.
239 """
239 """
240 )
240 )
241 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
241 colors = CaselessStrEnum(('NoColor','LightBG','Linux'),
242 default_value=get_default_colors(), config=True,
242 default_value=get_default_colors(), config=True,
243 help="Set the color scheme (NoColor, Linux, or LightBG)."
243 help="Set the color scheme (NoColor, Linux, or LightBG)."
244 )
244 )
245 debug = CBool(False, config=True)
245 debug = CBool(False, config=True)
246 deep_reload = CBool(False, config=True, help=
246 deep_reload = CBool(False, config=True, help=
247 """
247 """
248 Enable deep (recursive) reloading by default. IPython can use the
248 Enable deep (recursive) reloading by default. IPython can use the
249 deep_reload module which reloads changes in modules recursively (it
249 deep_reload module which reloads changes in modules recursively (it
250 replaces the reload() function, so you don't need to change anything to
250 replaces the reload() function, so you don't need to change anything to
251 use it). deep_reload() forces a full reload of modules whose code may
251 use it). deep_reload() forces a full reload of modules whose code may
252 have changed, which the default reload() function does not. When
252 have changed, which the default reload() function does not. When
253 deep_reload is off, IPython will use the normal reload(), but
253 deep_reload is off, IPython will use the normal reload(), but
254 deep_reload will still be available as dreload().
254 deep_reload will still be available as dreload().
255 """
255 """
256 )
256 )
257 display_formatter = Instance(DisplayFormatter)
257 display_formatter = Instance(DisplayFormatter)
258 displayhook_class = Type(DisplayHook)
258 displayhook_class = Type(DisplayHook)
259 display_pub_class = Type(DisplayPublisher)
259 display_pub_class = Type(DisplayPublisher)
260
260
261 exit_now = CBool(False)
261 exit_now = CBool(False)
262 exiter = Instance(ExitAutocall)
262 exiter = Instance(ExitAutocall)
263 def _exiter_default(self):
263 def _exiter_default(self):
264 return ExitAutocall(self)
264 return ExitAutocall(self)
265 # Monotonically increasing execution counter
265 # Monotonically increasing execution counter
266 execution_count = Int(1)
266 execution_count = Int(1)
267 filename = Unicode("<ipython console>")
267 filename = Unicode("<ipython console>")
268 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
268 ipython_dir= Unicode('', config=True) # Set to get_ipython_dir() in __init__
269
269
270 # Input splitter, to split entire cells of input into either individual
270 # Input splitter, to split entire cells of input into either individual
271 # interactive statements or whole blocks.
271 # interactive statements or whole blocks.
272 input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter',
272 input_splitter = Instance('IPython.core.inputsplitter.IPythonInputSplitter',
273 (), {})
273 (), {})
274 logstart = CBool(False, config=True, help=
274 logstart = CBool(False, config=True, help=
275 """
275 """
276 Start logging to the default log file.
276 Start logging to the default log file.
277 """
277 """
278 )
278 )
279 logfile = Unicode('', config=True, help=
279 logfile = Unicode('', config=True, help=
280 """
280 """
281 The name of the logfile to use.
281 The name of the logfile to use.
282 """
282 """
283 )
283 )
284 logappend = Unicode('', config=True, help=
284 logappend = Unicode('', config=True, help=
285 """
285 """
286 Start logging to the given file in append mode.
286 Start logging to the given file in append mode.
287 """
287 """
288 )
288 )
289 object_info_string_level = Enum((0,1,2), default_value=0,
289 object_info_string_level = Enum((0,1,2), default_value=0,
290 config=True)
290 config=True)
291 pdb = CBool(False, config=True, help=
291 pdb = CBool(False, config=True, help=
292 """
292 """
293 Automatically call the pdb debugger after every exception.
293 Automatically call the pdb debugger after every exception.
294 """
294 """
295 )
295 )
296
296
297 prompt_in1 = Str('In [\\#]: ', config=True)
297 prompt_in1 = Str('In [\\#]: ', config=True)
298 prompt_in2 = Str(' .\\D.: ', config=True)
298 prompt_in2 = Str(' .\\D.: ', config=True)
299 prompt_out = Str('Out[\\#]: ', config=True)
299 prompt_out = Str('Out[\\#]: ', config=True)
300 prompts_pad_left = CBool(True, config=True)
300 prompts_pad_left = CBool(True, config=True)
301 quiet = CBool(False, config=True)
301 quiet = CBool(False, config=True)
302
302
303 history_length = Int(10000, config=True)
303 history_length = Int(10000, config=True)
304
304
305 # The readline stuff will eventually be moved to the terminal subclass
305 # The readline stuff will eventually be moved to the terminal subclass
306 # but for now, we can't do that as readline is welded in everywhere.
306 # but for now, we can't do that as readline is welded in everywhere.
307 readline_use = CBool(True, config=True)
307 readline_use = CBool(True, config=True)
308 readline_merge_completions = CBool(True, config=True)
308 readline_merge_completions = CBool(True, config=True)
309 readline_omit__names = Enum((0,1,2), default_value=2, config=True)
309 readline_omit__names = Enum((0,1,2), default_value=2, config=True)
310 readline_remove_delims = Str('-/~', config=True)
310 readline_remove_delims = Str('-/~', config=True)
311 # don't use \M- bindings by default, because they
311 # don't use \M- bindings by default, because they
312 # conflict with 8-bit encodings. See gh-58,gh-88
312 # conflict with 8-bit encodings. See gh-58,gh-88
313 readline_parse_and_bind = List([
313 readline_parse_and_bind = List([
314 'tab: complete',
314 'tab: complete',
315 '"\C-l": clear-screen',
315 '"\C-l": clear-screen',
316 'set show-all-if-ambiguous on',
316 'set show-all-if-ambiguous on',
317 '"\C-o": tab-insert',
317 '"\C-o": tab-insert',
318 '"\C-r": reverse-search-history',
318 '"\C-r": reverse-search-history',
319 '"\C-s": forward-search-history',
319 '"\C-s": forward-search-history',
320 '"\C-p": history-search-backward',
320 '"\C-p": history-search-backward',
321 '"\C-n": history-search-forward',
321 '"\C-n": history-search-forward',
322 '"\e[A": history-search-backward',
322 '"\e[A": history-search-backward',
323 '"\e[B": history-search-forward',
323 '"\e[B": history-search-forward',
324 '"\C-k": kill-line',
324 '"\C-k": kill-line',
325 '"\C-u": unix-line-discard',
325 '"\C-u": unix-line-discard',
326 ], allow_none=False, config=True)
326 ], allow_none=False, config=True)
327
327
328 # TODO: this part of prompt management should be moved to the frontends.
328 # TODO: this part of prompt management should be moved to the frontends.
329 # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n'
329 # Use custom TraitTypes that convert '0'->'' and '\\n'->'\n'
330 separate_in = SeparateStr('\n', config=True)
330 separate_in = SeparateStr('\n', config=True)
331 separate_out = SeparateStr('', config=True)
331 separate_out = SeparateStr('', config=True)
332 separate_out2 = SeparateStr('', config=True)
332 separate_out2 = SeparateStr('', config=True)
333 wildcards_case_sensitive = CBool(True, config=True)
333 wildcards_case_sensitive = CBool(True, config=True)
334 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
334 xmode = CaselessStrEnum(('Context','Plain', 'Verbose'),
335 default_value='Context', config=True)
335 default_value='Context', config=True)
336
336
337 # Subcomponents of InteractiveShell
337 # Subcomponents of InteractiveShell
338 alias_manager = Instance('IPython.core.alias.AliasManager')
338 alias_manager = Instance('IPython.core.alias.AliasManager')
339 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
339 prefilter_manager = Instance('IPython.core.prefilter.PrefilterManager')
340 builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap')
340 builtin_trap = Instance('IPython.core.builtin_trap.BuiltinTrap')
341 display_trap = Instance('IPython.core.display_trap.DisplayTrap')
341 display_trap = Instance('IPython.core.display_trap.DisplayTrap')
342 extension_manager = Instance('IPython.core.extensions.ExtensionManager')
342 extension_manager = Instance('IPython.core.extensions.ExtensionManager')
343 plugin_manager = Instance('IPython.core.plugin.PluginManager')
343 plugin_manager = Instance('IPython.core.plugin.PluginManager')
344 payload_manager = Instance('IPython.core.payload.PayloadManager')
344 payload_manager = Instance('IPython.core.payload.PayloadManager')
345 history_manager = Instance('IPython.core.history.HistoryManager')
345 history_manager = Instance('IPython.core.history.HistoryManager')
346
346
347 profile_dir = Instance('IPython.core.application.ProfileDir')
347 profile_dir = Instance('IPython.core.application.ProfileDir')
348 @property
348 @property
349 def profile(self):
349 def profile(self):
350 if self.profile_dir is not None:
350 if self.profile_dir is not None:
351 name = os.path.basename(self.profile_dir.location)
351 name = os.path.basename(self.profile_dir.location)
352 return name.replace('profile_','')
352 return name.replace('profile_','')
353
353
354
354
355 # Private interface
355 # Private interface
356 _post_execute = Instance(dict)
356 _post_execute = Instance(dict)
357
357
358 def __init__(self, config=None, ipython_dir=None, profile_dir=None,
358 def __init__(self, config=None, ipython_dir=None, profile_dir=None,
359 user_ns=None, user_global_ns=None,
359 user_ns=None, user_global_ns=None,
360 custom_exceptions=((), None)):
360 custom_exceptions=((), None)):
361
361
362 # This is where traits with a config_key argument are updated
362 # This is where traits with a config_key argument are updated
363 # from the values on config.
363 # from the values on config.
364 super(InteractiveShell, self).__init__(config=config)
364 super(InteractiveShell, self).__init__(config=config)
365
365
366 # These are relatively independent and stateless
366 # These are relatively independent and stateless
367 self.init_ipython_dir(ipython_dir)
367 self.init_ipython_dir(ipython_dir)
368 self.init_profile_dir(profile_dir)
368 self.init_profile_dir(profile_dir)
369 self.init_instance_attrs()
369 self.init_instance_attrs()
370 self.init_environment()
370 self.init_environment()
371
371
372 # Create namespaces (user_ns, user_global_ns, etc.)
372 # Create namespaces (user_ns, user_global_ns, etc.)
373 self.init_create_namespaces(user_ns, user_global_ns)
373 self.init_create_namespaces(user_ns, user_global_ns)
374 # This has to be done after init_create_namespaces because it uses
374 # This has to be done after init_create_namespaces because it uses
375 # something in self.user_ns, but before init_sys_modules, which
375 # something in self.user_ns, but before init_sys_modules, which
376 # is the first thing to modify sys.
376 # is the first thing to modify sys.
377 # TODO: When we override sys.stdout and sys.stderr before this class
377 # TODO: When we override sys.stdout and sys.stderr before this class
378 # is created, we are saving the overridden ones here. Not sure if this
378 # is created, we are saving the overridden ones here. Not sure if this
379 # is what we want to do.
379 # is what we want to do.
380 self.save_sys_module_state()
380 self.save_sys_module_state()
381 self.init_sys_modules()
381 self.init_sys_modules()
382
382
383 # While we're trying to have each part of the code directly access what
383 # While we're trying to have each part of the code directly access what
384 # it needs without keeping redundant references to objects, we have too
384 # it needs without keeping redundant references to objects, we have too
385 # much legacy code that expects ip.db to exist.
385 # much legacy code that expects ip.db to exist.
386 self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db'))
386 self.db = PickleShareDB(os.path.join(self.profile_dir.location, 'db'))
387
387
388 self.init_history()
388 self.init_history()
389 self.init_encoding()
389 self.init_encoding()
390 self.init_prefilter()
390 self.init_prefilter()
391
391
392 Magic.__init__(self, self)
392 Magic.__init__(self, self)
393
393
394 self.init_syntax_highlighting()
394 self.init_syntax_highlighting()
395 self.init_hooks()
395 self.init_hooks()
396 self.init_pushd_popd_magic()
396 self.init_pushd_popd_magic()
397 # self.init_traceback_handlers use to be here, but we moved it below
397 # self.init_traceback_handlers use to be here, but we moved it below
398 # because it and init_io have to come after init_readline.
398 # because it and init_io have to come after init_readline.
399 self.init_user_ns()
399 self.init_user_ns()
400 self.init_logger()
400 self.init_logger()
401 self.init_alias()
401 self.init_alias()
402 self.init_builtins()
402 self.init_builtins()
403
403
404 # pre_config_initialization
404 # pre_config_initialization
405
405
406 # The next section should contain everything that was in ipmaker.
406 # The next section should contain everything that was in ipmaker.
407 self.init_logstart()
407 self.init_logstart()
408
408
409 # The following was in post_config_initialization
409 # The following was in post_config_initialization
410 self.init_inspector()
410 self.init_inspector()
411 # init_readline() must come before init_io(), because init_io uses
411 # init_readline() must come before init_io(), because init_io uses
412 # readline related things.
412 # readline related things.
413 self.init_readline()
413 self.init_readline()
414 # init_completer must come after init_readline, because it needs to
414 # init_completer must come after init_readline, because it needs to
415 # know whether readline is present or not system-wide to configure the
415 # know whether readline is present or not system-wide to configure the
416 # completers, since the completion machinery can now operate
416 # completers, since the completion machinery can now operate
417 # independently of readline (e.g. over the network)
417 # independently of readline (e.g. over the network)
418 self.init_completer()
418 self.init_completer()
419 # TODO: init_io() needs to happen before init_traceback handlers
419 # TODO: init_io() needs to happen before init_traceback handlers
420 # because the traceback handlers hardcode the stdout/stderr streams.
420 # because the traceback handlers hardcode the stdout/stderr streams.
421 # This logic in in debugger.Pdb and should eventually be changed.
421 # This logic in in debugger.Pdb and should eventually be changed.
422 self.init_io()
422 self.init_io()
423 self.init_traceback_handlers(custom_exceptions)
423 self.init_traceback_handlers(custom_exceptions)
424 self.init_prompts()
424 self.init_prompts()
425 self.init_display_formatter()
425 self.init_display_formatter()
426 self.init_display_pub()
426 self.init_display_pub()
427 self.init_displayhook()
427 self.init_displayhook()
428 self.init_reload_doctest()
428 self.init_reload_doctest()
429 self.init_magics()
429 self.init_magics()
430 self.init_pdb()
430 self.init_pdb()
431 self.init_extension_manager()
431 self.init_extension_manager()
432 self.init_plugin_manager()
432 self.init_plugin_manager()
433 self.init_payload()
433 self.init_payload()
434 self.hooks.late_startup_hook()
434 self.hooks.late_startup_hook()
435 atexit.register(self.atexit_operations)
435 atexit.register(self.atexit_operations)
436
436
437 def get_ipython(self):
437 def get_ipython(self):
438 """Return the currently running IPython instance."""
438 """Return the currently running IPython instance."""
439 return self
439 return self
440
440
441 #-------------------------------------------------------------------------
441 #-------------------------------------------------------------------------
442 # Trait changed handlers
442 # Trait changed handlers
443 #-------------------------------------------------------------------------
443 #-------------------------------------------------------------------------
444
444
445 def _ipython_dir_changed(self, name, new):
445 def _ipython_dir_changed(self, name, new):
446 if not os.path.isdir(new):
446 if not os.path.isdir(new):
447 os.makedirs(new, mode = 0777)
447 os.makedirs(new, mode = 0777)
448
448
449 def set_autoindent(self,value=None):
449 def set_autoindent(self,value=None):
450 """Set the autoindent flag, checking for readline support.
450 """Set the autoindent flag, checking for readline support.
451
451
452 If called with no arguments, it acts as a toggle."""
452 If called with no arguments, it acts as a toggle."""
453
453
454 if not self.has_readline:
454 if not self.has_readline:
455 if os.name == 'posix':
455 if os.name == 'posix':
456 warn("The auto-indent feature requires the readline library")
456 warn("The auto-indent feature requires the readline library")
457 self.autoindent = 0
457 self.autoindent = 0
458 return
458 return
459 if value is None:
459 if value is None:
460 self.autoindent = not self.autoindent
460 self.autoindent = not self.autoindent
461 else:
461 else:
462 self.autoindent = value
462 self.autoindent = value
463
463
464 #-------------------------------------------------------------------------
464 #-------------------------------------------------------------------------
465 # init_* methods called by __init__
465 # init_* methods called by __init__
466 #-------------------------------------------------------------------------
466 #-------------------------------------------------------------------------
467
467
468 def init_ipython_dir(self, ipython_dir):
468 def init_ipython_dir(self, ipython_dir):
469 if ipython_dir is not None:
469 if ipython_dir is not None:
470 self.ipython_dir = ipython_dir
470 self.ipython_dir = ipython_dir
471 return
471 return
472
472
473 self.ipython_dir = get_ipython_dir()
473 self.ipython_dir = get_ipython_dir()
474
474
475 def init_profile_dir(self, profile_dir):
475 def init_profile_dir(self, profile_dir):
476 if profile_dir is not None:
476 if profile_dir is not None:
477 self.profile_dir = profile_dir
477 self.profile_dir = profile_dir
478 return
478 return
479 self.profile_dir =\
479 self.profile_dir =\
480 ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default')
480 ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default')
481
481
482 def init_instance_attrs(self):
482 def init_instance_attrs(self):
483 self.more = False
483 self.more = False
484
484
485 # command compiler
485 # command compiler
486 self.compile = CachingCompiler()
486 self.compile = CachingCompiler()
487
487
488 # Make an empty namespace, which extension writers can rely on both
488 # Make an empty namespace, which extension writers can rely on both
489 # existing and NEVER being used by ipython itself. This gives them a
489 # existing and NEVER being used by ipython itself. This gives them a
490 # convenient location for storing additional information and state
490 # convenient location for storing additional information and state
491 # their extensions may require, without fear of collisions with other
491 # their extensions may require, without fear of collisions with other
492 # ipython names that may develop later.
492 # ipython names that may develop later.
493 self.meta = Struct()
493 self.meta = Struct()
494
494
495 # Temporary files used for various purposes. Deleted at exit.
495 # Temporary files used for various purposes. Deleted at exit.
496 self.tempfiles = []
496 self.tempfiles = []
497
497
498 # Keep track of readline usage (later set by init_readline)
498 # Keep track of readline usage (later set by init_readline)
499 self.has_readline = False
499 self.has_readline = False
500
500
501 # keep track of where we started running (mainly for crash post-mortem)
501 # keep track of where we started running (mainly for crash post-mortem)
502 # This is not being used anywhere currently.
502 # This is not being used anywhere currently.
503 self.starting_dir = os.getcwd()
503 self.starting_dir = os.getcwd()
504
504
505 # Indentation management
505 # Indentation management
506 self.indent_current_nsp = 0
506 self.indent_current_nsp = 0
507
507
508 # Dict to track post-execution functions that have been registered
508 # Dict to track post-execution functions that have been registered
509 self._post_execute = {}
509 self._post_execute = {}
510
510
511 def init_environment(self):
511 def init_environment(self):
512 """Any changes we need to make to the user's environment."""
512 """Any changes we need to make to the user's environment."""
513 pass
513 pass
514
514
515 def init_encoding(self):
515 def init_encoding(self):
516 # Get system encoding at startup time. Certain terminals (like Emacs
516 # Get system encoding at startup time. Certain terminals (like Emacs
517 # under Win32 have it set to None, and we need to have a known valid
517 # under Win32 have it set to None, and we need to have a known valid
518 # encoding to use in the raw_input() method
518 # encoding to use in the raw_input() method
519 try:
519 try:
520 self.stdin_encoding = sys.stdin.encoding or 'ascii'
520 self.stdin_encoding = sys.stdin.encoding or 'ascii'
521 except AttributeError:
521 except AttributeError:
522 self.stdin_encoding = 'ascii'
522 self.stdin_encoding = 'ascii'
523
523
524 def init_syntax_highlighting(self):
524 def init_syntax_highlighting(self):
525 # Python source parser/formatter for syntax highlighting
525 # Python source parser/formatter for syntax highlighting
526 pyformat = PyColorize.Parser().format
526 pyformat = PyColorize.Parser().format
527 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
527 self.pycolorize = lambda src: pyformat(src,'str',self.colors)
528
528
529 def init_pushd_popd_magic(self):
529 def init_pushd_popd_magic(self):
530 # for pushd/popd management
530 # for pushd/popd management
531 try:
531 try:
532 self.home_dir = get_home_dir()
532 self.home_dir = get_home_dir()
533 except HomeDirError, msg:
533 except HomeDirError, msg:
534 fatal(msg)
534 fatal(msg)
535
535
536 self.dir_stack = []
536 self.dir_stack = []
537
537
538 def init_logger(self):
538 def init_logger(self):
539 self.logger = Logger(self.home_dir, logfname='ipython_log.py',
539 self.logger = Logger(self.home_dir, logfname='ipython_log.py',
540 logmode='rotate')
540 logmode='rotate')
541
541
542 def init_logstart(self):
542 def init_logstart(self):
543 """Initialize logging in case it was requested at the command line.
543 """Initialize logging in case it was requested at the command line.
544 """
544 """
545 if self.logappend:
545 if self.logappend:
546 self.magic_logstart(self.logappend + ' append')
546 self.magic_logstart(self.logappend + ' append')
547 elif self.logfile:
547 elif self.logfile:
548 self.magic_logstart(self.logfile)
548 self.magic_logstart(self.logfile)
549 elif self.logstart:
549 elif self.logstart:
550 self.magic_logstart()
550 self.magic_logstart()
551
551
552 def init_builtins(self):
552 def init_builtins(self):
553 self.builtin_trap = BuiltinTrap(shell=self)
553 self.builtin_trap = BuiltinTrap(shell=self)
554
554
555 def init_inspector(self):
555 def init_inspector(self):
556 # Object inspector
556 # Object inspector
557 self.inspector = oinspect.Inspector(oinspect.InspectColors,
557 self.inspector = oinspect.Inspector(oinspect.InspectColors,
558 PyColorize.ANSICodeColors,
558 PyColorize.ANSICodeColors,
559 'NoColor',
559 'NoColor',
560 self.object_info_string_level)
560 self.object_info_string_level)
561
561
562 def init_io(self):
562 def init_io(self):
563 # This will just use sys.stdout and sys.stderr. If you want to
563 # This will just use sys.stdout and sys.stderr. If you want to
564 # override sys.stdout and sys.stderr themselves, you need to do that
564 # override sys.stdout and sys.stderr themselves, you need to do that
565 # *before* instantiating this class, because io holds onto
565 # *before* instantiating this class, because io holds onto
566 # references to the underlying streams.
566 # references to the underlying streams.
567 if sys.platform == 'win32' and self.has_readline:
567 if sys.platform == 'win32' and self.has_readline:
568 io.stdout = io.stderr = io.IOStream(self.readline._outputfile)
568 io.stdout = io.stderr = io.IOStream(self.readline._outputfile)
569 else:
569 else:
570 io.stdout = io.IOStream(sys.stdout)
570 io.stdout = io.IOStream(sys.stdout)
571 io.stderr = io.IOStream(sys.stderr)
571 io.stderr = io.IOStream(sys.stderr)
572
572
573 def init_prompts(self):
573 def init_prompts(self):
574 # TODO: This is a pass for now because the prompts are managed inside
574 # TODO: This is a pass for now because the prompts are managed inside
575 # the DisplayHook. Once there is a separate prompt manager, this
575 # the DisplayHook. Once there is a separate prompt manager, this
576 # will initialize that object and all prompt related information.
576 # will initialize that object and all prompt related information.
577 pass
577 pass
578
578
579 def init_display_formatter(self):
579 def init_display_formatter(self):
580 self.display_formatter = DisplayFormatter(config=self.config)
580 self.display_formatter = DisplayFormatter(config=self.config)
581
581
582 def init_display_pub(self):
582 def init_display_pub(self):
583 self.display_pub = self.display_pub_class(config=self.config)
583 self.display_pub = self.display_pub_class(config=self.config)
584
584
585 def init_displayhook(self):
585 def init_displayhook(self):
586 # Initialize displayhook, set in/out prompts and printing system
586 # Initialize displayhook, set in/out prompts and printing system
587 self.displayhook = self.displayhook_class(
587 self.displayhook = self.displayhook_class(
588 config=self.config,
588 config=self.config,
589 shell=self,
589 shell=self,
590 cache_size=self.cache_size,
590 cache_size=self.cache_size,
591 input_sep = self.separate_in,
591 input_sep = self.separate_in,
592 output_sep = self.separate_out,
592 output_sep = self.separate_out,
593 output_sep2 = self.separate_out2,
593 output_sep2 = self.separate_out2,
594 ps1 = self.prompt_in1,
594 ps1 = self.prompt_in1,
595 ps2 = self.prompt_in2,
595 ps2 = self.prompt_in2,
596 ps_out = self.prompt_out,
596 ps_out = self.prompt_out,
597 pad_left = self.prompts_pad_left
597 pad_left = self.prompts_pad_left
598 )
598 )
599 # This is a context manager that installs/revmoes the displayhook at
599 # This is a context manager that installs/revmoes the displayhook at
600 # the appropriate time.
600 # the appropriate time.
601 self.display_trap = DisplayTrap(hook=self.displayhook)
601 self.display_trap = DisplayTrap(hook=self.displayhook)
602
602
603 def init_reload_doctest(self):
603 def init_reload_doctest(self):
604 # Do a proper resetting of doctest, including the necessary displayhook
604 # Do a proper resetting of doctest, including the necessary displayhook
605 # monkeypatching
605 # monkeypatching
606 try:
606 try:
607 doctest_reload()
607 doctest_reload()
608 except ImportError:
608 except ImportError:
609 warn("doctest module does not exist.")
609 warn("doctest module does not exist.")
610
610
611 #-------------------------------------------------------------------------
611 #-------------------------------------------------------------------------
612 # Things related to injections into the sys module
612 # Things related to injections into the sys module
613 #-------------------------------------------------------------------------
613 #-------------------------------------------------------------------------
614
614
615 def save_sys_module_state(self):
615 def save_sys_module_state(self):
616 """Save the state of hooks in the sys module.
616 """Save the state of hooks in the sys module.
617
617
618 This has to be called after self.user_ns is created.
618 This has to be called after self.user_ns is created.
619 """
619 """
620 self._orig_sys_module_state = {}
620 self._orig_sys_module_state = {}
621 self._orig_sys_module_state['stdin'] = sys.stdin
621 self._orig_sys_module_state['stdin'] = sys.stdin
622 self._orig_sys_module_state['stdout'] = sys.stdout
622 self._orig_sys_module_state['stdout'] = sys.stdout
623 self._orig_sys_module_state['stderr'] = sys.stderr
623 self._orig_sys_module_state['stderr'] = sys.stderr
624 self._orig_sys_module_state['excepthook'] = sys.excepthook
624 self._orig_sys_module_state['excepthook'] = sys.excepthook
625 try:
625 try:
626 self._orig_sys_modules_main_name = self.user_ns['__name__']
626 self._orig_sys_modules_main_name = self.user_ns['__name__']
627 except KeyError:
627 except KeyError:
628 pass
628 pass
629
629
630 def restore_sys_module_state(self):
630 def restore_sys_module_state(self):
631 """Restore the state of the sys module."""
631 """Restore the state of the sys module."""
632 try:
632 try:
633 for k, v in self._orig_sys_module_state.iteritems():
633 for k, v in self._orig_sys_module_state.iteritems():
634 setattr(sys, k, v)
634 setattr(sys, k, v)
635 except AttributeError:
635 except AttributeError:
636 pass
636 pass
637 # Reset what what done in self.init_sys_modules
637 # Reset what what done in self.init_sys_modules
638 try:
638 try:
639 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
639 sys.modules[self.user_ns['__name__']] = self._orig_sys_modules_main_name
640 except (AttributeError, KeyError):
640 except (AttributeError, KeyError):
641 pass
641 pass
642
642
643 #-------------------------------------------------------------------------
643 #-------------------------------------------------------------------------
644 # Things related to hooks
644 # Things related to hooks
645 #-------------------------------------------------------------------------
645 #-------------------------------------------------------------------------
646
646
647 def init_hooks(self):
647 def init_hooks(self):
648 # hooks holds pointers used for user-side customizations
648 # hooks holds pointers used for user-side customizations
649 self.hooks = Struct()
649 self.hooks = Struct()
650
650
651 self.strdispatchers = {}
651 self.strdispatchers = {}
652
652
653 # Set all default hooks, defined in the IPython.hooks module.
653 # Set all default hooks, defined in the IPython.hooks module.
654 hooks = IPython.core.hooks
654 hooks = IPython.core.hooks
655 for hook_name in hooks.__all__:
655 for hook_name in hooks.__all__:
656 # default hooks have priority 100, i.e. low; user hooks should have
656 # default hooks have priority 100, i.e. low; user hooks should have
657 # 0-100 priority
657 # 0-100 priority
658 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
658 self.set_hook(hook_name,getattr(hooks,hook_name), 100)
659
659
660 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
660 def set_hook(self,name,hook, priority = 50, str_key = None, re_key = None):
661 """set_hook(name,hook) -> sets an internal IPython hook.
661 """set_hook(name,hook) -> sets an internal IPython hook.
662
662
663 IPython exposes some of its internal API as user-modifiable hooks. By
663 IPython exposes some of its internal API as user-modifiable hooks. By
664 adding your function to one of these hooks, you can modify IPython's
664 adding your function to one of these hooks, you can modify IPython's
665 behavior to call at runtime your own routines."""
665 behavior to call at runtime your own routines."""
666
666
667 # At some point in the future, this should validate the hook before it
667 # At some point in the future, this should validate the hook before it
668 # accepts it. Probably at least check that the hook takes the number
668 # accepts it. Probably at least check that the hook takes the number
669 # of args it's supposed to.
669 # of args it's supposed to.
670
670
671 f = types.MethodType(hook,self)
671 f = types.MethodType(hook,self)
672
672
673 # check if the hook is for strdispatcher first
673 # check if the hook is for strdispatcher first
674 if str_key is not None:
674 if str_key is not None:
675 sdp = self.strdispatchers.get(name, StrDispatch())
675 sdp = self.strdispatchers.get(name, StrDispatch())
676 sdp.add_s(str_key, f, priority )
676 sdp.add_s(str_key, f, priority )
677 self.strdispatchers[name] = sdp
677 self.strdispatchers[name] = sdp
678 return
678 return
679 if re_key is not None:
679 if re_key is not None:
680 sdp = self.strdispatchers.get(name, StrDispatch())
680 sdp = self.strdispatchers.get(name, StrDispatch())
681 sdp.add_re(re.compile(re_key), f, priority )
681 sdp.add_re(re.compile(re_key), f, priority )
682 self.strdispatchers[name] = sdp
682 self.strdispatchers[name] = sdp
683 return
683 return
684
684
685 dp = getattr(self.hooks, name, None)
685 dp = getattr(self.hooks, name, None)
686 if name not in IPython.core.hooks.__all__:
686 if name not in IPython.core.hooks.__all__:
687 print "Warning! Hook '%s' is not one of %s" % \
687 print "Warning! Hook '%s' is not one of %s" % \
688 (name, IPython.core.hooks.__all__ )
688 (name, IPython.core.hooks.__all__ )
689 if not dp:
689 if not dp:
690 dp = IPython.core.hooks.CommandChainDispatcher()
690 dp = IPython.core.hooks.CommandChainDispatcher()
691
691
692 try:
692 try:
693 dp.add(f,priority)
693 dp.add(f,priority)
694 except AttributeError:
694 except AttributeError:
695 # it was not commandchain, plain old func - replace
695 # it was not commandchain, plain old func - replace
696 dp = f
696 dp = f
697
697
698 setattr(self.hooks,name, dp)
698 setattr(self.hooks,name, dp)
699
699
700 def register_post_execute(self, func):
700 def register_post_execute(self, func):
701 """Register a function for calling after code execution.
701 """Register a function for calling after code execution.
702 """
702 """
703 if not callable(func):
703 if not callable(func):
704 raise ValueError('argument %s must be callable' % func)
704 raise ValueError('argument %s must be callable' % func)
705 self._post_execute[func] = True
705 self._post_execute[func] = True
706
706
707 #-------------------------------------------------------------------------
707 #-------------------------------------------------------------------------
708 # Things related to the "main" module
708 # Things related to the "main" module
709 #-------------------------------------------------------------------------
709 #-------------------------------------------------------------------------
710
710
711 def new_main_mod(self,ns=None):
711 def new_main_mod(self,ns=None):
712 """Return a new 'main' module object for user code execution.
712 """Return a new 'main' module object for user code execution.
713 """
713 """
714 main_mod = self._user_main_module
714 main_mod = self._user_main_module
715 init_fakemod_dict(main_mod,ns)
715 init_fakemod_dict(main_mod,ns)
716 return main_mod
716 return main_mod
717
717
718 def cache_main_mod(self,ns,fname):
718 def cache_main_mod(self,ns,fname):
719 """Cache a main module's namespace.
719 """Cache a main module's namespace.
720
720
721 When scripts are executed via %run, we must keep a reference to the
721 When scripts are executed via %run, we must keep a reference to the
722 namespace of their __main__ module (a FakeModule instance) around so
722 namespace of their __main__ module (a FakeModule instance) around so
723 that Python doesn't clear it, rendering objects defined therein
723 that Python doesn't clear it, rendering objects defined therein
724 useless.
724 useless.
725
725
726 This method keeps said reference in a private dict, keyed by the
726 This method keeps said reference in a private dict, keyed by the
727 absolute path of the module object (which corresponds to the script
727 absolute path of the module object (which corresponds to the script
728 path). This way, for multiple executions of the same script we only
728 path). This way, for multiple executions of the same script we only
729 keep one copy of the namespace (the last one), thus preventing memory
729 keep one copy of the namespace (the last one), thus preventing memory
730 leaks from old references while allowing the objects from the last
730 leaks from old references while allowing the objects from the last
731 execution to be accessible.
731 execution to be accessible.
732
732
733 Note: we can not allow the actual FakeModule instances to be deleted,
733 Note: we can not allow the actual FakeModule instances to be deleted,
734 because of how Python tears down modules (it hard-sets all their
734 because of how Python tears down modules (it hard-sets all their
735 references to None without regard for reference counts). This method
735 references to None without regard for reference counts). This method
736 must therefore make a *copy* of the given namespace, to allow the
736 must therefore make a *copy* of the given namespace, to allow the
737 original module's __dict__ to be cleared and reused.
737 original module's __dict__ to be cleared and reused.
738
738
739
739
740 Parameters
740 Parameters
741 ----------
741 ----------
742 ns : a namespace (a dict, typically)
742 ns : a namespace (a dict, typically)
743
743
744 fname : str
744 fname : str
745 Filename associated with the namespace.
745 Filename associated with the namespace.
746
746
747 Examples
747 Examples
748 --------
748 --------
749
749
750 In [10]: import IPython
750 In [10]: import IPython
751
751
752 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
752 In [11]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
753
753
754 In [12]: IPython.__file__ in _ip._main_ns_cache
754 In [12]: IPython.__file__ in _ip._main_ns_cache
755 Out[12]: True
755 Out[12]: True
756 """
756 """
757 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
757 self._main_ns_cache[os.path.abspath(fname)] = ns.copy()
758
758
759 def clear_main_mod_cache(self):
759 def clear_main_mod_cache(self):
760 """Clear the cache of main modules.
760 """Clear the cache of main modules.
761
761
762 Mainly for use by utilities like %reset.
762 Mainly for use by utilities like %reset.
763
763
764 Examples
764 Examples
765 --------
765 --------
766
766
767 In [15]: import IPython
767 In [15]: import IPython
768
768
769 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
769 In [16]: _ip.cache_main_mod(IPython.__dict__,IPython.__file__)
770
770
771 In [17]: len(_ip._main_ns_cache) > 0
771 In [17]: len(_ip._main_ns_cache) > 0
772 Out[17]: True
772 Out[17]: True
773
773
774 In [18]: _ip.clear_main_mod_cache()
774 In [18]: _ip.clear_main_mod_cache()
775
775
776 In [19]: len(_ip._main_ns_cache) == 0
776 In [19]: len(_ip._main_ns_cache) == 0
777 Out[19]: True
777 Out[19]: True
778 """
778 """
779 self._main_ns_cache.clear()
779 self._main_ns_cache.clear()
780
780
781 #-------------------------------------------------------------------------
781 #-------------------------------------------------------------------------
782 # Things related to debugging
782 # Things related to debugging
783 #-------------------------------------------------------------------------
783 #-------------------------------------------------------------------------
784
784
785 def init_pdb(self):
785 def init_pdb(self):
786 # Set calling of pdb on exceptions
786 # Set calling of pdb on exceptions
787 # self.call_pdb is a property
787 # self.call_pdb is a property
788 self.call_pdb = self.pdb
788 self.call_pdb = self.pdb
789
789
790 def _get_call_pdb(self):
790 def _get_call_pdb(self):
791 return self._call_pdb
791 return self._call_pdb
792
792
793 def _set_call_pdb(self,val):
793 def _set_call_pdb(self,val):
794
794
795 if val not in (0,1,False,True):
795 if val not in (0,1,False,True):
796 raise ValueError,'new call_pdb value must be boolean'
796 raise ValueError,'new call_pdb value must be boolean'
797
797
798 # store value in instance
798 # store value in instance
799 self._call_pdb = val
799 self._call_pdb = val
800
800
801 # notify the actual exception handlers
801 # notify the actual exception handlers
802 self.InteractiveTB.call_pdb = val
802 self.InteractiveTB.call_pdb = val
803
803
804 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
804 call_pdb = property(_get_call_pdb,_set_call_pdb,None,
805 'Control auto-activation of pdb at exceptions')
805 'Control auto-activation of pdb at exceptions')
806
806
807 def debugger(self,force=False):
807 def debugger(self,force=False):
808 """Call the pydb/pdb debugger.
808 """Call the pydb/pdb debugger.
809
809
810 Keywords:
810 Keywords:
811
811
812 - force(False): by default, this routine checks the instance call_pdb
812 - force(False): by default, this routine checks the instance call_pdb
813 flag and does not actually invoke the debugger if the flag is false.
813 flag and does not actually invoke the debugger if the flag is false.
814 The 'force' option forces the debugger to activate even if the flag
814 The 'force' option forces the debugger to activate even if the flag
815 is false.
815 is false.
816 """
816 """
817
817
818 if not (force or self.call_pdb):
818 if not (force or self.call_pdb):
819 return
819 return
820
820
821 if not hasattr(sys,'last_traceback'):
821 if not hasattr(sys,'last_traceback'):
822 error('No traceback has been produced, nothing to debug.')
822 error('No traceback has been produced, nothing to debug.')
823 return
823 return
824
824
825 # use pydb if available
825 # use pydb if available
826 if debugger.has_pydb:
826 if debugger.has_pydb:
827 from pydb import pm
827 from pydb import pm
828 else:
828 else:
829 # fallback to our internal debugger
829 # fallback to our internal debugger
830 pm = lambda : self.InteractiveTB.debugger(force=True)
830 pm = lambda : self.InteractiveTB.debugger(force=True)
831
831
832 with self.readline_no_record:
832 with self.readline_no_record:
833 pm()
833 pm()
834
834
835 #-------------------------------------------------------------------------
835 #-------------------------------------------------------------------------
836 # Things related to IPython's various namespaces
836 # Things related to IPython's various namespaces
837 #-------------------------------------------------------------------------
837 #-------------------------------------------------------------------------
838
838
839 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
839 def init_create_namespaces(self, user_ns=None, user_global_ns=None):
840 # Create the namespace where the user will operate. user_ns is
840 # Create the namespace where the user will operate. user_ns is
841 # normally the only one used, and it is passed to the exec calls as
841 # normally the only one used, and it is passed to the exec calls as
842 # the locals argument. But we do carry a user_global_ns namespace
842 # the locals argument. But we do carry a user_global_ns namespace
843 # given as the exec 'globals' argument, This is useful in embedding
843 # given as the exec 'globals' argument, This is useful in embedding
844 # situations where the ipython shell opens in a context where the
844 # situations where the ipython shell opens in a context where the
845 # distinction between locals and globals is meaningful. For
845 # distinction between locals and globals is meaningful. For
846 # non-embedded contexts, it is just the same object as the user_ns dict.
846 # non-embedded contexts, it is just the same object as the user_ns dict.
847
847
848 # FIXME. For some strange reason, __builtins__ is showing up at user
848 # FIXME. For some strange reason, __builtins__ is showing up at user
849 # level as a dict instead of a module. This is a manual fix, but I
849 # level as a dict instead of a module. This is a manual fix, but I
850 # should really track down where the problem is coming from. Alex
850 # should really track down where the problem is coming from. Alex
851 # Schmolck reported this problem first.
851 # Schmolck reported this problem first.
852
852
853 # A useful post by Alex Martelli on this topic:
853 # A useful post by Alex Martelli on this topic:
854 # Re: inconsistent value from __builtins__
854 # Re: inconsistent value from __builtins__
855 # Von: Alex Martelli <aleaxit@yahoo.com>
855 # Von: Alex Martelli <aleaxit@yahoo.com>
856 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
856 # Datum: Freitag 01 Oktober 2004 04:45:34 nachmittags/abends
857 # Gruppen: comp.lang.python
857 # Gruppen: comp.lang.python
858
858
859 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
859 # Michael Hohn <hohn@hooknose.lbl.gov> wrote:
860 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
860 # > >>> print type(builtin_check.get_global_binding('__builtins__'))
861 # > <type 'dict'>
861 # > <type 'dict'>
862 # > >>> print type(__builtins__)
862 # > >>> print type(__builtins__)
863 # > <type 'module'>
863 # > <type 'module'>
864 # > Is this difference in return value intentional?
864 # > Is this difference in return value intentional?
865
865
866 # Well, it's documented that '__builtins__' can be either a dictionary
866 # Well, it's documented that '__builtins__' can be either a dictionary
867 # or a module, and it's been that way for a long time. Whether it's
867 # or a module, and it's been that way for a long time. Whether it's
868 # intentional (or sensible), I don't know. In any case, the idea is
868 # intentional (or sensible), I don't know. In any case, the idea is
869 # that if you need to access the built-in namespace directly, you
869 # that if you need to access the built-in namespace directly, you
870 # should start with "import __builtin__" (note, no 's') which will
870 # should start with "import __builtin__" (note, no 's') which will
871 # definitely give you a module. Yeah, it's somewhat confusing:-(.
871 # definitely give you a module. Yeah, it's somewhat confusing:-(.
872
872
873 # These routines return properly built dicts as needed by the rest of
873 # These routines return properly built dicts as needed by the rest of
874 # the code, and can also be used by extension writers to generate
874 # the code, and can also be used by extension writers to generate
875 # properly initialized namespaces.
875 # properly initialized namespaces.
876 user_ns, user_global_ns = self.make_user_namespaces(user_ns,
876 user_ns, user_global_ns = self.make_user_namespaces(user_ns,
877 user_global_ns)
877 user_global_ns)
878
878
879 # Assign namespaces
879 # Assign namespaces
880 # This is the namespace where all normal user variables live
880 # This is the namespace where all normal user variables live
881 self.user_ns = user_ns
881 self.user_ns = user_ns
882 self.user_global_ns = user_global_ns
882 self.user_global_ns = user_global_ns
883
883
884 # An auxiliary namespace that checks what parts of the user_ns were
884 # An auxiliary namespace that checks what parts of the user_ns were
885 # loaded at startup, so we can list later only variables defined in
885 # loaded at startup, so we can list later only variables defined in
886 # actual interactive use. Since it is always a subset of user_ns, it
886 # actual interactive use. Since it is always a subset of user_ns, it
887 # doesn't need to be separately tracked in the ns_table.
887 # doesn't need to be separately tracked in the ns_table.
888 self.user_ns_hidden = {}
888 self.user_ns_hidden = {}
889
889
890 # A namespace to keep track of internal data structures to prevent
890 # A namespace to keep track of internal data structures to prevent
891 # them from cluttering user-visible stuff. Will be updated later
891 # them from cluttering user-visible stuff. Will be updated later
892 self.internal_ns = {}
892 self.internal_ns = {}
893
893
894 # Now that FakeModule produces a real module, we've run into a nasty
894 # Now that FakeModule produces a real module, we've run into a nasty
895 # problem: after script execution (via %run), the module where the user
895 # problem: after script execution (via %run), the module where the user
896 # code ran is deleted. Now that this object is a true module (needed
896 # code ran is deleted. Now that this object is a true module (needed
897 # so docetst and other tools work correctly), the Python module
897 # so docetst and other tools work correctly), the Python module
898 # teardown mechanism runs over it, and sets to None every variable
898 # teardown mechanism runs over it, and sets to None every variable
899 # present in that module. Top-level references to objects from the
899 # present in that module. Top-level references to objects from the
900 # script survive, because the user_ns is updated with them. However,
900 # script survive, because the user_ns is updated with them. However,
901 # calling functions defined in the script that use other things from
901 # calling functions defined in the script that use other things from
902 # the script will fail, because the function's closure had references
902 # the script will fail, because the function's closure had references
903 # to the original objects, which are now all None. So we must protect
903 # to the original objects, which are now all None. So we must protect
904 # these modules from deletion by keeping a cache.
904 # these modules from deletion by keeping a cache.
905 #
905 #
906 # To avoid keeping stale modules around (we only need the one from the
906 # To avoid keeping stale modules around (we only need the one from the
907 # last run), we use a dict keyed with the full path to the script, so
907 # last run), we use a dict keyed with the full path to the script, so
908 # only the last version of the module is held in the cache. Note,
908 # only the last version of the module is held in the cache. Note,
909 # however, that we must cache the module *namespace contents* (their
909 # however, that we must cache the module *namespace contents* (their
910 # __dict__). Because if we try to cache the actual modules, old ones
910 # __dict__). Because if we try to cache the actual modules, old ones
911 # (uncached) could be destroyed while still holding references (such as
911 # (uncached) could be destroyed while still holding references (such as
912 # those held by GUI objects that tend to be long-lived)>
912 # those held by GUI objects that tend to be long-lived)>
913 #
913 #
914 # The %reset command will flush this cache. See the cache_main_mod()
914 # The %reset command will flush this cache. See the cache_main_mod()
915 # and clear_main_mod_cache() methods for details on use.
915 # and clear_main_mod_cache() methods for details on use.
916
916
917 # This is the cache used for 'main' namespaces
917 # This is the cache used for 'main' namespaces
918 self._main_ns_cache = {}
918 self._main_ns_cache = {}
919 # And this is the single instance of FakeModule whose __dict__ we keep
919 # And this is the single instance of FakeModule whose __dict__ we keep
920 # copying and clearing for reuse on each %run
920 # copying and clearing for reuse on each %run
921 self._user_main_module = FakeModule()
921 self._user_main_module = FakeModule()
922
922
923 # A table holding all the namespaces IPython deals with, so that
923 # A table holding all the namespaces IPython deals with, so that
924 # introspection facilities can search easily.
924 # introspection facilities can search easily.
925 self.ns_table = {'user':user_ns,
925 self.ns_table = {'user':user_ns,
926 'user_global':user_global_ns,
926 'user_global':user_global_ns,
927 'internal':self.internal_ns,
927 'internal':self.internal_ns,
928 'builtin':__builtin__.__dict__
928 'builtin':__builtin__.__dict__
929 }
929 }
930
930
931 # Similarly, track all namespaces where references can be held and that
931 # Similarly, track all namespaces where references can be held and that
932 # we can safely clear (so it can NOT include builtin). This one can be
932 # we can safely clear (so it can NOT include builtin). This one can be
933 # a simple list. Note that the main execution namespaces, user_ns and
933 # a simple list. Note that the main execution namespaces, user_ns and
934 # user_global_ns, can NOT be listed here, as clearing them blindly
934 # user_global_ns, can NOT be listed here, as clearing them blindly
935 # causes errors in object __del__ methods. Instead, the reset() method
935 # causes errors in object __del__ methods. Instead, the reset() method
936 # clears them manually and carefully.
936 # clears them manually and carefully.
937 self.ns_refs_table = [ self.user_ns_hidden,
937 self.ns_refs_table = [ self.user_ns_hidden,
938 self.internal_ns, self._main_ns_cache ]
938 self.internal_ns, self._main_ns_cache ]
939
939
940 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
940 def make_user_namespaces(self, user_ns=None, user_global_ns=None):
941 """Return a valid local and global user interactive namespaces.
941 """Return a valid local and global user interactive namespaces.
942
942
943 This builds a dict with the minimal information needed to operate as a
943 This builds a dict with the minimal information needed to operate as a
944 valid IPython user namespace, which you can pass to the various
944 valid IPython user namespace, which you can pass to the various
945 embedding classes in ipython. The default implementation returns the
945 embedding classes in ipython. The default implementation returns the
946 same dict for both the locals and the globals to allow functions to
946 same dict for both the locals and the globals to allow functions to
947 refer to variables in the namespace. Customized implementations can
947 refer to variables in the namespace. Customized implementations can
948 return different dicts. The locals dictionary can actually be anything
948 return different dicts. The locals dictionary can actually be anything
949 following the basic mapping protocol of a dict, but the globals dict
949 following the basic mapping protocol of a dict, but the globals dict
950 must be a true dict, not even a subclass. It is recommended that any
950 must be a true dict, not even a subclass. It is recommended that any
951 custom object for the locals namespace synchronize with the globals
951 custom object for the locals namespace synchronize with the globals
952 dict somehow.
952 dict somehow.
953
953
954 Raises TypeError if the provided globals namespace is not a true dict.
954 Raises TypeError if the provided globals namespace is not a true dict.
955
955
956 Parameters
956 Parameters
957 ----------
957 ----------
958 user_ns : dict-like, optional
958 user_ns : dict-like, optional
959 The current user namespace. The items in this namespace should
959 The current user namespace. The items in this namespace should
960 be included in the output. If None, an appropriate blank
960 be included in the output. If None, an appropriate blank
961 namespace should be created.
961 namespace should be created.
962 user_global_ns : dict, optional
962 user_global_ns : dict, optional
963 The current user global namespace. The items in this namespace
963 The current user global namespace. The items in this namespace
964 should be included in the output. If None, an appropriate
964 should be included in the output. If None, an appropriate
965 blank namespace should be created.
965 blank namespace should be created.
966
966
967 Returns
967 Returns
968 -------
968 -------
969 A pair of dictionary-like object to be used as the local namespace
969 A pair of dictionary-like object to be used as the local namespace
970 of the interpreter and a dict to be used as the global namespace.
970 of the interpreter and a dict to be used as the global namespace.
971 """
971 """
972
972
973
973
974 # We must ensure that __builtin__ (without the final 's') is always
974 # We must ensure that __builtin__ (without the final 's') is always
975 # available and pointing to the __builtin__ *module*. For more details:
975 # available and pointing to the __builtin__ *module*. For more details:
976 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
976 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
977
977
978 if user_ns is None:
978 if user_ns is None:
979 # Set __name__ to __main__ to better match the behavior of the
979 # Set __name__ to __main__ to better match the behavior of the
980 # normal interpreter.
980 # normal interpreter.
981 user_ns = {'__name__' :'__main__',
981 user_ns = {'__name__' :'__main__',
982 '__builtin__' : __builtin__,
982 '__builtin__' : __builtin__,
983 '__builtins__' : __builtin__,
983 '__builtins__' : __builtin__,
984 }
984 }
985 else:
985 else:
986 user_ns.setdefault('__name__','__main__')
986 user_ns.setdefault('__name__','__main__')
987 user_ns.setdefault('__builtin__',__builtin__)
987 user_ns.setdefault('__builtin__',__builtin__)
988 user_ns.setdefault('__builtins__',__builtin__)
988 user_ns.setdefault('__builtins__',__builtin__)
989
989
990 if user_global_ns is None:
990 if user_global_ns is None:
991 user_global_ns = user_ns
991 user_global_ns = user_ns
992 if type(user_global_ns) is not dict:
992 if type(user_global_ns) is not dict:
993 raise TypeError("user_global_ns must be a true dict; got %r"
993 raise TypeError("user_global_ns must be a true dict; got %r"
994 % type(user_global_ns))
994 % type(user_global_ns))
995
995
996 return user_ns, user_global_ns
996 return user_ns, user_global_ns
997
997
998 def init_sys_modules(self):
998 def init_sys_modules(self):
999 # We need to insert into sys.modules something that looks like a
999 # We need to insert into sys.modules something that looks like a
1000 # module but which accesses the IPython namespace, for shelve and
1000 # module but which accesses the IPython namespace, for shelve and
1001 # pickle to work interactively. Normally they rely on getting
1001 # pickle to work interactively. Normally they rely on getting
1002 # everything out of __main__, but for embedding purposes each IPython
1002 # everything out of __main__, but for embedding purposes each IPython
1003 # instance has its own private namespace, so we can't go shoving
1003 # instance has its own private namespace, so we can't go shoving
1004 # everything into __main__.
1004 # everything into __main__.
1005
1005
1006 # note, however, that we should only do this for non-embedded
1006 # note, however, that we should only do this for non-embedded
1007 # ipythons, which really mimic the __main__.__dict__ with their own
1007 # ipythons, which really mimic the __main__.__dict__ with their own
1008 # namespace. Embedded instances, on the other hand, should not do
1008 # namespace. Embedded instances, on the other hand, should not do
1009 # this because they need to manage the user local/global namespaces
1009 # this because they need to manage the user local/global namespaces
1010 # only, but they live within a 'normal' __main__ (meaning, they
1010 # only, but they live within a 'normal' __main__ (meaning, they
1011 # shouldn't overtake the execution environment of the script they're
1011 # shouldn't overtake the execution environment of the script they're
1012 # embedded in).
1012 # embedded in).
1013
1013
1014 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
1014 # This is overridden in the InteractiveShellEmbed subclass to a no-op.
1015
1015
1016 try:
1016 try:
1017 main_name = self.user_ns['__name__']
1017 main_name = self.user_ns['__name__']
1018 except KeyError:
1018 except KeyError:
1019 raise KeyError('user_ns dictionary MUST have a "__name__" key')
1019 raise KeyError('user_ns dictionary MUST have a "__name__" key')
1020 else:
1020 else:
1021 sys.modules[main_name] = FakeModule(self.user_ns)
1021 sys.modules[main_name] = FakeModule(self.user_ns)
1022
1022
1023 def init_user_ns(self):
1023 def init_user_ns(self):
1024 """Initialize all user-visible namespaces to their minimum defaults.
1024 """Initialize all user-visible namespaces to their minimum defaults.
1025
1025
1026 Certain history lists are also initialized here, as they effectively
1026 Certain history lists are also initialized here, as they effectively
1027 act as user namespaces.
1027 act as user namespaces.
1028
1028
1029 Notes
1029 Notes
1030 -----
1030 -----
1031 All data structures here are only filled in, they are NOT reset by this
1031 All data structures here are only filled in, they are NOT reset by this
1032 method. If they were not empty before, data will simply be added to
1032 method. If they were not empty before, data will simply be added to
1033 therm.
1033 therm.
1034 """
1034 """
1035 # This function works in two parts: first we put a few things in
1035 # This function works in two parts: first we put a few things in
1036 # user_ns, and we sync that contents into user_ns_hidden so that these
1036 # user_ns, and we sync that contents into user_ns_hidden so that these
1037 # initial variables aren't shown by %who. After the sync, we add the
1037 # initial variables aren't shown by %who. After the sync, we add the
1038 # rest of what we *do* want the user to see with %who even on a new
1038 # rest of what we *do* want the user to see with %who even on a new
1039 # session (probably nothing, so theye really only see their own stuff)
1039 # session (probably nothing, so theye really only see their own stuff)
1040
1040
1041 # The user dict must *always* have a __builtin__ reference to the
1041 # The user dict must *always* have a __builtin__ reference to the
1042 # Python standard __builtin__ namespace, which must be imported.
1042 # Python standard __builtin__ namespace, which must be imported.
1043 # This is so that certain operations in prompt evaluation can be
1043 # This is so that certain operations in prompt evaluation can be
1044 # reliably executed with builtins. Note that we can NOT use
1044 # reliably executed with builtins. Note that we can NOT use
1045 # __builtins__ (note the 's'), because that can either be a dict or a
1045 # __builtins__ (note the 's'), because that can either be a dict or a
1046 # module, and can even mutate at runtime, depending on the context
1046 # module, and can even mutate at runtime, depending on the context
1047 # (Python makes no guarantees on it). In contrast, __builtin__ is
1047 # (Python makes no guarantees on it). In contrast, __builtin__ is
1048 # always a module object, though it must be explicitly imported.
1048 # always a module object, though it must be explicitly imported.
1049
1049
1050 # For more details:
1050 # For more details:
1051 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
1051 # http://mail.python.org/pipermail/python-dev/2001-April/014068.html
1052 ns = dict(__builtin__ = __builtin__)
1052 ns = dict(__builtin__ = __builtin__)
1053
1053
1054 # Put 'help' in the user namespace
1054 # Put 'help' in the user namespace
1055 try:
1055 try:
1056 from site import _Helper
1056 from site import _Helper
1057 ns['help'] = _Helper()
1057 ns['help'] = _Helper()
1058 except ImportError:
1058 except ImportError:
1059 warn('help() not available - check site.py')
1059 warn('help() not available - check site.py')
1060
1060
1061 # make global variables for user access to the histories
1061 # make global variables for user access to the histories
1062 ns['_ih'] = self.history_manager.input_hist_parsed
1062 ns['_ih'] = self.history_manager.input_hist_parsed
1063 ns['_oh'] = self.history_manager.output_hist
1063 ns['_oh'] = self.history_manager.output_hist
1064 ns['_dh'] = self.history_manager.dir_hist
1064 ns['_dh'] = self.history_manager.dir_hist
1065
1065
1066 ns['_sh'] = shadowns
1066 ns['_sh'] = shadowns
1067
1067
1068 # user aliases to input and output histories. These shouldn't show up
1068 # user aliases to input and output histories. These shouldn't show up
1069 # in %who, as they can have very large reprs.
1069 # in %who, as they can have very large reprs.
1070 ns['In'] = self.history_manager.input_hist_parsed
1070 ns['In'] = self.history_manager.input_hist_parsed
1071 ns['Out'] = self.history_manager.output_hist
1071 ns['Out'] = self.history_manager.output_hist
1072
1072
1073 # Store myself as the public api!!!
1073 # Store myself as the public api!!!
1074 ns['get_ipython'] = self.get_ipython
1074 ns['get_ipython'] = self.get_ipython
1075
1075
1076 ns['exit'] = self.exiter
1076 ns['exit'] = self.exiter
1077 ns['quit'] = self.exiter
1077 ns['quit'] = self.exiter
1078
1078
1079 # Sync what we've added so far to user_ns_hidden so these aren't seen
1079 # Sync what we've added so far to user_ns_hidden so these aren't seen
1080 # by %who
1080 # by %who
1081 self.user_ns_hidden.update(ns)
1081 self.user_ns_hidden.update(ns)
1082
1082
1083 # Anything put into ns now would show up in %who. Think twice before
1083 # Anything put into ns now would show up in %who. Think twice before
1084 # putting anything here, as we really want %who to show the user their
1084 # putting anything here, as we really want %who to show the user their
1085 # stuff, not our variables.
1085 # stuff, not our variables.
1086
1086
1087 # Finally, update the real user's namespace
1087 # Finally, update the real user's namespace
1088 self.user_ns.update(ns)
1088 self.user_ns.update(ns)
1089
1089
1090 def reset(self, new_session=True):
1090 def reset(self, new_session=True):
1091 """Clear all internal namespaces, and attempt to release references to
1091 """Clear all internal namespaces, and attempt to release references to
1092 user objects.
1092 user objects.
1093
1093
1094 If new_session is True, a new history session will be opened.
1094 If new_session is True, a new history session will be opened.
1095 """
1095 """
1096 # Clear histories
1096 # Clear histories
1097 self.history_manager.reset(new_session)
1097 self.history_manager.reset(new_session)
1098 # Reset counter used to index all histories
1098 # Reset counter used to index all histories
1099 if new_session:
1099 if new_session:
1100 self.execution_count = 1
1100 self.execution_count = 1
1101
1101
1102 # Flush cached output items
1102 # Flush cached output items
1103 if self.displayhook.do_full_cache:
1103 if self.displayhook.do_full_cache:
1104 self.displayhook.flush()
1104 self.displayhook.flush()
1105
1105
1106 # Restore the user namespaces to minimal usability
1106 # Restore the user namespaces to minimal usability
1107 for ns in self.ns_refs_table:
1107 for ns in self.ns_refs_table:
1108 ns.clear()
1108 ns.clear()
1109
1109
1110 # The main execution namespaces must be cleared very carefully,
1110 # The main execution namespaces must be cleared very carefully,
1111 # skipping the deletion of the builtin-related keys, because doing so
1111 # skipping the deletion of the builtin-related keys, because doing so
1112 # would cause errors in many object's __del__ methods.
1112 # would cause errors in many object's __del__ methods.
1113 for ns in [self.user_ns, self.user_global_ns]:
1113 for ns in [self.user_ns, self.user_global_ns]:
1114 drop_keys = set(ns.keys())
1114 drop_keys = set(ns.keys())
1115 drop_keys.discard('__builtin__')
1115 drop_keys.discard('__builtin__')
1116 drop_keys.discard('__builtins__')
1116 drop_keys.discard('__builtins__')
1117 for k in drop_keys:
1117 for k in drop_keys:
1118 del ns[k]
1118 del ns[k]
1119
1119
1120 # Restore the user namespaces to minimal usability
1120 # Restore the user namespaces to minimal usability
1121 self.init_user_ns()
1121 self.init_user_ns()
1122
1122
1123 # Restore the default and user aliases
1123 # Restore the default and user aliases
1124 self.alias_manager.clear_aliases()
1124 self.alias_manager.clear_aliases()
1125 self.alias_manager.init_aliases()
1125 self.alias_manager.init_aliases()
1126
1126
1127 # Flush the private list of module references kept for script
1127 # Flush the private list of module references kept for script
1128 # execution protection
1128 # execution protection
1129 self.clear_main_mod_cache()
1129 self.clear_main_mod_cache()
1130
1130
1131 # Clear out the namespace from the last %run
1131 # Clear out the namespace from the last %run
1132 self.new_main_mod()
1132 self.new_main_mod()
1133
1133
1134 def del_var(self, varname, by_name=False):
1134 def del_var(self, varname, by_name=False):
1135 """Delete a variable from the various namespaces, so that, as
1135 """Delete a variable from the various namespaces, so that, as
1136 far as possible, we're not keeping any hidden references to it.
1136 far as possible, we're not keeping any hidden references to it.
1137
1137
1138 Parameters
1138 Parameters
1139 ----------
1139 ----------
1140 varname : str
1140 varname : str
1141 The name of the variable to delete.
1141 The name of the variable to delete.
1142 by_name : bool
1142 by_name : bool
1143 If True, delete variables with the given name in each
1143 If True, delete variables with the given name in each
1144 namespace. If False (default), find the variable in the user
1144 namespace. If False (default), find the variable in the user
1145 namespace, and delete references to it.
1145 namespace, and delete references to it.
1146 """
1146 """
1147 if varname in ('__builtin__', '__builtins__'):
1147 if varname in ('__builtin__', '__builtins__'):
1148 raise ValueError("Refusing to delete %s" % varname)
1148 raise ValueError("Refusing to delete %s" % varname)
1149 ns_refs = self.ns_refs_table + [self.user_ns,
1149 ns_refs = self.ns_refs_table + [self.user_ns,
1150 self.user_global_ns, self._user_main_module.__dict__] +\
1150 self.user_global_ns, self._user_main_module.__dict__] +\
1151 self._main_ns_cache.values()
1151 self._main_ns_cache.values()
1152
1152
1153 if by_name: # Delete by name
1153 if by_name: # Delete by name
1154 for ns in ns_refs:
1154 for ns in ns_refs:
1155 try:
1155 try:
1156 del ns[varname]
1156 del ns[varname]
1157 except KeyError:
1157 except KeyError:
1158 pass
1158 pass
1159 else: # Delete by object
1159 else: # Delete by object
1160 try:
1160 try:
1161 obj = self.user_ns[varname]
1161 obj = self.user_ns[varname]
1162 except KeyError:
1162 except KeyError:
1163 raise NameError("name '%s' is not defined" % varname)
1163 raise NameError("name '%s' is not defined" % varname)
1164 # Also check in output history
1164 # Also check in output history
1165 ns_refs.append(self.history_manager.output_hist)
1165 ns_refs.append(self.history_manager.output_hist)
1166 for ns in ns_refs:
1166 for ns in ns_refs:
1167 to_delete = [n for n, o in ns.iteritems() if o is obj]
1167 to_delete = [n for n, o in ns.iteritems() if o is obj]
1168 for name in to_delete:
1168 for name in to_delete:
1169 del ns[name]
1169 del ns[name]
1170
1170
1171 # displayhook keeps extra references, but not in a dictionary
1171 # displayhook keeps extra references, but not in a dictionary
1172 for name in ('_', '__', '___'):
1172 for name in ('_', '__', '___'):
1173 if getattr(self.displayhook, name) is obj:
1173 if getattr(self.displayhook, name) is obj:
1174 setattr(self.displayhook, name, None)
1174 setattr(self.displayhook, name, None)
1175
1175
1176 def reset_selective(self, regex=None):
1176 def reset_selective(self, regex=None):
1177 """Clear selective variables from internal namespaces based on a
1177 """Clear selective variables from internal namespaces based on a
1178 specified regular expression.
1178 specified regular expression.
1179
1179
1180 Parameters
1180 Parameters
1181 ----------
1181 ----------
1182 regex : string or compiled pattern, optional
1182 regex : string or compiled pattern, optional
1183 A regular expression pattern that will be used in searching
1183 A regular expression pattern that will be used in searching
1184 variable names in the users namespaces.
1184 variable names in the users namespaces.
1185 """
1185 """
1186 if regex is not None:
1186 if regex is not None:
1187 try:
1187 try:
1188 m = re.compile(regex)
1188 m = re.compile(regex)
1189 except TypeError:
1189 except TypeError:
1190 raise TypeError('regex must be a string or compiled pattern')
1190 raise TypeError('regex must be a string or compiled pattern')
1191 # Search for keys in each namespace that match the given regex
1191 # Search for keys in each namespace that match the given regex
1192 # If a match is found, delete the key/value pair.
1192 # If a match is found, delete the key/value pair.
1193 for ns in self.ns_refs_table:
1193 for ns in self.ns_refs_table:
1194 for var in ns:
1194 for var in ns:
1195 if m.search(var):
1195 if m.search(var):
1196 del ns[var]
1196 del ns[var]
1197
1197
1198 def push(self, variables, interactive=True):
1198 def push(self, variables, interactive=True):
1199 """Inject a group of variables into the IPython user namespace.
1199 """Inject a group of variables into the IPython user namespace.
1200
1200
1201 Parameters
1201 Parameters
1202 ----------
1202 ----------
1203 variables : dict, str or list/tuple of str
1203 variables : dict, str or list/tuple of str
1204 The variables to inject into the user's namespace. If a dict, a
1204 The variables to inject into the user's namespace. If a dict, a
1205 simple update is done. If a str, the string is assumed to have
1205 simple update is done. If a str, the string is assumed to have
1206 variable names separated by spaces. A list/tuple of str can also
1206 variable names separated by spaces. A list/tuple of str can also
1207 be used to give the variable names. If just the variable names are
1207 be used to give the variable names. If just the variable names are
1208 give (list/tuple/str) then the variable values looked up in the
1208 give (list/tuple/str) then the variable values looked up in the
1209 callers frame.
1209 callers frame.
1210 interactive : bool
1210 interactive : bool
1211 If True (default), the variables will be listed with the ``who``
1211 If True (default), the variables will be listed with the ``who``
1212 magic.
1212 magic.
1213 """
1213 """
1214 vdict = None
1214 vdict = None
1215
1215
1216 # We need a dict of name/value pairs to do namespace updates.
1216 # We need a dict of name/value pairs to do namespace updates.
1217 if isinstance(variables, dict):
1217 if isinstance(variables, dict):
1218 vdict = variables
1218 vdict = variables
1219 elif isinstance(variables, (basestring, list, tuple)):
1219 elif isinstance(variables, (basestring, list, tuple)):
1220 if isinstance(variables, basestring):
1220 if isinstance(variables, basestring):
1221 vlist = variables.split()
1221 vlist = variables.split()
1222 else:
1222 else:
1223 vlist = variables
1223 vlist = variables
1224 vdict = {}
1224 vdict = {}
1225 cf = sys._getframe(1)
1225 cf = sys._getframe(1)
1226 for name in vlist:
1226 for name in vlist:
1227 try:
1227 try:
1228 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1228 vdict[name] = eval(name, cf.f_globals, cf.f_locals)
1229 except:
1229 except:
1230 print ('Could not get variable %s from %s' %
1230 print ('Could not get variable %s from %s' %
1231 (name,cf.f_code.co_name))
1231 (name,cf.f_code.co_name))
1232 else:
1232 else:
1233 raise ValueError('variables must be a dict/str/list/tuple')
1233 raise ValueError('variables must be a dict/str/list/tuple')
1234
1234
1235 # Propagate variables to user namespace
1235 # Propagate variables to user namespace
1236 self.user_ns.update(vdict)
1236 self.user_ns.update(vdict)
1237
1237
1238 # And configure interactive visibility
1238 # And configure interactive visibility
1239 config_ns = self.user_ns_hidden
1239 config_ns = self.user_ns_hidden
1240 if interactive:
1240 if interactive:
1241 for name, val in vdict.iteritems():
1241 for name, val in vdict.iteritems():
1242 config_ns.pop(name, None)
1242 config_ns.pop(name, None)
1243 else:
1243 else:
1244 for name,val in vdict.iteritems():
1244 for name,val in vdict.iteritems():
1245 config_ns[name] = val
1245 config_ns[name] = val
1246
1246
1247 #-------------------------------------------------------------------------
1247 #-------------------------------------------------------------------------
1248 # Things related to object introspection
1248 # Things related to object introspection
1249 #-------------------------------------------------------------------------
1249 #-------------------------------------------------------------------------
1250
1250
1251 def _ofind(self, oname, namespaces=None):
1251 def _ofind(self, oname, namespaces=None):
1252 """Find an object in the available namespaces.
1252 """Find an object in the available namespaces.
1253
1253
1254 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
1254 self._ofind(oname) -> dict with keys: found,obj,ospace,ismagic
1255
1255
1256 Has special code to detect magic functions.
1256 Has special code to detect magic functions.
1257 """
1257 """
1258 #oname = oname.strip()
1258 #oname = oname.strip()
1259 #print '1- oname: <%r>' % oname # dbg
1259 #print '1- oname: <%r>' % oname # dbg
1260 try:
1260 try:
1261 oname = oname.strip().encode('ascii')
1261 oname = oname.strip().encode('ascii')
1262 #print '2- oname: <%r>' % oname # dbg
1262 #print '2- oname: <%r>' % oname # dbg
1263 except UnicodeEncodeError:
1263 except UnicodeEncodeError:
1264 print 'Python identifiers can only contain ascii characters.'
1264 print 'Python identifiers can only contain ascii characters.'
1265 return dict(found=False)
1265 return dict(found=False)
1266
1266
1267 alias_ns = None
1267 alias_ns = None
1268 if namespaces is None:
1268 if namespaces is None:
1269 # Namespaces to search in:
1269 # Namespaces to search in:
1270 # Put them in a list. The order is important so that we
1270 # Put them in a list. The order is important so that we
1271 # find things in the same order that Python finds them.
1271 # find things in the same order that Python finds them.
1272 namespaces = [ ('Interactive', self.user_ns),
1272 namespaces = [ ('Interactive', self.user_ns),
1273 ('IPython internal', self.internal_ns),
1273 ('IPython internal', self.internal_ns),
1274 ('Python builtin', __builtin__.__dict__),
1274 ('Python builtin', __builtin__.__dict__),
1275 ('Alias', self.alias_manager.alias_table),
1275 ('Alias', self.alias_manager.alias_table),
1276 ]
1276 ]
1277 alias_ns = self.alias_manager.alias_table
1277 alias_ns = self.alias_manager.alias_table
1278
1278
1279 # initialize results to 'null'
1279 # initialize results to 'null'
1280 found = False; obj = None; ospace = None; ds = None;
1280 found = False; obj = None; ospace = None; ds = None;
1281 ismagic = False; isalias = False; parent = None
1281 ismagic = False; isalias = False; parent = None
1282
1282
1283 # We need to special-case 'print', which as of python2.6 registers as a
1283 # We need to special-case 'print', which as of python2.6 registers as a
1284 # function but should only be treated as one if print_function was
1284 # function but should only be treated as one if print_function was
1285 # loaded with a future import. In this case, just bail.
1285 # loaded with a future import. In this case, just bail.
1286 if (oname == 'print' and not (self.compile.compiler_flags &
1286 if (oname == 'print' and not (self.compile.compiler_flags &
1287 __future__.CO_FUTURE_PRINT_FUNCTION)):
1287 __future__.CO_FUTURE_PRINT_FUNCTION)):
1288 return {'found':found, 'obj':obj, 'namespace':ospace,
1288 return {'found':found, 'obj':obj, 'namespace':ospace,
1289 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1289 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1290
1290
1291 # Look for the given name by splitting it in parts. If the head is
1291 # Look for the given name by splitting it in parts. If the head is
1292 # found, then we look for all the remaining parts as members, and only
1292 # found, then we look for all the remaining parts as members, and only
1293 # declare success if we can find them all.
1293 # declare success if we can find them all.
1294 oname_parts = oname.split('.')
1294 oname_parts = oname.split('.')
1295 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
1295 oname_head, oname_rest = oname_parts[0],oname_parts[1:]
1296 for nsname,ns in namespaces:
1296 for nsname,ns in namespaces:
1297 try:
1297 try:
1298 obj = ns[oname_head]
1298 obj = ns[oname_head]
1299 except KeyError:
1299 except KeyError:
1300 continue
1300 continue
1301 else:
1301 else:
1302 #print 'oname_rest:', oname_rest # dbg
1302 #print 'oname_rest:', oname_rest # dbg
1303 for part in oname_rest:
1303 for part in oname_rest:
1304 try:
1304 try:
1305 parent = obj
1305 parent = obj
1306 obj = getattr(obj,part)
1306 obj = getattr(obj,part)
1307 except:
1307 except:
1308 # Blanket except b/c some badly implemented objects
1308 # Blanket except b/c some badly implemented objects
1309 # allow __getattr__ to raise exceptions other than
1309 # allow __getattr__ to raise exceptions other than
1310 # AttributeError, which then crashes IPython.
1310 # AttributeError, which then crashes IPython.
1311 break
1311 break
1312 else:
1312 else:
1313 # If we finish the for loop (no break), we got all members
1313 # If we finish the for loop (no break), we got all members
1314 found = True
1314 found = True
1315 ospace = nsname
1315 ospace = nsname
1316 if ns == alias_ns:
1316 if ns == alias_ns:
1317 isalias = True
1317 isalias = True
1318 break # namespace loop
1318 break # namespace loop
1319
1319
1320 # Try to see if it's magic
1320 # Try to see if it's magic
1321 if not found:
1321 if not found:
1322 if oname.startswith(ESC_MAGIC):
1322 if oname.startswith(ESC_MAGIC):
1323 oname = oname[1:]
1323 oname = oname[1:]
1324 obj = getattr(self,'magic_'+oname,None)
1324 obj = getattr(self,'magic_'+oname,None)
1325 if obj is not None:
1325 if obj is not None:
1326 found = True
1326 found = True
1327 ospace = 'IPython internal'
1327 ospace = 'IPython internal'
1328 ismagic = True
1328 ismagic = True
1329
1329
1330 # Last try: special-case some literals like '', [], {}, etc:
1330 # Last try: special-case some literals like '', [], {}, etc:
1331 if not found and oname_head in ["''",'""','[]','{}','()']:
1331 if not found and oname_head in ["''",'""','[]','{}','()']:
1332 obj = eval(oname_head)
1332 obj = eval(oname_head)
1333 found = True
1333 found = True
1334 ospace = 'Interactive'
1334 ospace = 'Interactive'
1335
1335
1336 return {'found':found, 'obj':obj, 'namespace':ospace,
1336 return {'found':found, 'obj':obj, 'namespace':ospace,
1337 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1337 'ismagic':ismagic, 'isalias':isalias, 'parent':parent}
1338
1338
1339 def _ofind_property(self, oname, info):
1339 def _ofind_property(self, oname, info):
1340 """Second part of object finding, to look for property details."""
1340 """Second part of object finding, to look for property details."""
1341 if info.found:
1341 if info.found:
1342 # Get the docstring of the class property if it exists.
1342 # Get the docstring of the class property if it exists.
1343 path = oname.split('.')
1343 path = oname.split('.')
1344 root = '.'.join(path[:-1])
1344 root = '.'.join(path[:-1])
1345 if info.parent is not None:
1345 if info.parent is not None:
1346 try:
1346 try:
1347 target = getattr(info.parent, '__class__')
1347 target = getattr(info.parent, '__class__')
1348 # The object belongs to a class instance.
1348 # The object belongs to a class instance.
1349 try:
1349 try:
1350 target = getattr(target, path[-1])
1350 target = getattr(target, path[-1])
1351 # The class defines the object.
1351 # The class defines the object.
1352 if isinstance(target, property):
1352 if isinstance(target, property):
1353 oname = root + '.__class__.' + path[-1]
1353 oname = root + '.__class__.' + path[-1]
1354 info = Struct(self._ofind(oname))
1354 info = Struct(self._ofind(oname))
1355 except AttributeError: pass
1355 except AttributeError: pass
1356 except AttributeError: pass
1356 except AttributeError: pass
1357
1357
1358 # We return either the new info or the unmodified input if the object
1358 # We return either the new info or the unmodified input if the object
1359 # hadn't been found
1359 # hadn't been found
1360 return info
1360 return info
1361
1361
1362 def _object_find(self, oname, namespaces=None):
1362 def _object_find(self, oname, namespaces=None):
1363 """Find an object and return a struct with info about it."""
1363 """Find an object and return a struct with info about it."""
1364 inf = Struct(self._ofind(oname, namespaces))
1364 inf = Struct(self._ofind(oname, namespaces))
1365 return Struct(self._ofind_property(oname, inf))
1365 return Struct(self._ofind_property(oname, inf))
1366
1366
1367 def _inspect(self, meth, oname, namespaces=None, **kw):
1367 def _inspect(self, meth, oname, namespaces=None, **kw):
1368 """Generic interface to the inspector system.
1368 """Generic interface to the inspector system.
1369
1369
1370 This function is meant to be called by pdef, pdoc & friends."""
1370 This function is meant to be called by pdef, pdoc & friends."""
1371 info = self._object_find(oname)
1371 info = self._object_find(oname)
1372 if info.found:
1372 if info.found:
1373 pmethod = getattr(self.inspector, meth)
1373 pmethod = getattr(self.inspector, meth)
1374 formatter = format_screen if info.ismagic else None
1374 formatter = format_screen if info.ismagic else None
1375 if meth == 'pdoc':
1375 if meth == 'pdoc':
1376 pmethod(info.obj, oname, formatter)
1376 pmethod(info.obj, oname, formatter)
1377 elif meth == 'pinfo':
1377 elif meth == 'pinfo':
1378 pmethod(info.obj, oname, formatter, info, **kw)
1378 pmethod(info.obj, oname, formatter, info, **kw)
1379 else:
1379 else:
1380 pmethod(info.obj, oname)
1380 pmethod(info.obj, oname)
1381 else:
1381 else:
1382 print 'Object `%s` not found.' % oname
1382 print 'Object `%s` not found.' % oname
1383 return 'not found' # so callers can take other action
1383 return 'not found' # so callers can take other action
1384
1384
1385 def object_inspect(self, oname):
1385 def object_inspect(self, oname):
1386 with self.builtin_trap:
1386 with self.builtin_trap:
1387 info = self._object_find(oname)
1387 info = self._object_find(oname)
1388 if info.found:
1388 if info.found:
1389 return self.inspector.info(info.obj, oname, info=info)
1389 return self.inspector.info(info.obj, oname, info=info)
1390 else:
1390 else:
1391 return oinspect.object_info(name=oname, found=False)
1391 return oinspect.object_info(name=oname, found=False)
1392
1392
1393 #-------------------------------------------------------------------------
1393 #-------------------------------------------------------------------------
1394 # Things related to history management
1394 # Things related to history management
1395 #-------------------------------------------------------------------------
1395 #-------------------------------------------------------------------------
1396
1396
1397 def init_history(self):
1397 def init_history(self):
1398 """Sets up the command history, and starts regular autosaves."""
1398 """Sets up the command history, and starts regular autosaves."""
1399 self.history_manager = HistoryManager(shell=self, config=self.config)
1399 self.history_manager = HistoryManager(shell=self, config=self.config)
1400
1400
1401 #-------------------------------------------------------------------------
1401 #-------------------------------------------------------------------------
1402 # Things related to exception handling and tracebacks (not debugging)
1402 # Things related to exception handling and tracebacks (not debugging)
1403 #-------------------------------------------------------------------------
1403 #-------------------------------------------------------------------------
1404
1404
1405 def init_traceback_handlers(self, custom_exceptions):
1405 def init_traceback_handlers(self, custom_exceptions):
1406 # Syntax error handler.
1406 # Syntax error handler.
1407 self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor')
1407 self.SyntaxTB = ultratb.SyntaxTB(color_scheme='NoColor')
1408
1408
1409 # The interactive one is initialized with an offset, meaning we always
1409 # The interactive one is initialized with an offset, meaning we always
1410 # want to remove the topmost item in the traceback, which is our own
1410 # want to remove the topmost item in the traceback, which is our own
1411 # internal code. Valid modes: ['Plain','Context','Verbose']
1411 # internal code. Valid modes: ['Plain','Context','Verbose']
1412 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1412 self.InteractiveTB = ultratb.AutoFormattedTB(mode = 'Plain',
1413 color_scheme='NoColor',
1413 color_scheme='NoColor',
1414 tb_offset = 1,
1414 tb_offset = 1,
1415 check_cache=self.compile.check_cache)
1415 check_cache=self.compile.check_cache)
1416
1416
1417 # The instance will store a pointer to the system-wide exception hook,
1417 # The instance will store a pointer to the system-wide exception hook,
1418 # so that runtime code (such as magics) can access it. This is because
1418 # so that runtime code (such as magics) can access it. This is because
1419 # during the read-eval loop, it may get temporarily overwritten.
1419 # during the read-eval loop, it may get temporarily overwritten.
1420 self.sys_excepthook = sys.excepthook
1420 self.sys_excepthook = sys.excepthook
1421
1421
1422 # and add any custom exception handlers the user may have specified
1422 # and add any custom exception handlers the user may have specified
1423 self.set_custom_exc(*custom_exceptions)
1423 self.set_custom_exc(*custom_exceptions)
1424
1424
1425 # Set the exception mode
1425 # Set the exception mode
1426 self.InteractiveTB.set_mode(mode=self.xmode)
1426 self.InteractiveTB.set_mode(mode=self.xmode)
1427
1427
1428 def set_custom_exc(self, exc_tuple, handler):
1428 def set_custom_exc(self, exc_tuple, handler):
1429 """set_custom_exc(exc_tuple,handler)
1429 """set_custom_exc(exc_tuple,handler)
1430
1430
1431 Set a custom exception handler, which will be called if any of the
1431 Set a custom exception handler, which will be called if any of the
1432 exceptions in exc_tuple occur in the mainloop (specifically, in the
1432 exceptions in exc_tuple occur in the mainloop (specifically, in the
1433 run_code() method.
1433 run_code() method.
1434
1434
1435 Inputs:
1435 Inputs:
1436
1436
1437 - exc_tuple: a *tuple* of valid exceptions to call the defined
1437 - exc_tuple: a *tuple* of valid exceptions to call the defined
1438 handler for. It is very important that you use a tuple, and NOT A
1438 handler for. It is very important that you use a tuple, and NOT A
1439 LIST here, because of the way Python's except statement works. If
1439 LIST here, because of the way Python's except statement works. If
1440 you only want to trap a single exception, use a singleton tuple:
1440 you only want to trap a single exception, use a singleton tuple:
1441
1441
1442 exc_tuple == (MyCustomException,)
1442 exc_tuple == (MyCustomException,)
1443
1443
1444 - handler: this must be defined as a function with the following
1444 - handler: this must be defined as a function with the following
1445 basic interface::
1445 basic interface::
1446
1446
1447 def my_handler(self, etype, value, tb, tb_offset=None)
1447 def my_handler(self, etype, value, tb, tb_offset=None)
1448 ...
1448 ...
1449 # The return value must be
1449 # The return value must be
1450 return structured_traceback
1450 return structured_traceback
1451
1451
1452 This will be made into an instance method (via types.MethodType)
1452 This will be made into an instance method (via types.MethodType)
1453 of IPython itself, and it will be called if any of the exceptions
1453 of IPython itself, and it will be called if any of the exceptions
1454 listed in the exc_tuple are caught. If the handler is None, an
1454 listed in the exc_tuple are caught. If the handler is None, an
1455 internal basic one is used, which just prints basic info.
1455 internal basic one is used, which just prints basic info.
1456
1456
1457 WARNING: by putting in your own exception handler into IPython's main
1457 WARNING: by putting in your own exception handler into IPython's main
1458 execution loop, you run a very good chance of nasty crashes. This
1458 execution loop, you run a very good chance of nasty crashes. This
1459 facility should only be used if you really know what you are doing."""
1459 facility should only be used if you really know what you are doing."""
1460
1460
1461 assert type(exc_tuple)==type(()) , \
1461 assert type(exc_tuple)==type(()) , \
1462 "The custom exceptions must be given AS A TUPLE."
1462 "The custom exceptions must be given AS A TUPLE."
1463
1463
1464 def dummy_handler(self,etype,value,tb):
1464 def dummy_handler(self,etype,value,tb):
1465 print '*** Simple custom exception handler ***'
1465 print '*** Simple custom exception handler ***'
1466 print 'Exception type :',etype
1466 print 'Exception type :',etype
1467 print 'Exception value:',value
1467 print 'Exception value:',value
1468 print 'Traceback :',tb
1468 print 'Traceback :',tb
1469 #print 'Source code :','\n'.join(self.buffer)
1469 #print 'Source code :','\n'.join(self.buffer)
1470
1470
1471 if handler is None: handler = dummy_handler
1471 if handler is None: handler = dummy_handler
1472
1472
1473 self.CustomTB = types.MethodType(handler,self)
1473 self.CustomTB = types.MethodType(handler,self)
1474 self.custom_exceptions = exc_tuple
1474 self.custom_exceptions = exc_tuple
1475
1475
1476 def excepthook(self, etype, value, tb):
1476 def excepthook(self, etype, value, tb):
1477 """One more defense for GUI apps that call sys.excepthook.
1477 """One more defense for GUI apps that call sys.excepthook.
1478
1478
1479 GUI frameworks like wxPython trap exceptions and call
1479 GUI frameworks like wxPython trap exceptions and call
1480 sys.excepthook themselves. I guess this is a feature that
1480 sys.excepthook themselves. I guess this is a feature that
1481 enables them to keep running after exceptions that would
1481 enables them to keep running after exceptions that would
1482 otherwise kill their mainloop. This is a bother for IPython
1482 otherwise kill their mainloop. This is a bother for IPython
1483 which excepts to catch all of the program exceptions with a try:
1483 which excepts to catch all of the program exceptions with a try:
1484 except: statement.
1484 except: statement.
1485
1485
1486 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1486 Normally, IPython sets sys.excepthook to a CrashHandler instance, so if
1487 any app directly invokes sys.excepthook, it will look to the user like
1487 any app directly invokes sys.excepthook, it will look to the user like
1488 IPython crashed. In order to work around this, we can disable the
1488 IPython crashed. In order to work around this, we can disable the
1489 CrashHandler and replace it with this excepthook instead, which prints a
1489 CrashHandler and replace it with this excepthook instead, which prints a
1490 regular traceback using our InteractiveTB. In this fashion, apps which
1490 regular traceback using our InteractiveTB. In this fashion, apps which
1491 call sys.excepthook will generate a regular-looking exception from
1491 call sys.excepthook will generate a regular-looking exception from
1492 IPython, and the CrashHandler will only be triggered by real IPython
1492 IPython, and the CrashHandler will only be triggered by real IPython
1493 crashes.
1493 crashes.
1494
1494
1495 This hook should be used sparingly, only in places which are not likely
1495 This hook should be used sparingly, only in places which are not likely
1496 to be true IPython errors.
1496 to be true IPython errors.
1497 """
1497 """
1498 self.showtraceback((etype,value,tb),tb_offset=0)
1498 self.showtraceback((etype,value,tb),tb_offset=0)
1499
1499
1500 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1500 def showtraceback(self,exc_tuple = None,filename=None,tb_offset=None,
1501 exception_only=False):
1501 exception_only=False):
1502 """Display the exception that just occurred.
1502 """Display the exception that just occurred.
1503
1503
1504 If nothing is known about the exception, this is the method which
1504 If nothing is known about the exception, this is the method which
1505 should be used throughout the code for presenting user tracebacks,
1505 should be used throughout the code for presenting user tracebacks,
1506 rather than directly invoking the InteractiveTB object.
1506 rather than directly invoking the InteractiveTB object.
1507
1507
1508 A specific showsyntaxerror() also exists, but this method can take
1508 A specific showsyntaxerror() also exists, but this method can take
1509 care of calling it if needed, so unless you are explicitly catching a
1509 care of calling it if needed, so unless you are explicitly catching a
1510 SyntaxError exception, don't try to analyze the stack manually and
1510 SyntaxError exception, don't try to analyze the stack manually and
1511 simply call this method."""
1511 simply call this method."""
1512
1512
1513 try:
1513 try:
1514 if exc_tuple is None:
1514 if exc_tuple is None:
1515 etype, value, tb = sys.exc_info()
1515 etype, value, tb = sys.exc_info()
1516 else:
1516 else:
1517 etype, value, tb = exc_tuple
1517 etype, value, tb = exc_tuple
1518
1518
1519 if etype is None:
1519 if etype is None:
1520 if hasattr(sys, 'last_type'):
1520 if hasattr(sys, 'last_type'):
1521 etype, value, tb = sys.last_type, sys.last_value, \
1521 etype, value, tb = sys.last_type, sys.last_value, \
1522 sys.last_traceback
1522 sys.last_traceback
1523 else:
1523 else:
1524 self.write_err('No traceback available to show.\n')
1524 self.write_err('No traceback available to show.\n')
1525 return
1525 return
1526
1526
1527 if etype is SyntaxError:
1527 if etype is SyntaxError:
1528 # Though this won't be called by syntax errors in the input
1528 # Though this won't be called by syntax errors in the input
1529 # line, there may be SyntaxError cases whith imported code.
1529 # line, there may be SyntaxError cases whith imported code.
1530 self.showsyntaxerror(filename)
1530 self.showsyntaxerror(filename)
1531 elif etype is UsageError:
1531 elif etype is UsageError:
1532 print "UsageError:", value
1532 print "UsageError:", value
1533 else:
1533 else:
1534 # WARNING: these variables are somewhat deprecated and not
1534 # WARNING: these variables are somewhat deprecated and not
1535 # necessarily safe to use in a threaded environment, but tools
1535 # necessarily safe to use in a threaded environment, but tools
1536 # like pdb depend on their existence, so let's set them. If we
1536 # like pdb depend on their existence, so let's set them. If we
1537 # find problems in the field, we'll need to revisit their use.
1537 # find problems in the field, we'll need to revisit their use.
1538 sys.last_type = etype
1538 sys.last_type = etype
1539 sys.last_value = value
1539 sys.last_value = value
1540 sys.last_traceback = tb
1540 sys.last_traceback = tb
1541 if etype in self.custom_exceptions:
1541 if etype in self.custom_exceptions:
1542 # FIXME: Old custom traceback objects may just return a
1542 # FIXME: Old custom traceback objects may just return a
1543 # string, in that case we just put it into a list
1543 # string, in that case we just put it into a list
1544 stb = self.CustomTB(etype, value, tb, tb_offset)
1544 stb = self.CustomTB(etype, value, tb, tb_offset)
1545 if isinstance(ctb, basestring):
1545 if isinstance(ctb, basestring):
1546 stb = [stb]
1546 stb = [stb]
1547 else:
1547 else:
1548 if exception_only:
1548 if exception_only:
1549 stb = ['An exception has occurred, use %tb to see '
1549 stb = ['An exception has occurred, use %tb to see '
1550 'the full traceback.\n']
1550 'the full traceback.\n']
1551 stb.extend(self.InteractiveTB.get_exception_only(etype,
1551 stb.extend(self.InteractiveTB.get_exception_only(etype,
1552 value))
1552 value))
1553 else:
1553 else:
1554 stb = self.InteractiveTB.structured_traceback(etype,
1554 stb = self.InteractiveTB.structured_traceback(etype,
1555 value, tb, tb_offset=tb_offset)
1555 value, tb, tb_offset=tb_offset)
1556
1556
1557 if self.call_pdb:
1557 if self.call_pdb:
1558 # drop into debugger
1558 # drop into debugger
1559 self.debugger(force=True)
1559 self.debugger(force=True)
1560
1560
1561 # Actually show the traceback
1561 # Actually show the traceback
1562 self._showtraceback(etype, value, stb)
1562 self._showtraceback(etype, value, stb)
1563
1563
1564 except KeyboardInterrupt:
1564 except KeyboardInterrupt:
1565 self.write_err("\nKeyboardInterrupt\n")
1565 self.write_err("\nKeyboardInterrupt\n")
1566
1566
1567 def _showtraceback(self, etype, evalue, stb):
1567 def _showtraceback(self, etype, evalue, stb):
1568 """Actually show a traceback.
1568 """Actually show a traceback.
1569
1569
1570 Subclasses may override this method to put the traceback on a different
1570 Subclasses may override this method to put the traceback on a different
1571 place, like a side channel.
1571 place, like a side channel.
1572 """
1572 """
1573 print >> io.stdout, self.InteractiveTB.stb2text(stb)
1573 print >> io.stdout, self.InteractiveTB.stb2text(stb)
1574
1574
1575 def showsyntaxerror(self, filename=None):
1575 def showsyntaxerror(self, filename=None):
1576 """Display the syntax error that just occurred.
1576 """Display the syntax error that just occurred.
1577
1577
1578 This doesn't display a stack trace because there isn't one.
1578 This doesn't display a stack trace because there isn't one.
1579
1579
1580 If a filename is given, it is stuffed in the exception instead
1580 If a filename is given, it is stuffed in the exception instead
1581 of what was there before (because Python's parser always uses
1581 of what was there before (because Python's parser always uses
1582 "<string>" when reading from a string).
1582 "<string>" when reading from a string).
1583 """
1583 """
1584 etype, value, last_traceback = sys.exc_info()
1584 etype, value, last_traceback = sys.exc_info()
1585
1585
1586 # See note about these variables in showtraceback() above
1586 # See note about these variables in showtraceback() above
1587 sys.last_type = etype
1587 sys.last_type = etype
1588 sys.last_value = value
1588 sys.last_value = value
1589 sys.last_traceback = last_traceback
1589 sys.last_traceback = last_traceback
1590
1590
1591 if filename and etype is SyntaxError:
1591 if filename and etype is SyntaxError:
1592 # Work hard to stuff the correct filename in the exception
1592 # Work hard to stuff the correct filename in the exception
1593 try:
1593 try:
1594 msg, (dummy_filename, lineno, offset, line) = value
1594 msg, (dummy_filename, lineno, offset, line) = value
1595 except:
1595 except:
1596 # Not the format we expect; leave it alone
1596 # Not the format we expect; leave it alone
1597 pass
1597 pass
1598 else:
1598 else:
1599 # Stuff in the right filename
1599 # Stuff in the right filename
1600 try:
1600 try:
1601 # Assume SyntaxError is a class exception
1601 # Assume SyntaxError is a class exception
1602 value = SyntaxError(msg, (filename, lineno, offset, line))
1602 value = SyntaxError(msg, (filename, lineno, offset, line))
1603 except:
1603 except:
1604 # If that failed, assume SyntaxError is a string
1604 # If that failed, assume SyntaxError is a string
1605 value = msg, (filename, lineno, offset, line)
1605 value = msg, (filename, lineno, offset, line)
1606 stb = self.SyntaxTB.structured_traceback(etype, value, [])
1606 stb = self.SyntaxTB.structured_traceback(etype, value, [])
1607 self._showtraceback(etype, value, stb)
1607 self._showtraceback(etype, value, stb)
1608
1608
1609 #-------------------------------------------------------------------------
1609 #-------------------------------------------------------------------------
1610 # Things related to readline
1610 # Things related to readline
1611 #-------------------------------------------------------------------------
1611 #-------------------------------------------------------------------------
1612
1612
1613 def init_readline(self):
1613 def init_readline(self):
1614 """Command history completion/saving/reloading."""
1614 """Command history completion/saving/reloading."""
1615
1615
1616 if self.readline_use:
1616 if self.readline_use:
1617 import IPython.utils.rlineimpl as readline
1617 import IPython.utils.rlineimpl as readline
1618
1618
1619 self.rl_next_input = None
1619 self.rl_next_input = None
1620 self.rl_do_indent = False
1620 self.rl_do_indent = False
1621
1621
1622 if not self.readline_use or not readline.have_readline:
1622 if not self.readline_use or not readline.have_readline:
1623 self.has_readline = False
1623 self.has_readline = False
1624 self.readline = None
1624 self.readline = None
1625 # Set a number of methods that depend on readline to be no-op
1625 # Set a number of methods that depend on readline to be no-op
1626 self.set_readline_completer = no_op
1626 self.set_readline_completer = no_op
1627 self.set_custom_completer = no_op
1627 self.set_custom_completer = no_op
1628 self.set_completer_frame = no_op
1628 self.set_completer_frame = no_op
1629 warn('Readline services not available or not loaded.')
1629 warn('Readline services not available or not loaded.')
1630 else:
1630 else:
1631 self.has_readline = True
1631 self.has_readline = True
1632 self.readline = readline
1632 self.readline = readline
1633 sys.modules['readline'] = readline
1633 sys.modules['readline'] = readline
1634
1634
1635 # Platform-specific configuration
1635 # Platform-specific configuration
1636 if os.name == 'nt':
1636 if os.name == 'nt':
1637 # FIXME - check with Frederick to see if we can harmonize
1637 # FIXME - check with Frederick to see if we can harmonize
1638 # naming conventions with pyreadline to avoid this
1638 # naming conventions with pyreadline to avoid this
1639 # platform-dependent check
1639 # platform-dependent check
1640 self.readline_startup_hook = readline.set_pre_input_hook
1640 self.readline_startup_hook = readline.set_pre_input_hook
1641 else:
1641 else:
1642 self.readline_startup_hook = readline.set_startup_hook
1642 self.readline_startup_hook = readline.set_startup_hook
1643
1643
1644 # Load user's initrc file (readline config)
1644 # Load user's initrc file (readline config)
1645 # Or if libedit is used, load editrc.
1645 # Or if libedit is used, load editrc.
1646 inputrc_name = os.environ.get('INPUTRC')
1646 inputrc_name = os.environ.get('INPUTRC')
1647 if inputrc_name is None:
1647 if inputrc_name is None:
1648 home_dir = get_home_dir()
1648 home_dir = get_home_dir()
1649 if home_dir is not None:
1649 if home_dir is not None:
1650 inputrc_name = '.inputrc'
1650 inputrc_name = '.inputrc'
1651 if readline.uses_libedit:
1651 if readline.uses_libedit:
1652 inputrc_name = '.editrc'
1652 inputrc_name = '.editrc'
1653 inputrc_name = os.path.join(home_dir, inputrc_name)
1653 inputrc_name = os.path.join(home_dir, inputrc_name)
1654 if os.path.isfile(inputrc_name):
1654 if os.path.isfile(inputrc_name):
1655 try:
1655 try:
1656 readline.read_init_file(inputrc_name)
1656 readline.read_init_file(inputrc_name)
1657 except:
1657 except:
1658 warn('Problems reading readline initialization file <%s>'
1658 warn('Problems reading readline initialization file <%s>'
1659 % inputrc_name)
1659 % inputrc_name)
1660
1660
1661 # Configure readline according to user's prefs
1661 # Configure readline according to user's prefs
1662 # This is only done if GNU readline is being used. If libedit
1662 # This is only done if GNU readline is being used. If libedit
1663 # is being used (as on Leopard) the readline config is
1663 # is being used (as on Leopard) the readline config is
1664 # not run as the syntax for libedit is different.
1664 # not run as the syntax for libedit is different.
1665 if not readline.uses_libedit:
1665 if not readline.uses_libedit:
1666 for rlcommand in self.readline_parse_and_bind:
1666 for rlcommand in self.readline_parse_and_bind:
1667 #print "loading rl:",rlcommand # dbg
1667 #print "loading rl:",rlcommand # dbg
1668 readline.parse_and_bind(rlcommand)
1668 readline.parse_and_bind(rlcommand)
1669
1669
1670 # Remove some chars from the delimiters list. If we encounter
1670 # Remove some chars from the delimiters list. If we encounter
1671 # unicode chars, discard them.
1671 # unicode chars, discard them.
1672 delims = readline.get_completer_delims().encode("ascii", "ignore")
1672 delims = readline.get_completer_delims().encode("ascii", "ignore")
1673 delims = delims.translate(None, self.readline_remove_delims)
1673 delims = delims.translate(None, self.readline_remove_delims)
1674 delims = delims.replace(ESC_MAGIC, '')
1674 delims = delims.replace(ESC_MAGIC, '')
1675 readline.set_completer_delims(delims)
1675 readline.set_completer_delims(delims)
1676 # otherwise we end up with a monster history after a while:
1676 # otherwise we end up with a monster history after a while:
1677 readline.set_history_length(self.history_length)
1677 readline.set_history_length(self.history_length)
1678
1678
1679 self.refill_readline_hist()
1679 self.refill_readline_hist()
1680 self.readline_no_record = ReadlineNoRecord(self)
1680 self.readline_no_record = ReadlineNoRecord(self)
1681
1681
1682 # Configure auto-indent for all platforms
1682 # Configure auto-indent for all platforms
1683 self.set_autoindent(self.autoindent)
1683 self.set_autoindent(self.autoindent)
1684
1684
1685 def refill_readline_hist(self):
1685 def refill_readline_hist(self):
1686 # Load the last 1000 lines from history
1686 # Load the last 1000 lines from history
1687 self.readline.clear_history()
1687 self.readline.clear_history()
1688 stdin_encoding = sys.stdin.encoding or "utf-8"
1688 stdin_encoding = sys.stdin.encoding or "utf-8"
1689 for _, _, cell in self.history_manager.get_tail(1000,
1689 for _, _, cell in self.history_manager.get_tail(1000,
1690 include_latest=True):
1690 include_latest=True):
1691 if cell.strip(): # Ignore blank lines
1691 if cell.strip(): # Ignore blank lines
1692 for line in cell.splitlines():
1692 for line in cell.splitlines():
1693 self.readline.add_history(line.encode(stdin_encoding, 'replace'))
1693 self.readline.add_history(line.encode(stdin_encoding, 'replace'))
1694
1694
1695 def set_next_input(self, s):
1695 def set_next_input(self, s):
1696 """ Sets the 'default' input string for the next command line.
1696 """ Sets the 'default' input string for the next command line.
1697
1697
1698 Requires readline.
1698 Requires readline.
1699
1699
1700 Example:
1700 Example:
1701
1701
1702 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1702 [D:\ipython]|1> _ip.set_next_input("Hello Word")
1703 [D:\ipython]|2> Hello Word_ # cursor is here
1703 [D:\ipython]|2> Hello Word_ # cursor is here
1704 """
1704 """
1705
1705
1706 self.rl_next_input = s
1706 self.rl_next_input = s
1707
1707
1708 # Maybe move this to the terminal subclass?
1708 # Maybe move this to the terminal subclass?
1709 def pre_readline(self):
1709 def pre_readline(self):
1710 """readline hook to be used at the start of each line.
1710 """readline hook to be used at the start of each line.
1711
1711
1712 Currently it handles auto-indent only."""
1712 Currently it handles auto-indent only."""
1713
1713
1714 if self.rl_do_indent:
1714 if self.rl_do_indent:
1715 self.readline.insert_text(self._indent_current_str())
1715 self.readline.insert_text(self._indent_current_str())
1716 if self.rl_next_input is not None:
1716 if self.rl_next_input is not None:
1717 self.readline.insert_text(self.rl_next_input)
1717 self.readline.insert_text(self.rl_next_input)
1718 self.rl_next_input = None
1718 self.rl_next_input = None
1719
1719
1720 def _indent_current_str(self):
1720 def _indent_current_str(self):
1721 """return the current level of indentation as a string"""
1721 """return the current level of indentation as a string"""
1722 return self.input_splitter.indent_spaces * ' '
1722 return self.input_splitter.indent_spaces * ' '
1723
1723
1724 #-------------------------------------------------------------------------
1724 #-------------------------------------------------------------------------
1725 # Things related to text completion
1725 # Things related to text completion
1726 #-------------------------------------------------------------------------
1726 #-------------------------------------------------------------------------
1727
1727
1728 def init_completer(self):
1728 def init_completer(self):
1729 """Initialize the completion machinery.
1729 """Initialize the completion machinery.
1730
1730
1731 This creates completion machinery that can be used by client code,
1731 This creates completion machinery that can be used by client code,
1732 either interactively in-process (typically triggered by the readline
1732 either interactively in-process (typically triggered by the readline
1733 library), programatically (such as in test suites) or out-of-prcess
1733 library), programatically (such as in test suites) or out-of-prcess
1734 (typically over the network by remote frontends).
1734 (typically over the network by remote frontends).
1735 """
1735 """
1736 from IPython.core.completer import IPCompleter
1736 from IPython.core.completer import IPCompleter
1737 from IPython.core.completerlib import (module_completer,
1737 from IPython.core.completerlib import (module_completer,
1738 magic_run_completer, cd_completer)
1738 magic_run_completer, cd_completer)
1739
1739
1740 self.Completer = IPCompleter(self,
1740 self.Completer = IPCompleter(self,
1741 self.user_ns,
1741 self.user_ns,
1742 self.user_global_ns,
1742 self.user_global_ns,
1743 self.readline_omit__names,
1743 self.readline_omit__names,
1744 self.alias_manager.alias_table,
1744 self.alias_manager.alias_table,
1745 self.has_readline)
1745 self.has_readline)
1746
1746
1747 # Add custom completers to the basic ones built into IPCompleter
1747 # Add custom completers to the basic ones built into IPCompleter
1748 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1748 sdisp = self.strdispatchers.get('complete_command', StrDispatch())
1749 self.strdispatchers['complete_command'] = sdisp
1749 self.strdispatchers['complete_command'] = sdisp
1750 self.Completer.custom_completers = sdisp
1750 self.Completer.custom_completers = sdisp
1751
1751
1752 self.set_hook('complete_command', module_completer, str_key = 'import')
1752 self.set_hook('complete_command', module_completer, str_key = 'import')
1753 self.set_hook('complete_command', module_completer, str_key = 'from')
1753 self.set_hook('complete_command', module_completer, str_key = 'from')
1754 self.set_hook('complete_command', magic_run_completer, str_key = '%run')
1754 self.set_hook('complete_command', magic_run_completer, str_key = '%run')
1755 self.set_hook('complete_command', cd_completer, str_key = '%cd')
1755 self.set_hook('complete_command', cd_completer, str_key = '%cd')
1756
1756
1757 # Only configure readline if we truly are using readline. IPython can
1757 # Only configure readline if we truly are using readline. IPython can
1758 # do tab-completion over the network, in GUIs, etc, where readline
1758 # do tab-completion over the network, in GUIs, etc, where readline
1759 # itself may be absent
1759 # itself may be absent
1760 if self.has_readline:
1760 if self.has_readline:
1761 self.set_readline_completer()
1761 self.set_readline_completer()
1762
1762
1763 def complete(self, text, line=None, cursor_pos=None):
1763 def complete(self, text, line=None, cursor_pos=None):
1764 """Return the completed text and a list of completions.
1764 """Return the completed text and a list of completions.
1765
1765
1766 Parameters
1766 Parameters
1767 ----------
1767 ----------
1768
1768
1769 text : string
1769 text : string
1770 A string of text to be completed on. It can be given as empty and
1770 A string of text to be completed on. It can be given as empty and
1771 instead a line/position pair are given. In this case, the
1771 instead a line/position pair are given. In this case, the
1772 completer itself will split the line like readline does.
1772 completer itself will split the line like readline does.
1773
1773
1774 line : string, optional
1774 line : string, optional
1775 The complete line that text is part of.
1775 The complete line that text is part of.
1776
1776
1777 cursor_pos : int, optional
1777 cursor_pos : int, optional
1778 The position of the cursor on the input line.
1778 The position of the cursor on the input line.
1779
1779
1780 Returns
1780 Returns
1781 -------
1781 -------
1782 text : string
1782 text : string
1783 The actual text that was completed.
1783 The actual text that was completed.
1784
1784
1785 matches : list
1785 matches : list
1786 A sorted list with all possible completions.
1786 A sorted list with all possible completions.
1787
1787
1788 The optional arguments allow the completion to take more context into
1788 The optional arguments allow the completion to take more context into
1789 account, and are part of the low-level completion API.
1789 account, and are part of the low-level completion API.
1790
1790
1791 This is a wrapper around the completion mechanism, similar to what
1791 This is a wrapper around the completion mechanism, similar to what
1792 readline does at the command line when the TAB key is hit. By
1792 readline does at the command line when the TAB key is hit. By
1793 exposing it as a method, it can be used by other non-readline
1793 exposing it as a method, it can be used by other non-readline
1794 environments (such as GUIs) for text completion.
1794 environments (such as GUIs) for text completion.
1795
1795
1796 Simple usage example:
1796 Simple usage example:
1797
1797
1798 In [1]: x = 'hello'
1798 In [1]: x = 'hello'
1799
1799
1800 In [2]: _ip.complete('x.l')
1800 In [2]: _ip.complete('x.l')
1801 Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip'])
1801 Out[2]: ('x.l', ['x.ljust', 'x.lower', 'x.lstrip'])
1802 """
1802 """
1803
1803
1804 # Inject names into __builtin__ so we can complete on the added names.
1804 # Inject names into __builtin__ so we can complete on the added names.
1805 with self.builtin_trap:
1805 with self.builtin_trap:
1806 return self.Completer.complete(text, line, cursor_pos)
1806 return self.Completer.complete(text, line, cursor_pos)
1807
1807
1808 def set_custom_completer(self, completer, pos=0):
1808 def set_custom_completer(self, completer, pos=0):
1809 """Adds a new custom completer function.
1809 """Adds a new custom completer function.
1810
1810
1811 The position argument (defaults to 0) is the index in the completers
1811 The position argument (defaults to 0) is the index in the completers
1812 list where you want the completer to be inserted."""
1812 list where you want the completer to be inserted."""
1813
1813
1814 newcomp = types.MethodType(completer,self.Completer)
1814 newcomp = types.MethodType(completer,self.Completer)
1815 self.Completer.matchers.insert(pos,newcomp)
1815 self.Completer.matchers.insert(pos,newcomp)
1816
1816
1817 def set_readline_completer(self):
1817 def set_readline_completer(self):
1818 """Reset readline's completer to be our own."""
1818 """Reset readline's completer to be our own."""
1819 self.readline.set_completer(self.Completer.rlcomplete)
1819 self.readline.set_completer(self.Completer.rlcomplete)
1820
1820
1821 def set_completer_frame(self, frame=None):
1821 def set_completer_frame(self, frame=None):
1822 """Set the frame of the completer."""
1822 """Set the frame of the completer."""
1823 if frame:
1823 if frame:
1824 self.Completer.namespace = frame.f_locals
1824 self.Completer.namespace = frame.f_locals
1825 self.Completer.global_namespace = frame.f_globals
1825 self.Completer.global_namespace = frame.f_globals
1826 else:
1826 else:
1827 self.Completer.namespace = self.user_ns
1827 self.Completer.namespace = self.user_ns
1828 self.Completer.global_namespace = self.user_global_ns
1828 self.Completer.global_namespace = self.user_global_ns
1829
1829
1830 #-------------------------------------------------------------------------
1830 #-------------------------------------------------------------------------
1831 # Things related to magics
1831 # Things related to magics
1832 #-------------------------------------------------------------------------
1832 #-------------------------------------------------------------------------
1833
1833
1834 def init_magics(self):
1834 def init_magics(self):
1835 # FIXME: Move the color initialization to the DisplayHook, which
1835 # FIXME: Move the color initialization to the DisplayHook, which
1836 # should be split into a prompt manager and displayhook. We probably
1836 # should be split into a prompt manager and displayhook. We probably
1837 # even need a centralize colors management object.
1837 # even need a centralize colors management object.
1838 self.magic_colors(self.colors)
1838 self.magic_colors(self.colors)
1839 # History was moved to a separate module
1839 # History was moved to a separate module
1840 from . import history
1840 from . import history
1841 history.init_ipython(self)
1841 history.init_ipython(self)
1842
1842
1843 def magic(self,arg_s):
1843 def magic(self,arg_s):
1844 """Call a magic function by name.
1844 """Call a magic function by name.
1845
1845
1846 Input: a string containing the name of the magic function to call and
1846 Input: a string containing the name of the magic function to call and
1847 any additional arguments to be passed to the magic.
1847 any additional arguments to be passed to the magic.
1848
1848
1849 magic('name -opt foo bar') is equivalent to typing at the ipython
1849 magic('name -opt foo bar') is equivalent to typing at the ipython
1850 prompt:
1850 prompt:
1851
1851
1852 In[1]: %name -opt foo bar
1852 In[1]: %name -opt foo bar
1853
1853
1854 To call a magic without arguments, simply use magic('name').
1854 To call a magic without arguments, simply use magic('name').
1855
1855
1856 This provides a proper Python function to call IPython's magics in any
1856 This provides a proper Python function to call IPython's magics in any
1857 valid Python code you can type at the interpreter, including loops and
1857 valid Python code you can type at the interpreter, including loops and
1858 compound statements.
1858 compound statements.
1859 """
1859 """
1860 args = arg_s.split(' ',1)
1860 args = arg_s.split(' ',1)
1861 magic_name = args[0]
1861 magic_name = args[0]
1862 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1862 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
1863
1863
1864 try:
1864 try:
1865 magic_args = args[1]
1865 magic_args = args[1]
1866 except IndexError:
1866 except IndexError:
1867 magic_args = ''
1867 magic_args = ''
1868 fn = getattr(self,'magic_'+magic_name,None)
1868 fn = getattr(self,'magic_'+magic_name,None)
1869 if fn is None:
1869 if fn is None:
1870 error("Magic function `%s` not found." % magic_name)
1870 error("Magic function `%s` not found." % magic_name)
1871 else:
1871 else:
1872 magic_args = self.var_expand(magic_args,1)
1872 magic_args = self.var_expand(magic_args,1)
1873 # Grab local namespace if we need it:
1873 # Grab local namespace if we need it:
1874 if getattr(fn, "needs_local_scope", False):
1874 if getattr(fn, "needs_local_scope", False):
1875 self._magic_locals = sys._getframe(1).f_locals
1875 self._magic_locals = sys._getframe(1).f_locals
1876 with self.builtin_trap:
1876 with self.builtin_trap:
1877 result = fn(magic_args)
1877 result = fn(magic_args)
1878 # Ensure we're not keeping object references around:
1878 # Ensure we're not keeping object references around:
1879 self._magic_locals = {}
1879 self._magic_locals = {}
1880 return result
1880 return result
1881
1881
1882 def define_magic(self, magicname, func):
1882 def define_magic(self, magicname, func):
1883 """Expose own function as magic function for ipython
1883 """Expose own function as magic function for ipython
1884
1884
1885 def foo_impl(self,parameter_s=''):
1885 def foo_impl(self,parameter_s=''):
1886 'My very own magic!. (Use docstrings, IPython reads them).'
1886 'My very own magic!. (Use docstrings, IPython reads them).'
1887 print 'Magic function. Passed parameter is between < >:'
1887 print 'Magic function. Passed parameter is between < >:'
1888 print '<%s>' % parameter_s
1888 print '<%s>' % parameter_s
1889 print 'The self object is:',self
1889 print 'The self object is:',self
1890
1890
1891 self.define_magic('foo',foo_impl)
1891 self.define_magic('foo',foo_impl)
1892 """
1892 """
1893
1893
1894 import new
1894 import new
1895 im = types.MethodType(func,self)
1895 im = types.MethodType(func,self)
1896 old = getattr(self, "magic_" + magicname, None)
1896 old = getattr(self, "magic_" + magicname, None)
1897 setattr(self, "magic_" + magicname, im)
1897 setattr(self, "magic_" + magicname, im)
1898 return old
1898 return old
1899
1899
1900 #-------------------------------------------------------------------------
1900 #-------------------------------------------------------------------------
1901 # Things related to macros
1901 # Things related to macros
1902 #-------------------------------------------------------------------------
1902 #-------------------------------------------------------------------------
1903
1903
1904 def define_macro(self, name, themacro):
1904 def define_macro(self, name, themacro):
1905 """Define a new macro
1905 """Define a new macro
1906
1906
1907 Parameters
1907 Parameters
1908 ----------
1908 ----------
1909 name : str
1909 name : str
1910 The name of the macro.
1910 The name of the macro.
1911 themacro : str or Macro
1911 themacro : str or Macro
1912 The action to do upon invoking the macro. If a string, a new
1912 The action to do upon invoking the macro. If a string, a new
1913 Macro object is created by passing the string to it.
1913 Macro object is created by passing the string to it.
1914 """
1914 """
1915
1915
1916 from IPython.core import macro
1916 from IPython.core import macro
1917
1917
1918 if isinstance(themacro, basestring):
1918 if isinstance(themacro, basestring):
1919 themacro = macro.Macro(themacro)
1919 themacro = macro.Macro(themacro)
1920 if not isinstance(themacro, macro.Macro):
1920 if not isinstance(themacro, macro.Macro):
1921 raise ValueError('A macro must be a string or a Macro instance.')
1921 raise ValueError('A macro must be a string or a Macro instance.')
1922 self.user_ns[name] = themacro
1922 self.user_ns[name] = themacro
1923
1923
1924 #-------------------------------------------------------------------------
1924 #-------------------------------------------------------------------------
1925 # Things related to the running of system commands
1925 # Things related to the running of system commands
1926 #-------------------------------------------------------------------------
1926 #-------------------------------------------------------------------------
1927
1927
1928 def system_piped(self, cmd):
1928 def system_piped(self, cmd):
1929 """Call the given cmd in a subprocess, piping stdout/err
1929 """Call the given cmd in a subprocess, piping stdout/err
1930
1930
1931 Parameters
1931 Parameters
1932 ----------
1932 ----------
1933 cmd : str
1933 cmd : str
1934 Command to execute (can not end in '&', as background processes are
1934 Command to execute (can not end in '&', as background processes are
1935 not supported. Should not be a command that expects input
1935 not supported. Should not be a command that expects input
1936 other than simple text.
1936 other than simple text.
1937 """
1937 """
1938 if cmd.rstrip().endswith('&'):
1938 if cmd.rstrip().endswith('&'):
1939 # this is *far* from a rigorous test
1939 # this is *far* from a rigorous test
1940 # We do not support backgrounding processes because we either use
1940 # We do not support backgrounding processes because we either use
1941 # pexpect or pipes to read from. Users can always just call
1941 # pexpect or pipes to read from. Users can always just call
1942 # os.system() or use ip.system=ip.system_raw
1942 # os.system() or use ip.system=ip.system_raw
1943 # if they really want a background process.
1943 # if they really want a background process.
1944 raise OSError("Background processes not supported.")
1944 raise OSError("Background processes not supported.")
1945
1945
1946 # we explicitly do NOT return the subprocess status code, because
1946 # we explicitly do NOT return the subprocess status code, because
1947 # a non-None value would trigger :func:`sys.displayhook` calls.
1947 # a non-None value would trigger :func:`sys.displayhook` calls.
1948 # Instead, we store the exit_code in user_ns.
1948 # Instead, we store the exit_code in user_ns.
1949 self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2))
1949 self.user_ns['_exit_code'] = system(self.var_expand(cmd, depth=2))
1950
1950
1951 def system_raw(self, cmd):
1951 def system_raw(self, cmd):
1952 """Call the given cmd in a subprocess using os.system
1952 """Call the given cmd in a subprocess using os.system
1953
1953
1954 Parameters
1954 Parameters
1955 ----------
1955 ----------
1956 cmd : str
1956 cmd : str
1957 Command to execute.
1957 Command to execute.
1958 """
1958 """
1959 # We explicitly do NOT return the subprocess status code, because
1959 # We explicitly do NOT return the subprocess status code, because
1960 # a non-None value would trigger :func:`sys.displayhook` calls.
1960 # a non-None value would trigger :func:`sys.displayhook` calls.
1961 # Instead, we store the exit_code in user_ns.
1961 # Instead, we store the exit_code in user_ns.
1962 self.user_ns['_exit_code'] = os.system(self.var_expand(cmd, depth=2))
1962 self.user_ns['_exit_code'] = os.system(self.var_expand(cmd, depth=2))
1963
1963
1964 # use piped system by default, because it is better behaved
1964 # use piped system by default, because it is better behaved
1965 system = system_piped
1965 system = system_piped
1966
1966
1967 def getoutput(self, cmd, split=True):
1967 def getoutput(self, cmd, split=True):
1968 """Get output (possibly including stderr) from a subprocess.
1968 """Get output (possibly including stderr) from a subprocess.
1969
1969
1970 Parameters
1970 Parameters
1971 ----------
1971 ----------
1972 cmd : str
1972 cmd : str
1973 Command to execute (can not end in '&', as background processes are
1973 Command to execute (can not end in '&', as background processes are
1974 not supported.
1974 not supported.
1975 split : bool, optional
1975 split : bool, optional
1976
1976
1977 If True, split the output into an IPython SList. Otherwise, an
1977 If True, split the output into an IPython SList. Otherwise, an
1978 IPython LSString is returned. These are objects similar to normal
1978 IPython LSString is returned. These are objects similar to normal
1979 lists and strings, with a few convenience attributes for easier
1979 lists and strings, with a few convenience attributes for easier
1980 manipulation of line-based output. You can use '?' on them for
1980 manipulation of line-based output. You can use '?' on them for
1981 details.
1981 details.
1982 """
1982 """
1983 if cmd.rstrip().endswith('&'):
1983 if cmd.rstrip().endswith('&'):
1984 # this is *far* from a rigorous test
1984 # this is *far* from a rigorous test
1985 raise OSError("Background processes not supported.")
1985 raise OSError("Background processes not supported.")
1986 out = getoutput(self.var_expand(cmd, depth=2))
1986 out = getoutput(self.var_expand(cmd, depth=2))
1987 if split:
1987 if split:
1988 out = SList(out.splitlines())
1988 out = SList(out.splitlines())
1989 else:
1989 else:
1990 out = LSString(out)
1990 out = LSString(out)
1991 return out
1991 return out
1992
1992
1993 #-------------------------------------------------------------------------
1993 #-------------------------------------------------------------------------
1994 # Things related to aliases
1994 # Things related to aliases
1995 #-------------------------------------------------------------------------
1995 #-------------------------------------------------------------------------
1996
1996
1997 def init_alias(self):
1997 def init_alias(self):
1998 self.alias_manager = AliasManager(shell=self, config=self.config)
1998 self.alias_manager = AliasManager(shell=self, config=self.config)
1999 self.ns_table['alias'] = self.alias_manager.alias_table,
1999 self.ns_table['alias'] = self.alias_manager.alias_table,
2000
2000
2001 #-------------------------------------------------------------------------
2001 #-------------------------------------------------------------------------
2002 # Things related to extensions and plugins
2002 # Things related to extensions and plugins
2003 #-------------------------------------------------------------------------
2003 #-------------------------------------------------------------------------
2004
2004
2005 def init_extension_manager(self):
2005 def init_extension_manager(self):
2006 self.extension_manager = ExtensionManager(shell=self, config=self.config)
2006 self.extension_manager = ExtensionManager(shell=self, config=self.config)
2007
2007
2008 def init_plugin_manager(self):
2008 def init_plugin_manager(self):
2009 self.plugin_manager = PluginManager(config=self.config)
2009 self.plugin_manager = PluginManager(config=self.config)
2010
2010
2011 #-------------------------------------------------------------------------
2011 #-------------------------------------------------------------------------
2012 # Things related to payloads
2012 # Things related to payloads
2013 #-------------------------------------------------------------------------
2013 #-------------------------------------------------------------------------
2014
2014
2015 def init_payload(self):
2015 def init_payload(self):
2016 self.payload_manager = PayloadManager(config=self.config)
2016 self.payload_manager = PayloadManager(config=self.config)
2017
2017
2018 #-------------------------------------------------------------------------
2018 #-------------------------------------------------------------------------
2019 # Things related to the prefilter
2019 # Things related to the prefilter
2020 #-------------------------------------------------------------------------
2020 #-------------------------------------------------------------------------
2021
2021
2022 def init_prefilter(self):
2022 def init_prefilter(self):
2023 self.prefilter_manager = PrefilterManager(shell=self, config=self.config)
2023 self.prefilter_manager = PrefilterManager(shell=self, config=self.config)
2024 # Ultimately this will be refactored in the new interpreter code, but
2024 # Ultimately this will be refactored in the new interpreter code, but
2025 # for now, we should expose the main prefilter method (there's legacy
2025 # for now, we should expose the main prefilter method (there's legacy
2026 # code out there that may rely on this).
2026 # code out there that may rely on this).
2027 self.prefilter = self.prefilter_manager.prefilter_lines
2027 self.prefilter = self.prefilter_manager.prefilter_lines
2028
2028
2029 def auto_rewrite_input(self, cmd):
2029 def auto_rewrite_input(self, cmd):
2030 """Print to the screen the rewritten form of the user's command.
2030 """Print to the screen the rewritten form of the user's command.
2031
2031
2032 This shows visual feedback by rewriting input lines that cause
2032 This shows visual feedback by rewriting input lines that cause
2033 automatic calling to kick in, like::
2033 automatic calling to kick in, like::
2034
2034
2035 /f x
2035 /f x
2036
2036
2037 into::
2037 into::
2038
2038
2039 ------> f(x)
2039 ------> f(x)
2040
2040
2041 after the user's input prompt. This helps the user understand that the
2041 after the user's input prompt. This helps the user understand that the
2042 input line was transformed automatically by IPython.
2042 input line was transformed automatically by IPython.
2043 """
2043 """
2044 rw = self.displayhook.prompt1.auto_rewrite() + cmd
2044 rw = self.displayhook.prompt1.auto_rewrite() + cmd
2045
2045
2046 try:
2046 try:
2047 # plain ascii works better w/ pyreadline, on some machines, so
2047 # plain ascii works better w/ pyreadline, on some machines, so
2048 # we use it and only print uncolored rewrite if we have unicode
2048 # we use it and only print uncolored rewrite if we have unicode
2049 rw = str(rw)
2049 rw = str(rw)
2050 print >> io.stdout, rw
2050 print >> io.stdout, rw
2051 except UnicodeEncodeError:
2051 except UnicodeEncodeError:
2052 print "------> " + cmd
2052 print "------> " + cmd
2053
2053
2054 #-------------------------------------------------------------------------
2054 #-------------------------------------------------------------------------
2055 # Things related to extracting values/expressions from kernel and user_ns
2055 # Things related to extracting values/expressions from kernel and user_ns
2056 #-------------------------------------------------------------------------
2056 #-------------------------------------------------------------------------
2057
2057
2058 def _simple_error(self):
2058 def _simple_error(self):
2059 etype, value = sys.exc_info()[:2]
2059 etype, value = sys.exc_info()[:2]
2060 return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value)
2060 return u'[ERROR] {e.__name__}: {v}'.format(e=etype, v=value)
2061
2061
2062 def user_variables(self, names):
2062 def user_variables(self, names):
2063 """Get a list of variable names from the user's namespace.
2063 """Get a list of variable names from the user's namespace.
2064
2064
2065 Parameters
2065 Parameters
2066 ----------
2066 ----------
2067 names : list of strings
2067 names : list of strings
2068 A list of names of variables to be read from the user namespace.
2068 A list of names of variables to be read from the user namespace.
2069
2069
2070 Returns
2070 Returns
2071 -------
2071 -------
2072 A dict, keyed by the input names and with the repr() of each value.
2072 A dict, keyed by the input names and with the repr() of each value.
2073 """
2073 """
2074 out = {}
2074 out = {}
2075 user_ns = self.user_ns
2075 user_ns = self.user_ns
2076 for varname in names:
2076 for varname in names:
2077 try:
2077 try:
2078 value = repr(user_ns[varname])
2078 value = repr(user_ns[varname])
2079 except:
2079 except:
2080 value = self._simple_error()
2080 value = self._simple_error()
2081 out[varname] = value
2081 out[varname] = value
2082 return out
2082 return out
2083
2083
2084 def user_expressions(self, expressions):
2084 def user_expressions(self, expressions):
2085 """Evaluate a dict of expressions in the user's namespace.
2085 """Evaluate a dict of expressions in the user's namespace.
2086
2086
2087 Parameters
2087 Parameters
2088 ----------
2088 ----------
2089 expressions : dict
2089 expressions : dict
2090 A dict with string keys and string values. The expression values
2090 A dict with string keys and string values. The expression values
2091 should be valid Python expressions, each of which will be evaluated
2091 should be valid Python expressions, each of which will be evaluated
2092 in the user namespace.
2092 in the user namespace.
2093
2093
2094 Returns
2094 Returns
2095 -------
2095 -------
2096 A dict, keyed like the input expressions dict, with the repr() of each
2096 A dict, keyed like the input expressions dict, with the repr() of each
2097 value.
2097 value.
2098 """
2098 """
2099 out = {}
2099 out = {}
2100 user_ns = self.user_ns
2100 user_ns = self.user_ns
2101 global_ns = self.user_global_ns
2101 global_ns = self.user_global_ns
2102 for key, expr in expressions.iteritems():
2102 for key, expr in expressions.iteritems():
2103 try:
2103 try:
2104 value = repr(eval(expr, global_ns, user_ns))
2104 value = repr(eval(expr, global_ns, user_ns))
2105 except:
2105 except:
2106 value = self._simple_error()
2106 value = self._simple_error()
2107 out[key] = value
2107 out[key] = value
2108 return out
2108 return out
2109
2109
2110 #-------------------------------------------------------------------------
2110 #-------------------------------------------------------------------------
2111 # Things related to the running of code
2111 # Things related to the running of code
2112 #-------------------------------------------------------------------------
2112 #-------------------------------------------------------------------------
2113
2113
2114 def ex(self, cmd):
2114 def ex(self, cmd):
2115 """Execute a normal python statement in user namespace."""
2115 """Execute a normal python statement in user namespace."""
2116 with self.builtin_trap:
2116 with self.builtin_trap:
2117 exec cmd in self.user_global_ns, self.user_ns
2117 exec cmd in self.user_global_ns, self.user_ns
2118
2118
2119 def ev(self, expr):
2119 def ev(self, expr):
2120 """Evaluate python expression expr in user namespace.
2120 """Evaluate python expression expr in user namespace.
2121
2121
2122 Returns the result of evaluation
2122 Returns the result of evaluation
2123 """
2123 """
2124 with self.builtin_trap:
2124 with self.builtin_trap:
2125 return eval(expr, self.user_global_ns, self.user_ns)
2125 return eval(expr, self.user_global_ns, self.user_ns)
2126
2126
2127 def safe_execfile(self, fname, *where, **kw):
2127 def safe_execfile(self, fname, *where, **kw):
2128 """A safe version of the builtin execfile().
2128 """A safe version of the builtin execfile().
2129
2129
2130 This version will never throw an exception, but instead print
2130 This version will never throw an exception, but instead print
2131 helpful error messages to the screen. This only works on pure
2131 helpful error messages to the screen. This only works on pure
2132 Python files with the .py extension.
2132 Python files with the .py extension.
2133
2133
2134 Parameters
2134 Parameters
2135 ----------
2135 ----------
2136 fname : string
2136 fname : string
2137 The name of the file to be executed.
2137 The name of the file to be executed.
2138 where : tuple
2138 where : tuple
2139 One or two namespaces, passed to execfile() as (globals,locals).
2139 One or two namespaces, passed to execfile() as (globals,locals).
2140 If only one is given, it is passed as both.
2140 If only one is given, it is passed as both.
2141 exit_ignore : bool (False)
2141 exit_ignore : bool (False)
2142 If True, then silence SystemExit for non-zero status (it is always
2142 If True, then silence SystemExit for non-zero status (it is always
2143 silenced for zero status, as it is so common).
2143 silenced for zero status, as it is so common).
2144 """
2144 """
2145 kw.setdefault('exit_ignore', False)
2145 kw.setdefault('exit_ignore', False)
2146
2146
2147 fname = os.path.abspath(os.path.expanduser(fname))
2147 fname = os.path.abspath(os.path.expanduser(fname))
2148 # Make sure we have a .py file
2148 # Make sure we have a .py file
2149 if not fname.endswith('.py'):
2149 if not fname.endswith('.py'):
2150 warn('File must end with .py to be run using execfile: <%s>' % fname)
2150 warn('File must end with .py to be run using execfile: <%s>' % fname)
2151
2151
2152 # Make sure we can open the file
2152 # Make sure we can open the file
2153 try:
2153 try:
2154 with open(fname) as thefile:
2154 with open(fname) as thefile:
2155 pass
2155 pass
2156 except:
2156 except:
2157 warn('Could not open file <%s> for safe execution.' % fname)
2157 warn('Could not open file <%s> for safe execution.' % fname)
2158 return
2158 return
2159
2159
2160 # Find things also in current directory. This is needed to mimic the
2160 # Find things also in current directory. This is needed to mimic the
2161 # behavior of running a script from the system command line, where
2161 # behavior of running a script from the system command line, where
2162 # Python inserts the script's directory into sys.path
2162 # Python inserts the script's directory into sys.path
2163 dname = os.path.dirname(fname)
2163 dname = os.path.dirname(fname)
2164
2164
2165 if isinstance(fname, unicode):
2165 if isinstance(fname, unicode):
2166 # execfile uses default encoding instead of filesystem encoding
2166 # execfile uses default encoding instead of filesystem encoding
2167 # so unicode filenames will fail
2167 # so unicode filenames will fail
2168 fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding())
2168 fname = fname.encode(sys.getfilesystemencoding() or sys.getdefaultencoding())
2169
2169
2170 with prepended_to_syspath(dname):
2170 with prepended_to_syspath(dname):
2171 try:
2171 try:
2172 execfile(fname,*where)
2172 execfile(fname,*where)
2173 except SystemExit, status:
2173 except SystemExit, status:
2174 # If the call was made with 0 or None exit status (sys.exit(0)
2174 # If the call was made with 0 or None exit status (sys.exit(0)
2175 # or sys.exit() ), don't bother showing a traceback, as both of
2175 # or sys.exit() ), don't bother showing a traceback, as both of
2176 # these are considered normal by the OS:
2176 # these are considered normal by the OS:
2177 # > python -c'import sys;sys.exit(0)'; echo $?
2177 # > python -c'import sys;sys.exit(0)'; echo $?
2178 # 0
2178 # 0
2179 # > python -c'import sys;sys.exit()'; echo $?
2179 # > python -c'import sys;sys.exit()'; echo $?
2180 # 0
2180 # 0
2181 # For other exit status, we show the exception unless
2181 # For other exit status, we show the exception unless
2182 # explicitly silenced, but only in short form.
2182 # explicitly silenced, but only in short form.
2183 if status.code not in (0, None) and not kw['exit_ignore']:
2183 if status.code not in (0, None) and not kw['exit_ignore']:
2184 self.showtraceback(exception_only=True)
2184 self.showtraceback(exception_only=True)
2185 except:
2185 except:
2186 self.showtraceback()
2186 self.showtraceback()
2187
2187
2188 def safe_execfile_ipy(self, fname):
2188 def safe_execfile_ipy(self, fname):
2189 """Like safe_execfile, but for .ipy files with IPython syntax.
2189 """Like safe_execfile, but for .ipy files with IPython syntax.
2190
2190
2191 Parameters
2191 Parameters
2192 ----------
2192 ----------
2193 fname : str
2193 fname : str
2194 The name of the file to execute. The filename must have a
2194 The name of the file to execute. The filename must have a
2195 .ipy extension.
2195 .ipy extension.
2196 """
2196 """
2197 fname = os.path.abspath(os.path.expanduser(fname))
2197 fname = os.path.abspath(os.path.expanduser(fname))
2198
2198
2199 # Make sure we have a .py file
2199 # Make sure we have a .py file
2200 if not fname.endswith('.ipy'):
2200 if not fname.endswith('.ipy'):
2201 warn('File must end with .py to be run using execfile: <%s>' % fname)
2201 warn('File must end with .py to be run using execfile: <%s>' % fname)
2202
2202
2203 # Make sure we can open the file
2203 # Make sure we can open the file
2204 try:
2204 try:
2205 with open(fname) as thefile:
2205 with open(fname) as thefile:
2206 pass
2206 pass
2207 except:
2207 except:
2208 warn('Could not open file <%s> for safe execution.' % fname)
2208 warn('Could not open file <%s> for safe execution.' % fname)
2209 return
2209 return
2210
2210
2211 # Find things also in current directory. This is needed to mimic the
2211 # Find things also in current directory. This is needed to mimic the
2212 # behavior of running a script from the system command line, where
2212 # behavior of running a script from the system command line, where
2213 # Python inserts the script's directory into sys.path
2213 # Python inserts the script's directory into sys.path
2214 dname = os.path.dirname(fname)
2214 dname = os.path.dirname(fname)
2215
2215
2216 with prepended_to_syspath(dname):
2216 with prepended_to_syspath(dname):
2217 try:
2217 try:
2218 with open(fname) as thefile:
2218 with open(fname) as thefile:
2219 # self.run_cell currently captures all exceptions
2219 # self.run_cell currently captures all exceptions
2220 # raised in user code. It would be nice if there were
2220 # raised in user code. It would be nice if there were
2221 # versions of runlines, execfile that did raise, so
2221 # versions of runlines, execfile that did raise, so
2222 # we could catch the errors.
2222 # we could catch the errors.
2223 self.run_cell(thefile.read(), store_history=False)
2223 self.run_cell(thefile.read(), store_history=False)
2224 except:
2224 except:
2225 self.showtraceback()
2225 self.showtraceback()
2226 warn('Unknown failure executing file: <%s>' % fname)
2226 warn('Unknown failure executing file: <%s>' % fname)
2227
2227
2228 def run_cell(self, raw_cell, store_history=True):
2228 def run_cell(self, raw_cell, store_history=True):
2229 """Run a complete IPython cell.
2229 """Run a complete IPython cell.
2230
2230
2231 Parameters
2231 Parameters
2232 ----------
2232 ----------
2233 raw_cell : str
2233 raw_cell : str
2234 The code (including IPython code such as %magic functions) to run.
2234 The code (including IPython code such as %magic functions) to run.
2235 store_history : bool
2235 store_history : bool
2236 If True, the raw and translated cell will be stored in IPython's
2236 If True, the raw and translated cell will be stored in IPython's
2237 history. For user code calling back into IPython's machinery, this
2237 history. For user code calling back into IPython's machinery, this
2238 should be set to False.
2238 should be set to False.
2239 """
2239 """
2240 if (not raw_cell) or raw_cell.isspace():
2240 if (not raw_cell) or raw_cell.isspace():
2241 return
2241 return
2242
2242
2243 for line in raw_cell.splitlines():
2243 for line in raw_cell.splitlines():
2244 self.input_splitter.push(line)
2244 self.input_splitter.push(line)
2245 cell = self.input_splitter.source_reset()
2245 cell = self.input_splitter.source_reset()
2246
2246
2247 with self.builtin_trap:
2247 with self.builtin_trap:
2248 prefilter_failed = False
2248 prefilter_failed = False
2249 if len(cell.splitlines()) == 1:
2249 if len(cell.splitlines()) == 1:
2250 try:
2250 try:
2251 # use prefilter_lines to handle trailing newlines
2251 # use prefilter_lines to handle trailing newlines
2252 # restore trailing newline for ast.parse
2252 # restore trailing newline for ast.parse
2253 cell = self.prefilter_manager.prefilter_lines(cell) + '\n'
2253 cell = self.prefilter_manager.prefilter_lines(cell) + '\n'
2254 except AliasError as e:
2254 except AliasError as e:
2255 error(e)
2255 error(e)
2256 prefilter_failed=True
2256 prefilter_failed=True
2257 except Exception:
2257 except Exception:
2258 # don't allow prefilter errors to crash IPython
2258 # don't allow prefilter errors to crash IPython
2259 self.showtraceback()
2259 self.showtraceback()
2260 prefilter_failed = True
2260 prefilter_failed = True
2261
2261
2262 # Store raw and processed history
2262 # Store raw and processed history
2263 if store_history:
2263 if store_history:
2264 self.history_manager.store_inputs(self.execution_count,
2264 self.history_manager.store_inputs(self.execution_count,
2265 cell, raw_cell)
2265 cell, raw_cell)
2266
2266
2267 self.logger.log(cell, raw_cell)
2267 self.logger.log(cell, raw_cell)
2268
2268
2269 if not prefilter_failed:
2269 if not prefilter_failed:
2270 # don't run if prefilter failed
2270 # don't run if prefilter failed
2271 cell_name = self.compile.cache(cell, self.execution_count)
2271 cell_name = self.compile.cache(cell, self.execution_count)
2272
2272
2273 with self.display_trap:
2273 with self.display_trap:
2274 try:
2274 try:
2275 code_ast = ast.parse(cell, filename=cell_name)
2275 code_ast = ast.parse(cell, filename=cell_name)
2276 except (OverflowError, SyntaxError, ValueError, TypeError,
2276 except (OverflowError, SyntaxError, ValueError, TypeError,
2277 MemoryError):
2277 MemoryError):
2278 self.showsyntaxerror()
2278 self.showsyntaxerror()
2279 self.execution_count += 1
2279 self.execution_count += 1
2280 return None
2280 return None
2281
2281
2282 self.run_ast_nodes(code_ast.body, cell_name,
2282 self.run_ast_nodes(code_ast.body, cell_name,
2283 interactivity="last_expr")
2283 interactivity="last_expr")
2284
2284
2285 # Execute any registered post-execution functions.
2285 # Execute any registered post-execution functions.
2286 for func, status in self._post_execute.iteritems():
2286 for func, status in self._post_execute.iteritems():
2287 if not status:
2287 if not status:
2288 continue
2288 continue
2289 try:
2289 try:
2290 func()
2290 func()
2291 except:
2291 except:
2292 self.showtraceback()
2292 self.showtraceback()
2293 # Deactivate failing function
2293 # Deactivate failing function
2294 self._post_execute[func] = False
2294 self._post_execute[func] = False
2295
2295
2296 if store_history:
2296 if store_history:
2297 # Write output to the database. Does nothing unless
2297 # Write output to the database. Does nothing unless
2298 # history output logging is enabled.
2298 # history output logging is enabled.
2299 self.history_manager.store_output(self.execution_count)
2299 self.history_manager.store_output(self.execution_count)
2300 # Each cell is a *single* input, regardless of how many lines it has
2300 # Each cell is a *single* input, regardless of how many lines it has
2301 self.execution_count += 1
2301 self.execution_count += 1
2302
2302
2303 def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'):
2303 def run_ast_nodes(self, nodelist, cell_name, interactivity='last_expr'):
2304 """Run a sequence of AST nodes. The execution mode depends on the
2304 """Run a sequence of AST nodes. The execution mode depends on the
2305 interactivity parameter.
2305 interactivity parameter.
2306
2306
2307 Parameters
2307 Parameters
2308 ----------
2308 ----------
2309 nodelist : list
2309 nodelist : list
2310 A sequence of AST nodes to run.
2310 A sequence of AST nodes to run.
2311 cell_name : str
2311 cell_name : str
2312 Will be passed to the compiler as the filename of the cell. Typically
2312 Will be passed to the compiler as the filename of the cell. Typically
2313 the value returned by ip.compile.cache(cell).
2313 the value returned by ip.compile.cache(cell).
2314 interactivity : str
2314 interactivity : str
2315 'all', 'last', 'last_expr' or 'none', specifying which nodes should be
2315 'all', 'last', 'last_expr' or 'none', specifying which nodes should be
2316 run interactively (displaying output from expressions). 'last_expr'
2316 run interactively (displaying output from expressions). 'last_expr'
2317 will run the last node interactively only if it is an expression (i.e.
2317 will run the last node interactively only if it is an expression (i.e.
2318 expressions in loops or other blocks are not displayed. Other values
2318 expressions in loops or other blocks are not displayed. Other values
2319 for this parameter will raise a ValueError.
2319 for this parameter will raise a ValueError.
2320 """
2320 """
2321 if not nodelist:
2321 if not nodelist:
2322 return
2322 return
2323
2323
2324 if interactivity == 'last_expr':
2324 if interactivity == 'last_expr':
2325 if isinstance(nodelist[-1], ast.Expr):
2325 if isinstance(nodelist[-1], ast.Expr):
2326 interactivity = "last"
2326 interactivity = "last"
2327 else:
2327 else:
2328 interactivity = "none"
2328 interactivity = "none"
2329
2329
2330 if interactivity == 'none':
2330 if interactivity == 'none':
2331 to_run_exec, to_run_interactive = nodelist, []
2331 to_run_exec, to_run_interactive = nodelist, []
2332 elif interactivity == 'last':
2332 elif interactivity == 'last':
2333 to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:]
2333 to_run_exec, to_run_interactive = nodelist[:-1], nodelist[-1:]
2334 elif interactivity == 'all':
2334 elif interactivity == 'all':
2335 to_run_exec, to_run_interactive = [], nodelist
2335 to_run_exec, to_run_interactive = [], nodelist
2336 else:
2336 else:
2337 raise ValueError("Interactivity was %r" % interactivity)
2337 raise ValueError("Interactivity was %r" % interactivity)
2338
2338
2339 exec_count = self.execution_count
2339 exec_count = self.execution_count
2340
2340
2341 for i, node in enumerate(to_run_exec):
2341 for i, node in enumerate(to_run_exec):
2342 mod = ast.Module([node])
2342 mod = ast.Module([node])
2343 code = self.compile(mod, cell_name, "exec")
2343 code = self.compile(mod, cell_name, "exec")
2344 if self.run_code(code):
2344 if self.run_code(code):
2345 return True
2345 return True
2346
2346
2347 for i, node in enumerate(to_run_interactive):
2347 for i, node in enumerate(to_run_interactive):
2348 mod = ast.Interactive([node])
2348 mod = ast.Interactive([node])
2349 code = self.compile(mod, cell_name, "single")
2349 code = self.compile(mod, cell_name, "single")
2350 if self.run_code(code):
2350 if self.run_code(code):
2351 return True
2351 return True
2352
2352
2353 return False
2353 return False
2354
2354
2355 def run_code(self, code_obj):
2355 def run_code(self, code_obj):
2356 """Execute a code object.
2356 """Execute a code object.
2357
2357
2358 When an exception occurs, self.showtraceback() is called to display a
2358 When an exception occurs, self.showtraceback() is called to display a
2359 traceback.
2359 traceback.
2360
2360
2361 Parameters
2361 Parameters
2362 ----------
2362 ----------
2363 code_obj : code object
2363 code_obj : code object
2364 A compiled code object, to be executed
2364 A compiled code object, to be executed
2365 post_execute : bool [default: True]
2365 post_execute : bool [default: True]
2366 whether to call post_execute hooks after this particular execution.
2366 whether to call post_execute hooks after this particular execution.
2367
2367
2368 Returns
2368 Returns
2369 -------
2369 -------
2370 False : successful execution.
2370 False : successful execution.
2371 True : an error occurred.
2371 True : an error occurred.
2372 """
2372 """
2373
2373
2374 # Set our own excepthook in case the user code tries to call it
2374 # Set our own excepthook in case the user code tries to call it
2375 # directly, so that the IPython crash handler doesn't get triggered
2375 # directly, so that the IPython crash handler doesn't get triggered
2376 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2376 old_excepthook,sys.excepthook = sys.excepthook, self.excepthook
2377
2377
2378 # we save the original sys.excepthook in the instance, in case config
2378 # we save the original sys.excepthook in the instance, in case config
2379 # code (such as magics) needs access to it.
2379 # code (such as magics) needs access to it.
2380 self.sys_excepthook = old_excepthook
2380 self.sys_excepthook = old_excepthook
2381 outflag = 1 # happens in more places, so it's easier as default
2381 outflag = 1 # happens in more places, so it's easier as default
2382 try:
2382 try:
2383 try:
2383 try:
2384 self.hooks.pre_run_code_hook()
2384 self.hooks.pre_run_code_hook()
2385 #rprint('Running code', repr(code_obj)) # dbg
2385 #rprint('Running code', repr(code_obj)) # dbg
2386 exec code_obj in self.user_global_ns, self.user_ns
2386 exec code_obj in self.user_global_ns, self.user_ns
2387 finally:
2387 finally:
2388 # Reset our crash handler in place
2388 # Reset our crash handler in place
2389 sys.excepthook = old_excepthook
2389 sys.excepthook = old_excepthook
2390 except SystemExit:
2390 except SystemExit:
2391 self.showtraceback(exception_only=True)
2391 self.showtraceback(exception_only=True)
2392 warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1)
2392 warn("To exit: use 'exit', 'quit', or Ctrl-D.", level=1)
2393 except self.custom_exceptions:
2393 except self.custom_exceptions:
2394 etype,value,tb = sys.exc_info()
2394 etype,value,tb = sys.exc_info()
2395 self.CustomTB(etype,value,tb)
2395 self.CustomTB(etype,value,tb)
2396 except:
2396 except:
2397 self.showtraceback()
2397 self.showtraceback()
2398 else:
2398 else:
2399 outflag = 0
2399 outflag = 0
2400 if softspace(sys.stdout, 0):
2400 if softspace(sys.stdout, 0):
2401 print
2401 print
2402
2402
2403 return outflag
2403 return outflag
2404
2404
2405 # For backwards compatibility
2405 # For backwards compatibility
2406 runcode = run_code
2406 runcode = run_code
2407
2407
2408 #-------------------------------------------------------------------------
2408 #-------------------------------------------------------------------------
2409 # Things related to GUI support and pylab
2409 # Things related to GUI support and pylab
2410 #-------------------------------------------------------------------------
2410 #-------------------------------------------------------------------------
2411
2411
2412 def enable_pylab(self, gui=None):
2412 def enable_pylab(self, gui=None):
2413 raise NotImplementedError('Implement enable_pylab in a subclass')
2413 raise NotImplementedError('Implement enable_pylab in a subclass')
2414
2414
2415 #-------------------------------------------------------------------------
2415 #-------------------------------------------------------------------------
2416 # Utilities
2416 # Utilities
2417 #-------------------------------------------------------------------------
2417 #-------------------------------------------------------------------------
2418
2418
2419 def var_expand(self,cmd,depth=0):
2419 def var_expand(self,cmd,depth=0):
2420 """Expand python variables in a string.
2420 """Expand python variables in a string.
2421
2421
2422 The depth argument indicates how many frames above the caller should
2422 The depth argument indicates how many frames above the caller should
2423 be walked to look for the local namespace where to expand variables.
2423 be walked to look for the local namespace where to expand variables.
2424
2424
2425 The global namespace for expansion is always the user's interactive
2425 The global namespace for expansion is always the user's interactive
2426 namespace.
2426 namespace.
2427 """
2427 """
2428 res = ItplNS(cmd, self.user_ns, # globals
2428 res = ItplNS(cmd, self.user_ns, # globals
2429 # Skip our own frame in searching for locals:
2429 # Skip our own frame in searching for locals:
2430 sys._getframe(depth+1).f_locals # locals
2430 sys._getframe(depth+1).f_locals # locals
2431 )
2431 )
2432 return str(res).decode(res.codec)
2432 return str(res).decode(res.codec)
2433
2433
2434 def mktempfile(self, data=None, prefix='ipython_edit_'):
2434 def mktempfile(self, data=None, prefix='ipython_edit_'):
2435 """Make a new tempfile and return its filename.
2435 """Make a new tempfile and return its filename.
2436
2436
2437 This makes a call to tempfile.mktemp, but it registers the created
2437 This makes a call to tempfile.mktemp, but it registers the created
2438 filename internally so ipython cleans it up at exit time.
2438 filename internally so ipython cleans it up at exit time.
2439
2439
2440 Optional inputs:
2440 Optional inputs:
2441
2441
2442 - data(None): if data is given, it gets written out to the temp file
2442 - data(None): if data is given, it gets written out to the temp file
2443 immediately, and the file is closed again."""
2443 immediately, and the file is closed again."""
2444
2444
2445 filename = tempfile.mktemp('.py', prefix)
2445 filename = tempfile.mktemp('.py', prefix)
2446 self.tempfiles.append(filename)
2446 self.tempfiles.append(filename)
2447
2447
2448 if data:
2448 if data:
2449 tmp_file = open(filename,'w')
2449 tmp_file = open(filename,'w')
2450 tmp_file.write(data)
2450 tmp_file.write(data)
2451 tmp_file.close()
2451 tmp_file.close()
2452 return filename
2452 return filename
2453
2453
2454 # TODO: This should be removed when Term is refactored.
2454 # TODO: This should be removed when Term is refactored.
2455 def write(self,data):
2455 def write(self,data):
2456 """Write a string to the default output"""
2456 """Write a string to the default output"""
2457 io.stdout.write(data)
2457 io.stdout.write(data)
2458
2458
2459 # TODO: This should be removed when Term is refactored.
2459 # TODO: This should be removed when Term is refactored.
2460 def write_err(self,data):
2460 def write_err(self,data):
2461 """Write a string to the default error output"""
2461 """Write a string to the default error output"""
2462 io.stderr.write(data)
2462 io.stderr.write(data)
2463
2463
2464 def ask_yes_no(self,prompt,default=True):
2464 def ask_yes_no(self,prompt,default=True):
2465 if self.quiet:
2465 if self.quiet:
2466 return True
2466 return True
2467 return ask_yes_no(prompt,default)
2467 return ask_yes_no(prompt,default)
2468
2468
2469 def show_usage(self):
2469 def show_usage(self):
2470 """Show a usage message"""
2470 """Show a usage message"""
2471 page.page(IPython.core.usage.interactive_usage)
2471 page.page(IPython.core.usage.interactive_usage)
2472
2472
2473 def find_user_code(self, target, raw=True):
2473 def find_user_code(self, target, raw=True):
2474 """Get a code string from history, file, or a string or macro.
2474 """Get a code string from history, file, or a string or macro.
2475
2475
2476 This is mainly used by magic functions.
2476 This is mainly used by magic functions.
2477
2477
2478 Parameters
2478 Parameters
2479 ----------
2479 ----------
2480 target : str
2480 target : str
2481 A string specifying code to retrieve. This will be tried respectively
2481 A string specifying code to retrieve. This will be tried respectively
2482 as: ranges of input history (see %history for syntax), a filename, or
2482 as: ranges of input history (see %history for syntax), a filename, or
2483 an expression evaluating to a string or Macro in the user namespace.
2483 an expression evaluating to a string or Macro in the user namespace.
2484 raw : bool
2484 raw : bool
2485 If true (default), retrieve raw history. Has no effect on the other
2485 If true (default), retrieve raw history. Has no effect on the other
2486 retrieval mechanisms.
2486 retrieval mechanisms.
2487
2487
2488 Returns
2488 Returns
2489 -------
2489 -------
2490 A string of code.
2490 A string of code.
2491
2491
2492 ValueError is raised if nothing is found, and TypeError if it evaluates
2492 ValueError is raised if nothing is found, and TypeError if it evaluates
2493 to an object of another type. In each case, .args[0] is a printable
2493 to an object of another type. In each case, .args[0] is a printable
2494 message.
2494 message.
2495 """
2495 """
2496 code = self.extract_input_lines(target, raw=raw) # Grab history
2496 code = self.extract_input_lines(target, raw=raw) # Grab history
2497 if code:
2497 if code:
2498 return code
2498 return code
2499 if os.path.isfile(target): # Read file
2499 if os.path.isfile(target): # Read file
2500 return open(target, "r").read()
2500 return open(target, "r").read()
2501
2501
2502 try: # User namespace
2502 try: # User namespace
2503 codeobj = eval(target, self.user_ns)
2503 codeobj = eval(target, self.user_ns)
2504 except Exception:
2504 except Exception:
2505 raise ValueError(("'%s' was not found in history, as a file, nor in"
2505 raise ValueError(("'%s' was not found in history, as a file, nor in"
2506 " the user namespace.") % target)
2506 " the user namespace.") % target)
2507 if isinstance(codeobj, basestring):
2507 if isinstance(codeobj, basestring):
2508 return codeobj
2508 return codeobj
2509 elif isinstance(codeobj, Macro):
2509 elif isinstance(codeobj, Macro):
2510 return codeobj.value
2510 return codeobj.value
2511
2511
2512 raise TypeError("%s is neither a string nor a macro." % target,
2512 raise TypeError("%s is neither a string nor a macro." % target,
2513 codeobj)
2513 codeobj)
2514
2514
2515 #-------------------------------------------------------------------------
2515 #-------------------------------------------------------------------------
2516 # Things related to IPython exiting
2516 # Things related to IPython exiting
2517 #-------------------------------------------------------------------------
2517 #-------------------------------------------------------------------------
2518 def atexit_operations(self):
2518 def atexit_operations(self):
2519 """This will be executed at the time of exit.
2519 """This will be executed at the time of exit.
2520
2520
2521 Cleanup operations and saving of persistent data that is done
2521 Cleanup operations and saving of persistent data that is done
2522 unconditionally by IPython should be performed here.
2522 unconditionally by IPython should be performed here.
2523
2523
2524 For things that may depend on startup flags or platform specifics (such
2524 For things that may depend on startup flags or platform specifics (such
2525 as having readline or not), register a separate atexit function in the
2525 as having readline or not), register a separate atexit function in the
2526 code that has the appropriate information, rather than trying to
2526 code that has the appropriate information, rather than trying to
2527 clutter
2527 clutter
2528 """
2528 """
2529 # Cleanup all tempfiles left around
2529 # Cleanup all tempfiles left around
2530 for tfile in self.tempfiles:
2530 for tfile in self.tempfiles:
2531 try:
2531 try:
2532 os.unlink(tfile)
2532 os.unlink(tfile)
2533 except OSError:
2533 except OSError:
2534 pass
2534 pass
2535
2535
2536 # Close the history session (this stores the end time and line count)
2536 # Close the history session (this stores the end time and line count)
2537 self.history_manager.end_session()
2537 self.history_manager.end_session()
2538
2538
2539 # Clear all user namespaces to release all references cleanly.
2539 # Clear all user namespaces to release all references cleanly.
2540 self.reset(new_session=False)
2540 self.reset(new_session=False)
2541
2541
2542 # Run user hooks
2542 # Run user hooks
2543 self.hooks.shutdown_hook()
2543 self.hooks.shutdown_hook()
2544
2544
2545 def cleanup(self):
2545 def cleanup(self):
2546 self.restore_sys_module_state()
2546 self.restore_sys_module_state()
2547
2547
2548
2548
2549 class InteractiveShellABC(object):
2549 class InteractiveShellABC(object):
2550 """An abstract base class for InteractiveShell."""
2550 """An abstract base class for InteractiveShell."""
2551 __metaclass__ = abc.ABCMeta
2551 __metaclass__ = abc.ABCMeta
2552
2552
2553 InteractiveShellABC.register(InteractiveShell)
2553 InteractiveShellABC.register(InteractiveShell)
@@ -1,3504 +1,3504 b''
1 # encoding: utf-8
1 # encoding: utf-8
2 """Magic functions for InteractiveShell.
2 """Magic functions for InteractiveShell.
3 """
3 """
4
4
5 #-----------------------------------------------------------------------------
5 #-----------------------------------------------------------------------------
6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
6 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
7 # Copyright (C) 2001-2007 Fernando Perez <fperez@colorado.edu>
8 # Copyright (C) 2008-2009 The IPython Development Team
8 # Copyright (C) 2008-2009 The IPython Development Team
9
9
10 # Distributed under the terms of the BSD License. The full license is in
10 # Distributed under the terms of the BSD License. The full license is in
11 # the file COPYING, distributed as part of this software.
11 # the file COPYING, distributed as part of this software.
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13
13
14 #-----------------------------------------------------------------------------
14 #-----------------------------------------------------------------------------
15 # Imports
15 # Imports
16 #-----------------------------------------------------------------------------
16 #-----------------------------------------------------------------------------
17
17
18 import __builtin__
18 import __builtin__
19 import __future__
19 import __future__
20 import bdb
20 import bdb
21 import inspect
21 import inspect
22 import os
22 import os
23 import sys
23 import sys
24 import shutil
24 import shutil
25 import re
25 import re
26 import time
26 import time
27 import textwrap
27 import textwrap
28 from cStringIO import StringIO
28 from cStringIO import StringIO
29 from getopt import getopt,GetoptError
29 from getopt import getopt,GetoptError
30 from pprint import pformat
30 from pprint import pformat
31 from xmlrpclib import ServerProxy
31 from xmlrpclib import ServerProxy
32
32
33 # cProfile was added in Python2.5
33 # cProfile was added in Python2.5
34 try:
34 try:
35 import cProfile as profile
35 import cProfile as profile
36 import pstats
36 import pstats
37 except ImportError:
37 except ImportError:
38 # profile isn't bundled by default in Debian for license reasons
38 # profile isn't bundled by default in Debian for license reasons
39 try:
39 try:
40 import profile,pstats
40 import profile,pstats
41 except ImportError:
41 except ImportError:
42 profile = pstats = None
42 profile = pstats = None
43
43
44 import IPython
44 import IPython
45 from IPython.core import debugger, oinspect
45 from IPython.core import debugger, oinspect
46 from IPython.core.error import TryNext
46 from IPython.core.error import TryNext
47 from IPython.core.error import UsageError
47 from IPython.core.error import UsageError
48 from IPython.core.fakemodule import FakeModule
48 from IPython.core.fakemodule import FakeModule
49 from IPython.core.application import ProfileDir
49 from IPython.core.profiledir import ProfileDir
50 from IPython.core.macro import Macro
50 from IPython.core.macro import Macro
51 from IPython.core import page
51 from IPython.core import page
52 from IPython.core.prefilter import ESC_MAGIC
52 from IPython.core.prefilter import ESC_MAGIC
53 from IPython.lib.pylabtools import mpl_runner
53 from IPython.lib.pylabtools import mpl_runner
54 from IPython.external.Itpl import itpl, printpl
54 from IPython.external.Itpl import itpl, printpl
55 from IPython.testing.skipdoctest import skip_doctest
55 from IPython.testing.skipdoctest import skip_doctest
56 from IPython.utils.io import file_read, nlprint
56 from IPython.utils.io import file_read, nlprint
57 from IPython.utils.path import get_py_filename
57 from IPython.utils.path import get_py_filename
58 from IPython.utils.process import arg_split, abbrev_cwd
58 from IPython.utils.process import arg_split, abbrev_cwd
59 from IPython.utils.terminal import set_term_title
59 from IPython.utils.terminal import set_term_title
60 from IPython.utils.text import LSString, SList, format_screen
60 from IPython.utils.text import LSString, SList, format_screen
61 from IPython.utils.timing import clock, clock2
61 from IPython.utils.timing import clock, clock2
62 from IPython.utils.warn import warn, error
62 from IPython.utils.warn import warn, error
63 from IPython.utils.ipstruct import Struct
63 from IPython.utils.ipstruct import Struct
64 import IPython.utils.generics
64 import IPython.utils.generics
65
65
66 #-----------------------------------------------------------------------------
66 #-----------------------------------------------------------------------------
67 # Utility functions
67 # Utility functions
68 #-----------------------------------------------------------------------------
68 #-----------------------------------------------------------------------------
69
69
70 def on_off(tag):
70 def on_off(tag):
71 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
71 """Return an ON/OFF string for a 1/0 input. Simple utility function."""
72 return ['OFF','ON'][tag]
72 return ['OFF','ON'][tag]
73
73
74 class Bunch: pass
74 class Bunch: pass
75
75
76 def compress_dhist(dh):
76 def compress_dhist(dh):
77 head, tail = dh[:-10], dh[-10:]
77 head, tail = dh[:-10], dh[-10:]
78
78
79 newhead = []
79 newhead = []
80 done = set()
80 done = set()
81 for h in head:
81 for h in head:
82 if h in done:
82 if h in done:
83 continue
83 continue
84 newhead.append(h)
84 newhead.append(h)
85 done.add(h)
85 done.add(h)
86
86
87 return newhead + tail
87 return newhead + tail
88
88
89 def needs_local_scope(func):
89 def needs_local_scope(func):
90 """Decorator to mark magic functions which need to local scope to run."""
90 """Decorator to mark magic functions which need to local scope to run."""
91 func.needs_local_scope = True
91 func.needs_local_scope = True
92 return func
92 return func
93
93
94 # Used for exception handling in magic_edit
94 # Used for exception handling in magic_edit
95 class MacroToEdit(ValueError): pass
95 class MacroToEdit(ValueError): pass
96
96
97 #***************************************************************************
97 #***************************************************************************
98 # Main class implementing Magic functionality
98 # Main class implementing Magic functionality
99
99
100 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
100 # XXX - for some odd reason, if Magic is made a new-style class, we get errors
101 # on construction of the main InteractiveShell object. Something odd is going
101 # on construction of the main InteractiveShell object. Something odd is going
102 # on with super() calls, Configurable and the MRO... For now leave it as-is, but
102 # on with super() calls, Configurable and the MRO... For now leave it as-is, but
103 # eventually this needs to be clarified.
103 # eventually this needs to be clarified.
104 # BG: This is because InteractiveShell inherits from this, but is itself a
104 # BG: This is because InteractiveShell inherits from this, but is itself a
105 # Configurable. This messes up the MRO in some way. The fix is that we need to
105 # Configurable. This messes up the MRO in some way. The fix is that we need to
106 # make Magic a configurable that InteractiveShell does not subclass.
106 # make Magic a configurable that InteractiveShell does not subclass.
107
107
108 class Magic:
108 class Magic:
109 """Magic functions for InteractiveShell.
109 """Magic functions for InteractiveShell.
110
110
111 Shell functions which can be reached as %function_name. All magic
111 Shell functions which can be reached as %function_name. All magic
112 functions should accept a string, which they can parse for their own
112 functions should accept a string, which they can parse for their own
113 needs. This can make some functions easier to type, eg `%cd ../`
113 needs. This can make some functions easier to type, eg `%cd ../`
114 vs. `%cd("../")`
114 vs. `%cd("../")`
115
115
116 ALL definitions MUST begin with the prefix magic_. The user won't need it
116 ALL definitions MUST begin with the prefix magic_. The user won't need it
117 at the command line, but it is is needed in the definition. """
117 at the command line, but it is is needed in the definition. """
118
118
119 # class globals
119 # class globals
120 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
120 auto_status = ['Automagic is OFF, % prefix IS needed for magic functions.',
121 'Automagic is ON, % prefix NOT needed for magic functions.']
121 'Automagic is ON, % prefix NOT needed for magic functions.']
122
122
123 #......................................................................
123 #......................................................................
124 # some utility functions
124 # some utility functions
125
125
126 def __init__(self,shell):
126 def __init__(self,shell):
127
127
128 self.options_table = {}
128 self.options_table = {}
129 if profile is None:
129 if profile is None:
130 self.magic_prun = self.profile_missing_notice
130 self.magic_prun = self.profile_missing_notice
131 self.shell = shell
131 self.shell = shell
132
132
133 # namespace for holding state we may need
133 # namespace for holding state we may need
134 self._magic_state = Bunch()
134 self._magic_state = Bunch()
135
135
136 def profile_missing_notice(self, *args, **kwargs):
136 def profile_missing_notice(self, *args, **kwargs):
137 error("""\
137 error("""\
138 The profile module could not be found. It has been removed from the standard
138 The profile module could not be found. It has been removed from the standard
139 python packages because of its non-free license. To use profiling, install the
139 python packages because of its non-free license. To use profiling, install the
140 python-profiler package from non-free.""")
140 python-profiler package from non-free.""")
141
141
142 def default_option(self,fn,optstr):
142 def default_option(self,fn,optstr):
143 """Make an entry in the options_table for fn, with value optstr"""
143 """Make an entry in the options_table for fn, with value optstr"""
144
144
145 if fn not in self.lsmagic():
145 if fn not in self.lsmagic():
146 error("%s is not a magic function" % fn)
146 error("%s is not a magic function" % fn)
147 self.options_table[fn] = optstr
147 self.options_table[fn] = optstr
148
148
149 def lsmagic(self):
149 def lsmagic(self):
150 """Return a list of currently available magic functions.
150 """Return a list of currently available magic functions.
151
151
152 Gives a list of the bare names after mangling (['ls','cd', ...], not
152 Gives a list of the bare names after mangling (['ls','cd', ...], not
153 ['magic_ls','magic_cd',...]"""
153 ['magic_ls','magic_cd',...]"""
154
154
155 # FIXME. This needs a cleanup, in the way the magics list is built.
155 # FIXME. This needs a cleanup, in the way the magics list is built.
156
156
157 # magics in class definition
157 # magics in class definition
158 class_magic = lambda fn: fn.startswith('magic_') and \
158 class_magic = lambda fn: fn.startswith('magic_') and \
159 callable(Magic.__dict__[fn])
159 callable(Magic.__dict__[fn])
160 # in instance namespace (run-time user additions)
160 # in instance namespace (run-time user additions)
161 inst_magic = lambda fn: fn.startswith('magic_') and \
161 inst_magic = lambda fn: fn.startswith('magic_') and \
162 callable(self.__dict__[fn])
162 callable(self.__dict__[fn])
163 # and bound magics by user (so they can access self):
163 # and bound magics by user (so they can access self):
164 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
164 inst_bound_magic = lambda fn: fn.startswith('magic_') and \
165 callable(self.__class__.__dict__[fn])
165 callable(self.__class__.__dict__[fn])
166 magics = filter(class_magic,Magic.__dict__.keys()) + \
166 magics = filter(class_magic,Magic.__dict__.keys()) + \
167 filter(inst_magic,self.__dict__.keys()) + \
167 filter(inst_magic,self.__dict__.keys()) + \
168 filter(inst_bound_magic,self.__class__.__dict__.keys())
168 filter(inst_bound_magic,self.__class__.__dict__.keys())
169 out = []
169 out = []
170 for fn in set(magics):
170 for fn in set(magics):
171 out.append(fn.replace('magic_','',1))
171 out.append(fn.replace('magic_','',1))
172 out.sort()
172 out.sort()
173 return out
173 return out
174
174
175 def extract_input_lines(self, range_str, raw=False):
175 def extract_input_lines(self, range_str, raw=False):
176 """Return as a string a set of input history slices.
176 """Return as a string a set of input history slices.
177
177
178 Inputs:
178 Inputs:
179
179
180 - range_str: the set of slices is given as a string, like
180 - range_str: the set of slices is given as a string, like
181 "~5/6-~4/2 4:8 9", since this function is for use by magic functions
181 "~5/6-~4/2 4:8 9", since this function is for use by magic functions
182 which get their arguments as strings. The number before the / is the
182 which get their arguments as strings. The number before the / is the
183 session number: ~n goes n back from the current session.
183 session number: ~n goes n back from the current session.
184
184
185 Optional inputs:
185 Optional inputs:
186
186
187 - raw(False): by default, the processed input is used. If this is
187 - raw(False): by default, the processed input is used. If this is
188 true, the raw input history is used instead.
188 true, the raw input history is used instead.
189
189
190 Note that slices can be called with two notations:
190 Note that slices can be called with two notations:
191
191
192 N:M -> standard python form, means including items N...(M-1).
192 N:M -> standard python form, means including items N...(M-1).
193
193
194 N-M -> include items N..M (closed endpoint)."""
194 N-M -> include items N..M (closed endpoint)."""
195 lines = self.shell.history_manager.\
195 lines = self.shell.history_manager.\
196 get_range_by_str(range_str, raw=raw)
196 get_range_by_str(range_str, raw=raw)
197 return "\n".join(x for _, _, x in lines)
197 return "\n".join(x for _, _, x in lines)
198
198
199 def arg_err(self,func):
199 def arg_err(self,func):
200 """Print docstring if incorrect arguments were passed"""
200 """Print docstring if incorrect arguments were passed"""
201 print 'Error in arguments:'
201 print 'Error in arguments:'
202 print oinspect.getdoc(func)
202 print oinspect.getdoc(func)
203
203
204 def format_latex(self,strng):
204 def format_latex(self,strng):
205 """Format a string for latex inclusion."""
205 """Format a string for latex inclusion."""
206
206
207 # Characters that need to be escaped for latex:
207 # Characters that need to be escaped for latex:
208 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
208 escape_re = re.compile(r'(%|_|\$|#|&)',re.MULTILINE)
209 # Magic command names as headers:
209 # Magic command names as headers:
210 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
210 cmd_name_re = re.compile(r'^(%s.*?):' % ESC_MAGIC,
211 re.MULTILINE)
211 re.MULTILINE)
212 # Magic commands
212 # Magic commands
213 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
213 cmd_re = re.compile(r'(?P<cmd>%s.+?\b)(?!\}\}:)' % ESC_MAGIC,
214 re.MULTILINE)
214 re.MULTILINE)
215 # Paragraph continue
215 # Paragraph continue
216 par_re = re.compile(r'\\$',re.MULTILINE)
216 par_re = re.compile(r'\\$',re.MULTILINE)
217
217
218 # The "\n" symbol
218 # The "\n" symbol
219 newline_re = re.compile(r'\\n')
219 newline_re = re.compile(r'\\n')
220
220
221 # Now build the string for output:
221 # Now build the string for output:
222 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
222 #strng = cmd_name_re.sub(r'\n\\texttt{\\textsl{\\large \1}}:',strng)
223 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
223 strng = cmd_name_re.sub(r'\n\\bigskip\n\\texttt{\\textbf{ \1}}:',
224 strng)
224 strng)
225 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
225 strng = cmd_re.sub(r'\\texttt{\g<cmd>}',strng)
226 strng = par_re.sub(r'\\\\',strng)
226 strng = par_re.sub(r'\\\\',strng)
227 strng = escape_re.sub(r'\\\1',strng)
227 strng = escape_re.sub(r'\\\1',strng)
228 strng = newline_re.sub(r'\\textbackslash{}n',strng)
228 strng = newline_re.sub(r'\\textbackslash{}n',strng)
229 return strng
229 return strng
230
230
231 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
231 def parse_options(self,arg_str,opt_str,*long_opts,**kw):
232 """Parse options passed to an argument string.
232 """Parse options passed to an argument string.
233
233
234 The interface is similar to that of getopt(), but it returns back a
234 The interface is similar to that of getopt(), but it returns back a
235 Struct with the options as keys and the stripped argument string still
235 Struct with the options as keys and the stripped argument string still
236 as a string.
236 as a string.
237
237
238 arg_str is quoted as a true sys.argv vector by using shlex.split.
238 arg_str is quoted as a true sys.argv vector by using shlex.split.
239 This allows us to easily expand variables, glob files, quote
239 This allows us to easily expand variables, glob files, quote
240 arguments, etc.
240 arguments, etc.
241
241
242 Options:
242 Options:
243 -mode: default 'string'. If given as 'list', the argument string is
243 -mode: default 'string'. If given as 'list', the argument string is
244 returned as a list (split on whitespace) instead of a string.
244 returned as a list (split on whitespace) instead of a string.
245
245
246 -list_all: put all option values in lists. Normally only options
246 -list_all: put all option values in lists. Normally only options
247 appearing more than once are put in a list.
247 appearing more than once are put in a list.
248
248
249 -posix (True): whether to split the input line in POSIX mode or not,
249 -posix (True): whether to split the input line in POSIX mode or not,
250 as per the conventions outlined in the shlex module from the
250 as per the conventions outlined in the shlex module from the
251 standard library."""
251 standard library."""
252
252
253 # inject default options at the beginning of the input line
253 # inject default options at the beginning of the input line
254 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
254 caller = sys._getframe(1).f_code.co_name.replace('magic_','')
255 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
255 arg_str = '%s %s' % (self.options_table.get(caller,''),arg_str)
256
256
257 mode = kw.get('mode','string')
257 mode = kw.get('mode','string')
258 if mode not in ['string','list']:
258 if mode not in ['string','list']:
259 raise ValueError,'incorrect mode given: %s' % mode
259 raise ValueError,'incorrect mode given: %s' % mode
260 # Get options
260 # Get options
261 list_all = kw.get('list_all',0)
261 list_all = kw.get('list_all',0)
262 posix = kw.get('posix', os.name == 'posix')
262 posix = kw.get('posix', os.name == 'posix')
263
263
264 # Check if we have more than one argument to warrant extra processing:
264 # Check if we have more than one argument to warrant extra processing:
265 odict = {} # Dictionary with options
265 odict = {} # Dictionary with options
266 args = arg_str.split()
266 args = arg_str.split()
267 if len(args) >= 1:
267 if len(args) >= 1:
268 # If the list of inputs only has 0 or 1 thing in it, there's no
268 # If the list of inputs only has 0 or 1 thing in it, there's no
269 # need to look for options
269 # need to look for options
270 argv = arg_split(arg_str,posix)
270 argv = arg_split(arg_str,posix)
271 # Do regular option processing
271 # Do regular option processing
272 try:
272 try:
273 opts,args = getopt(argv,opt_str,*long_opts)
273 opts,args = getopt(argv,opt_str,*long_opts)
274 except GetoptError,e:
274 except GetoptError,e:
275 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
275 raise UsageError('%s ( allowed: "%s" %s)' % (e.msg,opt_str,
276 " ".join(long_opts)))
276 " ".join(long_opts)))
277 for o,a in opts:
277 for o,a in opts:
278 if o.startswith('--'):
278 if o.startswith('--'):
279 o = o[2:]
279 o = o[2:]
280 else:
280 else:
281 o = o[1:]
281 o = o[1:]
282 try:
282 try:
283 odict[o].append(a)
283 odict[o].append(a)
284 except AttributeError:
284 except AttributeError:
285 odict[o] = [odict[o],a]
285 odict[o] = [odict[o],a]
286 except KeyError:
286 except KeyError:
287 if list_all:
287 if list_all:
288 odict[o] = [a]
288 odict[o] = [a]
289 else:
289 else:
290 odict[o] = a
290 odict[o] = a
291
291
292 # Prepare opts,args for return
292 # Prepare opts,args for return
293 opts = Struct(odict)
293 opts = Struct(odict)
294 if mode == 'string':
294 if mode == 'string':
295 args = ' '.join(args)
295 args = ' '.join(args)
296
296
297 return opts,args
297 return opts,args
298
298
299 #......................................................................
299 #......................................................................
300 # And now the actual magic functions
300 # And now the actual magic functions
301
301
302 # Functions for IPython shell work (vars,funcs, config, etc)
302 # Functions for IPython shell work (vars,funcs, config, etc)
303 def magic_lsmagic(self, parameter_s = ''):
303 def magic_lsmagic(self, parameter_s = ''):
304 """List currently available magic functions."""
304 """List currently available magic functions."""
305 mesc = ESC_MAGIC
305 mesc = ESC_MAGIC
306 print 'Available magic functions:\n'+mesc+\
306 print 'Available magic functions:\n'+mesc+\
307 (' '+mesc).join(self.lsmagic())
307 (' '+mesc).join(self.lsmagic())
308 print '\n' + Magic.auto_status[self.shell.automagic]
308 print '\n' + Magic.auto_status[self.shell.automagic]
309 return None
309 return None
310
310
311 def magic_magic(self, parameter_s = ''):
311 def magic_magic(self, parameter_s = ''):
312 """Print information about the magic function system.
312 """Print information about the magic function system.
313
313
314 Supported formats: -latex, -brief, -rest
314 Supported formats: -latex, -brief, -rest
315 """
315 """
316
316
317 mode = ''
317 mode = ''
318 try:
318 try:
319 if parameter_s.split()[0] == '-latex':
319 if parameter_s.split()[0] == '-latex':
320 mode = 'latex'
320 mode = 'latex'
321 if parameter_s.split()[0] == '-brief':
321 if parameter_s.split()[0] == '-brief':
322 mode = 'brief'
322 mode = 'brief'
323 if parameter_s.split()[0] == '-rest':
323 if parameter_s.split()[0] == '-rest':
324 mode = 'rest'
324 mode = 'rest'
325 rest_docs = []
325 rest_docs = []
326 except:
326 except:
327 pass
327 pass
328
328
329 magic_docs = []
329 magic_docs = []
330 for fname in self.lsmagic():
330 for fname in self.lsmagic():
331 mname = 'magic_' + fname
331 mname = 'magic_' + fname
332 for space in (Magic,self,self.__class__):
332 for space in (Magic,self,self.__class__):
333 try:
333 try:
334 fn = space.__dict__[mname]
334 fn = space.__dict__[mname]
335 except KeyError:
335 except KeyError:
336 pass
336 pass
337 else:
337 else:
338 break
338 break
339 if mode == 'brief':
339 if mode == 'brief':
340 # only first line
340 # only first line
341 if fn.__doc__:
341 if fn.__doc__:
342 fndoc = fn.__doc__.split('\n',1)[0]
342 fndoc = fn.__doc__.split('\n',1)[0]
343 else:
343 else:
344 fndoc = 'No documentation'
344 fndoc = 'No documentation'
345 else:
345 else:
346 if fn.__doc__:
346 if fn.__doc__:
347 fndoc = fn.__doc__.rstrip()
347 fndoc = fn.__doc__.rstrip()
348 else:
348 else:
349 fndoc = 'No documentation'
349 fndoc = 'No documentation'
350
350
351
351
352 if mode == 'rest':
352 if mode == 'rest':
353 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
353 rest_docs.append('**%s%s**::\n\n\t%s\n\n' %(ESC_MAGIC,
354 fname,fndoc))
354 fname,fndoc))
355
355
356 else:
356 else:
357 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
357 magic_docs.append('%s%s:\n\t%s\n' %(ESC_MAGIC,
358 fname,fndoc))
358 fname,fndoc))
359
359
360 magic_docs = ''.join(magic_docs)
360 magic_docs = ''.join(magic_docs)
361
361
362 if mode == 'rest':
362 if mode == 'rest':
363 return "".join(rest_docs)
363 return "".join(rest_docs)
364
364
365 if mode == 'latex':
365 if mode == 'latex':
366 print self.format_latex(magic_docs)
366 print self.format_latex(magic_docs)
367 return
367 return
368 else:
368 else:
369 magic_docs = format_screen(magic_docs)
369 magic_docs = format_screen(magic_docs)
370 if mode == 'brief':
370 if mode == 'brief':
371 return magic_docs
371 return magic_docs
372
372
373 outmsg = """
373 outmsg = """
374 IPython's 'magic' functions
374 IPython's 'magic' functions
375 ===========================
375 ===========================
376
376
377 The magic function system provides a series of functions which allow you to
377 The magic function system provides a series of functions which allow you to
378 control the behavior of IPython itself, plus a lot of system-type
378 control the behavior of IPython itself, plus a lot of system-type
379 features. All these functions are prefixed with a % character, but parameters
379 features. All these functions are prefixed with a % character, but parameters
380 are given without parentheses or quotes.
380 are given without parentheses or quotes.
381
381
382 NOTE: If you have 'automagic' enabled (via the command line option or with the
382 NOTE: If you have 'automagic' enabled (via the command line option or with the
383 %automagic function), you don't need to type in the % explicitly. By default,
383 %automagic function), you don't need to type in the % explicitly. By default,
384 IPython ships with automagic on, so you should only rarely need the % escape.
384 IPython ships with automagic on, so you should only rarely need the % escape.
385
385
386 Example: typing '%cd mydir' (without the quotes) changes you working directory
386 Example: typing '%cd mydir' (without the quotes) changes you working directory
387 to 'mydir', if it exists.
387 to 'mydir', if it exists.
388
388
389 You can define your own magic functions to extend the system. See the supplied
389 You can define your own magic functions to extend the system. See the supplied
390 ipythonrc and example-magic.py files for details (in your ipython
390 ipythonrc and example-magic.py files for details (in your ipython
391 configuration directory, typically $HOME/.config/ipython on Linux or $HOME/.ipython elsewhere).
391 configuration directory, typically $HOME/.config/ipython on Linux or $HOME/.ipython elsewhere).
392
392
393 You can also define your own aliased names for magic functions. In your
393 You can also define your own aliased names for magic functions. In your
394 ipythonrc file, placing a line like:
394 ipythonrc file, placing a line like:
395
395
396 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
396 execute __IPYTHON__.magic_pf = __IPYTHON__.magic_profile
397
397
398 will define %pf as a new name for %profile.
398 will define %pf as a new name for %profile.
399
399
400 You can also call magics in code using the magic() function, which IPython
400 You can also call magics in code using the magic() function, which IPython
401 automatically adds to the builtin namespace. Type 'magic?' for details.
401 automatically adds to the builtin namespace. Type 'magic?' for details.
402
402
403 For a list of the available magic functions, use %lsmagic. For a description
403 For a list of the available magic functions, use %lsmagic. For a description
404 of any of them, type %magic_name?, e.g. '%cd?'.
404 of any of them, type %magic_name?, e.g. '%cd?'.
405
405
406 Currently the magic system has the following functions:\n"""
406 Currently the magic system has the following functions:\n"""
407
407
408 mesc = ESC_MAGIC
408 mesc = ESC_MAGIC
409 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
409 outmsg = ("%s\n%s\n\nSummary of magic functions (from %slsmagic):"
410 "\n\n%s%s\n\n%s" % (outmsg,
410 "\n\n%s%s\n\n%s" % (outmsg,
411 magic_docs,mesc,mesc,
411 magic_docs,mesc,mesc,
412 (' '+mesc).join(self.lsmagic()),
412 (' '+mesc).join(self.lsmagic()),
413 Magic.auto_status[self.shell.automagic] ) )
413 Magic.auto_status[self.shell.automagic] ) )
414 page.page(outmsg)
414 page.page(outmsg)
415
415
416 def magic_automagic(self, parameter_s = ''):
416 def magic_automagic(self, parameter_s = ''):
417 """Make magic functions callable without having to type the initial %.
417 """Make magic functions callable without having to type the initial %.
418
418
419 Without argumentsl toggles on/off (when off, you must call it as
419 Without argumentsl toggles on/off (when off, you must call it as
420 %automagic, of course). With arguments it sets the value, and you can
420 %automagic, of course). With arguments it sets the value, and you can
421 use any of (case insensitive):
421 use any of (case insensitive):
422
422
423 - on,1,True: to activate
423 - on,1,True: to activate
424
424
425 - off,0,False: to deactivate.
425 - off,0,False: to deactivate.
426
426
427 Note that magic functions have lowest priority, so if there's a
427 Note that magic functions have lowest priority, so if there's a
428 variable whose name collides with that of a magic fn, automagic won't
428 variable whose name collides with that of a magic fn, automagic won't
429 work for that function (you get the variable instead). However, if you
429 work for that function (you get the variable instead). However, if you
430 delete the variable (del var), the previously shadowed magic function
430 delete the variable (del var), the previously shadowed magic function
431 becomes visible to automagic again."""
431 becomes visible to automagic again."""
432
432
433 arg = parameter_s.lower()
433 arg = parameter_s.lower()
434 if parameter_s in ('on','1','true'):
434 if parameter_s in ('on','1','true'):
435 self.shell.automagic = True
435 self.shell.automagic = True
436 elif parameter_s in ('off','0','false'):
436 elif parameter_s in ('off','0','false'):
437 self.shell.automagic = False
437 self.shell.automagic = False
438 else:
438 else:
439 self.shell.automagic = not self.shell.automagic
439 self.shell.automagic = not self.shell.automagic
440 print '\n' + Magic.auto_status[self.shell.automagic]
440 print '\n' + Magic.auto_status[self.shell.automagic]
441
441
442 @skip_doctest
442 @skip_doctest
443 def magic_autocall(self, parameter_s = ''):
443 def magic_autocall(self, parameter_s = ''):
444 """Make functions callable without having to type parentheses.
444 """Make functions callable without having to type parentheses.
445
445
446 Usage:
446 Usage:
447
447
448 %autocall [mode]
448 %autocall [mode]
449
449
450 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
450 The mode can be one of: 0->Off, 1->Smart, 2->Full. If not given, the
451 value is toggled on and off (remembering the previous state).
451 value is toggled on and off (remembering the previous state).
452
452
453 In more detail, these values mean:
453 In more detail, these values mean:
454
454
455 0 -> fully disabled
455 0 -> fully disabled
456
456
457 1 -> active, but do not apply if there are no arguments on the line.
457 1 -> active, but do not apply if there are no arguments on the line.
458
458
459 In this mode, you get:
459 In this mode, you get:
460
460
461 In [1]: callable
461 In [1]: callable
462 Out[1]: <built-in function callable>
462 Out[1]: <built-in function callable>
463
463
464 In [2]: callable 'hello'
464 In [2]: callable 'hello'
465 ------> callable('hello')
465 ------> callable('hello')
466 Out[2]: False
466 Out[2]: False
467
467
468 2 -> Active always. Even if no arguments are present, the callable
468 2 -> Active always. Even if no arguments are present, the callable
469 object is called:
469 object is called:
470
470
471 In [2]: float
471 In [2]: float
472 ------> float()
472 ------> float()
473 Out[2]: 0.0
473 Out[2]: 0.0
474
474
475 Note that even with autocall off, you can still use '/' at the start of
475 Note that even with autocall off, you can still use '/' at the start of
476 a line to treat the first argument on the command line as a function
476 a line to treat the first argument on the command line as a function
477 and add parentheses to it:
477 and add parentheses to it:
478
478
479 In [8]: /str 43
479 In [8]: /str 43
480 ------> str(43)
480 ------> str(43)
481 Out[8]: '43'
481 Out[8]: '43'
482
482
483 # all-random (note for auto-testing)
483 # all-random (note for auto-testing)
484 """
484 """
485
485
486 if parameter_s:
486 if parameter_s:
487 arg = int(parameter_s)
487 arg = int(parameter_s)
488 else:
488 else:
489 arg = 'toggle'
489 arg = 'toggle'
490
490
491 if not arg in (0,1,2,'toggle'):
491 if not arg in (0,1,2,'toggle'):
492 error('Valid modes: (0->Off, 1->Smart, 2->Full')
492 error('Valid modes: (0->Off, 1->Smart, 2->Full')
493 return
493 return
494
494
495 if arg in (0,1,2):
495 if arg in (0,1,2):
496 self.shell.autocall = arg
496 self.shell.autocall = arg
497 else: # toggle
497 else: # toggle
498 if self.shell.autocall:
498 if self.shell.autocall:
499 self._magic_state.autocall_save = self.shell.autocall
499 self._magic_state.autocall_save = self.shell.autocall
500 self.shell.autocall = 0
500 self.shell.autocall = 0
501 else:
501 else:
502 try:
502 try:
503 self.shell.autocall = self._magic_state.autocall_save
503 self.shell.autocall = self._magic_state.autocall_save
504 except AttributeError:
504 except AttributeError:
505 self.shell.autocall = self._magic_state.autocall_save = 1
505 self.shell.autocall = self._magic_state.autocall_save = 1
506
506
507 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
507 print "Automatic calling is:",['OFF','Smart','Full'][self.shell.autocall]
508
508
509
509
510 def magic_page(self, parameter_s=''):
510 def magic_page(self, parameter_s=''):
511 """Pretty print the object and display it through a pager.
511 """Pretty print the object and display it through a pager.
512
512
513 %page [options] OBJECT
513 %page [options] OBJECT
514
514
515 If no object is given, use _ (last output).
515 If no object is given, use _ (last output).
516
516
517 Options:
517 Options:
518
518
519 -r: page str(object), don't pretty-print it."""
519 -r: page str(object), don't pretty-print it."""
520
520
521 # After a function contributed by Olivier Aubert, slightly modified.
521 # After a function contributed by Olivier Aubert, slightly modified.
522
522
523 # Process options/args
523 # Process options/args
524 opts,args = self.parse_options(parameter_s,'r')
524 opts,args = self.parse_options(parameter_s,'r')
525 raw = 'r' in opts
525 raw = 'r' in opts
526
526
527 oname = args and args or '_'
527 oname = args and args or '_'
528 info = self._ofind(oname)
528 info = self._ofind(oname)
529 if info['found']:
529 if info['found']:
530 txt = (raw and str or pformat)( info['obj'] )
530 txt = (raw and str or pformat)( info['obj'] )
531 page.page(txt)
531 page.page(txt)
532 else:
532 else:
533 print 'Object `%s` not found' % oname
533 print 'Object `%s` not found' % oname
534
534
535 def magic_profile(self, parameter_s=''):
535 def magic_profile(self, parameter_s=''):
536 """Print your currently active IPython profile."""
536 """Print your currently active IPython profile."""
537 print self.shell.profile
537 print self.shell.profile
538
538
539 def magic_pinfo(self, parameter_s='', namespaces=None):
539 def magic_pinfo(self, parameter_s='', namespaces=None):
540 """Provide detailed information about an object.
540 """Provide detailed information about an object.
541
541
542 '%pinfo object' is just a synonym for object? or ?object."""
542 '%pinfo object' is just a synonym for object? or ?object."""
543
543
544 #print 'pinfo par: <%s>' % parameter_s # dbg
544 #print 'pinfo par: <%s>' % parameter_s # dbg
545
545
546
546
547 # detail_level: 0 -> obj? , 1 -> obj??
547 # detail_level: 0 -> obj? , 1 -> obj??
548 detail_level = 0
548 detail_level = 0
549 # We need to detect if we got called as 'pinfo pinfo foo', which can
549 # We need to detect if we got called as 'pinfo pinfo foo', which can
550 # happen if the user types 'pinfo foo?' at the cmd line.
550 # happen if the user types 'pinfo foo?' at the cmd line.
551 pinfo,qmark1,oname,qmark2 = \
551 pinfo,qmark1,oname,qmark2 = \
552 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
552 re.match('(pinfo )?(\?*)(.*?)(\??$)',parameter_s).groups()
553 if pinfo or qmark1 or qmark2:
553 if pinfo or qmark1 or qmark2:
554 detail_level = 1
554 detail_level = 1
555 if "*" in oname:
555 if "*" in oname:
556 self.magic_psearch(oname)
556 self.magic_psearch(oname)
557 else:
557 else:
558 self.shell._inspect('pinfo', oname, detail_level=detail_level,
558 self.shell._inspect('pinfo', oname, detail_level=detail_level,
559 namespaces=namespaces)
559 namespaces=namespaces)
560
560
561 def magic_pinfo2(self, parameter_s='', namespaces=None):
561 def magic_pinfo2(self, parameter_s='', namespaces=None):
562 """Provide extra detailed information about an object.
562 """Provide extra detailed information about an object.
563
563
564 '%pinfo2 object' is just a synonym for object?? or ??object."""
564 '%pinfo2 object' is just a synonym for object?? or ??object."""
565 self.shell._inspect('pinfo', parameter_s, detail_level=1,
565 self.shell._inspect('pinfo', parameter_s, detail_level=1,
566 namespaces=namespaces)
566 namespaces=namespaces)
567
567
568 @skip_doctest
568 @skip_doctest
569 def magic_pdef(self, parameter_s='', namespaces=None):
569 def magic_pdef(self, parameter_s='', namespaces=None):
570 """Print the definition header for any callable object.
570 """Print the definition header for any callable object.
571
571
572 If the object is a class, print the constructor information.
572 If the object is a class, print the constructor information.
573
573
574 Examples
574 Examples
575 --------
575 --------
576 ::
576 ::
577
577
578 In [3]: %pdef urllib.urlopen
578 In [3]: %pdef urllib.urlopen
579 urllib.urlopen(url, data=None, proxies=None)
579 urllib.urlopen(url, data=None, proxies=None)
580 """
580 """
581 self._inspect('pdef',parameter_s, namespaces)
581 self._inspect('pdef',parameter_s, namespaces)
582
582
583 def magic_pdoc(self, parameter_s='', namespaces=None):
583 def magic_pdoc(self, parameter_s='', namespaces=None):
584 """Print the docstring for an object.
584 """Print the docstring for an object.
585
585
586 If the given object is a class, it will print both the class and the
586 If the given object is a class, it will print both the class and the
587 constructor docstrings."""
587 constructor docstrings."""
588 self._inspect('pdoc',parameter_s, namespaces)
588 self._inspect('pdoc',parameter_s, namespaces)
589
589
590 def magic_psource(self, parameter_s='', namespaces=None):
590 def magic_psource(self, parameter_s='', namespaces=None):
591 """Print (or run through pager) the source code for an object."""
591 """Print (or run through pager) the source code for an object."""
592 self._inspect('psource',parameter_s, namespaces)
592 self._inspect('psource',parameter_s, namespaces)
593
593
594 def magic_pfile(self, parameter_s=''):
594 def magic_pfile(self, parameter_s=''):
595 """Print (or run through pager) the file where an object is defined.
595 """Print (or run through pager) the file where an object is defined.
596
596
597 The file opens at the line where the object definition begins. IPython
597 The file opens at the line where the object definition begins. IPython
598 will honor the environment variable PAGER if set, and otherwise will
598 will honor the environment variable PAGER if set, and otherwise will
599 do its best to print the file in a convenient form.
599 do its best to print the file in a convenient form.
600
600
601 If the given argument is not an object currently defined, IPython will
601 If the given argument is not an object currently defined, IPython will
602 try to interpret it as a filename (automatically adding a .py extension
602 try to interpret it as a filename (automatically adding a .py extension
603 if needed). You can thus use %pfile as a syntax highlighting code
603 if needed). You can thus use %pfile as a syntax highlighting code
604 viewer."""
604 viewer."""
605
605
606 # first interpret argument as an object name
606 # first interpret argument as an object name
607 out = self._inspect('pfile',parameter_s)
607 out = self._inspect('pfile',parameter_s)
608 # if not, try the input as a filename
608 # if not, try the input as a filename
609 if out == 'not found':
609 if out == 'not found':
610 try:
610 try:
611 filename = get_py_filename(parameter_s)
611 filename = get_py_filename(parameter_s)
612 except IOError,msg:
612 except IOError,msg:
613 print msg
613 print msg
614 return
614 return
615 page.page(self.shell.inspector.format(file(filename).read()))
615 page.page(self.shell.inspector.format(file(filename).read()))
616
616
617 def magic_psearch(self, parameter_s=''):
617 def magic_psearch(self, parameter_s=''):
618 """Search for object in namespaces by wildcard.
618 """Search for object in namespaces by wildcard.
619
619
620 %psearch [options] PATTERN [OBJECT TYPE]
620 %psearch [options] PATTERN [OBJECT TYPE]
621
621
622 Note: ? can be used as a synonym for %psearch, at the beginning or at
622 Note: ? can be used as a synonym for %psearch, at the beginning or at
623 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
623 the end: both a*? and ?a* are equivalent to '%psearch a*'. Still, the
624 rest of the command line must be unchanged (options come first), so
624 rest of the command line must be unchanged (options come first), so
625 for example the following forms are equivalent
625 for example the following forms are equivalent
626
626
627 %psearch -i a* function
627 %psearch -i a* function
628 -i a* function?
628 -i a* function?
629 ?-i a* function
629 ?-i a* function
630
630
631 Arguments:
631 Arguments:
632
632
633 PATTERN
633 PATTERN
634
634
635 where PATTERN is a string containing * as a wildcard similar to its
635 where PATTERN is a string containing * as a wildcard similar to its
636 use in a shell. The pattern is matched in all namespaces on the
636 use in a shell. The pattern is matched in all namespaces on the
637 search path. By default objects starting with a single _ are not
637 search path. By default objects starting with a single _ are not
638 matched, many IPython generated objects have a single
638 matched, many IPython generated objects have a single
639 underscore. The default is case insensitive matching. Matching is
639 underscore. The default is case insensitive matching. Matching is
640 also done on the attributes of objects and not only on the objects
640 also done on the attributes of objects and not only on the objects
641 in a module.
641 in a module.
642
642
643 [OBJECT TYPE]
643 [OBJECT TYPE]
644
644
645 Is the name of a python type from the types module. The name is
645 Is the name of a python type from the types module. The name is
646 given in lowercase without the ending type, ex. StringType is
646 given in lowercase without the ending type, ex. StringType is
647 written string. By adding a type here only objects matching the
647 written string. By adding a type here only objects matching the
648 given type are matched. Using all here makes the pattern match all
648 given type are matched. Using all here makes the pattern match all
649 types (this is the default).
649 types (this is the default).
650
650
651 Options:
651 Options:
652
652
653 -a: makes the pattern match even objects whose names start with a
653 -a: makes the pattern match even objects whose names start with a
654 single underscore. These names are normally ommitted from the
654 single underscore. These names are normally ommitted from the
655 search.
655 search.
656
656
657 -i/-c: make the pattern case insensitive/sensitive. If neither of
657 -i/-c: make the pattern case insensitive/sensitive. If neither of
658 these options is given, the default is read from your ipythonrc
658 these options is given, the default is read from your ipythonrc
659 file. The option name which sets this value is
659 file. The option name which sets this value is
660 'wildcards_case_sensitive'. If this option is not specified in your
660 'wildcards_case_sensitive'. If this option is not specified in your
661 ipythonrc file, IPython's internal default is to do a case sensitive
661 ipythonrc file, IPython's internal default is to do a case sensitive
662 search.
662 search.
663
663
664 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
664 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
665 specifiy can be searched in any of the following namespaces:
665 specifiy can be searched in any of the following namespaces:
666 'builtin', 'user', 'user_global','internal', 'alias', where
666 'builtin', 'user', 'user_global','internal', 'alias', where
667 'builtin' and 'user' are the search defaults. Note that you should
667 'builtin' and 'user' are the search defaults. Note that you should
668 not use quotes when specifying namespaces.
668 not use quotes when specifying namespaces.
669
669
670 'Builtin' contains the python module builtin, 'user' contains all
670 'Builtin' contains the python module builtin, 'user' contains all
671 user data, 'alias' only contain the shell aliases and no python
671 user data, 'alias' only contain the shell aliases and no python
672 objects, 'internal' contains objects used by IPython. The
672 objects, 'internal' contains objects used by IPython. The
673 'user_global' namespace is only used by embedded IPython instances,
673 'user_global' namespace is only used by embedded IPython instances,
674 and it contains module-level globals. You can add namespaces to the
674 and it contains module-level globals. You can add namespaces to the
675 search with -s or exclude them with -e (these options can be given
675 search with -s or exclude them with -e (these options can be given
676 more than once).
676 more than once).
677
677
678 Examples:
678 Examples:
679
679
680 %psearch a* -> objects beginning with an a
680 %psearch a* -> objects beginning with an a
681 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
681 %psearch -e builtin a* -> objects NOT in the builtin space starting in a
682 %psearch a* function -> all functions beginning with an a
682 %psearch a* function -> all functions beginning with an a
683 %psearch re.e* -> objects beginning with an e in module re
683 %psearch re.e* -> objects beginning with an e in module re
684 %psearch r*.e* -> objects that start with e in modules starting in r
684 %psearch r*.e* -> objects that start with e in modules starting in r
685 %psearch r*.* string -> all strings in modules beginning with r
685 %psearch r*.* string -> all strings in modules beginning with r
686
686
687 Case sensitve search:
687 Case sensitve search:
688
688
689 %psearch -c a* list all object beginning with lower case a
689 %psearch -c a* list all object beginning with lower case a
690
690
691 Show objects beginning with a single _:
691 Show objects beginning with a single _:
692
692
693 %psearch -a _* list objects beginning with a single underscore"""
693 %psearch -a _* list objects beginning with a single underscore"""
694 try:
694 try:
695 parameter_s = parameter_s.encode('ascii')
695 parameter_s = parameter_s.encode('ascii')
696 except UnicodeEncodeError:
696 except UnicodeEncodeError:
697 print 'Python identifiers can only contain ascii characters.'
697 print 'Python identifiers can only contain ascii characters.'
698 return
698 return
699
699
700 # default namespaces to be searched
700 # default namespaces to be searched
701 def_search = ['user','builtin']
701 def_search = ['user','builtin']
702
702
703 # Process options/args
703 # Process options/args
704 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
704 opts,args = self.parse_options(parameter_s,'cias:e:',list_all=True)
705 opt = opts.get
705 opt = opts.get
706 shell = self.shell
706 shell = self.shell
707 psearch = shell.inspector.psearch
707 psearch = shell.inspector.psearch
708
708
709 # select case options
709 # select case options
710 if opts.has_key('i'):
710 if opts.has_key('i'):
711 ignore_case = True
711 ignore_case = True
712 elif opts.has_key('c'):
712 elif opts.has_key('c'):
713 ignore_case = False
713 ignore_case = False
714 else:
714 else:
715 ignore_case = not shell.wildcards_case_sensitive
715 ignore_case = not shell.wildcards_case_sensitive
716
716
717 # Build list of namespaces to search from user options
717 # Build list of namespaces to search from user options
718 def_search.extend(opt('s',[]))
718 def_search.extend(opt('s',[]))
719 ns_exclude = ns_exclude=opt('e',[])
719 ns_exclude = ns_exclude=opt('e',[])
720 ns_search = [nm for nm in def_search if nm not in ns_exclude]
720 ns_search = [nm for nm in def_search if nm not in ns_exclude]
721
721
722 # Call the actual search
722 # Call the actual search
723 try:
723 try:
724 psearch(args,shell.ns_table,ns_search,
724 psearch(args,shell.ns_table,ns_search,
725 show_all=opt('a'),ignore_case=ignore_case)
725 show_all=opt('a'),ignore_case=ignore_case)
726 except:
726 except:
727 shell.showtraceback()
727 shell.showtraceback()
728
728
729 @skip_doctest
729 @skip_doctest
730 def magic_who_ls(self, parameter_s=''):
730 def magic_who_ls(self, parameter_s=''):
731 """Return a sorted list of all interactive variables.
731 """Return a sorted list of all interactive variables.
732
732
733 If arguments are given, only variables of types matching these
733 If arguments are given, only variables of types matching these
734 arguments are returned.
734 arguments are returned.
735
735
736 Examples
736 Examples
737 --------
737 --------
738
738
739 Define two variables and list them with who_ls::
739 Define two variables and list them with who_ls::
740
740
741 In [1]: alpha = 123
741 In [1]: alpha = 123
742
742
743 In [2]: beta = 'test'
743 In [2]: beta = 'test'
744
744
745 In [3]: %who_ls
745 In [3]: %who_ls
746 Out[3]: ['alpha', 'beta']
746 Out[3]: ['alpha', 'beta']
747
747
748 In [4]: %who_ls int
748 In [4]: %who_ls int
749 Out[4]: ['alpha']
749 Out[4]: ['alpha']
750
750
751 In [5]: %who_ls str
751 In [5]: %who_ls str
752 Out[5]: ['beta']
752 Out[5]: ['beta']
753 """
753 """
754
754
755 user_ns = self.shell.user_ns
755 user_ns = self.shell.user_ns
756 internal_ns = self.shell.internal_ns
756 internal_ns = self.shell.internal_ns
757 user_ns_hidden = self.shell.user_ns_hidden
757 user_ns_hidden = self.shell.user_ns_hidden
758 out = [ i for i in user_ns
758 out = [ i for i in user_ns
759 if not i.startswith('_') \
759 if not i.startswith('_') \
760 and not (i in internal_ns or i in user_ns_hidden) ]
760 and not (i in internal_ns or i in user_ns_hidden) ]
761
761
762 typelist = parameter_s.split()
762 typelist = parameter_s.split()
763 if typelist:
763 if typelist:
764 typeset = set(typelist)
764 typeset = set(typelist)
765 out = [i for i in out if type(user_ns[i]).__name__ in typeset]
765 out = [i for i in out if type(user_ns[i]).__name__ in typeset]
766
766
767 out.sort()
767 out.sort()
768 return out
768 return out
769
769
770 @skip_doctest
770 @skip_doctest
771 def magic_who(self, parameter_s=''):
771 def magic_who(self, parameter_s=''):
772 """Print all interactive variables, with some minimal formatting.
772 """Print all interactive variables, with some minimal formatting.
773
773
774 If any arguments are given, only variables whose type matches one of
774 If any arguments are given, only variables whose type matches one of
775 these are printed. For example:
775 these are printed. For example:
776
776
777 %who function str
777 %who function str
778
778
779 will only list functions and strings, excluding all other types of
779 will only list functions and strings, excluding all other types of
780 variables. To find the proper type names, simply use type(var) at a
780 variables. To find the proper type names, simply use type(var) at a
781 command line to see how python prints type names. For example:
781 command line to see how python prints type names. For example:
782
782
783 In [1]: type('hello')\\
783 In [1]: type('hello')\\
784 Out[1]: <type 'str'>
784 Out[1]: <type 'str'>
785
785
786 indicates that the type name for strings is 'str'.
786 indicates that the type name for strings is 'str'.
787
787
788 %who always excludes executed names loaded through your configuration
788 %who always excludes executed names loaded through your configuration
789 file and things which are internal to IPython.
789 file and things which are internal to IPython.
790
790
791 This is deliberate, as typically you may load many modules and the
791 This is deliberate, as typically you may load many modules and the
792 purpose of %who is to show you only what you've manually defined.
792 purpose of %who is to show you only what you've manually defined.
793
793
794 Examples
794 Examples
795 --------
795 --------
796
796
797 Define two variables and list them with who::
797 Define two variables and list them with who::
798
798
799 In [1]: alpha = 123
799 In [1]: alpha = 123
800
800
801 In [2]: beta = 'test'
801 In [2]: beta = 'test'
802
802
803 In [3]: %who
803 In [3]: %who
804 alpha beta
804 alpha beta
805
805
806 In [4]: %who int
806 In [4]: %who int
807 alpha
807 alpha
808
808
809 In [5]: %who str
809 In [5]: %who str
810 beta
810 beta
811 """
811 """
812
812
813 varlist = self.magic_who_ls(parameter_s)
813 varlist = self.magic_who_ls(parameter_s)
814 if not varlist:
814 if not varlist:
815 if parameter_s:
815 if parameter_s:
816 print 'No variables match your requested type.'
816 print 'No variables match your requested type.'
817 else:
817 else:
818 print 'Interactive namespace is empty.'
818 print 'Interactive namespace is empty.'
819 return
819 return
820
820
821 # if we have variables, move on...
821 # if we have variables, move on...
822 count = 0
822 count = 0
823 for i in varlist:
823 for i in varlist:
824 print i+'\t',
824 print i+'\t',
825 count += 1
825 count += 1
826 if count > 8:
826 if count > 8:
827 count = 0
827 count = 0
828 print
828 print
829 print
829 print
830
830
831 @skip_doctest
831 @skip_doctest
832 def magic_whos(self, parameter_s=''):
832 def magic_whos(self, parameter_s=''):
833 """Like %who, but gives some extra information about each variable.
833 """Like %who, but gives some extra information about each variable.
834
834
835 The same type filtering of %who can be applied here.
835 The same type filtering of %who can be applied here.
836
836
837 For all variables, the type is printed. Additionally it prints:
837 For all variables, the type is printed. Additionally it prints:
838
838
839 - For {},[],(): their length.
839 - For {},[],(): their length.
840
840
841 - For numpy arrays, a summary with shape, number of
841 - For numpy arrays, a summary with shape, number of
842 elements, typecode and size in memory.
842 elements, typecode and size in memory.
843
843
844 - Everything else: a string representation, snipping their middle if
844 - Everything else: a string representation, snipping their middle if
845 too long.
845 too long.
846
846
847 Examples
847 Examples
848 --------
848 --------
849
849
850 Define two variables and list them with whos::
850 Define two variables and list them with whos::
851
851
852 In [1]: alpha = 123
852 In [1]: alpha = 123
853
853
854 In [2]: beta = 'test'
854 In [2]: beta = 'test'
855
855
856 In [3]: %whos
856 In [3]: %whos
857 Variable Type Data/Info
857 Variable Type Data/Info
858 --------------------------------
858 --------------------------------
859 alpha int 123
859 alpha int 123
860 beta str test
860 beta str test
861 """
861 """
862
862
863 varnames = self.magic_who_ls(parameter_s)
863 varnames = self.magic_who_ls(parameter_s)
864 if not varnames:
864 if not varnames:
865 if parameter_s:
865 if parameter_s:
866 print 'No variables match your requested type.'
866 print 'No variables match your requested type.'
867 else:
867 else:
868 print 'Interactive namespace is empty.'
868 print 'Interactive namespace is empty.'
869 return
869 return
870
870
871 # if we have variables, move on...
871 # if we have variables, move on...
872
872
873 # for these types, show len() instead of data:
873 # for these types, show len() instead of data:
874 seq_types = ['dict', 'list', 'tuple']
874 seq_types = ['dict', 'list', 'tuple']
875
875
876 # for numpy/Numeric arrays, display summary info
876 # for numpy/Numeric arrays, display summary info
877 try:
877 try:
878 import numpy
878 import numpy
879 except ImportError:
879 except ImportError:
880 ndarray_type = None
880 ndarray_type = None
881 else:
881 else:
882 ndarray_type = numpy.ndarray.__name__
882 ndarray_type = numpy.ndarray.__name__
883 try:
883 try:
884 import Numeric
884 import Numeric
885 except ImportError:
885 except ImportError:
886 array_type = None
886 array_type = None
887 else:
887 else:
888 array_type = Numeric.ArrayType.__name__
888 array_type = Numeric.ArrayType.__name__
889
889
890 # Find all variable names and types so we can figure out column sizes
890 # Find all variable names and types so we can figure out column sizes
891 def get_vars(i):
891 def get_vars(i):
892 return self.shell.user_ns[i]
892 return self.shell.user_ns[i]
893
893
894 # some types are well known and can be shorter
894 # some types are well known and can be shorter
895 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
895 abbrevs = {'IPython.core.macro.Macro' : 'Macro'}
896 def type_name(v):
896 def type_name(v):
897 tn = type(v).__name__
897 tn = type(v).__name__
898 return abbrevs.get(tn,tn)
898 return abbrevs.get(tn,tn)
899
899
900 varlist = map(get_vars,varnames)
900 varlist = map(get_vars,varnames)
901
901
902 typelist = []
902 typelist = []
903 for vv in varlist:
903 for vv in varlist:
904 tt = type_name(vv)
904 tt = type_name(vv)
905
905
906 if tt=='instance':
906 if tt=='instance':
907 typelist.append( abbrevs.get(str(vv.__class__),
907 typelist.append( abbrevs.get(str(vv.__class__),
908 str(vv.__class__)))
908 str(vv.__class__)))
909 else:
909 else:
910 typelist.append(tt)
910 typelist.append(tt)
911
911
912 # column labels and # of spaces as separator
912 # column labels and # of spaces as separator
913 varlabel = 'Variable'
913 varlabel = 'Variable'
914 typelabel = 'Type'
914 typelabel = 'Type'
915 datalabel = 'Data/Info'
915 datalabel = 'Data/Info'
916 colsep = 3
916 colsep = 3
917 # variable format strings
917 # variable format strings
918 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
918 vformat = "$vname.ljust(varwidth)$vtype.ljust(typewidth)"
919 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
919 vfmt_short = '$vstr[:25]<...>$vstr[-25:]'
920 aformat = "%s: %s elems, type `%s`, %s bytes"
920 aformat = "%s: %s elems, type `%s`, %s bytes"
921 # find the size of the columns to format the output nicely
921 # find the size of the columns to format the output nicely
922 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
922 varwidth = max(max(map(len,varnames)), len(varlabel)) + colsep
923 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
923 typewidth = max(max(map(len,typelist)), len(typelabel)) + colsep
924 # table header
924 # table header
925 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
925 print varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + \
926 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
926 ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)
927 # and the table itself
927 # and the table itself
928 kb = 1024
928 kb = 1024
929 Mb = 1048576 # kb**2
929 Mb = 1048576 # kb**2
930 for vname,var,vtype in zip(varnames,varlist,typelist):
930 for vname,var,vtype in zip(varnames,varlist,typelist):
931 print itpl(vformat),
931 print itpl(vformat),
932 if vtype in seq_types:
932 if vtype in seq_types:
933 print "n="+str(len(var))
933 print "n="+str(len(var))
934 elif vtype in [array_type,ndarray_type]:
934 elif vtype in [array_type,ndarray_type]:
935 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
935 vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1]
936 if vtype==ndarray_type:
936 if vtype==ndarray_type:
937 # numpy
937 # numpy
938 vsize = var.size
938 vsize = var.size
939 vbytes = vsize*var.itemsize
939 vbytes = vsize*var.itemsize
940 vdtype = var.dtype
940 vdtype = var.dtype
941 else:
941 else:
942 # Numeric
942 # Numeric
943 vsize = Numeric.size(var)
943 vsize = Numeric.size(var)
944 vbytes = vsize*var.itemsize()
944 vbytes = vsize*var.itemsize()
945 vdtype = var.typecode()
945 vdtype = var.typecode()
946
946
947 if vbytes < 100000:
947 if vbytes < 100000:
948 print aformat % (vshape,vsize,vdtype,vbytes)
948 print aformat % (vshape,vsize,vdtype,vbytes)
949 else:
949 else:
950 print aformat % (vshape,vsize,vdtype,vbytes),
950 print aformat % (vshape,vsize,vdtype,vbytes),
951 if vbytes < Mb:
951 if vbytes < Mb:
952 print '(%s kb)' % (vbytes/kb,)
952 print '(%s kb)' % (vbytes/kb,)
953 else:
953 else:
954 print '(%s Mb)' % (vbytes/Mb,)
954 print '(%s Mb)' % (vbytes/Mb,)
955 else:
955 else:
956 try:
956 try:
957 vstr = str(var)
957 vstr = str(var)
958 except UnicodeEncodeError:
958 except UnicodeEncodeError:
959 vstr = unicode(var).encode(sys.getdefaultencoding(),
959 vstr = unicode(var).encode(sys.getdefaultencoding(),
960 'backslashreplace')
960 'backslashreplace')
961 vstr = vstr.replace('\n','\\n')
961 vstr = vstr.replace('\n','\\n')
962 if len(vstr) < 50:
962 if len(vstr) < 50:
963 print vstr
963 print vstr
964 else:
964 else:
965 printpl(vfmt_short)
965 printpl(vfmt_short)
966
966
967 def magic_reset(self, parameter_s=''):
967 def magic_reset(self, parameter_s=''):
968 """Resets the namespace by removing all names defined by the user.
968 """Resets the namespace by removing all names defined by the user.
969
969
970 Parameters
970 Parameters
971 ----------
971 ----------
972 -f : force reset without asking for confirmation.
972 -f : force reset without asking for confirmation.
973
973
974 -s : 'Soft' reset: Only clears your namespace, leaving history intact.
974 -s : 'Soft' reset: Only clears your namespace, leaving history intact.
975 References to objects may be kept. By default (without this option),
975 References to objects may be kept. By default (without this option),
976 we do a 'hard' reset, giving you a new session and removing all
976 we do a 'hard' reset, giving you a new session and removing all
977 references to objects from the current session.
977 references to objects from the current session.
978
978
979 Examples
979 Examples
980 --------
980 --------
981 In [6]: a = 1
981 In [6]: a = 1
982
982
983 In [7]: a
983 In [7]: a
984 Out[7]: 1
984 Out[7]: 1
985
985
986 In [8]: 'a' in _ip.user_ns
986 In [8]: 'a' in _ip.user_ns
987 Out[8]: True
987 Out[8]: True
988
988
989 In [9]: %reset -f
989 In [9]: %reset -f
990
990
991 In [1]: 'a' in _ip.user_ns
991 In [1]: 'a' in _ip.user_ns
992 Out[1]: False
992 Out[1]: False
993 """
993 """
994 opts, args = self.parse_options(parameter_s,'sf')
994 opts, args = self.parse_options(parameter_s,'sf')
995 if 'f' in opts:
995 if 'f' in opts:
996 ans = True
996 ans = True
997 else:
997 else:
998 ans = self.shell.ask_yes_no(
998 ans = self.shell.ask_yes_no(
999 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
999 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1000 if not ans:
1000 if not ans:
1001 print 'Nothing done.'
1001 print 'Nothing done.'
1002 return
1002 return
1003
1003
1004 if 's' in opts: # Soft reset
1004 if 's' in opts: # Soft reset
1005 user_ns = self.shell.user_ns
1005 user_ns = self.shell.user_ns
1006 for i in self.magic_who_ls():
1006 for i in self.magic_who_ls():
1007 del(user_ns[i])
1007 del(user_ns[i])
1008
1008
1009 else: # Hard reset
1009 else: # Hard reset
1010 self.shell.reset(new_session = False)
1010 self.shell.reset(new_session = False)
1011
1011
1012
1012
1013
1013
1014 def magic_reset_selective(self, parameter_s=''):
1014 def magic_reset_selective(self, parameter_s=''):
1015 """Resets the namespace by removing names defined by the user.
1015 """Resets the namespace by removing names defined by the user.
1016
1016
1017 Input/Output history are left around in case you need them.
1017 Input/Output history are left around in case you need them.
1018
1018
1019 %reset_selective [-f] regex
1019 %reset_selective [-f] regex
1020
1020
1021 No action is taken if regex is not included
1021 No action is taken if regex is not included
1022
1022
1023 Options
1023 Options
1024 -f : force reset without asking for confirmation.
1024 -f : force reset without asking for confirmation.
1025
1025
1026 Examples
1026 Examples
1027 --------
1027 --------
1028
1028
1029 We first fully reset the namespace so your output looks identical to
1029 We first fully reset the namespace so your output looks identical to
1030 this example for pedagogical reasons; in practice you do not need a
1030 this example for pedagogical reasons; in practice you do not need a
1031 full reset.
1031 full reset.
1032
1032
1033 In [1]: %reset -f
1033 In [1]: %reset -f
1034
1034
1035 Now, with a clean namespace we can make a few variables and use
1035 Now, with a clean namespace we can make a few variables and use
1036 %reset_selective to only delete names that match our regexp:
1036 %reset_selective to only delete names that match our regexp:
1037
1037
1038 In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8
1038 In [2]: a=1; b=2; c=3; b1m=4; b2m=5; b3m=6; b4m=7; b2s=8
1039
1039
1040 In [3]: who_ls
1040 In [3]: who_ls
1041 Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c']
1041 Out[3]: ['a', 'b', 'b1m', 'b2m', 'b2s', 'b3m', 'b4m', 'c']
1042
1042
1043 In [4]: %reset_selective -f b[2-3]m
1043 In [4]: %reset_selective -f b[2-3]m
1044
1044
1045 In [5]: who_ls
1045 In [5]: who_ls
1046 Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1046 Out[5]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1047
1047
1048 In [6]: %reset_selective -f d
1048 In [6]: %reset_selective -f d
1049
1049
1050 In [7]: who_ls
1050 In [7]: who_ls
1051 Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1051 Out[7]: ['a', 'b', 'b1m', 'b2s', 'b4m', 'c']
1052
1052
1053 In [8]: %reset_selective -f c
1053 In [8]: %reset_selective -f c
1054
1054
1055 In [9]: who_ls
1055 In [9]: who_ls
1056 Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m']
1056 Out[9]: ['a', 'b', 'b1m', 'b2s', 'b4m']
1057
1057
1058 In [10]: %reset_selective -f b
1058 In [10]: %reset_selective -f b
1059
1059
1060 In [11]: who_ls
1060 In [11]: who_ls
1061 Out[11]: ['a']
1061 Out[11]: ['a']
1062 """
1062 """
1063
1063
1064 opts, regex = self.parse_options(parameter_s,'f')
1064 opts, regex = self.parse_options(parameter_s,'f')
1065
1065
1066 if opts.has_key('f'):
1066 if opts.has_key('f'):
1067 ans = True
1067 ans = True
1068 else:
1068 else:
1069 ans = self.shell.ask_yes_no(
1069 ans = self.shell.ask_yes_no(
1070 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1070 "Once deleted, variables cannot be recovered. Proceed (y/[n])? ")
1071 if not ans:
1071 if not ans:
1072 print 'Nothing done.'
1072 print 'Nothing done.'
1073 return
1073 return
1074 user_ns = self.shell.user_ns
1074 user_ns = self.shell.user_ns
1075 if not regex:
1075 if not regex:
1076 print 'No regex pattern specified. Nothing done.'
1076 print 'No regex pattern specified. Nothing done.'
1077 return
1077 return
1078 else:
1078 else:
1079 try:
1079 try:
1080 m = re.compile(regex)
1080 m = re.compile(regex)
1081 except TypeError:
1081 except TypeError:
1082 raise TypeError('regex must be a string or compiled pattern')
1082 raise TypeError('regex must be a string or compiled pattern')
1083 for i in self.magic_who_ls():
1083 for i in self.magic_who_ls():
1084 if m.search(i):
1084 if m.search(i):
1085 del(user_ns[i])
1085 del(user_ns[i])
1086
1086
1087 def magic_xdel(self, parameter_s=''):
1087 def magic_xdel(self, parameter_s=''):
1088 """Delete a variable, trying to clear it from anywhere that
1088 """Delete a variable, trying to clear it from anywhere that
1089 IPython's machinery has references to it. By default, this uses
1089 IPython's machinery has references to it. By default, this uses
1090 the identity of the named object in the user namespace to remove
1090 the identity of the named object in the user namespace to remove
1091 references held under other names. The object is also removed
1091 references held under other names. The object is also removed
1092 from the output history.
1092 from the output history.
1093
1093
1094 Options
1094 Options
1095 -n : Delete the specified name from all namespaces, without
1095 -n : Delete the specified name from all namespaces, without
1096 checking their identity.
1096 checking their identity.
1097 """
1097 """
1098 opts, varname = self.parse_options(parameter_s,'n')
1098 opts, varname = self.parse_options(parameter_s,'n')
1099 try:
1099 try:
1100 self.shell.del_var(varname, ('n' in opts))
1100 self.shell.del_var(varname, ('n' in opts))
1101 except (NameError, ValueError) as e:
1101 except (NameError, ValueError) as e:
1102 print type(e).__name__ +": "+ str(e)
1102 print type(e).__name__ +": "+ str(e)
1103
1103
1104 def magic_logstart(self,parameter_s=''):
1104 def magic_logstart(self,parameter_s=''):
1105 """Start logging anywhere in a session.
1105 """Start logging anywhere in a session.
1106
1106
1107 %logstart [-o|-r|-t] [log_name [log_mode]]
1107 %logstart [-o|-r|-t] [log_name [log_mode]]
1108
1108
1109 If no name is given, it defaults to a file named 'ipython_log.py' in your
1109 If no name is given, it defaults to a file named 'ipython_log.py' in your
1110 current directory, in 'rotate' mode (see below).
1110 current directory, in 'rotate' mode (see below).
1111
1111
1112 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1112 '%logstart name' saves to file 'name' in 'backup' mode. It saves your
1113 history up to that point and then continues logging.
1113 history up to that point and then continues logging.
1114
1114
1115 %logstart takes a second optional parameter: logging mode. This can be one
1115 %logstart takes a second optional parameter: logging mode. This can be one
1116 of (note that the modes are given unquoted):\\
1116 of (note that the modes are given unquoted):\\
1117 append: well, that says it.\\
1117 append: well, that says it.\\
1118 backup: rename (if exists) to name~ and start name.\\
1118 backup: rename (if exists) to name~ and start name.\\
1119 global: single logfile in your home dir, appended to.\\
1119 global: single logfile in your home dir, appended to.\\
1120 over : overwrite existing log.\\
1120 over : overwrite existing log.\\
1121 rotate: create rotating logs name.1~, name.2~, etc.
1121 rotate: create rotating logs name.1~, name.2~, etc.
1122
1122
1123 Options:
1123 Options:
1124
1124
1125 -o: log also IPython's output. In this mode, all commands which
1125 -o: log also IPython's output. In this mode, all commands which
1126 generate an Out[NN] prompt are recorded to the logfile, right after
1126 generate an Out[NN] prompt are recorded to the logfile, right after
1127 their corresponding input line. The output lines are always
1127 their corresponding input line. The output lines are always
1128 prepended with a '#[Out]# ' marker, so that the log remains valid
1128 prepended with a '#[Out]# ' marker, so that the log remains valid
1129 Python code.
1129 Python code.
1130
1130
1131 Since this marker is always the same, filtering only the output from
1131 Since this marker is always the same, filtering only the output from
1132 a log is very easy, using for example a simple awk call:
1132 a log is very easy, using for example a simple awk call:
1133
1133
1134 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1134 awk -F'#\\[Out\\]# ' '{if($2) {print $2}}' ipython_log.py
1135
1135
1136 -r: log 'raw' input. Normally, IPython's logs contain the processed
1136 -r: log 'raw' input. Normally, IPython's logs contain the processed
1137 input, so that user lines are logged in their final form, converted
1137 input, so that user lines are logged in their final form, converted
1138 into valid Python. For example, %Exit is logged as
1138 into valid Python. For example, %Exit is logged as
1139 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1139 '_ip.magic("Exit"). If the -r flag is given, all input is logged
1140 exactly as typed, with no transformations applied.
1140 exactly as typed, with no transformations applied.
1141
1141
1142 -t: put timestamps before each input line logged (these are put in
1142 -t: put timestamps before each input line logged (these are put in
1143 comments)."""
1143 comments)."""
1144
1144
1145 opts,par = self.parse_options(parameter_s,'ort')
1145 opts,par = self.parse_options(parameter_s,'ort')
1146 log_output = 'o' in opts
1146 log_output = 'o' in opts
1147 log_raw_input = 'r' in opts
1147 log_raw_input = 'r' in opts
1148 timestamp = 't' in opts
1148 timestamp = 't' in opts
1149
1149
1150 logger = self.shell.logger
1150 logger = self.shell.logger
1151
1151
1152 # if no args are given, the defaults set in the logger constructor by
1152 # if no args are given, the defaults set in the logger constructor by
1153 # ipytohn remain valid
1153 # ipytohn remain valid
1154 if par:
1154 if par:
1155 try:
1155 try:
1156 logfname,logmode = par.split()
1156 logfname,logmode = par.split()
1157 except:
1157 except:
1158 logfname = par
1158 logfname = par
1159 logmode = 'backup'
1159 logmode = 'backup'
1160 else:
1160 else:
1161 logfname = logger.logfname
1161 logfname = logger.logfname
1162 logmode = logger.logmode
1162 logmode = logger.logmode
1163 # put logfname into rc struct as if it had been called on the command
1163 # put logfname into rc struct as if it had been called on the command
1164 # line, so it ends up saved in the log header Save it in case we need
1164 # line, so it ends up saved in the log header Save it in case we need
1165 # to restore it...
1165 # to restore it...
1166 old_logfile = self.shell.logfile
1166 old_logfile = self.shell.logfile
1167 if logfname:
1167 if logfname:
1168 logfname = os.path.expanduser(logfname)
1168 logfname = os.path.expanduser(logfname)
1169 self.shell.logfile = logfname
1169 self.shell.logfile = logfname
1170
1170
1171 loghead = '# IPython log file\n\n'
1171 loghead = '# IPython log file\n\n'
1172 try:
1172 try:
1173 started = logger.logstart(logfname,loghead,logmode,
1173 started = logger.logstart(logfname,loghead,logmode,
1174 log_output,timestamp,log_raw_input)
1174 log_output,timestamp,log_raw_input)
1175 except:
1175 except:
1176 self.shell.logfile = old_logfile
1176 self.shell.logfile = old_logfile
1177 warn("Couldn't start log: %s" % sys.exc_info()[1])
1177 warn("Couldn't start log: %s" % sys.exc_info()[1])
1178 else:
1178 else:
1179 # log input history up to this point, optionally interleaving
1179 # log input history up to this point, optionally interleaving
1180 # output if requested
1180 # output if requested
1181
1181
1182 if timestamp:
1182 if timestamp:
1183 # disable timestamping for the previous history, since we've
1183 # disable timestamping for the previous history, since we've
1184 # lost those already (no time machine here).
1184 # lost those already (no time machine here).
1185 logger.timestamp = False
1185 logger.timestamp = False
1186
1186
1187 if log_raw_input:
1187 if log_raw_input:
1188 input_hist = self.shell.history_manager.input_hist_raw
1188 input_hist = self.shell.history_manager.input_hist_raw
1189 else:
1189 else:
1190 input_hist = self.shell.history_manager.input_hist_parsed
1190 input_hist = self.shell.history_manager.input_hist_parsed
1191
1191
1192 if log_output:
1192 if log_output:
1193 log_write = logger.log_write
1193 log_write = logger.log_write
1194 output_hist = self.shell.history_manager.output_hist
1194 output_hist = self.shell.history_manager.output_hist
1195 for n in range(1,len(input_hist)-1):
1195 for n in range(1,len(input_hist)-1):
1196 log_write(input_hist[n].rstrip() + '\n')
1196 log_write(input_hist[n].rstrip() + '\n')
1197 if n in output_hist:
1197 if n in output_hist:
1198 log_write(repr(output_hist[n]),'output')
1198 log_write(repr(output_hist[n]),'output')
1199 else:
1199 else:
1200 logger.log_write('\n'.join(input_hist[1:]))
1200 logger.log_write('\n'.join(input_hist[1:]))
1201 logger.log_write('\n')
1201 logger.log_write('\n')
1202 if timestamp:
1202 if timestamp:
1203 # re-enable timestamping
1203 # re-enable timestamping
1204 logger.timestamp = True
1204 logger.timestamp = True
1205
1205
1206 print ('Activating auto-logging. '
1206 print ('Activating auto-logging. '
1207 'Current session state plus future input saved.')
1207 'Current session state plus future input saved.')
1208 logger.logstate()
1208 logger.logstate()
1209
1209
1210 def magic_logstop(self,parameter_s=''):
1210 def magic_logstop(self,parameter_s=''):
1211 """Fully stop logging and close log file.
1211 """Fully stop logging and close log file.
1212
1212
1213 In order to start logging again, a new %logstart call needs to be made,
1213 In order to start logging again, a new %logstart call needs to be made,
1214 possibly (though not necessarily) with a new filename, mode and other
1214 possibly (though not necessarily) with a new filename, mode and other
1215 options."""
1215 options."""
1216 self.logger.logstop()
1216 self.logger.logstop()
1217
1217
1218 def magic_logoff(self,parameter_s=''):
1218 def magic_logoff(self,parameter_s=''):
1219 """Temporarily stop logging.
1219 """Temporarily stop logging.
1220
1220
1221 You must have previously started logging."""
1221 You must have previously started logging."""
1222 self.shell.logger.switch_log(0)
1222 self.shell.logger.switch_log(0)
1223
1223
1224 def magic_logon(self,parameter_s=''):
1224 def magic_logon(self,parameter_s=''):
1225 """Restart logging.
1225 """Restart logging.
1226
1226
1227 This function is for restarting logging which you've temporarily
1227 This function is for restarting logging which you've temporarily
1228 stopped with %logoff. For starting logging for the first time, you
1228 stopped with %logoff. For starting logging for the first time, you
1229 must use the %logstart function, which allows you to specify an
1229 must use the %logstart function, which allows you to specify an
1230 optional log filename."""
1230 optional log filename."""
1231
1231
1232 self.shell.logger.switch_log(1)
1232 self.shell.logger.switch_log(1)
1233
1233
1234 def magic_logstate(self,parameter_s=''):
1234 def magic_logstate(self,parameter_s=''):
1235 """Print the status of the logging system."""
1235 """Print the status of the logging system."""
1236
1236
1237 self.shell.logger.logstate()
1237 self.shell.logger.logstate()
1238
1238
1239 def magic_pdb(self, parameter_s=''):
1239 def magic_pdb(self, parameter_s=''):
1240 """Control the automatic calling of the pdb interactive debugger.
1240 """Control the automatic calling of the pdb interactive debugger.
1241
1241
1242 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1242 Call as '%pdb on', '%pdb 1', '%pdb off' or '%pdb 0'. If called without
1243 argument it works as a toggle.
1243 argument it works as a toggle.
1244
1244
1245 When an exception is triggered, IPython can optionally call the
1245 When an exception is triggered, IPython can optionally call the
1246 interactive pdb debugger after the traceback printout. %pdb toggles
1246 interactive pdb debugger after the traceback printout. %pdb toggles
1247 this feature on and off.
1247 this feature on and off.
1248
1248
1249 The initial state of this feature is set in your ipythonrc
1249 The initial state of this feature is set in your ipythonrc
1250 configuration file (the variable is called 'pdb').
1250 configuration file (the variable is called 'pdb').
1251
1251
1252 If you want to just activate the debugger AFTER an exception has fired,
1252 If you want to just activate the debugger AFTER an exception has fired,
1253 without having to type '%pdb on' and rerunning your code, you can use
1253 without having to type '%pdb on' and rerunning your code, you can use
1254 the %debug magic."""
1254 the %debug magic."""
1255
1255
1256 par = parameter_s.strip().lower()
1256 par = parameter_s.strip().lower()
1257
1257
1258 if par:
1258 if par:
1259 try:
1259 try:
1260 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1260 new_pdb = {'off':0,'0':0,'on':1,'1':1}[par]
1261 except KeyError:
1261 except KeyError:
1262 print ('Incorrect argument. Use on/1, off/0, '
1262 print ('Incorrect argument. Use on/1, off/0, '
1263 'or nothing for a toggle.')
1263 'or nothing for a toggle.')
1264 return
1264 return
1265 else:
1265 else:
1266 # toggle
1266 # toggle
1267 new_pdb = not self.shell.call_pdb
1267 new_pdb = not self.shell.call_pdb
1268
1268
1269 # set on the shell
1269 # set on the shell
1270 self.shell.call_pdb = new_pdb
1270 self.shell.call_pdb = new_pdb
1271 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1271 print 'Automatic pdb calling has been turned',on_off(new_pdb)
1272
1272
1273 def magic_debug(self, parameter_s=''):
1273 def magic_debug(self, parameter_s=''):
1274 """Activate the interactive debugger in post-mortem mode.
1274 """Activate the interactive debugger in post-mortem mode.
1275
1275
1276 If an exception has just occurred, this lets you inspect its stack
1276 If an exception has just occurred, this lets you inspect its stack
1277 frames interactively. Note that this will always work only on the last
1277 frames interactively. Note that this will always work only on the last
1278 traceback that occurred, so you must call this quickly after an
1278 traceback that occurred, so you must call this quickly after an
1279 exception that you wish to inspect has fired, because if another one
1279 exception that you wish to inspect has fired, because if another one
1280 occurs, it clobbers the previous one.
1280 occurs, it clobbers the previous one.
1281
1281
1282 If you want IPython to automatically do this on every exception, see
1282 If you want IPython to automatically do this on every exception, see
1283 the %pdb magic for more details.
1283 the %pdb magic for more details.
1284 """
1284 """
1285 self.shell.debugger(force=True)
1285 self.shell.debugger(force=True)
1286
1286
1287 @skip_doctest
1287 @skip_doctest
1288 def magic_prun(self, parameter_s ='',user_mode=1,
1288 def magic_prun(self, parameter_s ='',user_mode=1,
1289 opts=None,arg_lst=None,prog_ns=None):
1289 opts=None,arg_lst=None,prog_ns=None):
1290
1290
1291 """Run a statement through the python code profiler.
1291 """Run a statement through the python code profiler.
1292
1292
1293 Usage:
1293 Usage:
1294 %prun [options] statement
1294 %prun [options] statement
1295
1295
1296 The given statement (which doesn't require quote marks) is run via the
1296 The given statement (which doesn't require quote marks) is run via the
1297 python profiler in a manner similar to the profile.run() function.
1297 python profiler in a manner similar to the profile.run() function.
1298 Namespaces are internally managed to work correctly; profile.run
1298 Namespaces are internally managed to work correctly; profile.run
1299 cannot be used in IPython because it makes certain assumptions about
1299 cannot be used in IPython because it makes certain assumptions about
1300 namespaces which do not hold under IPython.
1300 namespaces which do not hold under IPython.
1301
1301
1302 Options:
1302 Options:
1303
1303
1304 -l <limit>: you can place restrictions on what or how much of the
1304 -l <limit>: you can place restrictions on what or how much of the
1305 profile gets printed. The limit value can be:
1305 profile gets printed. The limit value can be:
1306
1306
1307 * A string: only information for function names containing this string
1307 * A string: only information for function names containing this string
1308 is printed.
1308 is printed.
1309
1309
1310 * An integer: only these many lines are printed.
1310 * An integer: only these many lines are printed.
1311
1311
1312 * A float (between 0 and 1): this fraction of the report is printed
1312 * A float (between 0 and 1): this fraction of the report is printed
1313 (for example, use a limit of 0.4 to see the topmost 40% only).
1313 (for example, use a limit of 0.4 to see the topmost 40% only).
1314
1314
1315 You can combine several limits with repeated use of the option. For
1315 You can combine several limits with repeated use of the option. For
1316 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1316 example, '-l __init__ -l 5' will print only the topmost 5 lines of
1317 information about class constructors.
1317 information about class constructors.
1318
1318
1319 -r: return the pstats.Stats object generated by the profiling. This
1319 -r: return the pstats.Stats object generated by the profiling. This
1320 object has all the information about the profile in it, and you can
1320 object has all the information about the profile in it, and you can
1321 later use it for further analysis or in other functions.
1321 later use it for further analysis or in other functions.
1322
1322
1323 -s <key>: sort profile by given key. You can provide more than one key
1323 -s <key>: sort profile by given key. You can provide more than one key
1324 by using the option several times: '-s key1 -s key2 -s key3...'. The
1324 by using the option several times: '-s key1 -s key2 -s key3...'. The
1325 default sorting key is 'time'.
1325 default sorting key is 'time'.
1326
1326
1327 The following is copied verbatim from the profile documentation
1327 The following is copied verbatim from the profile documentation
1328 referenced below:
1328 referenced below:
1329
1329
1330 When more than one key is provided, additional keys are used as
1330 When more than one key is provided, additional keys are used as
1331 secondary criteria when the there is equality in all keys selected
1331 secondary criteria when the there is equality in all keys selected
1332 before them.
1332 before them.
1333
1333
1334 Abbreviations can be used for any key names, as long as the
1334 Abbreviations can be used for any key names, as long as the
1335 abbreviation is unambiguous. The following are the keys currently
1335 abbreviation is unambiguous. The following are the keys currently
1336 defined:
1336 defined:
1337
1337
1338 Valid Arg Meaning
1338 Valid Arg Meaning
1339 "calls" call count
1339 "calls" call count
1340 "cumulative" cumulative time
1340 "cumulative" cumulative time
1341 "file" file name
1341 "file" file name
1342 "module" file name
1342 "module" file name
1343 "pcalls" primitive call count
1343 "pcalls" primitive call count
1344 "line" line number
1344 "line" line number
1345 "name" function name
1345 "name" function name
1346 "nfl" name/file/line
1346 "nfl" name/file/line
1347 "stdname" standard name
1347 "stdname" standard name
1348 "time" internal time
1348 "time" internal time
1349
1349
1350 Note that all sorts on statistics are in descending order (placing
1350 Note that all sorts on statistics are in descending order (placing
1351 most time consuming items first), where as name, file, and line number
1351 most time consuming items first), where as name, file, and line number
1352 searches are in ascending order (i.e., alphabetical). The subtle
1352 searches are in ascending order (i.e., alphabetical). The subtle
1353 distinction between "nfl" and "stdname" is that the standard name is a
1353 distinction between "nfl" and "stdname" is that the standard name is a
1354 sort of the name as printed, which means that the embedded line
1354 sort of the name as printed, which means that the embedded line
1355 numbers get compared in an odd way. For example, lines 3, 20, and 40
1355 numbers get compared in an odd way. For example, lines 3, 20, and 40
1356 would (if the file names were the same) appear in the string order
1356 would (if the file names were the same) appear in the string order
1357 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1357 "20" "3" and "40". In contrast, "nfl" does a numeric compare of the
1358 line numbers. In fact, sort_stats("nfl") is the same as
1358 line numbers. In fact, sort_stats("nfl") is the same as
1359 sort_stats("name", "file", "line").
1359 sort_stats("name", "file", "line").
1360
1360
1361 -T <filename>: save profile results as shown on screen to a text
1361 -T <filename>: save profile results as shown on screen to a text
1362 file. The profile is still shown on screen.
1362 file. The profile is still shown on screen.
1363
1363
1364 -D <filename>: save (via dump_stats) profile statistics to given
1364 -D <filename>: save (via dump_stats) profile statistics to given
1365 filename. This data is in a format understod by the pstats module, and
1365 filename. This data is in a format understod by the pstats module, and
1366 is generated by a call to the dump_stats() method of profile
1366 is generated by a call to the dump_stats() method of profile
1367 objects. The profile is still shown on screen.
1367 objects. The profile is still shown on screen.
1368
1368
1369 If you want to run complete programs under the profiler's control, use
1369 If you want to run complete programs under the profiler's control, use
1370 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1370 '%run -p [prof_opts] filename.py [args to program]' where prof_opts
1371 contains profiler specific options as described here.
1371 contains profiler specific options as described here.
1372
1372
1373 You can read the complete documentation for the profile module with::
1373 You can read the complete documentation for the profile module with::
1374
1374
1375 In [1]: import profile; profile.help()
1375 In [1]: import profile; profile.help()
1376 """
1376 """
1377
1377
1378 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1378 opts_def = Struct(D=[''],l=[],s=['time'],T=[''])
1379 # protect user quote marks
1379 # protect user quote marks
1380 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1380 parameter_s = parameter_s.replace('"',r'\"').replace("'",r"\'")
1381
1381
1382 if user_mode: # regular user call
1382 if user_mode: # regular user call
1383 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1383 opts,arg_str = self.parse_options(parameter_s,'D:l:rs:T:',
1384 list_all=1)
1384 list_all=1)
1385 namespace = self.shell.user_ns
1385 namespace = self.shell.user_ns
1386 else: # called to run a program by %run -p
1386 else: # called to run a program by %run -p
1387 try:
1387 try:
1388 filename = get_py_filename(arg_lst[0])
1388 filename = get_py_filename(arg_lst[0])
1389 except IOError,msg:
1389 except IOError,msg:
1390 error(msg)
1390 error(msg)
1391 return
1391 return
1392
1392
1393 arg_str = 'execfile(filename,prog_ns)'
1393 arg_str = 'execfile(filename,prog_ns)'
1394 namespace = locals()
1394 namespace = locals()
1395
1395
1396 opts.merge(opts_def)
1396 opts.merge(opts_def)
1397
1397
1398 prof = profile.Profile()
1398 prof = profile.Profile()
1399 try:
1399 try:
1400 prof = prof.runctx(arg_str,namespace,namespace)
1400 prof = prof.runctx(arg_str,namespace,namespace)
1401 sys_exit = ''
1401 sys_exit = ''
1402 except SystemExit:
1402 except SystemExit:
1403 sys_exit = """*** SystemExit exception caught in code being profiled."""
1403 sys_exit = """*** SystemExit exception caught in code being profiled."""
1404
1404
1405 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1405 stats = pstats.Stats(prof).strip_dirs().sort_stats(*opts.s)
1406
1406
1407 lims = opts.l
1407 lims = opts.l
1408 if lims:
1408 if lims:
1409 lims = [] # rebuild lims with ints/floats/strings
1409 lims = [] # rebuild lims with ints/floats/strings
1410 for lim in opts.l:
1410 for lim in opts.l:
1411 try:
1411 try:
1412 lims.append(int(lim))
1412 lims.append(int(lim))
1413 except ValueError:
1413 except ValueError:
1414 try:
1414 try:
1415 lims.append(float(lim))
1415 lims.append(float(lim))
1416 except ValueError:
1416 except ValueError:
1417 lims.append(lim)
1417 lims.append(lim)
1418
1418
1419 # Trap output.
1419 # Trap output.
1420 stdout_trap = StringIO()
1420 stdout_trap = StringIO()
1421
1421
1422 if hasattr(stats,'stream'):
1422 if hasattr(stats,'stream'):
1423 # In newer versions of python, the stats object has a 'stream'
1423 # In newer versions of python, the stats object has a 'stream'
1424 # attribute to write into.
1424 # attribute to write into.
1425 stats.stream = stdout_trap
1425 stats.stream = stdout_trap
1426 stats.print_stats(*lims)
1426 stats.print_stats(*lims)
1427 else:
1427 else:
1428 # For older versions, we manually redirect stdout during printing
1428 # For older versions, we manually redirect stdout during printing
1429 sys_stdout = sys.stdout
1429 sys_stdout = sys.stdout
1430 try:
1430 try:
1431 sys.stdout = stdout_trap
1431 sys.stdout = stdout_trap
1432 stats.print_stats(*lims)
1432 stats.print_stats(*lims)
1433 finally:
1433 finally:
1434 sys.stdout = sys_stdout
1434 sys.stdout = sys_stdout
1435
1435
1436 output = stdout_trap.getvalue()
1436 output = stdout_trap.getvalue()
1437 output = output.rstrip()
1437 output = output.rstrip()
1438
1438
1439 page.page(output)
1439 page.page(output)
1440 print sys_exit,
1440 print sys_exit,
1441
1441
1442 dump_file = opts.D[0]
1442 dump_file = opts.D[0]
1443 text_file = opts.T[0]
1443 text_file = opts.T[0]
1444 if dump_file:
1444 if dump_file:
1445 prof.dump_stats(dump_file)
1445 prof.dump_stats(dump_file)
1446 print '\n*** Profile stats marshalled to file',\
1446 print '\n*** Profile stats marshalled to file',\
1447 `dump_file`+'.',sys_exit
1447 `dump_file`+'.',sys_exit
1448 if text_file:
1448 if text_file:
1449 pfile = file(text_file,'w')
1449 pfile = file(text_file,'w')
1450 pfile.write(output)
1450 pfile.write(output)
1451 pfile.close()
1451 pfile.close()
1452 print '\n*** Profile printout saved to text file',\
1452 print '\n*** Profile printout saved to text file',\
1453 `text_file`+'.',sys_exit
1453 `text_file`+'.',sys_exit
1454
1454
1455 if opts.has_key('r'):
1455 if opts.has_key('r'):
1456 return stats
1456 return stats
1457 else:
1457 else:
1458 return None
1458 return None
1459
1459
1460 @skip_doctest
1460 @skip_doctest
1461 def magic_run(self, parameter_s ='',runner=None,
1461 def magic_run(self, parameter_s ='',runner=None,
1462 file_finder=get_py_filename):
1462 file_finder=get_py_filename):
1463 """Run the named file inside IPython as a program.
1463 """Run the named file inside IPython as a program.
1464
1464
1465 Usage:\\
1465 Usage:\\
1466 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1466 %run [-n -i -t [-N<N>] -d [-b<N>] -p [profile options]] file [args]
1467
1467
1468 Parameters after the filename are passed as command-line arguments to
1468 Parameters after the filename are passed as command-line arguments to
1469 the program (put in sys.argv). Then, control returns to IPython's
1469 the program (put in sys.argv). Then, control returns to IPython's
1470 prompt.
1470 prompt.
1471
1471
1472 This is similar to running at a system prompt:\\
1472 This is similar to running at a system prompt:\\
1473 $ python file args\\
1473 $ python file args\\
1474 but with the advantage of giving you IPython's tracebacks, and of
1474 but with the advantage of giving you IPython's tracebacks, and of
1475 loading all variables into your interactive namespace for further use
1475 loading all variables into your interactive namespace for further use
1476 (unless -p is used, see below).
1476 (unless -p is used, see below).
1477
1477
1478 The file is executed in a namespace initially consisting only of
1478 The file is executed in a namespace initially consisting only of
1479 __name__=='__main__' and sys.argv constructed as indicated. It thus
1479 __name__=='__main__' and sys.argv constructed as indicated. It thus
1480 sees its environment as if it were being run as a stand-alone program
1480 sees its environment as if it were being run as a stand-alone program
1481 (except for sharing global objects such as previously imported
1481 (except for sharing global objects such as previously imported
1482 modules). But after execution, the IPython interactive namespace gets
1482 modules). But after execution, the IPython interactive namespace gets
1483 updated with all variables defined in the program (except for __name__
1483 updated with all variables defined in the program (except for __name__
1484 and sys.argv). This allows for very convenient loading of code for
1484 and sys.argv). This allows for very convenient loading of code for
1485 interactive work, while giving each program a 'clean sheet' to run in.
1485 interactive work, while giving each program a 'clean sheet' to run in.
1486
1486
1487 Options:
1487 Options:
1488
1488
1489 -n: __name__ is NOT set to '__main__', but to the running file's name
1489 -n: __name__ is NOT set to '__main__', but to the running file's name
1490 without extension (as python does under import). This allows running
1490 without extension (as python does under import). This allows running
1491 scripts and reloading the definitions in them without calling code
1491 scripts and reloading the definitions in them without calling code
1492 protected by an ' if __name__ == "__main__" ' clause.
1492 protected by an ' if __name__ == "__main__" ' clause.
1493
1493
1494 -i: run the file in IPython's namespace instead of an empty one. This
1494 -i: run the file in IPython's namespace instead of an empty one. This
1495 is useful if you are experimenting with code written in a text editor
1495 is useful if you are experimenting with code written in a text editor
1496 which depends on variables defined interactively.
1496 which depends on variables defined interactively.
1497
1497
1498 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1498 -e: ignore sys.exit() calls or SystemExit exceptions in the script
1499 being run. This is particularly useful if IPython is being used to
1499 being run. This is particularly useful if IPython is being used to
1500 run unittests, which always exit with a sys.exit() call. In such
1500 run unittests, which always exit with a sys.exit() call. In such
1501 cases you are interested in the output of the test results, not in
1501 cases you are interested in the output of the test results, not in
1502 seeing a traceback of the unittest module.
1502 seeing a traceback of the unittest module.
1503
1503
1504 -t: print timing information at the end of the run. IPython will give
1504 -t: print timing information at the end of the run. IPython will give
1505 you an estimated CPU time consumption for your script, which under
1505 you an estimated CPU time consumption for your script, which under
1506 Unix uses the resource module to avoid the wraparound problems of
1506 Unix uses the resource module to avoid the wraparound problems of
1507 time.clock(). Under Unix, an estimate of time spent on system tasks
1507 time.clock(). Under Unix, an estimate of time spent on system tasks
1508 is also given (for Windows platforms this is reported as 0.0).
1508 is also given (for Windows platforms this is reported as 0.0).
1509
1509
1510 If -t is given, an additional -N<N> option can be given, where <N>
1510 If -t is given, an additional -N<N> option can be given, where <N>
1511 must be an integer indicating how many times you want the script to
1511 must be an integer indicating how many times you want the script to
1512 run. The final timing report will include total and per run results.
1512 run. The final timing report will include total and per run results.
1513
1513
1514 For example (testing the script uniq_stable.py):
1514 For example (testing the script uniq_stable.py):
1515
1515
1516 In [1]: run -t uniq_stable
1516 In [1]: run -t uniq_stable
1517
1517
1518 IPython CPU timings (estimated):\\
1518 IPython CPU timings (estimated):\\
1519 User : 0.19597 s.\\
1519 User : 0.19597 s.\\
1520 System: 0.0 s.\\
1520 System: 0.0 s.\\
1521
1521
1522 In [2]: run -t -N5 uniq_stable
1522 In [2]: run -t -N5 uniq_stable
1523
1523
1524 IPython CPU timings (estimated):\\
1524 IPython CPU timings (estimated):\\
1525 Total runs performed: 5\\
1525 Total runs performed: 5\\
1526 Times : Total Per run\\
1526 Times : Total Per run\\
1527 User : 0.910862 s, 0.1821724 s.\\
1527 User : 0.910862 s, 0.1821724 s.\\
1528 System: 0.0 s, 0.0 s.
1528 System: 0.0 s, 0.0 s.
1529
1529
1530 -d: run your program under the control of pdb, the Python debugger.
1530 -d: run your program under the control of pdb, the Python debugger.
1531 This allows you to execute your program step by step, watch variables,
1531 This allows you to execute your program step by step, watch variables,
1532 etc. Internally, what IPython does is similar to calling:
1532 etc. Internally, what IPython does is similar to calling:
1533
1533
1534 pdb.run('execfile("YOURFILENAME")')
1534 pdb.run('execfile("YOURFILENAME")')
1535
1535
1536 with a breakpoint set on line 1 of your file. You can change the line
1536 with a breakpoint set on line 1 of your file. You can change the line
1537 number for this automatic breakpoint to be <N> by using the -bN option
1537 number for this automatic breakpoint to be <N> by using the -bN option
1538 (where N must be an integer). For example:
1538 (where N must be an integer). For example:
1539
1539
1540 %run -d -b40 myscript
1540 %run -d -b40 myscript
1541
1541
1542 will set the first breakpoint at line 40 in myscript.py. Note that
1542 will set the first breakpoint at line 40 in myscript.py. Note that
1543 the first breakpoint must be set on a line which actually does
1543 the first breakpoint must be set on a line which actually does
1544 something (not a comment or docstring) for it to stop execution.
1544 something (not a comment or docstring) for it to stop execution.
1545
1545
1546 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1546 When the pdb debugger starts, you will see a (Pdb) prompt. You must
1547 first enter 'c' (without qoutes) to start execution up to the first
1547 first enter 'c' (without qoutes) to start execution up to the first
1548 breakpoint.
1548 breakpoint.
1549
1549
1550 Entering 'help' gives information about the use of the debugger. You
1550 Entering 'help' gives information about the use of the debugger. You
1551 can easily see pdb's full documentation with "import pdb;pdb.help()"
1551 can easily see pdb's full documentation with "import pdb;pdb.help()"
1552 at a prompt.
1552 at a prompt.
1553
1553
1554 -p: run program under the control of the Python profiler module (which
1554 -p: run program under the control of the Python profiler module (which
1555 prints a detailed report of execution times, function calls, etc).
1555 prints a detailed report of execution times, function calls, etc).
1556
1556
1557 You can pass other options after -p which affect the behavior of the
1557 You can pass other options after -p which affect the behavior of the
1558 profiler itself. See the docs for %prun for details.
1558 profiler itself. See the docs for %prun for details.
1559
1559
1560 In this mode, the program's variables do NOT propagate back to the
1560 In this mode, the program's variables do NOT propagate back to the
1561 IPython interactive namespace (because they remain in the namespace
1561 IPython interactive namespace (because they remain in the namespace
1562 where the profiler executes them).
1562 where the profiler executes them).
1563
1563
1564 Internally this triggers a call to %prun, see its documentation for
1564 Internally this triggers a call to %prun, see its documentation for
1565 details on the options available specifically for profiling.
1565 details on the options available specifically for profiling.
1566
1566
1567 There is one special usage for which the text above doesn't apply:
1567 There is one special usage for which the text above doesn't apply:
1568 if the filename ends with .ipy, the file is run as ipython script,
1568 if the filename ends with .ipy, the file is run as ipython script,
1569 just as if the commands were written on IPython prompt.
1569 just as if the commands were written on IPython prompt.
1570 """
1570 """
1571
1571
1572 # get arguments and set sys.argv for program to be run.
1572 # get arguments and set sys.argv for program to be run.
1573 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1573 opts,arg_lst = self.parse_options(parameter_s,'nidtN:b:pD:l:rs:T:e',
1574 mode='list',list_all=1)
1574 mode='list',list_all=1)
1575
1575
1576 try:
1576 try:
1577 filename = file_finder(arg_lst[0])
1577 filename = file_finder(arg_lst[0])
1578 except IndexError:
1578 except IndexError:
1579 warn('you must provide at least a filename.')
1579 warn('you must provide at least a filename.')
1580 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1580 print '\n%run:\n',oinspect.getdoc(self.magic_run)
1581 return
1581 return
1582 except IOError,msg:
1582 except IOError,msg:
1583 error(msg)
1583 error(msg)
1584 return
1584 return
1585
1585
1586 if filename.lower().endswith('.ipy'):
1586 if filename.lower().endswith('.ipy'):
1587 self.shell.safe_execfile_ipy(filename)
1587 self.shell.safe_execfile_ipy(filename)
1588 return
1588 return
1589
1589
1590 # Control the response to exit() calls made by the script being run
1590 # Control the response to exit() calls made by the script being run
1591 exit_ignore = opts.has_key('e')
1591 exit_ignore = opts.has_key('e')
1592
1592
1593 # Make sure that the running script gets a proper sys.argv as if it
1593 # Make sure that the running script gets a proper sys.argv as if it
1594 # were run from a system shell.
1594 # were run from a system shell.
1595 save_argv = sys.argv # save it for later restoring
1595 save_argv = sys.argv # save it for later restoring
1596 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1596 sys.argv = [filename]+ arg_lst[1:] # put in the proper filename
1597
1597
1598 if opts.has_key('i'):
1598 if opts.has_key('i'):
1599 # Run in user's interactive namespace
1599 # Run in user's interactive namespace
1600 prog_ns = self.shell.user_ns
1600 prog_ns = self.shell.user_ns
1601 __name__save = self.shell.user_ns['__name__']
1601 __name__save = self.shell.user_ns['__name__']
1602 prog_ns['__name__'] = '__main__'
1602 prog_ns['__name__'] = '__main__'
1603 main_mod = self.shell.new_main_mod(prog_ns)
1603 main_mod = self.shell.new_main_mod(prog_ns)
1604 else:
1604 else:
1605 # Run in a fresh, empty namespace
1605 # Run in a fresh, empty namespace
1606 if opts.has_key('n'):
1606 if opts.has_key('n'):
1607 name = os.path.splitext(os.path.basename(filename))[0]
1607 name = os.path.splitext(os.path.basename(filename))[0]
1608 else:
1608 else:
1609 name = '__main__'
1609 name = '__main__'
1610
1610
1611 main_mod = self.shell.new_main_mod()
1611 main_mod = self.shell.new_main_mod()
1612 prog_ns = main_mod.__dict__
1612 prog_ns = main_mod.__dict__
1613 prog_ns['__name__'] = name
1613 prog_ns['__name__'] = name
1614
1614
1615 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1615 # Since '%run foo' emulates 'python foo.py' at the cmd line, we must
1616 # set the __file__ global in the script's namespace
1616 # set the __file__ global in the script's namespace
1617 prog_ns['__file__'] = filename
1617 prog_ns['__file__'] = filename
1618
1618
1619 # pickle fix. See interactiveshell for an explanation. But we need to make sure
1619 # pickle fix. See interactiveshell for an explanation. But we need to make sure
1620 # that, if we overwrite __main__, we replace it at the end
1620 # that, if we overwrite __main__, we replace it at the end
1621 main_mod_name = prog_ns['__name__']
1621 main_mod_name = prog_ns['__name__']
1622
1622
1623 if main_mod_name == '__main__':
1623 if main_mod_name == '__main__':
1624 restore_main = sys.modules['__main__']
1624 restore_main = sys.modules['__main__']
1625 else:
1625 else:
1626 restore_main = False
1626 restore_main = False
1627
1627
1628 # This needs to be undone at the end to prevent holding references to
1628 # This needs to be undone at the end to prevent holding references to
1629 # every single object ever created.
1629 # every single object ever created.
1630 sys.modules[main_mod_name] = main_mod
1630 sys.modules[main_mod_name] = main_mod
1631
1631
1632 try:
1632 try:
1633 stats = None
1633 stats = None
1634 with self.readline_no_record:
1634 with self.readline_no_record:
1635 if opts.has_key('p'):
1635 if opts.has_key('p'):
1636 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1636 stats = self.magic_prun('',0,opts,arg_lst,prog_ns)
1637 else:
1637 else:
1638 if opts.has_key('d'):
1638 if opts.has_key('d'):
1639 deb = debugger.Pdb(self.shell.colors)
1639 deb = debugger.Pdb(self.shell.colors)
1640 # reset Breakpoint state, which is moronically kept
1640 # reset Breakpoint state, which is moronically kept
1641 # in a class
1641 # in a class
1642 bdb.Breakpoint.next = 1
1642 bdb.Breakpoint.next = 1
1643 bdb.Breakpoint.bplist = {}
1643 bdb.Breakpoint.bplist = {}
1644 bdb.Breakpoint.bpbynumber = [None]
1644 bdb.Breakpoint.bpbynumber = [None]
1645 # Set an initial breakpoint to stop execution
1645 # Set an initial breakpoint to stop execution
1646 maxtries = 10
1646 maxtries = 10
1647 bp = int(opts.get('b',[1])[0])
1647 bp = int(opts.get('b',[1])[0])
1648 checkline = deb.checkline(filename,bp)
1648 checkline = deb.checkline(filename,bp)
1649 if not checkline:
1649 if not checkline:
1650 for bp in range(bp+1,bp+maxtries+1):
1650 for bp in range(bp+1,bp+maxtries+1):
1651 if deb.checkline(filename,bp):
1651 if deb.checkline(filename,bp):
1652 break
1652 break
1653 else:
1653 else:
1654 msg = ("\nI failed to find a valid line to set "
1654 msg = ("\nI failed to find a valid line to set "
1655 "a breakpoint\n"
1655 "a breakpoint\n"
1656 "after trying up to line: %s.\n"
1656 "after trying up to line: %s.\n"
1657 "Please set a valid breakpoint manually "
1657 "Please set a valid breakpoint manually "
1658 "with the -b option." % bp)
1658 "with the -b option." % bp)
1659 error(msg)
1659 error(msg)
1660 return
1660 return
1661 # if we find a good linenumber, set the breakpoint
1661 # if we find a good linenumber, set the breakpoint
1662 deb.do_break('%s:%s' % (filename,bp))
1662 deb.do_break('%s:%s' % (filename,bp))
1663 # Start file run
1663 # Start file run
1664 print "NOTE: Enter 'c' at the",
1664 print "NOTE: Enter 'c' at the",
1665 print "%s prompt to start your script." % deb.prompt
1665 print "%s prompt to start your script." % deb.prompt
1666 try:
1666 try:
1667 deb.run('execfile("%s")' % filename,prog_ns)
1667 deb.run('execfile("%s")' % filename,prog_ns)
1668
1668
1669 except:
1669 except:
1670 etype, value, tb = sys.exc_info()
1670 etype, value, tb = sys.exc_info()
1671 # Skip three frames in the traceback: the %run one,
1671 # Skip three frames in the traceback: the %run one,
1672 # one inside bdb.py, and the command-line typed by the
1672 # one inside bdb.py, and the command-line typed by the
1673 # user (run by exec in pdb itself).
1673 # user (run by exec in pdb itself).
1674 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1674 self.shell.InteractiveTB(etype,value,tb,tb_offset=3)
1675 else:
1675 else:
1676 if runner is None:
1676 if runner is None:
1677 runner = self.shell.safe_execfile
1677 runner = self.shell.safe_execfile
1678 if opts.has_key('t'):
1678 if opts.has_key('t'):
1679 # timed execution
1679 # timed execution
1680 try:
1680 try:
1681 nruns = int(opts['N'][0])
1681 nruns = int(opts['N'][0])
1682 if nruns < 1:
1682 if nruns < 1:
1683 error('Number of runs must be >=1')
1683 error('Number of runs must be >=1')
1684 return
1684 return
1685 except (KeyError):
1685 except (KeyError):
1686 nruns = 1
1686 nruns = 1
1687 if nruns == 1:
1687 if nruns == 1:
1688 t0 = clock2()
1688 t0 = clock2()
1689 runner(filename,prog_ns,prog_ns,
1689 runner(filename,prog_ns,prog_ns,
1690 exit_ignore=exit_ignore)
1690 exit_ignore=exit_ignore)
1691 t1 = clock2()
1691 t1 = clock2()
1692 t_usr = t1[0]-t0[0]
1692 t_usr = t1[0]-t0[0]
1693 t_sys = t1[1]-t0[1]
1693 t_sys = t1[1]-t0[1]
1694 print "\nIPython CPU timings (estimated):"
1694 print "\nIPython CPU timings (estimated):"
1695 print " User : %10s s." % t_usr
1695 print " User : %10s s." % t_usr
1696 print " System: %10s s." % t_sys
1696 print " System: %10s s." % t_sys
1697 else:
1697 else:
1698 runs = range(nruns)
1698 runs = range(nruns)
1699 t0 = clock2()
1699 t0 = clock2()
1700 for nr in runs:
1700 for nr in runs:
1701 runner(filename,prog_ns,prog_ns,
1701 runner(filename,prog_ns,prog_ns,
1702 exit_ignore=exit_ignore)
1702 exit_ignore=exit_ignore)
1703 t1 = clock2()
1703 t1 = clock2()
1704 t_usr = t1[0]-t0[0]
1704 t_usr = t1[0]-t0[0]
1705 t_sys = t1[1]-t0[1]
1705 t_sys = t1[1]-t0[1]
1706 print "\nIPython CPU timings (estimated):"
1706 print "\nIPython CPU timings (estimated):"
1707 print "Total runs performed:",nruns
1707 print "Total runs performed:",nruns
1708 print " Times : %10s %10s" % ('Total','Per run')
1708 print " Times : %10s %10s" % ('Total','Per run')
1709 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1709 print " User : %10s s, %10s s." % (t_usr,t_usr/nruns)
1710 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1710 print " System: %10s s, %10s s." % (t_sys,t_sys/nruns)
1711
1711
1712 else:
1712 else:
1713 # regular execution
1713 # regular execution
1714 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1714 runner(filename,prog_ns,prog_ns,exit_ignore=exit_ignore)
1715
1715
1716 if opts.has_key('i'):
1716 if opts.has_key('i'):
1717 self.shell.user_ns['__name__'] = __name__save
1717 self.shell.user_ns['__name__'] = __name__save
1718 else:
1718 else:
1719 # The shell MUST hold a reference to prog_ns so after %run
1719 # The shell MUST hold a reference to prog_ns so after %run
1720 # exits, the python deletion mechanism doesn't zero it out
1720 # exits, the python deletion mechanism doesn't zero it out
1721 # (leaving dangling references).
1721 # (leaving dangling references).
1722 self.shell.cache_main_mod(prog_ns,filename)
1722 self.shell.cache_main_mod(prog_ns,filename)
1723 # update IPython interactive namespace
1723 # update IPython interactive namespace
1724
1724
1725 # Some forms of read errors on the file may mean the
1725 # Some forms of read errors on the file may mean the
1726 # __name__ key was never set; using pop we don't have to
1726 # __name__ key was never set; using pop we don't have to
1727 # worry about a possible KeyError.
1727 # worry about a possible KeyError.
1728 prog_ns.pop('__name__', None)
1728 prog_ns.pop('__name__', None)
1729
1729
1730 self.shell.user_ns.update(prog_ns)
1730 self.shell.user_ns.update(prog_ns)
1731 finally:
1731 finally:
1732 # It's a bit of a mystery why, but __builtins__ can change from
1732 # It's a bit of a mystery why, but __builtins__ can change from
1733 # being a module to becoming a dict missing some key data after
1733 # being a module to becoming a dict missing some key data after
1734 # %run. As best I can see, this is NOT something IPython is doing
1734 # %run. As best I can see, this is NOT something IPython is doing
1735 # at all, and similar problems have been reported before:
1735 # at all, and similar problems have been reported before:
1736 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1736 # http://coding.derkeiler.com/Archive/Python/comp.lang.python/2004-10/0188.html
1737 # Since this seems to be done by the interpreter itself, the best
1737 # Since this seems to be done by the interpreter itself, the best
1738 # we can do is to at least restore __builtins__ for the user on
1738 # we can do is to at least restore __builtins__ for the user on
1739 # exit.
1739 # exit.
1740 self.shell.user_ns['__builtins__'] = __builtin__
1740 self.shell.user_ns['__builtins__'] = __builtin__
1741
1741
1742 # Ensure key global structures are restored
1742 # Ensure key global structures are restored
1743 sys.argv = save_argv
1743 sys.argv = save_argv
1744 if restore_main:
1744 if restore_main:
1745 sys.modules['__main__'] = restore_main
1745 sys.modules['__main__'] = restore_main
1746 else:
1746 else:
1747 # Remove from sys.modules the reference to main_mod we'd
1747 # Remove from sys.modules the reference to main_mod we'd
1748 # added. Otherwise it will trap references to objects
1748 # added. Otherwise it will trap references to objects
1749 # contained therein.
1749 # contained therein.
1750 del sys.modules[main_mod_name]
1750 del sys.modules[main_mod_name]
1751
1751
1752 return stats
1752 return stats
1753
1753
1754 @skip_doctest
1754 @skip_doctest
1755 def magic_timeit(self, parameter_s =''):
1755 def magic_timeit(self, parameter_s =''):
1756 """Time execution of a Python statement or expression
1756 """Time execution of a Python statement or expression
1757
1757
1758 Usage:\\
1758 Usage:\\
1759 %timeit [-n<N> -r<R> [-t|-c]] statement
1759 %timeit [-n<N> -r<R> [-t|-c]] statement
1760
1760
1761 Time execution of a Python statement or expression using the timeit
1761 Time execution of a Python statement or expression using the timeit
1762 module.
1762 module.
1763
1763
1764 Options:
1764 Options:
1765 -n<N>: execute the given statement <N> times in a loop. If this value
1765 -n<N>: execute the given statement <N> times in a loop. If this value
1766 is not given, a fitting value is chosen.
1766 is not given, a fitting value is chosen.
1767
1767
1768 -r<R>: repeat the loop iteration <R> times and take the best result.
1768 -r<R>: repeat the loop iteration <R> times and take the best result.
1769 Default: 3
1769 Default: 3
1770
1770
1771 -t: use time.time to measure the time, which is the default on Unix.
1771 -t: use time.time to measure the time, which is the default on Unix.
1772 This function measures wall time.
1772 This function measures wall time.
1773
1773
1774 -c: use time.clock to measure the time, which is the default on
1774 -c: use time.clock to measure the time, which is the default on
1775 Windows and measures wall time. On Unix, resource.getrusage is used
1775 Windows and measures wall time. On Unix, resource.getrusage is used
1776 instead and returns the CPU user time.
1776 instead and returns the CPU user time.
1777
1777
1778 -p<P>: use a precision of <P> digits to display the timing result.
1778 -p<P>: use a precision of <P> digits to display the timing result.
1779 Default: 3
1779 Default: 3
1780
1780
1781
1781
1782 Examples:
1782 Examples:
1783
1783
1784 In [1]: %timeit pass
1784 In [1]: %timeit pass
1785 10000000 loops, best of 3: 53.3 ns per loop
1785 10000000 loops, best of 3: 53.3 ns per loop
1786
1786
1787 In [2]: u = None
1787 In [2]: u = None
1788
1788
1789 In [3]: %timeit u is None
1789 In [3]: %timeit u is None
1790 10000000 loops, best of 3: 184 ns per loop
1790 10000000 loops, best of 3: 184 ns per loop
1791
1791
1792 In [4]: %timeit -r 4 u == None
1792 In [4]: %timeit -r 4 u == None
1793 1000000 loops, best of 4: 242 ns per loop
1793 1000000 loops, best of 4: 242 ns per loop
1794
1794
1795 In [5]: import time
1795 In [5]: import time
1796
1796
1797 In [6]: %timeit -n1 time.sleep(2)
1797 In [6]: %timeit -n1 time.sleep(2)
1798 1 loops, best of 3: 2 s per loop
1798 1 loops, best of 3: 2 s per loop
1799
1799
1800
1800
1801 The times reported by %timeit will be slightly higher than those
1801 The times reported by %timeit will be slightly higher than those
1802 reported by the timeit.py script when variables are accessed. This is
1802 reported by the timeit.py script when variables are accessed. This is
1803 due to the fact that %timeit executes the statement in the namespace
1803 due to the fact that %timeit executes the statement in the namespace
1804 of the shell, compared with timeit.py, which uses a single setup
1804 of the shell, compared with timeit.py, which uses a single setup
1805 statement to import function or create variables. Generally, the bias
1805 statement to import function or create variables. Generally, the bias
1806 does not matter as long as results from timeit.py are not mixed with
1806 does not matter as long as results from timeit.py are not mixed with
1807 those from %timeit."""
1807 those from %timeit."""
1808
1808
1809 import timeit
1809 import timeit
1810 import math
1810 import math
1811
1811
1812 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1812 # XXX: Unfortunately the unicode 'micro' symbol can cause problems in
1813 # certain terminals. Until we figure out a robust way of
1813 # certain terminals. Until we figure out a robust way of
1814 # auto-detecting if the terminal can deal with it, use plain 'us' for
1814 # auto-detecting if the terminal can deal with it, use plain 'us' for
1815 # microseconds. I am really NOT happy about disabling the proper
1815 # microseconds. I am really NOT happy about disabling the proper
1816 # 'micro' prefix, but crashing is worse... If anyone knows what the
1816 # 'micro' prefix, but crashing is worse... If anyone knows what the
1817 # right solution for this is, I'm all ears...
1817 # right solution for this is, I'm all ears...
1818 #
1818 #
1819 # Note: using
1819 # Note: using
1820 #
1820 #
1821 # s = u'\xb5'
1821 # s = u'\xb5'
1822 # s.encode(sys.getdefaultencoding())
1822 # s.encode(sys.getdefaultencoding())
1823 #
1823 #
1824 # is not sufficient, as I've seen terminals where that fails but
1824 # is not sufficient, as I've seen terminals where that fails but
1825 # print s
1825 # print s
1826 #
1826 #
1827 # succeeds
1827 # succeeds
1828 #
1828 #
1829 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1829 # See bug: https://bugs.launchpad.net/ipython/+bug/348466
1830
1830
1831 #units = [u"s", u"ms",u'\xb5',"ns"]
1831 #units = [u"s", u"ms",u'\xb5',"ns"]
1832 units = [u"s", u"ms",u'us',"ns"]
1832 units = [u"s", u"ms",u'us',"ns"]
1833
1833
1834 scaling = [1, 1e3, 1e6, 1e9]
1834 scaling = [1, 1e3, 1e6, 1e9]
1835
1835
1836 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1836 opts, stmt = self.parse_options(parameter_s,'n:r:tcp:',
1837 posix=False)
1837 posix=False)
1838 if stmt == "":
1838 if stmt == "":
1839 return
1839 return
1840 timefunc = timeit.default_timer
1840 timefunc = timeit.default_timer
1841 number = int(getattr(opts, "n", 0))
1841 number = int(getattr(opts, "n", 0))
1842 repeat = int(getattr(opts, "r", timeit.default_repeat))
1842 repeat = int(getattr(opts, "r", timeit.default_repeat))
1843 precision = int(getattr(opts, "p", 3))
1843 precision = int(getattr(opts, "p", 3))
1844 if hasattr(opts, "t"):
1844 if hasattr(opts, "t"):
1845 timefunc = time.time
1845 timefunc = time.time
1846 if hasattr(opts, "c"):
1846 if hasattr(opts, "c"):
1847 timefunc = clock
1847 timefunc = clock
1848
1848
1849 timer = timeit.Timer(timer=timefunc)
1849 timer = timeit.Timer(timer=timefunc)
1850 # this code has tight coupling to the inner workings of timeit.Timer,
1850 # this code has tight coupling to the inner workings of timeit.Timer,
1851 # but is there a better way to achieve that the code stmt has access
1851 # but is there a better way to achieve that the code stmt has access
1852 # to the shell namespace?
1852 # to the shell namespace?
1853
1853
1854 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1854 src = timeit.template % {'stmt': timeit.reindent(stmt, 8),
1855 'setup': "pass"}
1855 'setup': "pass"}
1856 # Track compilation time so it can be reported if too long
1856 # Track compilation time so it can be reported if too long
1857 # Minimum time above which compilation time will be reported
1857 # Minimum time above which compilation time will be reported
1858 tc_min = 0.1
1858 tc_min = 0.1
1859
1859
1860 t0 = clock()
1860 t0 = clock()
1861 code = compile(src, "<magic-timeit>", "exec")
1861 code = compile(src, "<magic-timeit>", "exec")
1862 tc = clock()-t0
1862 tc = clock()-t0
1863
1863
1864 ns = {}
1864 ns = {}
1865 exec code in self.shell.user_ns, ns
1865 exec code in self.shell.user_ns, ns
1866 timer.inner = ns["inner"]
1866 timer.inner = ns["inner"]
1867
1867
1868 if number == 0:
1868 if number == 0:
1869 # determine number so that 0.2 <= total time < 2.0
1869 # determine number so that 0.2 <= total time < 2.0
1870 number = 1
1870 number = 1
1871 for i in range(1, 10):
1871 for i in range(1, 10):
1872 if timer.timeit(number) >= 0.2:
1872 if timer.timeit(number) >= 0.2:
1873 break
1873 break
1874 number *= 10
1874 number *= 10
1875
1875
1876 best = min(timer.repeat(repeat, number)) / number
1876 best = min(timer.repeat(repeat, number)) / number
1877
1877
1878 if best > 0.0 and best < 1000.0:
1878 if best > 0.0 and best < 1000.0:
1879 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1879 order = min(-int(math.floor(math.log10(best)) // 3), 3)
1880 elif best >= 1000.0:
1880 elif best >= 1000.0:
1881 order = 0
1881 order = 0
1882 else:
1882 else:
1883 order = 3
1883 order = 3
1884 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1884 print u"%d loops, best of %d: %.*g %s per loop" % (number, repeat,
1885 precision,
1885 precision,
1886 best * scaling[order],
1886 best * scaling[order],
1887 units[order])
1887 units[order])
1888 if tc > tc_min:
1888 if tc > tc_min:
1889 print "Compiler time: %.2f s" % tc
1889 print "Compiler time: %.2f s" % tc
1890
1890
1891 @skip_doctest
1891 @skip_doctest
1892 @needs_local_scope
1892 @needs_local_scope
1893 def magic_time(self,parameter_s = ''):
1893 def magic_time(self,parameter_s = ''):
1894 """Time execution of a Python statement or expression.
1894 """Time execution of a Python statement or expression.
1895
1895
1896 The CPU and wall clock times are printed, and the value of the
1896 The CPU and wall clock times are printed, and the value of the
1897 expression (if any) is returned. Note that under Win32, system time
1897 expression (if any) is returned. Note that under Win32, system time
1898 is always reported as 0, since it can not be measured.
1898 is always reported as 0, since it can not be measured.
1899
1899
1900 This function provides very basic timing functionality. In Python
1900 This function provides very basic timing functionality. In Python
1901 2.3, the timeit module offers more control and sophistication, so this
1901 2.3, the timeit module offers more control and sophistication, so this
1902 could be rewritten to use it (patches welcome).
1902 could be rewritten to use it (patches welcome).
1903
1903
1904 Some examples:
1904 Some examples:
1905
1905
1906 In [1]: time 2**128
1906 In [1]: time 2**128
1907 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1907 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1908 Wall time: 0.00
1908 Wall time: 0.00
1909 Out[1]: 340282366920938463463374607431768211456L
1909 Out[1]: 340282366920938463463374607431768211456L
1910
1910
1911 In [2]: n = 1000000
1911 In [2]: n = 1000000
1912
1912
1913 In [3]: time sum(range(n))
1913 In [3]: time sum(range(n))
1914 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1914 CPU times: user 1.20 s, sys: 0.05 s, total: 1.25 s
1915 Wall time: 1.37
1915 Wall time: 1.37
1916 Out[3]: 499999500000L
1916 Out[3]: 499999500000L
1917
1917
1918 In [4]: time print 'hello world'
1918 In [4]: time print 'hello world'
1919 hello world
1919 hello world
1920 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1920 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1921 Wall time: 0.00
1921 Wall time: 0.00
1922
1922
1923 Note that the time needed by Python to compile the given expression
1923 Note that the time needed by Python to compile the given expression
1924 will be reported if it is more than 0.1s. In this example, the
1924 will be reported if it is more than 0.1s. In this example, the
1925 actual exponentiation is done by Python at compilation time, so while
1925 actual exponentiation is done by Python at compilation time, so while
1926 the expression can take a noticeable amount of time to compute, that
1926 the expression can take a noticeable amount of time to compute, that
1927 time is purely due to the compilation:
1927 time is purely due to the compilation:
1928
1928
1929 In [5]: time 3**9999;
1929 In [5]: time 3**9999;
1930 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1930 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1931 Wall time: 0.00 s
1931 Wall time: 0.00 s
1932
1932
1933 In [6]: time 3**999999;
1933 In [6]: time 3**999999;
1934 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1934 CPU times: user 0.00 s, sys: 0.00 s, total: 0.00 s
1935 Wall time: 0.00 s
1935 Wall time: 0.00 s
1936 Compiler : 0.78 s
1936 Compiler : 0.78 s
1937 """
1937 """
1938
1938
1939 # fail immediately if the given expression can't be compiled
1939 # fail immediately if the given expression can't be compiled
1940
1940
1941 expr = self.shell.prefilter(parameter_s,False)
1941 expr = self.shell.prefilter(parameter_s,False)
1942
1942
1943 # Minimum time above which compilation time will be reported
1943 # Minimum time above which compilation time will be reported
1944 tc_min = 0.1
1944 tc_min = 0.1
1945
1945
1946 try:
1946 try:
1947 mode = 'eval'
1947 mode = 'eval'
1948 t0 = clock()
1948 t0 = clock()
1949 code = compile(expr,'<timed eval>',mode)
1949 code = compile(expr,'<timed eval>',mode)
1950 tc = clock()-t0
1950 tc = clock()-t0
1951 except SyntaxError:
1951 except SyntaxError:
1952 mode = 'exec'
1952 mode = 'exec'
1953 t0 = clock()
1953 t0 = clock()
1954 code = compile(expr,'<timed exec>',mode)
1954 code = compile(expr,'<timed exec>',mode)
1955 tc = clock()-t0
1955 tc = clock()-t0
1956 # skew measurement as little as possible
1956 # skew measurement as little as possible
1957 glob = self.shell.user_ns
1957 glob = self.shell.user_ns
1958 locs = self._magic_locals
1958 locs = self._magic_locals
1959 clk = clock2
1959 clk = clock2
1960 wtime = time.time
1960 wtime = time.time
1961 # time execution
1961 # time execution
1962 wall_st = wtime()
1962 wall_st = wtime()
1963 if mode=='eval':
1963 if mode=='eval':
1964 st = clk()
1964 st = clk()
1965 out = eval(code, glob, locs)
1965 out = eval(code, glob, locs)
1966 end = clk()
1966 end = clk()
1967 else:
1967 else:
1968 st = clk()
1968 st = clk()
1969 exec code in glob, locs
1969 exec code in glob, locs
1970 end = clk()
1970 end = clk()
1971 out = None
1971 out = None
1972 wall_end = wtime()
1972 wall_end = wtime()
1973 # Compute actual times and report
1973 # Compute actual times and report
1974 wall_time = wall_end-wall_st
1974 wall_time = wall_end-wall_st
1975 cpu_user = end[0]-st[0]
1975 cpu_user = end[0]-st[0]
1976 cpu_sys = end[1]-st[1]
1976 cpu_sys = end[1]-st[1]
1977 cpu_tot = cpu_user+cpu_sys
1977 cpu_tot = cpu_user+cpu_sys
1978 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1978 print "CPU times: user %.2f s, sys: %.2f s, total: %.2f s" % \
1979 (cpu_user,cpu_sys,cpu_tot)
1979 (cpu_user,cpu_sys,cpu_tot)
1980 print "Wall time: %.2f s" % wall_time
1980 print "Wall time: %.2f s" % wall_time
1981 if tc > tc_min:
1981 if tc > tc_min:
1982 print "Compiler : %.2f s" % tc
1982 print "Compiler : %.2f s" % tc
1983 return out
1983 return out
1984
1984
1985 @skip_doctest
1985 @skip_doctest
1986 def magic_macro(self,parameter_s = ''):
1986 def magic_macro(self,parameter_s = ''):
1987 """Define a macro for future re-execution. It accepts ranges of history,
1987 """Define a macro for future re-execution. It accepts ranges of history,
1988 filenames or string objects.
1988 filenames or string objects.
1989
1989
1990 Usage:\\
1990 Usage:\\
1991 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1991 %macro [options] name n1-n2 n3-n4 ... n5 .. n6 ...
1992
1992
1993 Options:
1993 Options:
1994
1994
1995 -r: use 'raw' input. By default, the 'processed' history is used,
1995 -r: use 'raw' input. By default, the 'processed' history is used,
1996 so that magics are loaded in their transformed version to valid
1996 so that magics are loaded in their transformed version to valid
1997 Python. If this option is given, the raw input as typed as the
1997 Python. If this option is given, the raw input as typed as the
1998 command line is used instead.
1998 command line is used instead.
1999
1999
2000 This will define a global variable called `name` which is a string
2000 This will define a global variable called `name` which is a string
2001 made of joining the slices and lines you specify (n1,n2,... numbers
2001 made of joining the slices and lines you specify (n1,n2,... numbers
2002 above) from your input history into a single string. This variable
2002 above) from your input history into a single string. This variable
2003 acts like an automatic function which re-executes those lines as if
2003 acts like an automatic function which re-executes those lines as if
2004 you had typed them. You just type 'name' at the prompt and the code
2004 you had typed them. You just type 'name' at the prompt and the code
2005 executes.
2005 executes.
2006
2006
2007 The syntax for indicating input ranges is described in %history.
2007 The syntax for indicating input ranges is described in %history.
2008
2008
2009 Note: as a 'hidden' feature, you can also use traditional python slice
2009 Note: as a 'hidden' feature, you can also use traditional python slice
2010 notation, where N:M means numbers N through M-1.
2010 notation, where N:M means numbers N through M-1.
2011
2011
2012 For example, if your history contains (%hist prints it):
2012 For example, if your history contains (%hist prints it):
2013
2013
2014 44: x=1
2014 44: x=1
2015 45: y=3
2015 45: y=3
2016 46: z=x+y
2016 46: z=x+y
2017 47: print x
2017 47: print x
2018 48: a=5
2018 48: a=5
2019 49: print 'x',x,'y',y
2019 49: print 'x',x,'y',y
2020
2020
2021 you can create a macro with lines 44 through 47 (included) and line 49
2021 you can create a macro with lines 44 through 47 (included) and line 49
2022 called my_macro with:
2022 called my_macro with:
2023
2023
2024 In [55]: %macro my_macro 44-47 49
2024 In [55]: %macro my_macro 44-47 49
2025
2025
2026 Now, typing `my_macro` (without quotes) will re-execute all this code
2026 Now, typing `my_macro` (without quotes) will re-execute all this code
2027 in one pass.
2027 in one pass.
2028
2028
2029 You don't need to give the line-numbers in order, and any given line
2029 You don't need to give the line-numbers in order, and any given line
2030 number can appear multiple times. You can assemble macros with any
2030 number can appear multiple times. You can assemble macros with any
2031 lines from your input history in any order.
2031 lines from your input history in any order.
2032
2032
2033 The macro is a simple object which holds its value in an attribute,
2033 The macro is a simple object which holds its value in an attribute,
2034 but IPython's display system checks for macros and executes them as
2034 but IPython's display system checks for macros and executes them as
2035 code instead of printing them when you type their name.
2035 code instead of printing them when you type their name.
2036
2036
2037 You can view a macro's contents by explicitly printing it with:
2037 You can view a macro's contents by explicitly printing it with:
2038
2038
2039 'print macro_name'.
2039 'print macro_name'.
2040
2040
2041 """
2041 """
2042 opts,args = self.parse_options(parameter_s,'r',mode='list')
2042 opts,args = self.parse_options(parameter_s,'r',mode='list')
2043 if not args: # List existing macros
2043 if not args: # List existing macros
2044 return sorted(k for k,v in self.shell.user_ns.iteritems() if\
2044 return sorted(k for k,v in self.shell.user_ns.iteritems() if\
2045 isinstance(v, Macro))
2045 isinstance(v, Macro))
2046 if len(args) == 1:
2046 if len(args) == 1:
2047 raise UsageError(
2047 raise UsageError(
2048 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2048 "%macro insufficient args; usage '%macro name n1-n2 n3-4...")
2049 name, codefrom = args[0], " ".join(args[1:])
2049 name, codefrom = args[0], " ".join(args[1:])
2050
2050
2051 #print 'rng',ranges # dbg
2051 #print 'rng',ranges # dbg
2052 try:
2052 try:
2053 lines = self.shell.find_user_code(codefrom, 'r' in opts)
2053 lines = self.shell.find_user_code(codefrom, 'r' in opts)
2054 except (ValueError, TypeError) as e:
2054 except (ValueError, TypeError) as e:
2055 print e.args[0]
2055 print e.args[0]
2056 return
2056 return
2057 macro = Macro(lines)
2057 macro = Macro(lines)
2058 self.shell.define_macro(name, macro)
2058 self.shell.define_macro(name, macro)
2059 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2059 print 'Macro `%s` created. To execute, type its name (without quotes).' % name
2060 print '=== Macro contents: ==='
2060 print '=== Macro contents: ==='
2061 print macro,
2061 print macro,
2062
2062
2063 def magic_save(self,parameter_s = ''):
2063 def magic_save(self,parameter_s = ''):
2064 """Save a set of lines or a macro to a given filename.
2064 """Save a set of lines or a macro to a given filename.
2065
2065
2066 Usage:\\
2066 Usage:\\
2067 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2067 %save [options] filename n1-n2 n3-n4 ... n5 .. n6 ...
2068
2068
2069 Options:
2069 Options:
2070
2070
2071 -r: use 'raw' input. By default, the 'processed' history is used,
2071 -r: use 'raw' input. By default, the 'processed' history is used,
2072 so that magics are loaded in their transformed version to valid
2072 so that magics are loaded in their transformed version to valid
2073 Python. If this option is given, the raw input as typed as the
2073 Python. If this option is given, the raw input as typed as the
2074 command line is used instead.
2074 command line is used instead.
2075
2075
2076 This function uses the same syntax as %history for input ranges,
2076 This function uses the same syntax as %history for input ranges,
2077 then saves the lines to the filename you specify.
2077 then saves the lines to the filename you specify.
2078
2078
2079 It adds a '.py' extension to the file if you don't do so yourself, and
2079 It adds a '.py' extension to the file if you don't do so yourself, and
2080 it asks for confirmation before overwriting existing files."""
2080 it asks for confirmation before overwriting existing files."""
2081
2081
2082 opts,args = self.parse_options(parameter_s,'r',mode='list')
2082 opts,args = self.parse_options(parameter_s,'r',mode='list')
2083 fname, codefrom = args[0], " ".join(args[1:])
2083 fname, codefrom = args[0], " ".join(args[1:])
2084 if not fname.endswith('.py'):
2084 if not fname.endswith('.py'):
2085 fname += '.py'
2085 fname += '.py'
2086 if os.path.isfile(fname):
2086 if os.path.isfile(fname):
2087 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2087 ans = raw_input('File `%s` exists. Overwrite (y/[N])? ' % fname)
2088 if ans.lower() not in ['y','yes']:
2088 if ans.lower() not in ['y','yes']:
2089 print 'Operation cancelled.'
2089 print 'Operation cancelled.'
2090 return
2090 return
2091 try:
2091 try:
2092 cmds = self.shell.find_user_code(codefrom, 'r' in opts)
2092 cmds = self.shell.find_user_code(codefrom, 'r' in opts)
2093 except (TypeError, ValueError) as e:
2093 except (TypeError, ValueError) as e:
2094 print e.args[0]
2094 print e.args[0]
2095 return
2095 return
2096 if isinstance(cmds, unicode):
2096 if isinstance(cmds, unicode):
2097 cmds = cmds.encode("utf-8")
2097 cmds = cmds.encode("utf-8")
2098 with open(fname,'w') as f:
2098 with open(fname,'w') as f:
2099 f.write("# coding: utf-8\n")
2099 f.write("# coding: utf-8\n")
2100 f.write(cmds)
2100 f.write(cmds)
2101 print 'The following commands were written to file `%s`:' % fname
2101 print 'The following commands were written to file `%s`:' % fname
2102 print cmds
2102 print cmds
2103
2103
2104 def magic_pastebin(self, parameter_s = ''):
2104 def magic_pastebin(self, parameter_s = ''):
2105 """Upload code to the 'Lodge it' paste bin, returning the URL."""
2105 """Upload code to the 'Lodge it' paste bin, returning the URL."""
2106 try:
2106 try:
2107 code = self.shell.find_user_code(parameter_s)
2107 code = self.shell.find_user_code(parameter_s)
2108 except (ValueError, TypeError) as e:
2108 except (ValueError, TypeError) as e:
2109 print e.args[0]
2109 print e.args[0]
2110 return
2110 return
2111 pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/')
2111 pbserver = ServerProxy('http://paste.pocoo.org/xmlrpc/')
2112 id = pbserver.pastes.newPaste("python", code)
2112 id = pbserver.pastes.newPaste("python", code)
2113 return "http://paste.pocoo.org/show/" + id
2113 return "http://paste.pocoo.org/show/" + id
2114
2114
2115 def magic_loadpy(self, arg_s):
2115 def magic_loadpy(self, arg_s):
2116 """Load a .py python script into the GUI console.
2116 """Load a .py python script into the GUI console.
2117
2117
2118 This magic command can either take a local filename or a url::
2118 This magic command can either take a local filename or a url::
2119
2119
2120 %loadpy myscript.py
2120 %loadpy myscript.py
2121 %loadpy http://www.example.com/myscript.py
2121 %loadpy http://www.example.com/myscript.py
2122 """
2122 """
2123 if not arg_s.endswith('.py'):
2123 if not arg_s.endswith('.py'):
2124 raise ValueError('%%load only works with .py files: %s' % arg_s)
2124 raise ValueError('%%load only works with .py files: %s' % arg_s)
2125 if arg_s.startswith('http'):
2125 if arg_s.startswith('http'):
2126 import urllib2
2126 import urllib2
2127 response = urllib2.urlopen(arg_s)
2127 response = urllib2.urlopen(arg_s)
2128 content = response.read()
2128 content = response.read()
2129 else:
2129 else:
2130 content = open(arg_s).read()
2130 content = open(arg_s).read()
2131 self.set_next_input(content)
2131 self.set_next_input(content)
2132
2132
2133 def _find_edit_target(self, args, opts, last_call):
2133 def _find_edit_target(self, args, opts, last_call):
2134 """Utility method used by magic_edit to find what to edit."""
2134 """Utility method used by magic_edit to find what to edit."""
2135
2135
2136 def make_filename(arg):
2136 def make_filename(arg):
2137 "Make a filename from the given args"
2137 "Make a filename from the given args"
2138 try:
2138 try:
2139 filename = get_py_filename(arg)
2139 filename = get_py_filename(arg)
2140 except IOError:
2140 except IOError:
2141 # If it ends with .py but doesn't already exist, assume we want
2141 # If it ends with .py but doesn't already exist, assume we want
2142 # a new file.
2142 # a new file.
2143 if args.endswith('.py'):
2143 if args.endswith('.py'):
2144 filename = arg
2144 filename = arg
2145 else:
2145 else:
2146 filename = None
2146 filename = None
2147 return filename
2147 return filename
2148
2148
2149 # Set a few locals from the options for convenience:
2149 # Set a few locals from the options for convenience:
2150 opts_prev = 'p' in opts
2150 opts_prev = 'p' in opts
2151 opts_raw = 'r' in opts
2151 opts_raw = 'r' in opts
2152
2152
2153 # custom exceptions
2153 # custom exceptions
2154 class DataIsObject(Exception): pass
2154 class DataIsObject(Exception): pass
2155
2155
2156 # Default line number value
2156 # Default line number value
2157 lineno = opts.get('n',None)
2157 lineno = opts.get('n',None)
2158
2158
2159 if opts_prev:
2159 if opts_prev:
2160 args = '_%s' % last_call[0]
2160 args = '_%s' % last_call[0]
2161 if not self.shell.user_ns.has_key(args):
2161 if not self.shell.user_ns.has_key(args):
2162 args = last_call[1]
2162 args = last_call[1]
2163
2163
2164 # use last_call to remember the state of the previous call, but don't
2164 # use last_call to remember the state of the previous call, but don't
2165 # let it be clobbered by successive '-p' calls.
2165 # let it be clobbered by successive '-p' calls.
2166 try:
2166 try:
2167 last_call[0] = self.shell.displayhook.prompt_count
2167 last_call[0] = self.shell.displayhook.prompt_count
2168 if not opts_prev:
2168 if not opts_prev:
2169 last_call[1] = parameter_s
2169 last_call[1] = parameter_s
2170 except:
2170 except:
2171 pass
2171 pass
2172
2172
2173 # by default this is done with temp files, except when the given
2173 # by default this is done with temp files, except when the given
2174 # arg is a filename
2174 # arg is a filename
2175 use_temp = True
2175 use_temp = True
2176
2176
2177 data = ''
2177 data = ''
2178
2178
2179 # First, see if the arguments should be a filename.
2179 # First, see if the arguments should be a filename.
2180 filename = make_filename(args)
2180 filename = make_filename(args)
2181 if filename:
2181 if filename:
2182 use_temp = False
2182 use_temp = False
2183 elif args:
2183 elif args:
2184 # Mode where user specifies ranges of lines, like in %macro.
2184 # Mode where user specifies ranges of lines, like in %macro.
2185 data = self.extract_input_lines(args, opts_raw)
2185 data = self.extract_input_lines(args, opts_raw)
2186 if not data:
2186 if not data:
2187 try:
2187 try:
2188 # Load the parameter given as a variable. If not a string,
2188 # Load the parameter given as a variable. If not a string,
2189 # process it as an object instead (below)
2189 # process it as an object instead (below)
2190
2190
2191 #print '*** args',args,'type',type(args) # dbg
2191 #print '*** args',args,'type',type(args) # dbg
2192 data = eval(args, self.shell.user_ns)
2192 data = eval(args, self.shell.user_ns)
2193 if not isinstance(data, basestring):
2193 if not isinstance(data, basestring):
2194 raise DataIsObject
2194 raise DataIsObject
2195
2195
2196 except (NameError,SyntaxError):
2196 except (NameError,SyntaxError):
2197 # given argument is not a variable, try as a filename
2197 # given argument is not a variable, try as a filename
2198 filename = make_filename(args)
2198 filename = make_filename(args)
2199 if filename is None:
2199 if filename is None:
2200 warn("Argument given (%s) can't be found as a variable "
2200 warn("Argument given (%s) can't be found as a variable "
2201 "or as a filename." % args)
2201 "or as a filename." % args)
2202 return
2202 return
2203 use_temp = False
2203 use_temp = False
2204
2204
2205 except DataIsObject:
2205 except DataIsObject:
2206 # macros have a special edit function
2206 # macros have a special edit function
2207 if isinstance(data, Macro):
2207 if isinstance(data, Macro):
2208 raise MacroToEdit(data)
2208 raise MacroToEdit(data)
2209
2209
2210 # For objects, try to edit the file where they are defined
2210 # For objects, try to edit the file where they are defined
2211 try:
2211 try:
2212 filename = inspect.getabsfile(data)
2212 filename = inspect.getabsfile(data)
2213 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2213 if 'fakemodule' in filename.lower() and inspect.isclass(data):
2214 # class created by %edit? Try to find source
2214 # class created by %edit? Try to find source
2215 # by looking for method definitions instead, the
2215 # by looking for method definitions instead, the
2216 # __module__ in those classes is FakeModule.
2216 # __module__ in those classes is FakeModule.
2217 attrs = [getattr(data, aname) for aname in dir(data)]
2217 attrs = [getattr(data, aname) for aname in dir(data)]
2218 for attr in attrs:
2218 for attr in attrs:
2219 if not inspect.ismethod(attr):
2219 if not inspect.ismethod(attr):
2220 continue
2220 continue
2221 filename = inspect.getabsfile(attr)
2221 filename = inspect.getabsfile(attr)
2222 if filename and 'fakemodule' not in filename.lower():
2222 if filename and 'fakemodule' not in filename.lower():
2223 # change the attribute to be the edit target instead
2223 # change the attribute to be the edit target instead
2224 data = attr
2224 data = attr
2225 break
2225 break
2226
2226
2227 datafile = 1
2227 datafile = 1
2228 except TypeError:
2228 except TypeError:
2229 filename = make_filename(args)
2229 filename = make_filename(args)
2230 datafile = 1
2230 datafile = 1
2231 warn('Could not find file where `%s` is defined.\n'
2231 warn('Could not find file where `%s` is defined.\n'
2232 'Opening a file named `%s`' % (args,filename))
2232 'Opening a file named `%s`' % (args,filename))
2233 # Now, make sure we can actually read the source (if it was in
2233 # Now, make sure we can actually read the source (if it was in
2234 # a temp file it's gone by now).
2234 # a temp file it's gone by now).
2235 if datafile:
2235 if datafile:
2236 try:
2236 try:
2237 if lineno is None:
2237 if lineno is None:
2238 lineno = inspect.getsourcelines(data)[1]
2238 lineno = inspect.getsourcelines(data)[1]
2239 except IOError:
2239 except IOError:
2240 filename = make_filename(args)
2240 filename = make_filename(args)
2241 if filename is None:
2241 if filename is None:
2242 warn('The file `%s` where `%s` was defined cannot '
2242 warn('The file `%s` where `%s` was defined cannot '
2243 'be read.' % (filename,data))
2243 'be read.' % (filename,data))
2244 return
2244 return
2245 use_temp = False
2245 use_temp = False
2246
2246
2247 if use_temp:
2247 if use_temp:
2248 filename = self.shell.mktempfile(data)
2248 filename = self.shell.mktempfile(data)
2249 print 'IPython will make a temporary file named:',filename
2249 print 'IPython will make a temporary file named:',filename
2250
2250
2251 return filename, lineno, use_temp
2251 return filename, lineno, use_temp
2252
2252
2253 def _edit_macro(self,mname,macro):
2253 def _edit_macro(self,mname,macro):
2254 """open an editor with the macro data in a file"""
2254 """open an editor with the macro data in a file"""
2255 filename = self.shell.mktempfile(macro.value)
2255 filename = self.shell.mktempfile(macro.value)
2256 self.shell.hooks.editor(filename)
2256 self.shell.hooks.editor(filename)
2257
2257
2258 # and make a new macro object, to replace the old one
2258 # and make a new macro object, to replace the old one
2259 mfile = open(filename)
2259 mfile = open(filename)
2260 mvalue = mfile.read()
2260 mvalue = mfile.read()
2261 mfile.close()
2261 mfile.close()
2262 self.shell.user_ns[mname] = Macro(mvalue)
2262 self.shell.user_ns[mname] = Macro(mvalue)
2263
2263
2264 def magic_ed(self,parameter_s=''):
2264 def magic_ed(self,parameter_s=''):
2265 """Alias to %edit."""
2265 """Alias to %edit."""
2266 return self.magic_edit(parameter_s)
2266 return self.magic_edit(parameter_s)
2267
2267
2268 @skip_doctest
2268 @skip_doctest
2269 def magic_edit(self,parameter_s='',last_call=['','']):
2269 def magic_edit(self,parameter_s='',last_call=['','']):
2270 """Bring up an editor and execute the resulting code.
2270 """Bring up an editor and execute the resulting code.
2271
2271
2272 Usage:
2272 Usage:
2273 %edit [options] [args]
2273 %edit [options] [args]
2274
2274
2275 %edit runs IPython's editor hook. The default version of this hook is
2275 %edit runs IPython's editor hook. The default version of this hook is
2276 set to call the __IPYTHON__.rc.editor command. This is read from your
2276 set to call the __IPYTHON__.rc.editor command. This is read from your
2277 environment variable $EDITOR. If this isn't found, it will default to
2277 environment variable $EDITOR. If this isn't found, it will default to
2278 vi under Linux/Unix and to notepad under Windows. See the end of this
2278 vi under Linux/Unix and to notepad under Windows. See the end of this
2279 docstring for how to change the editor hook.
2279 docstring for how to change the editor hook.
2280
2280
2281 You can also set the value of this editor via the command line option
2281 You can also set the value of this editor via the command line option
2282 '-editor' or in your ipythonrc file. This is useful if you wish to use
2282 '-editor' or in your ipythonrc file. This is useful if you wish to use
2283 specifically for IPython an editor different from your typical default
2283 specifically for IPython an editor different from your typical default
2284 (and for Windows users who typically don't set environment variables).
2284 (and for Windows users who typically don't set environment variables).
2285
2285
2286 This command allows you to conveniently edit multi-line code right in
2286 This command allows you to conveniently edit multi-line code right in
2287 your IPython session.
2287 your IPython session.
2288
2288
2289 If called without arguments, %edit opens up an empty editor with a
2289 If called without arguments, %edit opens up an empty editor with a
2290 temporary file and will execute the contents of this file when you
2290 temporary file and will execute the contents of this file when you
2291 close it (don't forget to save it!).
2291 close it (don't forget to save it!).
2292
2292
2293
2293
2294 Options:
2294 Options:
2295
2295
2296 -n <number>: open the editor at a specified line number. By default,
2296 -n <number>: open the editor at a specified line number. By default,
2297 the IPython editor hook uses the unix syntax 'editor +N filename', but
2297 the IPython editor hook uses the unix syntax 'editor +N filename', but
2298 you can configure this by providing your own modified hook if your
2298 you can configure this by providing your own modified hook if your
2299 favorite editor supports line-number specifications with a different
2299 favorite editor supports line-number specifications with a different
2300 syntax.
2300 syntax.
2301
2301
2302 -p: this will call the editor with the same data as the previous time
2302 -p: this will call the editor with the same data as the previous time
2303 it was used, regardless of how long ago (in your current session) it
2303 it was used, regardless of how long ago (in your current session) it
2304 was.
2304 was.
2305
2305
2306 -r: use 'raw' input. This option only applies to input taken from the
2306 -r: use 'raw' input. This option only applies to input taken from the
2307 user's history. By default, the 'processed' history is used, so that
2307 user's history. By default, the 'processed' history is used, so that
2308 magics are loaded in their transformed version to valid Python. If
2308 magics are loaded in their transformed version to valid Python. If
2309 this option is given, the raw input as typed as the command line is
2309 this option is given, the raw input as typed as the command line is
2310 used instead. When you exit the editor, it will be executed by
2310 used instead. When you exit the editor, it will be executed by
2311 IPython's own processor.
2311 IPython's own processor.
2312
2312
2313 -x: do not execute the edited code immediately upon exit. This is
2313 -x: do not execute the edited code immediately upon exit. This is
2314 mainly useful if you are editing programs which need to be called with
2314 mainly useful if you are editing programs which need to be called with
2315 command line arguments, which you can then do using %run.
2315 command line arguments, which you can then do using %run.
2316
2316
2317
2317
2318 Arguments:
2318 Arguments:
2319
2319
2320 If arguments are given, the following possibilites exist:
2320 If arguments are given, the following possibilites exist:
2321
2321
2322 - If the argument is a filename, IPython will load that into the
2322 - If the argument is a filename, IPython will load that into the
2323 editor. It will execute its contents with execfile() when you exit,
2323 editor. It will execute its contents with execfile() when you exit,
2324 loading any code in the file into your interactive namespace.
2324 loading any code in the file into your interactive namespace.
2325
2325
2326 - The arguments are ranges of input history, e.g. "7 ~1/4-6".
2326 - The arguments are ranges of input history, e.g. "7 ~1/4-6".
2327 The syntax is the same as in the %history magic.
2327 The syntax is the same as in the %history magic.
2328
2328
2329 - If the argument is a string variable, its contents are loaded
2329 - If the argument is a string variable, its contents are loaded
2330 into the editor. You can thus edit any string which contains
2330 into the editor. You can thus edit any string which contains
2331 python code (including the result of previous edits).
2331 python code (including the result of previous edits).
2332
2332
2333 - If the argument is the name of an object (other than a string),
2333 - If the argument is the name of an object (other than a string),
2334 IPython will try to locate the file where it was defined and open the
2334 IPython will try to locate the file where it was defined and open the
2335 editor at the point where it is defined. You can use `%edit function`
2335 editor at the point where it is defined. You can use `%edit function`
2336 to load an editor exactly at the point where 'function' is defined,
2336 to load an editor exactly at the point where 'function' is defined,
2337 edit it and have the file be executed automatically.
2337 edit it and have the file be executed automatically.
2338
2338
2339 If the object is a macro (see %macro for details), this opens up your
2339 If the object is a macro (see %macro for details), this opens up your
2340 specified editor with a temporary file containing the macro's data.
2340 specified editor with a temporary file containing the macro's data.
2341 Upon exit, the macro is reloaded with the contents of the file.
2341 Upon exit, the macro is reloaded with the contents of the file.
2342
2342
2343 Note: opening at an exact line is only supported under Unix, and some
2343 Note: opening at an exact line is only supported under Unix, and some
2344 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2344 editors (like kedit and gedit up to Gnome 2.8) do not understand the
2345 '+NUMBER' parameter necessary for this feature. Good editors like
2345 '+NUMBER' parameter necessary for this feature. Good editors like
2346 (X)Emacs, vi, jed, pico and joe all do.
2346 (X)Emacs, vi, jed, pico and joe all do.
2347
2347
2348 After executing your code, %edit will return as output the code you
2348 After executing your code, %edit will return as output the code you
2349 typed in the editor (except when it was an existing file). This way
2349 typed in the editor (except when it was an existing file). This way
2350 you can reload the code in further invocations of %edit as a variable,
2350 you can reload the code in further invocations of %edit as a variable,
2351 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2351 via _<NUMBER> or Out[<NUMBER>], where <NUMBER> is the prompt number of
2352 the output.
2352 the output.
2353
2353
2354 Note that %edit is also available through the alias %ed.
2354 Note that %edit is also available through the alias %ed.
2355
2355
2356 This is an example of creating a simple function inside the editor and
2356 This is an example of creating a simple function inside the editor and
2357 then modifying it. First, start up the editor:
2357 then modifying it. First, start up the editor:
2358
2358
2359 In [1]: ed
2359 In [1]: ed
2360 Editing... done. Executing edited code...
2360 Editing... done. Executing edited code...
2361 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2361 Out[1]: 'def foo():n print "foo() was defined in an editing session"n'
2362
2362
2363 We can then call the function foo():
2363 We can then call the function foo():
2364
2364
2365 In [2]: foo()
2365 In [2]: foo()
2366 foo() was defined in an editing session
2366 foo() was defined in an editing session
2367
2367
2368 Now we edit foo. IPython automatically loads the editor with the
2368 Now we edit foo. IPython automatically loads the editor with the
2369 (temporary) file where foo() was previously defined:
2369 (temporary) file where foo() was previously defined:
2370
2370
2371 In [3]: ed foo
2371 In [3]: ed foo
2372 Editing... done. Executing edited code...
2372 Editing... done. Executing edited code...
2373
2373
2374 And if we call foo() again we get the modified version:
2374 And if we call foo() again we get the modified version:
2375
2375
2376 In [4]: foo()
2376 In [4]: foo()
2377 foo() has now been changed!
2377 foo() has now been changed!
2378
2378
2379 Here is an example of how to edit a code snippet successive
2379 Here is an example of how to edit a code snippet successive
2380 times. First we call the editor:
2380 times. First we call the editor:
2381
2381
2382 In [5]: ed
2382 In [5]: ed
2383 Editing... done. Executing edited code...
2383 Editing... done. Executing edited code...
2384 hello
2384 hello
2385 Out[5]: "print 'hello'n"
2385 Out[5]: "print 'hello'n"
2386
2386
2387 Now we call it again with the previous output (stored in _):
2387 Now we call it again with the previous output (stored in _):
2388
2388
2389 In [6]: ed _
2389 In [6]: ed _
2390 Editing... done. Executing edited code...
2390 Editing... done. Executing edited code...
2391 hello world
2391 hello world
2392 Out[6]: "print 'hello world'n"
2392 Out[6]: "print 'hello world'n"
2393
2393
2394 Now we call it with the output #8 (stored in _8, also as Out[8]):
2394 Now we call it with the output #8 (stored in _8, also as Out[8]):
2395
2395
2396 In [7]: ed _8
2396 In [7]: ed _8
2397 Editing... done. Executing edited code...
2397 Editing... done. Executing edited code...
2398 hello again
2398 hello again
2399 Out[7]: "print 'hello again'n"
2399 Out[7]: "print 'hello again'n"
2400
2400
2401
2401
2402 Changing the default editor hook:
2402 Changing the default editor hook:
2403
2403
2404 If you wish to write your own editor hook, you can put it in a
2404 If you wish to write your own editor hook, you can put it in a
2405 configuration file which you load at startup time. The default hook
2405 configuration file which you load at startup time. The default hook
2406 is defined in the IPython.core.hooks module, and you can use that as a
2406 is defined in the IPython.core.hooks module, and you can use that as a
2407 starting example for further modifications. That file also has
2407 starting example for further modifications. That file also has
2408 general instructions on how to set a new hook for use once you've
2408 general instructions on how to set a new hook for use once you've
2409 defined it."""
2409 defined it."""
2410 opts,args = self.parse_options(parameter_s,'prxn:')
2410 opts,args = self.parse_options(parameter_s,'prxn:')
2411
2411
2412 try:
2412 try:
2413 filename, lineno, is_temp = self._find_edit_target(args, opts, last_call)
2413 filename, lineno, is_temp = self._find_edit_target(args, opts, last_call)
2414 except MacroToEdit as e:
2414 except MacroToEdit as e:
2415 self._edit_macro(args, e.args[0])
2415 self._edit_macro(args, e.args[0])
2416 return
2416 return
2417
2417
2418 # do actual editing here
2418 # do actual editing here
2419 print 'Editing...',
2419 print 'Editing...',
2420 sys.stdout.flush()
2420 sys.stdout.flush()
2421 try:
2421 try:
2422 # Quote filenames that may have spaces in them
2422 # Quote filenames that may have spaces in them
2423 if ' ' in filename:
2423 if ' ' in filename:
2424 filename = "'%s'" % filename
2424 filename = "'%s'" % filename
2425 self.shell.hooks.editor(filename,lineno)
2425 self.shell.hooks.editor(filename,lineno)
2426 except TryNext:
2426 except TryNext:
2427 warn('Could not open editor')
2427 warn('Could not open editor')
2428 return
2428 return
2429
2429
2430 # XXX TODO: should this be generalized for all string vars?
2430 # XXX TODO: should this be generalized for all string vars?
2431 # For now, this is special-cased to blocks created by cpaste
2431 # For now, this is special-cased to blocks created by cpaste
2432 if args.strip() == 'pasted_block':
2432 if args.strip() == 'pasted_block':
2433 self.shell.user_ns['pasted_block'] = file_read(filename)
2433 self.shell.user_ns['pasted_block'] = file_read(filename)
2434
2434
2435 if 'x' in opts: # -x prevents actual execution
2435 if 'x' in opts: # -x prevents actual execution
2436 print
2436 print
2437 else:
2437 else:
2438 print 'done. Executing edited code...'
2438 print 'done. Executing edited code...'
2439 if 'r' in opts: # Untranslated IPython code
2439 if 'r' in opts: # Untranslated IPython code
2440 self.shell.run_cell(file_read(filename),
2440 self.shell.run_cell(file_read(filename),
2441 store_history=False)
2441 store_history=False)
2442 else:
2442 else:
2443 self.shell.safe_execfile(filename,self.shell.user_ns,
2443 self.shell.safe_execfile(filename,self.shell.user_ns,
2444 self.shell.user_ns)
2444 self.shell.user_ns)
2445
2445
2446 if is_temp:
2446 if is_temp:
2447 try:
2447 try:
2448 return open(filename).read()
2448 return open(filename).read()
2449 except IOError,msg:
2449 except IOError,msg:
2450 if msg.filename == filename:
2450 if msg.filename == filename:
2451 warn('File not found. Did you forget to save?')
2451 warn('File not found. Did you forget to save?')
2452 return
2452 return
2453 else:
2453 else:
2454 self.shell.showtraceback()
2454 self.shell.showtraceback()
2455
2455
2456 def magic_xmode(self,parameter_s = ''):
2456 def magic_xmode(self,parameter_s = ''):
2457 """Switch modes for the exception handlers.
2457 """Switch modes for the exception handlers.
2458
2458
2459 Valid modes: Plain, Context and Verbose.
2459 Valid modes: Plain, Context and Verbose.
2460
2460
2461 If called without arguments, acts as a toggle."""
2461 If called without arguments, acts as a toggle."""
2462
2462
2463 def xmode_switch_err(name):
2463 def xmode_switch_err(name):
2464 warn('Error changing %s exception modes.\n%s' %
2464 warn('Error changing %s exception modes.\n%s' %
2465 (name,sys.exc_info()[1]))
2465 (name,sys.exc_info()[1]))
2466
2466
2467 shell = self.shell
2467 shell = self.shell
2468 new_mode = parameter_s.strip().capitalize()
2468 new_mode = parameter_s.strip().capitalize()
2469 try:
2469 try:
2470 shell.InteractiveTB.set_mode(mode=new_mode)
2470 shell.InteractiveTB.set_mode(mode=new_mode)
2471 print 'Exception reporting mode:',shell.InteractiveTB.mode
2471 print 'Exception reporting mode:',shell.InteractiveTB.mode
2472 except:
2472 except:
2473 xmode_switch_err('user')
2473 xmode_switch_err('user')
2474
2474
2475 def magic_colors(self,parameter_s = ''):
2475 def magic_colors(self,parameter_s = ''):
2476 """Switch color scheme for prompts, info system and exception handlers.
2476 """Switch color scheme for prompts, info system and exception handlers.
2477
2477
2478 Currently implemented schemes: NoColor, Linux, LightBG.
2478 Currently implemented schemes: NoColor, Linux, LightBG.
2479
2479
2480 Color scheme names are not case-sensitive.
2480 Color scheme names are not case-sensitive.
2481
2481
2482 Examples
2482 Examples
2483 --------
2483 --------
2484 To get a plain black and white terminal::
2484 To get a plain black and white terminal::
2485
2485
2486 %colors nocolor
2486 %colors nocolor
2487 """
2487 """
2488
2488
2489 def color_switch_err(name):
2489 def color_switch_err(name):
2490 warn('Error changing %s color schemes.\n%s' %
2490 warn('Error changing %s color schemes.\n%s' %
2491 (name,sys.exc_info()[1]))
2491 (name,sys.exc_info()[1]))
2492
2492
2493
2493
2494 new_scheme = parameter_s.strip()
2494 new_scheme = parameter_s.strip()
2495 if not new_scheme:
2495 if not new_scheme:
2496 raise UsageError(
2496 raise UsageError(
2497 "%colors: you must specify a color scheme. See '%colors?'")
2497 "%colors: you must specify a color scheme. See '%colors?'")
2498 return
2498 return
2499 # local shortcut
2499 # local shortcut
2500 shell = self.shell
2500 shell = self.shell
2501
2501
2502 import IPython.utils.rlineimpl as readline
2502 import IPython.utils.rlineimpl as readline
2503
2503
2504 if not readline.have_readline and sys.platform == "win32":
2504 if not readline.have_readline and sys.platform == "win32":
2505 msg = """\
2505 msg = """\
2506 Proper color support under MS Windows requires the pyreadline library.
2506 Proper color support under MS Windows requires the pyreadline library.
2507 You can find it at:
2507 You can find it at:
2508 http://ipython.scipy.org/moin/PyReadline/Intro
2508 http://ipython.scipy.org/moin/PyReadline/Intro
2509 Gary's readline needs the ctypes module, from:
2509 Gary's readline needs the ctypes module, from:
2510 http://starship.python.net/crew/theller/ctypes
2510 http://starship.python.net/crew/theller/ctypes
2511 (Note that ctypes is already part of Python versions 2.5 and newer).
2511 (Note that ctypes is already part of Python versions 2.5 and newer).
2512
2512
2513 Defaulting color scheme to 'NoColor'"""
2513 Defaulting color scheme to 'NoColor'"""
2514 new_scheme = 'NoColor'
2514 new_scheme = 'NoColor'
2515 warn(msg)
2515 warn(msg)
2516
2516
2517 # readline option is 0
2517 # readline option is 0
2518 if not shell.has_readline:
2518 if not shell.has_readline:
2519 new_scheme = 'NoColor'
2519 new_scheme = 'NoColor'
2520
2520
2521 # Set prompt colors
2521 # Set prompt colors
2522 try:
2522 try:
2523 shell.displayhook.set_colors(new_scheme)
2523 shell.displayhook.set_colors(new_scheme)
2524 except:
2524 except:
2525 color_switch_err('prompt')
2525 color_switch_err('prompt')
2526 else:
2526 else:
2527 shell.colors = \
2527 shell.colors = \
2528 shell.displayhook.color_table.active_scheme_name
2528 shell.displayhook.color_table.active_scheme_name
2529 # Set exception colors
2529 # Set exception colors
2530 try:
2530 try:
2531 shell.InteractiveTB.set_colors(scheme = new_scheme)
2531 shell.InteractiveTB.set_colors(scheme = new_scheme)
2532 shell.SyntaxTB.set_colors(scheme = new_scheme)
2532 shell.SyntaxTB.set_colors(scheme = new_scheme)
2533 except:
2533 except:
2534 color_switch_err('exception')
2534 color_switch_err('exception')
2535
2535
2536 # Set info (for 'object?') colors
2536 # Set info (for 'object?') colors
2537 if shell.color_info:
2537 if shell.color_info:
2538 try:
2538 try:
2539 shell.inspector.set_active_scheme(new_scheme)
2539 shell.inspector.set_active_scheme(new_scheme)
2540 except:
2540 except:
2541 color_switch_err('object inspector')
2541 color_switch_err('object inspector')
2542 else:
2542 else:
2543 shell.inspector.set_active_scheme('NoColor')
2543 shell.inspector.set_active_scheme('NoColor')
2544
2544
2545 def magic_pprint(self, parameter_s=''):
2545 def magic_pprint(self, parameter_s=''):
2546 """Toggle pretty printing on/off."""
2546 """Toggle pretty printing on/off."""
2547 ptformatter = self.shell.display_formatter.formatters['text/plain']
2547 ptformatter = self.shell.display_formatter.formatters['text/plain']
2548 ptformatter.pprint = bool(1 - ptformatter.pprint)
2548 ptformatter.pprint = bool(1 - ptformatter.pprint)
2549 print 'Pretty printing has been turned', \
2549 print 'Pretty printing has been turned', \
2550 ['OFF','ON'][ptformatter.pprint]
2550 ['OFF','ON'][ptformatter.pprint]
2551
2551
2552 #......................................................................
2552 #......................................................................
2553 # Functions to implement unix shell-type things
2553 # Functions to implement unix shell-type things
2554
2554
2555 @skip_doctest
2555 @skip_doctest
2556 def magic_alias(self, parameter_s = ''):
2556 def magic_alias(self, parameter_s = ''):
2557 """Define an alias for a system command.
2557 """Define an alias for a system command.
2558
2558
2559 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2559 '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd'
2560
2560
2561 Then, typing 'alias_name params' will execute the system command 'cmd
2561 Then, typing 'alias_name params' will execute the system command 'cmd
2562 params' (from your underlying operating system).
2562 params' (from your underlying operating system).
2563
2563
2564 Aliases have lower precedence than magic functions and Python normal
2564 Aliases have lower precedence than magic functions and Python normal
2565 variables, so if 'foo' is both a Python variable and an alias, the
2565 variables, so if 'foo' is both a Python variable and an alias, the
2566 alias can not be executed until 'del foo' removes the Python variable.
2566 alias can not be executed until 'del foo' removes the Python variable.
2567
2567
2568 You can use the %l specifier in an alias definition to represent the
2568 You can use the %l specifier in an alias definition to represent the
2569 whole line when the alias is called. For example:
2569 whole line when the alias is called. For example:
2570
2570
2571 In [2]: alias bracket echo "Input in brackets: <%l>"
2571 In [2]: alias bracket echo "Input in brackets: <%l>"
2572 In [3]: bracket hello world
2572 In [3]: bracket hello world
2573 Input in brackets: <hello world>
2573 Input in brackets: <hello world>
2574
2574
2575 You can also define aliases with parameters using %s specifiers (one
2575 You can also define aliases with parameters using %s specifiers (one
2576 per parameter):
2576 per parameter):
2577
2577
2578 In [1]: alias parts echo first %s second %s
2578 In [1]: alias parts echo first %s second %s
2579 In [2]: %parts A B
2579 In [2]: %parts A B
2580 first A second B
2580 first A second B
2581 In [3]: %parts A
2581 In [3]: %parts A
2582 Incorrect number of arguments: 2 expected.
2582 Incorrect number of arguments: 2 expected.
2583 parts is an alias to: 'echo first %s second %s'
2583 parts is an alias to: 'echo first %s second %s'
2584
2584
2585 Note that %l and %s are mutually exclusive. You can only use one or
2585 Note that %l and %s are mutually exclusive. You can only use one or
2586 the other in your aliases.
2586 the other in your aliases.
2587
2587
2588 Aliases expand Python variables just like system calls using ! or !!
2588 Aliases expand Python variables just like system calls using ! or !!
2589 do: all expressions prefixed with '$' get expanded. For details of
2589 do: all expressions prefixed with '$' get expanded. For details of
2590 the semantic rules, see PEP-215:
2590 the semantic rules, see PEP-215:
2591 http://www.python.org/peps/pep-0215.html. This is the library used by
2591 http://www.python.org/peps/pep-0215.html. This is the library used by
2592 IPython for variable expansion. If you want to access a true shell
2592 IPython for variable expansion. If you want to access a true shell
2593 variable, an extra $ is necessary to prevent its expansion by IPython:
2593 variable, an extra $ is necessary to prevent its expansion by IPython:
2594
2594
2595 In [6]: alias show echo
2595 In [6]: alias show echo
2596 In [7]: PATH='A Python string'
2596 In [7]: PATH='A Python string'
2597 In [8]: show $PATH
2597 In [8]: show $PATH
2598 A Python string
2598 A Python string
2599 In [9]: show $$PATH
2599 In [9]: show $$PATH
2600 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2600 /usr/local/lf9560/bin:/usr/local/intel/compiler70/ia32/bin:...
2601
2601
2602 You can use the alias facility to acess all of $PATH. See the %rehash
2602 You can use the alias facility to acess all of $PATH. See the %rehash
2603 and %rehashx functions, which automatically create aliases for the
2603 and %rehashx functions, which automatically create aliases for the
2604 contents of your $PATH.
2604 contents of your $PATH.
2605
2605
2606 If called with no parameters, %alias prints the current alias table."""
2606 If called with no parameters, %alias prints the current alias table."""
2607
2607
2608 par = parameter_s.strip()
2608 par = parameter_s.strip()
2609 if not par:
2609 if not par:
2610 stored = self.db.get('stored_aliases', {} )
2610 stored = self.db.get('stored_aliases', {} )
2611 aliases = sorted(self.shell.alias_manager.aliases)
2611 aliases = sorted(self.shell.alias_manager.aliases)
2612 # for k, v in stored:
2612 # for k, v in stored:
2613 # atab.append(k, v[0])
2613 # atab.append(k, v[0])
2614
2614
2615 print "Total number of aliases:", len(aliases)
2615 print "Total number of aliases:", len(aliases)
2616 sys.stdout.flush()
2616 sys.stdout.flush()
2617 return aliases
2617 return aliases
2618
2618
2619 # Now try to define a new one
2619 # Now try to define a new one
2620 try:
2620 try:
2621 alias,cmd = par.split(None, 1)
2621 alias,cmd = par.split(None, 1)
2622 except:
2622 except:
2623 print oinspect.getdoc(self.magic_alias)
2623 print oinspect.getdoc(self.magic_alias)
2624 else:
2624 else:
2625 self.shell.alias_manager.soft_define_alias(alias, cmd)
2625 self.shell.alias_manager.soft_define_alias(alias, cmd)
2626 # end magic_alias
2626 # end magic_alias
2627
2627
2628 def magic_unalias(self, parameter_s = ''):
2628 def magic_unalias(self, parameter_s = ''):
2629 """Remove an alias"""
2629 """Remove an alias"""
2630
2630
2631 aname = parameter_s.strip()
2631 aname = parameter_s.strip()
2632 self.shell.alias_manager.undefine_alias(aname)
2632 self.shell.alias_manager.undefine_alias(aname)
2633 stored = self.db.get('stored_aliases', {} )
2633 stored = self.db.get('stored_aliases', {} )
2634 if aname in stored:
2634 if aname in stored:
2635 print "Removing %stored alias",aname
2635 print "Removing %stored alias",aname
2636 del stored[aname]
2636 del stored[aname]
2637 self.db['stored_aliases'] = stored
2637 self.db['stored_aliases'] = stored
2638
2638
2639 def magic_rehashx(self, parameter_s = ''):
2639 def magic_rehashx(self, parameter_s = ''):
2640 """Update the alias table with all executable files in $PATH.
2640 """Update the alias table with all executable files in $PATH.
2641
2641
2642 This version explicitly checks that every entry in $PATH is a file
2642 This version explicitly checks that every entry in $PATH is a file
2643 with execute access (os.X_OK), so it is much slower than %rehash.
2643 with execute access (os.X_OK), so it is much slower than %rehash.
2644
2644
2645 Under Windows, it checks executability as a match agains a
2645 Under Windows, it checks executability as a match agains a
2646 '|'-separated string of extensions, stored in the IPython config
2646 '|'-separated string of extensions, stored in the IPython config
2647 variable win_exec_ext. This defaults to 'exe|com|bat'.
2647 variable win_exec_ext. This defaults to 'exe|com|bat'.
2648
2648
2649 This function also resets the root module cache of module completer,
2649 This function also resets the root module cache of module completer,
2650 used on slow filesystems.
2650 used on slow filesystems.
2651 """
2651 """
2652 from IPython.core.alias import InvalidAliasError
2652 from IPython.core.alias import InvalidAliasError
2653
2653
2654 # for the benefit of module completer in ipy_completers.py
2654 # for the benefit of module completer in ipy_completers.py
2655 del self.db['rootmodules']
2655 del self.db['rootmodules']
2656
2656
2657 path = [os.path.abspath(os.path.expanduser(p)) for p in
2657 path = [os.path.abspath(os.path.expanduser(p)) for p in
2658 os.environ.get('PATH','').split(os.pathsep)]
2658 os.environ.get('PATH','').split(os.pathsep)]
2659 path = filter(os.path.isdir,path)
2659 path = filter(os.path.isdir,path)
2660
2660
2661 syscmdlist = []
2661 syscmdlist = []
2662 # Now define isexec in a cross platform manner.
2662 # Now define isexec in a cross platform manner.
2663 if os.name == 'posix':
2663 if os.name == 'posix':
2664 isexec = lambda fname:os.path.isfile(fname) and \
2664 isexec = lambda fname:os.path.isfile(fname) and \
2665 os.access(fname,os.X_OK)
2665 os.access(fname,os.X_OK)
2666 else:
2666 else:
2667 try:
2667 try:
2668 winext = os.environ['pathext'].replace(';','|').replace('.','')
2668 winext = os.environ['pathext'].replace(';','|').replace('.','')
2669 except KeyError:
2669 except KeyError:
2670 winext = 'exe|com|bat|py'
2670 winext = 'exe|com|bat|py'
2671 if 'py' not in winext:
2671 if 'py' not in winext:
2672 winext += '|py'
2672 winext += '|py'
2673 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2673 execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
2674 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2674 isexec = lambda fname:os.path.isfile(fname) and execre.match(fname)
2675 savedir = os.getcwd()
2675 savedir = os.getcwd()
2676
2676
2677 # Now walk the paths looking for executables to alias.
2677 # Now walk the paths looking for executables to alias.
2678 try:
2678 try:
2679 # write the whole loop for posix/Windows so we don't have an if in
2679 # write the whole loop for posix/Windows so we don't have an if in
2680 # the innermost part
2680 # the innermost part
2681 if os.name == 'posix':
2681 if os.name == 'posix':
2682 for pdir in path:
2682 for pdir in path:
2683 os.chdir(pdir)
2683 os.chdir(pdir)
2684 for ff in os.listdir(pdir):
2684 for ff in os.listdir(pdir):
2685 if isexec(ff):
2685 if isexec(ff):
2686 try:
2686 try:
2687 # Removes dots from the name since ipython
2687 # Removes dots from the name since ipython
2688 # will assume names with dots to be python.
2688 # will assume names with dots to be python.
2689 self.shell.alias_manager.define_alias(
2689 self.shell.alias_manager.define_alias(
2690 ff.replace('.',''), ff)
2690 ff.replace('.',''), ff)
2691 except InvalidAliasError:
2691 except InvalidAliasError:
2692 pass
2692 pass
2693 else:
2693 else:
2694 syscmdlist.append(ff)
2694 syscmdlist.append(ff)
2695 else:
2695 else:
2696 no_alias = self.shell.alias_manager.no_alias
2696 no_alias = self.shell.alias_manager.no_alias
2697 for pdir in path:
2697 for pdir in path:
2698 os.chdir(pdir)
2698 os.chdir(pdir)
2699 for ff in os.listdir(pdir):
2699 for ff in os.listdir(pdir):
2700 base, ext = os.path.splitext(ff)
2700 base, ext = os.path.splitext(ff)
2701 if isexec(ff) and base.lower() not in no_alias:
2701 if isexec(ff) and base.lower() not in no_alias:
2702 if ext.lower() == '.exe':
2702 if ext.lower() == '.exe':
2703 ff = base
2703 ff = base
2704 try:
2704 try:
2705 # Removes dots from the name since ipython
2705 # Removes dots from the name since ipython
2706 # will assume names with dots to be python.
2706 # will assume names with dots to be python.
2707 self.shell.alias_manager.define_alias(
2707 self.shell.alias_manager.define_alias(
2708 base.lower().replace('.',''), ff)
2708 base.lower().replace('.',''), ff)
2709 except InvalidAliasError:
2709 except InvalidAliasError:
2710 pass
2710 pass
2711 syscmdlist.append(ff)
2711 syscmdlist.append(ff)
2712 db = self.db
2712 db = self.db
2713 db['syscmdlist'] = syscmdlist
2713 db['syscmdlist'] = syscmdlist
2714 finally:
2714 finally:
2715 os.chdir(savedir)
2715 os.chdir(savedir)
2716
2716
2717 @skip_doctest
2717 @skip_doctest
2718 def magic_pwd(self, parameter_s = ''):
2718 def magic_pwd(self, parameter_s = ''):
2719 """Return the current working directory path.
2719 """Return the current working directory path.
2720
2720
2721 Examples
2721 Examples
2722 --------
2722 --------
2723 ::
2723 ::
2724
2724
2725 In [9]: pwd
2725 In [9]: pwd
2726 Out[9]: '/home/tsuser/sprint/ipython'
2726 Out[9]: '/home/tsuser/sprint/ipython'
2727 """
2727 """
2728 return os.getcwd()
2728 return os.getcwd()
2729
2729
2730 @skip_doctest
2730 @skip_doctest
2731 def magic_cd(self, parameter_s=''):
2731 def magic_cd(self, parameter_s=''):
2732 """Change the current working directory.
2732 """Change the current working directory.
2733
2733
2734 This command automatically maintains an internal list of directories
2734 This command automatically maintains an internal list of directories
2735 you visit during your IPython session, in the variable _dh. The
2735 you visit during your IPython session, in the variable _dh. The
2736 command %dhist shows this history nicely formatted. You can also
2736 command %dhist shows this history nicely formatted. You can also
2737 do 'cd -<tab>' to see directory history conveniently.
2737 do 'cd -<tab>' to see directory history conveniently.
2738
2738
2739 Usage:
2739 Usage:
2740
2740
2741 cd 'dir': changes to directory 'dir'.
2741 cd 'dir': changes to directory 'dir'.
2742
2742
2743 cd -: changes to the last visited directory.
2743 cd -: changes to the last visited directory.
2744
2744
2745 cd -<n>: changes to the n-th directory in the directory history.
2745 cd -<n>: changes to the n-th directory in the directory history.
2746
2746
2747 cd --foo: change to directory that matches 'foo' in history
2747 cd --foo: change to directory that matches 'foo' in history
2748
2748
2749 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2749 cd -b <bookmark_name>: jump to a bookmark set by %bookmark
2750 (note: cd <bookmark_name> is enough if there is no
2750 (note: cd <bookmark_name> is enough if there is no
2751 directory <bookmark_name>, but a bookmark with the name exists.)
2751 directory <bookmark_name>, but a bookmark with the name exists.)
2752 'cd -b <tab>' allows you to tab-complete bookmark names.
2752 'cd -b <tab>' allows you to tab-complete bookmark names.
2753
2753
2754 Options:
2754 Options:
2755
2755
2756 -q: quiet. Do not print the working directory after the cd command is
2756 -q: quiet. Do not print the working directory after the cd command is
2757 executed. By default IPython's cd command does print this directory,
2757 executed. By default IPython's cd command does print this directory,
2758 since the default prompts do not display path information.
2758 since the default prompts do not display path information.
2759
2759
2760 Note that !cd doesn't work for this purpose because the shell where
2760 Note that !cd doesn't work for this purpose because the shell where
2761 !command runs is immediately discarded after executing 'command'.
2761 !command runs is immediately discarded after executing 'command'.
2762
2762
2763 Examples
2763 Examples
2764 --------
2764 --------
2765 ::
2765 ::
2766
2766
2767 In [10]: cd parent/child
2767 In [10]: cd parent/child
2768 /home/tsuser/parent/child
2768 /home/tsuser/parent/child
2769 """
2769 """
2770
2770
2771 parameter_s = parameter_s.strip()
2771 parameter_s = parameter_s.strip()
2772 #bkms = self.shell.persist.get("bookmarks",{})
2772 #bkms = self.shell.persist.get("bookmarks",{})
2773
2773
2774 oldcwd = os.getcwd()
2774 oldcwd = os.getcwd()
2775 numcd = re.match(r'(-)(\d+)$',parameter_s)
2775 numcd = re.match(r'(-)(\d+)$',parameter_s)
2776 # jump in directory history by number
2776 # jump in directory history by number
2777 if numcd:
2777 if numcd:
2778 nn = int(numcd.group(2))
2778 nn = int(numcd.group(2))
2779 try:
2779 try:
2780 ps = self.shell.user_ns['_dh'][nn]
2780 ps = self.shell.user_ns['_dh'][nn]
2781 except IndexError:
2781 except IndexError:
2782 print 'The requested directory does not exist in history.'
2782 print 'The requested directory does not exist in history.'
2783 return
2783 return
2784 else:
2784 else:
2785 opts = {}
2785 opts = {}
2786 elif parameter_s.startswith('--'):
2786 elif parameter_s.startswith('--'):
2787 ps = None
2787 ps = None
2788 fallback = None
2788 fallback = None
2789 pat = parameter_s[2:]
2789 pat = parameter_s[2:]
2790 dh = self.shell.user_ns['_dh']
2790 dh = self.shell.user_ns['_dh']
2791 # first search only by basename (last component)
2791 # first search only by basename (last component)
2792 for ent in reversed(dh):
2792 for ent in reversed(dh):
2793 if pat in os.path.basename(ent) and os.path.isdir(ent):
2793 if pat in os.path.basename(ent) and os.path.isdir(ent):
2794 ps = ent
2794 ps = ent
2795 break
2795 break
2796
2796
2797 if fallback is None and pat in ent and os.path.isdir(ent):
2797 if fallback is None and pat in ent and os.path.isdir(ent):
2798 fallback = ent
2798 fallback = ent
2799
2799
2800 # if we have no last part match, pick the first full path match
2800 # if we have no last part match, pick the first full path match
2801 if ps is None:
2801 if ps is None:
2802 ps = fallback
2802 ps = fallback
2803
2803
2804 if ps is None:
2804 if ps is None:
2805 print "No matching entry in directory history"
2805 print "No matching entry in directory history"
2806 return
2806 return
2807 else:
2807 else:
2808 opts = {}
2808 opts = {}
2809
2809
2810
2810
2811 else:
2811 else:
2812 #turn all non-space-escaping backslashes to slashes,
2812 #turn all non-space-escaping backslashes to slashes,
2813 # for c:\windows\directory\names\
2813 # for c:\windows\directory\names\
2814 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2814 parameter_s = re.sub(r'\\(?! )','/', parameter_s)
2815 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2815 opts,ps = self.parse_options(parameter_s,'qb',mode='string')
2816 # jump to previous
2816 # jump to previous
2817 if ps == '-':
2817 if ps == '-':
2818 try:
2818 try:
2819 ps = self.shell.user_ns['_dh'][-2]
2819 ps = self.shell.user_ns['_dh'][-2]
2820 except IndexError:
2820 except IndexError:
2821 raise UsageError('%cd -: No previous directory to change to.')
2821 raise UsageError('%cd -: No previous directory to change to.')
2822 # jump to bookmark if needed
2822 # jump to bookmark if needed
2823 else:
2823 else:
2824 if not os.path.isdir(ps) or opts.has_key('b'):
2824 if not os.path.isdir(ps) or opts.has_key('b'):
2825 bkms = self.db.get('bookmarks', {})
2825 bkms = self.db.get('bookmarks', {})
2826
2826
2827 if bkms.has_key(ps):
2827 if bkms.has_key(ps):
2828 target = bkms[ps]
2828 target = bkms[ps]
2829 print '(bookmark:%s) -> %s' % (ps,target)
2829 print '(bookmark:%s) -> %s' % (ps,target)
2830 ps = target
2830 ps = target
2831 else:
2831 else:
2832 if opts.has_key('b'):
2832 if opts.has_key('b'):
2833 raise UsageError("Bookmark '%s' not found. "
2833 raise UsageError("Bookmark '%s' not found. "
2834 "Use '%%bookmark -l' to see your bookmarks." % ps)
2834 "Use '%%bookmark -l' to see your bookmarks." % ps)
2835
2835
2836 # at this point ps should point to the target dir
2836 # at this point ps should point to the target dir
2837 if ps:
2837 if ps:
2838 try:
2838 try:
2839 os.chdir(os.path.expanduser(ps))
2839 os.chdir(os.path.expanduser(ps))
2840 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2840 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2841 set_term_title('IPython: ' + abbrev_cwd())
2841 set_term_title('IPython: ' + abbrev_cwd())
2842 except OSError:
2842 except OSError:
2843 print sys.exc_info()[1]
2843 print sys.exc_info()[1]
2844 else:
2844 else:
2845 cwd = os.getcwd()
2845 cwd = os.getcwd()
2846 dhist = self.shell.user_ns['_dh']
2846 dhist = self.shell.user_ns['_dh']
2847 if oldcwd != cwd:
2847 if oldcwd != cwd:
2848 dhist.append(cwd)
2848 dhist.append(cwd)
2849 self.db['dhist'] = compress_dhist(dhist)[-100:]
2849 self.db['dhist'] = compress_dhist(dhist)[-100:]
2850
2850
2851 else:
2851 else:
2852 os.chdir(self.shell.home_dir)
2852 os.chdir(self.shell.home_dir)
2853 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2853 if hasattr(self.shell, 'term_title') and self.shell.term_title:
2854 set_term_title('IPython: ' + '~')
2854 set_term_title('IPython: ' + '~')
2855 cwd = os.getcwd()
2855 cwd = os.getcwd()
2856 dhist = self.shell.user_ns['_dh']
2856 dhist = self.shell.user_ns['_dh']
2857
2857
2858 if oldcwd != cwd:
2858 if oldcwd != cwd:
2859 dhist.append(cwd)
2859 dhist.append(cwd)
2860 self.db['dhist'] = compress_dhist(dhist)[-100:]
2860 self.db['dhist'] = compress_dhist(dhist)[-100:]
2861 if not 'q' in opts and self.shell.user_ns['_dh']:
2861 if not 'q' in opts and self.shell.user_ns['_dh']:
2862 print self.shell.user_ns['_dh'][-1]
2862 print self.shell.user_ns['_dh'][-1]
2863
2863
2864
2864
2865 def magic_env(self, parameter_s=''):
2865 def magic_env(self, parameter_s=''):
2866 """List environment variables."""
2866 """List environment variables."""
2867
2867
2868 return os.environ.data
2868 return os.environ.data
2869
2869
2870 def magic_pushd(self, parameter_s=''):
2870 def magic_pushd(self, parameter_s=''):
2871 """Place the current dir on stack and change directory.
2871 """Place the current dir on stack and change directory.
2872
2872
2873 Usage:\\
2873 Usage:\\
2874 %pushd ['dirname']
2874 %pushd ['dirname']
2875 """
2875 """
2876
2876
2877 dir_s = self.shell.dir_stack
2877 dir_s = self.shell.dir_stack
2878 tgt = os.path.expanduser(parameter_s)
2878 tgt = os.path.expanduser(parameter_s)
2879 cwd = os.getcwd().replace(self.home_dir,'~')
2879 cwd = os.getcwd().replace(self.home_dir,'~')
2880 if tgt:
2880 if tgt:
2881 self.magic_cd(parameter_s)
2881 self.magic_cd(parameter_s)
2882 dir_s.insert(0,cwd)
2882 dir_s.insert(0,cwd)
2883 return self.magic_dirs()
2883 return self.magic_dirs()
2884
2884
2885 def magic_popd(self, parameter_s=''):
2885 def magic_popd(self, parameter_s=''):
2886 """Change to directory popped off the top of the stack.
2886 """Change to directory popped off the top of the stack.
2887 """
2887 """
2888 if not self.shell.dir_stack:
2888 if not self.shell.dir_stack:
2889 raise UsageError("%popd on empty stack")
2889 raise UsageError("%popd on empty stack")
2890 top = self.shell.dir_stack.pop(0)
2890 top = self.shell.dir_stack.pop(0)
2891 self.magic_cd(top)
2891 self.magic_cd(top)
2892 print "popd ->",top
2892 print "popd ->",top
2893
2893
2894 def magic_dirs(self, parameter_s=''):
2894 def magic_dirs(self, parameter_s=''):
2895 """Return the current directory stack."""
2895 """Return the current directory stack."""
2896
2896
2897 return self.shell.dir_stack
2897 return self.shell.dir_stack
2898
2898
2899 def magic_dhist(self, parameter_s=''):
2899 def magic_dhist(self, parameter_s=''):
2900 """Print your history of visited directories.
2900 """Print your history of visited directories.
2901
2901
2902 %dhist -> print full history\\
2902 %dhist -> print full history\\
2903 %dhist n -> print last n entries only\\
2903 %dhist n -> print last n entries only\\
2904 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2904 %dhist n1 n2 -> print entries between n1 and n2 (n1 not included)\\
2905
2905
2906 This history is automatically maintained by the %cd command, and
2906 This history is automatically maintained by the %cd command, and
2907 always available as the global list variable _dh. You can use %cd -<n>
2907 always available as the global list variable _dh. You can use %cd -<n>
2908 to go to directory number <n>.
2908 to go to directory number <n>.
2909
2909
2910 Note that most of time, you should view directory history by entering
2910 Note that most of time, you should view directory history by entering
2911 cd -<TAB>.
2911 cd -<TAB>.
2912
2912
2913 """
2913 """
2914
2914
2915 dh = self.shell.user_ns['_dh']
2915 dh = self.shell.user_ns['_dh']
2916 if parameter_s:
2916 if parameter_s:
2917 try:
2917 try:
2918 args = map(int,parameter_s.split())
2918 args = map(int,parameter_s.split())
2919 except:
2919 except:
2920 self.arg_err(Magic.magic_dhist)
2920 self.arg_err(Magic.magic_dhist)
2921 return
2921 return
2922 if len(args) == 1:
2922 if len(args) == 1:
2923 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2923 ini,fin = max(len(dh)-(args[0]),0),len(dh)
2924 elif len(args) == 2:
2924 elif len(args) == 2:
2925 ini,fin = args
2925 ini,fin = args
2926 else:
2926 else:
2927 self.arg_err(Magic.magic_dhist)
2927 self.arg_err(Magic.magic_dhist)
2928 return
2928 return
2929 else:
2929 else:
2930 ini,fin = 0,len(dh)
2930 ini,fin = 0,len(dh)
2931 nlprint(dh,
2931 nlprint(dh,
2932 header = 'Directory history (kept in _dh)',
2932 header = 'Directory history (kept in _dh)',
2933 start=ini,stop=fin)
2933 start=ini,stop=fin)
2934
2934
2935 @skip_doctest
2935 @skip_doctest
2936 def magic_sc(self, parameter_s=''):
2936 def magic_sc(self, parameter_s=''):
2937 """Shell capture - execute a shell command and capture its output.
2937 """Shell capture - execute a shell command and capture its output.
2938
2938
2939 DEPRECATED. Suboptimal, retained for backwards compatibility.
2939 DEPRECATED. Suboptimal, retained for backwards compatibility.
2940
2940
2941 You should use the form 'var = !command' instead. Example:
2941 You should use the form 'var = !command' instead. Example:
2942
2942
2943 "%sc -l myfiles = ls ~" should now be written as
2943 "%sc -l myfiles = ls ~" should now be written as
2944
2944
2945 "myfiles = !ls ~"
2945 "myfiles = !ls ~"
2946
2946
2947 myfiles.s, myfiles.l and myfiles.n still apply as documented
2947 myfiles.s, myfiles.l and myfiles.n still apply as documented
2948 below.
2948 below.
2949
2949
2950 --
2950 --
2951 %sc [options] varname=command
2951 %sc [options] varname=command
2952
2952
2953 IPython will run the given command using commands.getoutput(), and
2953 IPython will run the given command using commands.getoutput(), and
2954 will then update the user's interactive namespace with a variable
2954 will then update the user's interactive namespace with a variable
2955 called varname, containing the value of the call. Your command can
2955 called varname, containing the value of the call. Your command can
2956 contain shell wildcards, pipes, etc.
2956 contain shell wildcards, pipes, etc.
2957
2957
2958 The '=' sign in the syntax is mandatory, and the variable name you
2958 The '=' sign in the syntax is mandatory, and the variable name you
2959 supply must follow Python's standard conventions for valid names.
2959 supply must follow Python's standard conventions for valid names.
2960
2960
2961 (A special format without variable name exists for internal use)
2961 (A special format without variable name exists for internal use)
2962
2962
2963 Options:
2963 Options:
2964
2964
2965 -l: list output. Split the output on newlines into a list before
2965 -l: list output. Split the output on newlines into a list before
2966 assigning it to the given variable. By default the output is stored
2966 assigning it to the given variable. By default the output is stored
2967 as a single string.
2967 as a single string.
2968
2968
2969 -v: verbose. Print the contents of the variable.
2969 -v: verbose. Print the contents of the variable.
2970
2970
2971 In most cases you should not need to split as a list, because the
2971 In most cases you should not need to split as a list, because the
2972 returned value is a special type of string which can automatically
2972 returned value is a special type of string which can automatically
2973 provide its contents either as a list (split on newlines) or as a
2973 provide its contents either as a list (split on newlines) or as a
2974 space-separated string. These are convenient, respectively, either
2974 space-separated string. These are convenient, respectively, either
2975 for sequential processing or to be passed to a shell command.
2975 for sequential processing or to be passed to a shell command.
2976
2976
2977 For example:
2977 For example:
2978
2978
2979 # all-random
2979 # all-random
2980
2980
2981 # Capture into variable a
2981 # Capture into variable a
2982 In [1]: sc a=ls *py
2982 In [1]: sc a=ls *py
2983
2983
2984 # a is a string with embedded newlines
2984 # a is a string with embedded newlines
2985 In [2]: a
2985 In [2]: a
2986 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2986 Out[2]: 'setup.py\\nwin32_manual_post_install.py'
2987
2987
2988 # which can be seen as a list:
2988 # which can be seen as a list:
2989 In [3]: a.l
2989 In [3]: a.l
2990 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2990 Out[3]: ['setup.py', 'win32_manual_post_install.py']
2991
2991
2992 # or as a whitespace-separated string:
2992 # or as a whitespace-separated string:
2993 In [4]: a.s
2993 In [4]: a.s
2994 Out[4]: 'setup.py win32_manual_post_install.py'
2994 Out[4]: 'setup.py win32_manual_post_install.py'
2995
2995
2996 # a.s is useful to pass as a single command line:
2996 # a.s is useful to pass as a single command line:
2997 In [5]: !wc -l $a.s
2997 In [5]: !wc -l $a.s
2998 146 setup.py
2998 146 setup.py
2999 130 win32_manual_post_install.py
2999 130 win32_manual_post_install.py
3000 276 total
3000 276 total
3001
3001
3002 # while the list form is useful to loop over:
3002 # while the list form is useful to loop over:
3003 In [6]: for f in a.l:
3003 In [6]: for f in a.l:
3004 ...: !wc -l $f
3004 ...: !wc -l $f
3005 ...:
3005 ...:
3006 146 setup.py
3006 146 setup.py
3007 130 win32_manual_post_install.py
3007 130 win32_manual_post_install.py
3008
3008
3009 Similiarly, the lists returned by the -l option are also special, in
3009 Similiarly, the lists returned by the -l option are also special, in
3010 the sense that you can equally invoke the .s attribute on them to
3010 the sense that you can equally invoke the .s attribute on them to
3011 automatically get a whitespace-separated string from their contents:
3011 automatically get a whitespace-separated string from their contents:
3012
3012
3013 In [7]: sc -l b=ls *py
3013 In [7]: sc -l b=ls *py
3014
3014
3015 In [8]: b
3015 In [8]: b
3016 Out[8]: ['setup.py', 'win32_manual_post_install.py']
3016 Out[8]: ['setup.py', 'win32_manual_post_install.py']
3017
3017
3018 In [9]: b.s
3018 In [9]: b.s
3019 Out[9]: 'setup.py win32_manual_post_install.py'
3019 Out[9]: 'setup.py win32_manual_post_install.py'
3020
3020
3021 In summary, both the lists and strings used for ouptut capture have
3021 In summary, both the lists and strings used for ouptut capture have
3022 the following special attributes:
3022 the following special attributes:
3023
3023
3024 .l (or .list) : value as list.
3024 .l (or .list) : value as list.
3025 .n (or .nlstr): value as newline-separated string.
3025 .n (or .nlstr): value as newline-separated string.
3026 .s (or .spstr): value as space-separated string.
3026 .s (or .spstr): value as space-separated string.
3027 """
3027 """
3028
3028
3029 opts,args = self.parse_options(parameter_s,'lv')
3029 opts,args = self.parse_options(parameter_s,'lv')
3030 # Try to get a variable name and command to run
3030 # Try to get a variable name and command to run
3031 try:
3031 try:
3032 # the variable name must be obtained from the parse_options
3032 # the variable name must be obtained from the parse_options
3033 # output, which uses shlex.split to strip options out.
3033 # output, which uses shlex.split to strip options out.
3034 var,_ = args.split('=',1)
3034 var,_ = args.split('=',1)
3035 var = var.strip()
3035 var = var.strip()
3036 # But the the command has to be extracted from the original input
3036 # But the the command has to be extracted from the original input
3037 # parameter_s, not on what parse_options returns, to avoid the
3037 # parameter_s, not on what parse_options returns, to avoid the
3038 # quote stripping which shlex.split performs on it.
3038 # quote stripping which shlex.split performs on it.
3039 _,cmd = parameter_s.split('=',1)
3039 _,cmd = parameter_s.split('=',1)
3040 except ValueError:
3040 except ValueError:
3041 var,cmd = '',''
3041 var,cmd = '',''
3042 # If all looks ok, proceed
3042 # If all looks ok, proceed
3043 split = 'l' in opts
3043 split = 'l' in opts
3044 out = self.shell.getoutput(cmd, split=split)
3044 out = self.shell.getoutput(cmd, split=split)
3045 if opts.has_key('v'):
3045 if opts.has_key('v'):
3046 print '%s ==\n%s' % (var,pformat(out))
3046 print '%s ==\n%s' % (var,pformat(out))
3047 if var:
3047 if var:
3048 self.shell.user_ns.update({var:out})
3048 self.shell.user_ns.update({var:out})
3049 else:
3049 else:
3050 return out
3050 return out
3051
3051
3052 def magic_sx(self, parameter_s=''):
3052 def magic_sx(self, parameter_s=''):
3053 """Shell execute - run a shell command and capture its output.
3053 """Shell execute - run a shell command and capture its output.
3054
3054
3055 %sx command
3055 %sx command
3056
3056
3057 IPython will run the given command using commands.getoutput(), and
3057 IPython will run the given command using commands.getoutput(), and
3058 return the result formatted as a list (split on '\\n'). Since the
3058 return the result formatted as a list (split on '\\n'). Since the
3059 output is _returned_, it will be stored in ipython's regular output
3059 output is _returned_, it will be stored in ipython's regular output
3060 cache Out[N] and in the '_N' automatic variables.
3060 cache Out[N] and in the '_N' automatic variables.
3061
3061
3062 Notes:
3062 Notes:
3063
3063
3064 1) If an input line begins with '!!', then %sx is automatically
3064 1) If an input line begins with '!!', then %sx is automatically
3065 invoked. That is, while:
3065 invoked. That is, while:
3066 !ls
3066 !ls
3067 causes ipython to simply issue system('ls'), typing
3067 causes ipython to simply issue system('ls'), typing
3068 !!ls
3068 !!ls
3069 is a shorthand equivalent to:
3069 is a shorthand equivalent to:
3070 %sx ls
3070 %sx ls
3071
3071
3072 2) %sx differs from %sc in that %sx automatically splits into a list,
3072 2) %sx differs from %sc in that %sx automatically splits into a list,
3073 like '%sc -l'. The reason for this is to make it as easy as possible
3073 like '%sc -l'. The reason for this is to make it as easy as possible
3074 to process line-oriented shell output via further python commands.
3074 to process line-oriented shell output via further python commands.
3075 %sc is meant to provide much finer control, but requires more
3075 %sc is meant to provide much finer control, but requires more
3076 typing.
3076 typing.
3077
3077
3078 3) Just like %sc -l, this is a list with special attributes:
3078 3) Just like %sc -l, this is a list with special attributes:
3079
3079
3080 .l (or .list) : value as list.
3080 .l (or .list) : value as list.
3081 .n (or .nlstr): value as newline-separated string.
3081 .n (or .nlstr): value as newline-separated string.
3082 .s (or .spstr): value as whitespace-separated string.
3082 .s (or .spstr): value as whitespace-separated string.
3083
3083
3084 This is very useful when trying to use such lists as arguments to
3084 This is very useful when trying to use such lists as arguments to
3085 system commands."""
3085 system commands."""
3086
3086
3087 if parameter_s:
3087 if parameter_s:
3088 return self.shell.getoutput(parameter_s)
3088 return self.shell.getoutput(parameter_s)
3089
3089
3090
3090
3091 def magic_bookmark(self, parameter_s=''):
3091 def magic_bookmark(self, parameter_s=''):
3092 """Manage IPython's bookmark system.
3092 """Manage IPython's bookmark system.
3093
3093
3094 %bookmark <name> - set bookmark to current dir
3094 %bookmark <name> - set bookmark to current dir
3095 %bookmark <name> <dir> - set bookmark to <dir>
3095 %bookmark <name> <dir> - set bookmark to <dir>
3096 %bookmark -l - list all bookmarks
3096 %bookmark -l - list all bookmarks
3097 %bookmark -d <name> - remove bookmark
3097 %bookmark -d <name> - remove bookmark
3098 %bookmark -r - remove all bookmarks
3098 %bookmark -r - remove all bookmarks
3099
3099
3100 You can later on access a bookmarked folder with:
3100 You can later on access a bookmarked folder with:
3101 %cd -b <name>
3101 %cd -b <name>
3102 or simply '%cd <name>' if there is no directory called <name> AND
3102 or simply '%cd <name>' if there is no directory called <name> AND
3103 there is such a bookmark defined.
3103 there is such a bookmark defined.
3104
3104
3105 Your bookmarks persist through IPython sessions, but they are
3105 Your bookmarks persist through IPython sessions, but they are
3106 associated with each profile."""
3106 associated with each profile."""
3107
3107
3108 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3108 opts,args = self.parse_options(parameter_s,'drl',mode='list')
3109 if len(args) > 2:
3109 if len(args) > 2:
3110 raise UsageError("%bookmark: too many arguments")
3110 raise UsageError("%bookmark: too many arguments")
3111
3111
3112 bkms = self.db.get('bookmarks',{})
3112 bkms = self.db.get('bookmarks',{})
3113
3113
3114 if opts.has_key('d'):
3114 if opts.has_key('d'):
3115 try:
3115 try:
3116 todel = args[0]
3116 todel = args[0]
3117 except IndexError:
3117 except IndexError:
3118 raise UsageError(
3118 raise UsageError(
3119 "%bookmark -d: must provide a bookmark to delete")
3119 "%bookmark -d: must provide a bookmark to delete")
3120 else:
3120 else:
3121 try:
3121 try:
3122 del bkms[todel]
3122 del bkms[todel]
3123 except KeyError:
3123 except KeyError:
3124 raise UsageError(
3124 raise UsageError(
3125 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3125 "%%bookmark -d: Can't delete bookmark '%s'" % todel)
3126
3126
3127 elif opts.has_key('r'):
3127 elif opts.has_key('r'):
3128 bkms = {}
3128 bkms = {}
3129 elif opts.has_key('l'):
3129 elif opts.has_key('l'):
3130 bks = bkms.keys()
3130 bks = bkms.keys()
3131 bks.sort()
3131 bks.sort()
3132 if bks:
3132 if bks:
3133 size = max(map(len,bks))
3133 size = max(map(len,bks))
3134 else:
3134 else:
3135 size = 0
3135 size = 0
3136 fmt = '%-'+str(size)+'s -> %s'
3136 fmt = '%-'+str(size)+'s -> %s'
3137 print 'Current bookmarks:'
3137 print 'Current bookmarks:'
3138 for bk in bks:
3138 for bk in bks:
3139 print fmt % (bk,bkms[bk])
3139 print fmt % (bk,bkms[bk])
3140 else:
3140 else:
3141 if not args:
3141 if not args:
3142 raise UsageError("%bookmark: You must specify the bookmark name")
3142 raise UsageError("%bookmark: You must specify the bookmark name")
3143 elif len(args)==1:
3143 elif len(args)==1:
3144 bkms[args[0]] = os.getcwd()
3144 bkms[args[0]] = os.getcwd()
3145 elif len(args)==2:
3145 elif len(args)==2:
3146 bkms[args[0]] = args[1]
3146 bkms[args[0]] = args[1]
3147 self.db['bookmarks'] = bkms
3147 self.db['bookmarks'] = bkms
3148
3148
3149 def magic_pycat(self, parameter_s=''):
3149 def magic_pycat(self, parameter_s=''):
3150 """Show a syntax-highlighted file through a pager.
3150 """Show a syntax-highlighted file through a pager.
3151
3151
3152 This magic is similar to the cat utility, but it will assume the file
3152 This magic is similar to the cat utility, but it will assume the file
3153 to be Python source and will show it with syntax highlighting. """
3153 to be Python source and will show it with syntax highlighting. """
3154
3154
3155 try:
3155 try:
3156 filename = get_py_filename(parameter_s)
3156 filename = get_py_filename(parameter_s)
3157 cont = file_read(filename)
3157 cont = file_read(filename)
3158 except IOError:
3158 except IOError:
3159 try:
3159 try:
3160 cont = eval(parameter_s,self.user_ns)
3160 cont = eval(parameter_s,self.user_ns)
3161 except NameError:
3161 except NameError:
3162 cont = None
3162 cont = None
3163 if cont is None:
3163 if cont is None:
3164 print "Error: no such file or variable"
3164 print "Error: no such file or variable"
3165 return
3165 return
3166
3166
3167 page.page(self.shell.pycolorize(cont))
3167 page.page(self.shell.pycolorize(cont))
3168
3168
3169 def _rerun_pasted(self):
3169 def _rerun_pasted(self):
3170 """ Rerun a previously pasted command.
3170 """ Rerun a previously pasted command.
3171 """
3171 """
3172 b = self.user_ns.get('pasted_block', None)
3172 b = self.user_ns.get('pasted_block', None)
3173 if b is None:
3173 if b is None:
3174 raise UsageError('No previous pasted block available')
3174 raise UsageError('No previous pasted block available')
3175 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3175 print "Re-executing '%s...' (%d chars)"% (b.split('\n',1)[0], len(b))
3176 exec b in self.user_ns
3176 exec b in self.user_ns
3177
3177
3178 def _get_pasted_lines(self, sentinel):
3178 def _get_pasted_lines(self, sentinel):
3179 """ Yield pasted lines until the user enters the given sentinel value.
3179 """ Yield pasted lines until the user enters the given sentinel value.
3180 """
3180 """
3181 from IPython.core import interactiveshell
3181 from IPython.core import interactiveshell
3182 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3182 print "Pasting code; enter '%s' alone on the line to stop." % sentinel
3183 while True:
3183 while True:
3184 l = interactiveshell.raw_input_original(':')
3184 l = interactiveshell.raw_input_original(':')
3185 if l == sentinel:
3185 if l == sentinel:
3186 return
3186 return
3187 else:
3187 else:
3188 yield l
3188 yield l
3189
3189
3190 def _strip_pasted_lines_for_code(self, raw_lines):
3190 def _strip_pasted_lines_for_code(self, raw_lines):
3191 """ Strip non-code parts of a sequence of lines to return a block of
3191 """ Strip non-code parts of a sequence of lines to return a block of
3192 code.
3192 code.
3193 """
3193 """
3194 # Regular expressions that declare text we strip from the input:
3194 # Regular expressions that declare text we strip from the input:
3195 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3195 strip_re = [r'^\s*In \[\d+\]:', # IPython input prompt
3196 r'^\s*(\s?>)+', # Python input prompt
3196 r'^\s*(\s?>)+', # Python input prompt
3197 r'^\s*\.{3,}', # Continuation prompts
3197 r'^\s*\.{3,}', # Continuation prompts
3198 r'^\++',
3198 r'^\++',
3199 ]
3199 ]
3200
3200
3201 strip_from_start = map(re.compile,strip_re)
3201 strip_from_start = map(re.compile,strip_re)
3202
3202
3203 lines = []
3203 lines = []
3204 for l in raw_lines:
3204 for l in raw_lines:
3205 for pat in strip_from_start:
3205 for pat in strip_from_start:
3206 l = pat.sub('',l)
3206 l = pat.sub('',l)
3207 lines.append(l)
3207 lines.append(l)
3208
3208
3209 block = "\n".join(lines) + '\n'
3209 block = "\n".join(lines) + '\n'
3210 #print "block:\n",block
3210 #print "block:\n",block
3211 return block
3211 return block
3212
3212
3213 def _execute_block(self, block, par):
3213 def _execute_block(self, block, par):
3214 """ Execute a block, or store it in a variable, per the user's request.
3214 """ Execute a block, or store it in a variable, per the user's request.
3215 """
3215 """
3216 if not par:
3216 if not par:
3217 b = textwrap.dedent(block)
3217 b = textwrap.dedent(block)
3218 self.user_ns['pasted_block'] = b
3218 self.user_ns['pasted_block'] = b
3219 exec b in self.user_ns
3219 exec b in self.user_ns
3220 else:
3220 else:
3221 self.user_ns[par] = SList(block.splitlines())
3221 self.user_ns[par] = SList(block.splitlines())
3222 print "Block assigned to '%s'" % par
3222 print "Block assigned to '%s'" % par
3223
3223
3224 def magic_quickref(self,arg):
3224 def magic_quickref(self,arg):
3225 """ Show a quick reference sheet """
3225 """ Show a quick reference sheet """
3226 import IPython.core.usage
3226 import IPython.core.usage
3227 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3227 qr = IPython.core.usage.quick_reference + self.magic_magic('-brief')
3228
3228
3229 page.page(qr)
3229 page.page(qr)
3230
3230
3231 def magic_doctest_mode(self,parameter_s=''):
3231 def magic_doctest_mode(self,parameter_s=''):
3232 """Toggle doctest mode on and off.
3232 """Toggle doctest mode on and off.
3233
3233
3234 This mode is intended to make IPython behave as much as possible like a
3234 This mode is intended to make IPython behave as much as possible like a
3235 plain Python shell, from the perspective of how its prompts, exceptions
3235 plain Python shell, from the perspective of how its prompts, exceptions
3236 and output look. This makes it easy to copy and paste parts of a
3236 and output look. This makes it easy to copy and paste parts of a
3237 session into doctests. It does so by:
3237 session into doctests. It does so by:
3238
3238
3239 - Changing the prompts to the classic ``>>>`` ones.
3239 - Changing the prompts to the classic ``>>>`` ones.
3240 - Changing the exception reporting mode to 'Plain'.
3240 - Changing the exception reporting mode to 'Plain'.
3241 - Disabling pretty-printing of output.
3241 - Disabling pretty-printing of output.
3242
3242
3243 Note that IPython also supports the pasting of code snippets that have
3243 Note that IPython also supports the pasting of code snippets that have
3244 leading '>>>' and '...' prompts in them. This means that you can paste
3244 leading '>>>' and '...' prompts in them. This means that you can paste
3245 doctests from files or docstrings (even if they have leading
3245 doctests from files or docstrings (even if they have leading
3246 whitespace), and the code will execute correctly. You can then use
3246 whitespace), and the code will execute correctly. You can then use
3247 '%history -t' to see the translated history; this will give you the
3247 '%history -t' to see the translated history; this will give you the
3248 input after removal of all the leading prompts and whitespace, which
3248 input after removal of all the leading prompts and whitespace, which
3249 can be pasted back into an editor.
3249 can be pasted back into an editor.
3250
3250
3251 With these features, you can switch into this mode easily whenever you
3251 With these features, you can switch into this mode easily whenever you
3252 need to do testing and changes to doctests, without having to leave
3252 need to do testing and changes to doctests, without having to leave
3253 your existing IPython session.
3253 your existing IPython session.
3254 """
3254 """
3255
3255
3256 from IPython.utils.ipstruct import Struct
3256 from IPython.utils.ipstruct import Struct
3257
3257
3258 # Shorthands
3258 # Shorthands
3259 shell = self.shell
3259 shell = self.shell
3260 oc = shell.displayhook
3260 oc = shell.displayhook
3261 meta = shell.meta
3261 meta = shell.meta
3262 disp_formatter = self.shell.display_formatter
3262 disp_formatter = self.shell.display_formatter
3263 ptformatter = disp_formatter.formatters['text/plain']
3263 ptformatter = disp_formatter.formatters['text/plain']
3264 # dstore is a data store kept in the instance metadata bag to track any
3264 # dstore is a data store kept in the instance metadata bag to track any
3265 # changes we make, so we can undo them later.
3265 # changes we make, so we can undo them later.
3266 dstore = meta.setdefault('doctest_mode',Struct())
3266 dstore = meta.setdefault('doctest_mode',Struct())
3267 save_dstore = dstore.setdefault
3267 save_dstore = dstore.setdefault
3268
3268
3269 # save a few values we'll need to recover later
3269 # save a few values we'll need to recover later
3270 mode = save_dstore('mode',False)
3270 mode = save_dstore('mode',False)
3271 save_dstore('rc_pprint',ptformatter.pprint)
3271 save_dstore('rc_pprint',ptformatter.pprint)
3272 save_dstore('xmode',shell.InteractiveTB.mode)
3272 save_dstore('xmode',shell.InteractiveTB.mode)
3273 save_dstore('rc_separate_out',shell.separate_out)
3273 save_dstore('rc_separate_out',shell.separate_out)
3274 save_dstore('rc_separate_out2',shell.separate_out2)
3274 save_dstore('rc_separate_out2',shell.separate_out2)
3275 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3275 save_dstore('rc_prompts_pad_left',shell.prompts_pad_left)
3276 save_dstore('rc_separate_in',shell.separate_in)
3276 save_dstore('rc_separate_in',shell.separate_in)
3277 save_dstore('rc_plain_text_only',disp_formatter.plain_text_only)
3277 save_dstore('rc_plain_text_only',disp_formatter.plain_text_only)
3278
3278
3279 if mode == False:
3279 if mode == False:
3280 # turn on
3280 # turn on
3281 oc.prompt1.p_template = '>>> '
3281 oc.prompt1.p_template = '>>> '
3282 oc.prompt2.p_template = '... '
3282 oc.prompt2.p_template = '... '
3283 oc.prompt_out.p_template = ''
3283 oc.prompt_out.p_template = ''
3284
3284
3285 # Prompt separators like plain python
3285 # Prompt separators like plain python
3286 oc.input_sep = oc.prompt1.sep = ''
3286 oc.input_sep = oc.prompt1.sep = ''
3287 oc.output_sep = ''
3287 oc.output_sep = ''
3288 oc.output_sep2 = ''
3288 oc.output_sep2 = ''
3289
3289
3290 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3290 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3291 oc.prompt_out.pad_left = False
3291 oc.prompt_out.pad_left = False
3292
3292
3293 ptformatter.pprint = False
3293 ptformatter.pprint = False
3294 disp_formatter.plain_text_only = True
3294 disp_formatter.plain_text_only = True
3295
3295
3296 shell.magic_xmode('Plain')
3296 shell.magic_xmode('Plain')
3297 else:
3297 else:
3298 # turn off
3298 # turn off
3299 oc.prompt1.p_template = shell.prompt_in1
3299 oc.prompt1.p_template = shell.prompt_in1
3300 oc.prompt2.p_template = shell.prompt_in2
3300 oc.prompt2.p_template = shell.prompt_in2
3301 oc.prompt_out.p_template = shell.prompt_out
3301 oc.prompt_out.p_template = shell.prompt_out
3302
3302
3303 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3303 oc.input_sep = oc.prompt1.sep = dstore.rc_separate_in
3304
3304
3305 oc.output_sep = dstore.rc_separate_out
3305 oc.output_sep = dstore.rc_separate_out
3306 oc.output_sep2 = dstore.rc_separate_out2
3306 oc.output_sep2 = dstore.rc_separate_out2
3307
3307
3308 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3308 oc.prompt1.pad_left = oc.prompt2.pad_left = \
3309 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3309 oc.prompt_out.pad_left = dstore.rc_prompts_pad_left
3310
3310
3311 ptformatter.pprint = dstore.rc_pprint
3311 ptformatter.pprint = dstore.rc_pprint
3312 disp_formatter.plain_text_only = dstore.rc_plain_text_only
3312 disp_formatter.plain_text_only = dstore.rc_plain_text_only
3313
3313
3314 shell.magic_xmode(dstore.xmode)
3314 shell.magic_xmode(dstore.xmode)
3315
3315
3316 # Store new mode and inform
3316 # Store new mode and inform
3317 dstore.mode = bool(1-int(mode))
3317 dstore.mode = bool(1-int(mode))
3318 mode_label = ['OFF','ON'][dstore.mode]
3318 mode_label = ['OFF','ON'][dstore.mode]
3319 print 'Doctest mode is:', mode_label
3319 print 'Doctest mode is:', mode_label
3320
3320
3321 def magic_gui(self, parameter_s=''):
3321 def magic_gui(self, parameter_s=''):
3322 """Enable or disable IPython GUI event loop integration.
3322 """Enable or disable IPython GUI event loop integration.
3323
3323
3324 %gui [GUINAME]
3324 %gui [GUINAME]
3325
3325
3326 This magic replaces IPython's threaded shells that were activated
3326 This magic replaces IPython's threaded shells that were activated
3327 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3327 using the (pylab/wthread/etc.) command line flags. GUI toolkits
3328 can now be enabled, disabled and changed at runtime and keyboard
3328 can now be enabled, disabled and changed at runtime and keyboard
3329 interrupts should work without any problems. The following toolkits
3329 interrupts should work without any problems. The following toolkits
3330 are supported: wxPython, PyQt4, PyGTK, and Tk::
3330 are supported: wxPython, PyQt4, PyGTK, and Tk::
3331
3331
3332 %gui wx # enable wxPython event loop integration
3332 %gui wx # enable wxPython event loop integration
3333 %gui qt4|qt # enable PyQt4 event loop integration
3333 %gui qt4|qt # enable PyQt4 event loop integration
3334 %gui gtk # enable PyGTK event loop integration
3334 %gui gtk # enable PyGTK event loop integration
3335 %gui tk # enable Tk event loop integration
3335 %gui tk # enable Tk event loop integration
3336 %gui # disable all event loop integration
3336 %gui # disable all event loop integration
3337
3337
3338 WARNING: after any of these has been called you can simply create
3338 WARNING: after any of these has been called you can simply create
3339 an application object, but DO NOT start the event loop yourself, as
3339 an application object, but DO NOT start the event loop yourself, as
3340 we have already handled that.
3340 we have already handled that.
3341 """
3341 """
3342 from IPython.lib.inputhook import enable_gui
3342 from IPython.lib.inputhook import enable_gui
3343 opts, arg = self.parse_options(parameter_s, '')
3343 opts, arg = self.parse_options(parameter_s, '')
3344 if arg=='': arg = None
3344 if arg=='': arg = None
3345 return enable_gui(arg)
3345 return enable_gui(arg)
3346
3346
3347 def magic_load_ext(self, module_str):
3347 def magic_load_ext(self, module_str):
3348 """Load an IPython extension by its module name."""
3348 """Load an IPython extension by its module name."""
3349 return self.extension_manager.load_extension(module_str)
3349 return self.extension_manager.load_extension(module_str)
3350
3350
3351 def magic_unload_ext(self, module_str):
3351 def magic_unload_ext(self, module_str):
3352 """Unload an IPython extension by its module name."""
3352 """Unload an IPython extension by its module name."""
3353 self.extension_manager.unload_extension(module_str)
3353 self.extension_manager.unload_extension(module_str)
3354
3354
3355 def magic_reload_ext(self, module_str):
3355 def magic_reload_ext(self, module_str):
3356 """Reload an IPython extension by its module name."""
3356 """Reload an IPython extension by its module name."""
3357 self.extension_manager.reload_extension(module_str)
3357 self.extension_manager.reload_extension(module_str)
3358
3358
3359 @skip_doctest
3359 @skip_doctest
3360 def magic_install_profiles(self, s):
3360 def magic_install_profiles(self, s):
3361 """Install the default IPython profiles into the .ipython dir.
3361 """Install the default IPython profiles into the .ipython dir.
3362
3362
3363 If the default profiles have already been installed, they will not
3363 If the default profiles have already been installed, they will not
3364 be overwritten. You can force overwriting them by using the ``-o``
3364 be overwritten. You can force overwriting them by using the ``-o``
3365 option::
3365 option::
3366
3366
3367 In [1]: %install_profiles -o
3367 In [1]: %install_profiles -o
3368 """
3368 """
3369 if '-o' in s:
3369 if '-o' in s:
3370 overwrite = True
3370 overwrite = True
3371 else:
3371 else:
3372 overwrite = False
3372 overwrite = False
3373 from IPython.config import profile
3373 from IPython.config import profile
3374 profile_dir = os.path.dirname(profile.__file__)
3374 profile_dir = os.path.dirname(profile.__file__)
3375 ipython_dir = self.ipython_dir
3375 ipython_dir = self.ipython_dir
3376 print "Installing profiles to: %s [overwrite=%s]"%(ipython_dir,overwrite)
3376 print "Installing profiles to: %s [overwrite=%s]"%(ipython_dir,overwrite)
3377 for src in os.listdir(profile_dir):
3377 for src in os.listdir(profile_dir):
3378 if src.startswith('profile_'):
3378 if src.startswith('profile_'):
3379 name = src.replace('profile_', '')
3379 name = src.replace('profile_', '')
3380 print " %s"%name
3380 print " %s"%name
3381 pd = ProfileDir.create_profile_dir_by_name(ipython_dir, name)
3381 pd = ProfileDir.create_profile_dir_by_name(ipython_dir, name)
3382 pd.copy_config_file('ipython_config.py', path=src,
3382 pd.copy_config_file('ipython_config.py', path=src,
3383 overwrite=overwrite)
3383 overwrite=overwrite)
3384
3384
3385 @skip_doctest
3385 @skip_doctest
3386 def magic_install_default_config(self, s):
3386 def magic_install_default_config(self, s):
3387 """Install IPython's default config file into the .ipython dir.
3387 """Install IPython's default config file into the .ipython dir.
3388
3388
3389 If the default config file (:file:`ipython_config.py`) is already
3389 If the default config file (:file:`ipython_config.py`) is already
3390 installed, it will not be overwritten. You can force overwriting
3390 installed, it will not be overwritten. You can force overwriting
3391 by using the ``-o`` option::
3391 by using the ``-o`` option::
3392
3392
3393 In [1]: %install_default_config
3393 In [1]: %install_default_config
3394 """
3394 """
3395 if '-o' in s:
3395 if '-o' in s:
3396 overwrite = True
3396 overwrite = True
3397 else:
3397 else:
3398 overwrite = False
3398 overwrite = False
3399 pd = self.shell.profile_dir
3399 pd = self.shell.profile_dir
3400 print "Installing default config file in: %s" % pd.location
3400 print "Installing default config file in: %s" % pd.location
3401 pd.copy_config_file('ipython_config.py', overwrite=overwrite)
3401 pd.copy_config_file('ipython_config.py', overwrite=overwrite)
3402
3402
3403 # Pylab support: simple wrappers that activate pylab, load gui input
3403 # Pylab support: simple wrappers that activate pylab, load gui input
3404 # handling and modify slightly %run
3404 # handling and modify slightly %run
3405
3405
3406 @skip_doctest
3406 @skip_doctest
3407 def _pylab_magic_run(self, parameter_s=''):
3407 def _pylab_magic_run(self, parameter_s=''):
3408 Magic.magic_run(self, parameter_s,
3408 Magic.magic_run(self, parameter_s,
3409 runner=mpl_runner(self.shell.safe_execfile))
3409 runner=mpl_runner(self.shell.safe_execfile))
3410
3410
3411 _pylab_magic_run.__doc__ = magic_run.__doc__
3411 _pylab_magic_run.__doc__ = magic_run.__doc__
3412
3412
3413 @skip_doctest
3413 @skip_doctest
3414 def magic_pylab(self, s):
3414 def magic_pylab(self, s):
3415 """Load numpy and matplotlib to work interactively.
3415 """Load numpy and matplotlib to work interactively.
3416
3416
3417 %pylab [GUINAME]
3417 %pylab [GUINAME]
3418
3418
3419 This function lets you activate pylab (matplotlib, numpy and
3419 This function lets you activate pylab (matplotlib, numpy and
3420 interactive support) at any point during an IPython session.
3420 interactive support) at any point during an IPython session.
3421
3421
3422 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3422 It will import at the top level numpy as np, pyplot as plt, matplotlib,
3423 pylab and mlab, as well as all names from numpy and pylab.
3423 pylab and mlab, as well as all names from numpy and pylab.
3424
3424
3425 Parameters
3425 Parameters
3426 ----------
3426 ----------
3427 guiname : optional
3427 guiname : optional
3428 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or
3428 One of the valid arguments to the %gui magic ('qt', 'wx', 'gtk', 'osx' or
3429 'tk'). If given, the corresponding Matplotlib backend is used,
3429 'tk'). If given, the corresponding Matplotlib backend is used,
3430 otherwise matplotlib's default (which you can override in your
3430 otherwise matplotlib's default (which you can override in your
3431 matplotlib config file) is used.
3431 matplotlib config file) is used.
3432
3432
3433 Examples
3433 Examples
3434 --------
3434 --------
3435 In this case, where the MPL default is TkAgg:
3435 In this case, where the MPL default is TkAgg:
3436 In [2]: %pylab
3436 In [2]: %pylab
3437
3437
3438 Welcome to pylab, a matplotlib-based Python environment.
3438 Welcome to pylab, a matplotlib-based Python environment.
3439 Backend in use: TkAgg
3439 Backend in use: TkAgg
3440 For more information, type 'help(pylab)'.
3440 For more information, type 'help(pylab)'.
3441
3441
3442 But you can explicitly request a different backend:
3442 But you can explicitly request a different backend:
3443 In [3]: %pylab qt
3443 In [3]: %pylab qt
3444
3444
3445 Welcome to pylab, a matplotlib-based Python environment.
3445 Welcome to pylab, a matplotlib-based Python environment.
3446 Backend in use: Qt4Agg
3446 Backend in use: Qt4Agg
3447 For more information, type 'help(pylab)'.
3447 For more information, type 'help(pylab)'.
3448 """
3448 """
3449 self.shell.enable_pylab(s)
3449 self.shell.enable_pylab(s)
3450
3450
3451 def magic_tb(self, s):
3451 def magic_tb(self, s):
3452 """Print the last traceback with the currently active exception mode.
3452 """Print the last traceback with the currently active exception mode.
3453
3453
3454 See %xmode for changing exception reporting modes."""
3454 See %xmode for changing exception reporting modes."""
3455 self.shell.showtraceback()
3455 self.shell.showtraceback()
3456
3456
3457 @skip_doctest
3457 @skip_doctest
3458 def magic_precision(self, s=''):
3458 def magic_precision(self, s=''):
3459 """Set floating point precision for pretty printing.
3459 """Set floating point precision for pretty printing.
3460
3460
3461 Can set either integer precision or a format string.
3461 Can set either integer precision or a format string.
3462
3462
3463 If numpy has been imported and precision is an int,
3463 If numpy has been imported and precision is an int,
3464 numpy display precision will also be set, via ``numpy.set_printoptions``.
3464 numpy display precision will also be set, via ``numpy.set_printoptions``.
3465
3465
3466 If no argument is given, defaults will be restored.
3466 If no argument is given, defaults will be restored.
3467
3467
3468 Examples
3468 Examples
3469 --------
3469 --------
3470 ::
3470 ::
3471
3471
3472 In [1]: from math import pi
3472 In [1]: from math import pi
3473
3473
3474 In [2]: %precision 3
3474 In [2]: %precision 3
3475 Out[2]: '%.3f'
3475 Out[2]: '%.3f'
3476
3476
3477 In [3]: pi
3477 In [3]: pi
3478 Out[3]: 3.142
3478 Out[3]: 3.142
3479
3479
3480 In [4]: %precision %i
3480 In [4]: %precision %i
3481 Out[4]: '%i'
3481 Out[4]: '%i'
3482
3482
3483 In [5]: pi
3483 In [5]: pi
3484 Out[5]: 3
3484 Out[5]: 3
3485
3485
3486 In [6]: %precision %e
3486 In [6]: %precision %e
3487 Out[6]: '%e'
3487 Out[6]: '%e'
3488
3488
3489 In [7]: pi**10
3489 In [7]: pi**10
3490 Out[7]: 9.364805e+04
3490 Out[7]: 9.364805e+04
3491
3491
3492 In [8]: %precision
3492 In [8]: %precision
3493 Out[8]: '%r'
3493 Out[8]: '%r'
3494
3494
3495 In [9]: pi**10
3495 In [9]: pi**10
3496 Out[9]: 93648.047476082982
3496 Out[9]: 93648.047476082982
3497
3497
3498 """
3498 """
3499
3499
3500 ptformatter = self.shell.display_formatter.formatters['text/plain']
3500 ptformatter = self.shell.display_formatter.formatters['text/plain']
3501 ptformatter.float_precision = s
3501 ptformatter.float_precision = s
3502 return ptformatter.float_format
3502 return ptformatter.float_format
3503
3503
3504 # end Magic
3504 # end Magic
@@ -1,420 +1,421 b''
1 """ A minimal application using the Qt console-style IPython frontend.
1 """ A minimal application using the Qt console-style IPython frontend.
2
2
3 This is not a complete console app, as subprocess will not be able to receive
3 This is not a complete console app, as subprocess will not be able to receive
4 input, there is no real readline support, among other limitations.
4 input, there is no real readline support, among other limitations.
5
5
6 Authors:
6 Authors:
7
7
8 * Evan Patterson
8 * Evan Patterson
9 * Min RK
9 * Min RK
10 * Erik Tollerud
10 * Erik Tollerud
11 * Fernando Perez
11 * Fernando Perez
12
12
13 """
13 """
14
14
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16 # Imports
16 # Imports
17 #-----------------------------------------------------------------------------
17 #-----------------------------------------------------------------------------
18
18
19 # stdlib imports
19 # stdlib imports
20 import os
20 import os
21 import signal
21 import signal
22 import sys
22 import sys
23
23
24 # System library imports
24 # System library imports
25 from IPython.external.qt import QtGui
25 from IPython.external.qt import QtGui
26 from pygments.styles import get_all_styles
26 from pygments.styles import get_all_styles
27
27
28 # Local imports
28 # Local imports
29 from IPython.config.application import boolean_flag
29 from IPython.config.application import boolean_flag
30 from IPython.core.application import ProfileDir, BaseIPythonApplication
30 from IPython.core.application import BaseIPythonApplication
31 from IPython.core.profiledir import ProfileDir
31 from IPython.frontend.qt.console.frontend_widget import FrontendWidget
32 from IPython.frontend.qt.console.frontend_widget import FrontendWidget
32 from IPython.frontend.qt.console.ipython_widget import IPythonWidget
33 from IPython.frontend.qt.console.ipython_widget import IPythonWidget
33 from IPython.frontend.qt.console.rich_ipython_widget import RichIPythonWidget
34 from IPython.frontend.qt.console.rich_ipython_widget import RichIPythonWidget
34 from IPython.frontend.qt.console import styles
35 from IPython.frontend.qt.console import styles
35 from IPython.frontend.qt.kernelmanager import QtKernelManager
36 from IPython.frontend.qt.kernelmanager import QtKernelManager
36 from IPython.utils.traitlets import (
37 from IPython.utils.traitlets import (
37 Dict, List, Unicode, Int, CaselessStrEnum, CBool, Any
38 Dict, List, Unicode, Int, CaselessStrEnum, CBool, Any
38 )
39 )
39 from IPython.zmq.ipkernel import (
40 from IPython.zmq.ipkernel import (
40 flags as ipkernel_flags,
41 flags as ipkernel_flags,
41 aliases as ipkernel_aliases,
42 aliases as ipkernel_aliases,
42 IPKernelApp
43 IPKernelApp
43 )
44 )
44 from IPython.zmq.session import Session
45 from IPython.zmq.session import Session
45 from IPython.zmq.zmqshell import ZMQInteractiveShell
46 from IPython.zmq.zmqshell import ZMQInteractiveShell
46
47
47
48
48 #-----------------------------------------------------------------------------
49 #-----------------------------------------------------------------------------
49 # Network Constants
50 # Network Constants
50 #-----------------------------------------------------------------------------
51 #-----------------------------------------------------------------------------
51
52
52 from IPython.utils.localinterfaces import LOCALHOST, LOCAL_IPS
53 from IPython.utils.localinterfaces import LOCALHOST, LOCAL_IPS
53
54
54 #-----------------------------------------------------------------------------
55 #-----------------------------------------------------------------------------
55 # Classes
56 # Classes
56 #-----------------------------------------------------------------------------
57 #-----------------------------------------------------------------------------
57
58
58 class MainWindow(QtGui.QMainWindow):
59 class MainWindow(QtGui.QMainWindow):
59
60
60 #---------------------------------------------------------------------------
61 #---------------------------------------------------------------------------
61 # 'object' interface
62 # 'object' interface
62 #---------------------------------------------------------------------------
63 #---------------------------------------------------------------------------
63
64
64 def __init__(self, app, frontend, existing=False, may_close=True,
65 def __init__(self, app, frontend, existing=False, may_close=True,
65 confirm_exit=True):
66 confirm_exit=True):
66 """ Create a MainWindow for the specified FrontendWidget.
67 """ Create a MainWindow for the specified FrontendWidget.
67
68
68 The app is passed as an argument to allow for different
69 The app is passed as an argument to allow for different
69 closing behavior depending on whether we are the Kernel's parent.
70 closing behavior depending on whether we are the Kernel's parent.
70
71
71 If existing is True, then this Console does not own the Kernel.
72 If existing is True, then this Console does not own the Kernel.
72
73
73 If may_close is True, then this Console is permitted to close the kernel
74 If may_close is True, then this Console is permitted to close the kernel
74 """
75 """
75 super(MainWindow, self).__init__()
76 super(MainWindow, self).__init__()
76 self._app = app
77 self._app = app
77 self._frontend = frontend
78 self._frontend = frontend
78 self._existing = existing
79 self._existing = existing
79 if existing:
80 if existing:
80 self._may_close = may_close
81 self._may_close = may_close
81 else:
82 else:
82 self._may_close = True
83 self._may_close = True
83 self._frontend.exit_requested.connect(self.close)
84 self._frontend.exit_requested.connect(self.close)
84 self._confirm_exit = confirm_exit
85 self._confirm_exit = confirm_exit
85 self.setCentralWidget(frontend)
86 self.setCentralWidget(frontend)
86
87
87 #---------------------------------------------------------------------------
88 #---------------------------------------------------------------------------
88 # QWidget interface
89 # QWidget interface
89 #---------------------------------------------------------------------------
90 #---------------------------------------------------------------------------
90
91
91 def closeEvent(self, event):
92 def closeEvent(self, event):
92 """ Close the window and the kernel (if necessary).
93 """ Close the window and the kernel (if necessary).
93
94
94 This will prompt the user if they are finished with the kernel, and if
95 This will prompt the user if they are finished with the kernel, and if
95 so, closes the kernel cleanly. Alternatively, if the exit magic is used,
96 so, closes the kernel cleanly. Alternatively, if the exit magic is used,
96 it closes without prompt.
97 it closes without prompt.
97 """
98 """
98 keepkernel = None #Use the prompt by default
99 keepkernel = None #Use the prompt by default
99 if hasattr(self._frontend,'_keep_kernel_on_exit'): #set by exit magic
100 if hasattr(self._frontend,'_keep_kernel_on_exit'): #set by exit magic
100 keepkernel = self._frontend._keep_kernel_on_exit
101 keepkernel = self._frontend._keep_kernel_on_exit
101
102
102 kernel_manager = self._frontend.kernel_manager
103 kernel_manager = self._frontend.kernel_manager
103
104
104 if keepkernel is None and not self._confirm_exit:
105 if keepkernel is None and not self._confirm_exit:
105 # don't prompt, just terminate the kernel if we own it
106 # don't prompt, just terminate the kernel if we own it
106 # or leave it alone if we don't
107 # or leave it alone if we don't
107 keepkernel = not self._existing
108 keepkernel = not self._existing
108
109
109 if keepkernel is None: #show prompt
110 if keepkernel is None: #show prompt
110 if kernel_manager and kernel_manager.channels_running:
111 if kernel_manager and kernel_manager.channels_running:
111 title = self.window().windowTitle()
112 title = self.window().windowTitle()
112 cancel = QtGui.QMessageBox.Cancel
113 cancel = QtGui.QMessageBox.Cancel
113 okay = QtGui.QMessageBox.Ok
114 okay = QtGui.QMessageBox.Ok
114 if self._may_close:
115 if self._may_close:
115 msg = "You are closing this Console window."
116 msg = "You are closing this Console window."
116 info = "Would you like to quit the Kernel and all attached Consoles as well?"
117 info = "Would you like to quit the Kernel and all attached Consoles as well?"
117 justthis = QtGui.QPushButton("&No, just this Console", self)
118 justthis = QtGui.QPushButton("&No, just this Console", self)
118 justthis.setShortcut('N')
119 justthis.setShortcut('N')
119 closeall = QtGui.QPushButton("&Yes, quit everything", self)
120 closeall = QtGui.QPushButton("&Yes, quit everything", self)
120 closeall.setShortcut('Y')
121 closeall.setShortcut('Y')
121 box = QtGui.QMessageBox(QtGui.QMessageBox.Question,
122 box = QtGui.QMessageBox(QtGui.QMessageBox.Question,
122 title, msg)
123 title, msg)
123 box.setInformativeText(info)
124 box.setInformativeText(info)
124 box.addButton(cancel)
125 box.addButton(cancel)
125 box.addButton(justthis, QtGui.QMessageBox.NoRole)
126 box.addButton(justthis, QtGui.QMessageBox.NoRole)
126 box.addButton(closeall, QtGui.QMessageBox.YesRole)
127 box.addButton(closeall, QtGui.QMessageBox.YesRole)
127 box.setDefaultButton(closeall)
128 box.setDefaultButton(closeall)
128 box.setEscapeButton(cancel)
129 box.setEscapeButton(cancel)
129 reply = box.exec_()
130 reply = box.exec_()
130 if reply == 1: # close All
131 if reply == 1: # close All
131 kernel_manager.shutdown_kernel()
132 kernel_manager.shutdown_kernel()
132 #kernel_manager.stop_channels()
133 #kernel_manager.stop_channels()
133 event.accept()
134 event.accept()
134 elif reply == 0: # close Console
135 elif reply == 0: # close Console
135 if not self._existing:
136 if not self._existing:
136 # Have kernel: don't quit, just close the window
137 # Have kernel: don't quit, just close the window
137 self._app.setQuitOnLastWindowClosed(False)
138 self._app.setQuitOnLastWindowClosed(False)
138 self.deleteLater()
139 self.deleteLater()
139 event.accept()
140 event.accept()
140 else:
141 else:
141 event.ignore()
142 event.ignore()
142 else:
143 else:
143 reply = QtGui.QMessageBox.question(self, title,
144 reply = QtGui.QMessageBox.question(self, title,
144 "Are you sure you want to close this Console?"+
145 "Are you sure you want to close this Console?"+
145 "\nThe Kernel and other Consoles will remain active.",
146 "\nThe Kernel and other Consoles will remain active.",
146 okay|cancel,
147 okay|cancel,
147 defaultButton=okay
148 defaultButton=okay
148 )
149 )
149 if reply == okay:
150 if reply == okay:
150 event.accept()
151 event.accept()
151 else:
152 else:
152 event.ignore()
153 event.ignore()
153 elif keepkernel: #close console but leave kernel running (no prompt)
154 elif keepkernel: #close console but leave kernel running (no prompt)
154 if kernel_manager and kernel_manager.channels_running:
155 if kernel_manager and kernel_manager.channels_running:
155 if not self._existing:
156 if not self._existing:
156 # I have the kernel: don't quit, just close the window
157 # I have the kernel: don't quit, just close the window
157 self._app.setQuitOnLastWindowClosed(False)
158 self._app.setQuitOnLastWindowClosed(False)
158 event.accept()
159 event.accept()
159 else: #close console and kernel (no prompt)
160 else: #close console and kernel (no prompt)
160 if kernel_manager and kernel_manager.channels_running:
161 if kernel_manager and kernel_manager.channels_running:
161 kernel_manager.shutdown_kernel()
162 kernel_manager.shutdown_kernel()
162 event.accept()
163 event.accept()
163
164
164 #-----------------------------------------------------------------------------
165 #-----------------------------------------------------------------------------
165 # Aliases and Flags
166 # Aliases and Flags
166 #-----------------------------------------------------------------------------
167 #-----------------------------------------------------------------------------
167
168
168 flags = dict(ipkernel_flags)
169 flags = dict(ipkernel_flags)
169
170
170 flags.update({
171 flags.update({
171 'existing' : ({'IPythonQtConsoleApp' : {'existing' : True}},
172 'existing' : ({'IPythonQtConsoleApp' : {'existing' : True}},
172 "Connect to an existing kernel."),
173 "Connect to an existing kernel."),
173 'pure' : ({'IPythonQtConsoleApp' : {'pure' : True}},
174 'pure' : ({'IPythonQtConsoleApp' : {'pure' : True}},
174 "Use a pure Python kernel instead of an IPython kernel."),
175 "Use a pure Python kernel instead of an IPython kernel."),
175 'plain' : ({'ConsoleWidget' : {'kind' : 'plain'}},
176 'plain' : ({'ConsoleWidget' : {'kind' : 'plain'}},
176 "Disable rich text support."),
177 "Disable rich text support."),
177 })
178 })
178 flags.update(boolean_flag(
179 flags.update(boolean_flag(
179 'gui-completion', 'ConsoleWidget.gui_completion',
180 'gui-completion', 'ConsoleWidget.gui_completion',
180 "use a GUI widget for tab completion",
181 "use a GUI widget for tab completion",
181 "use plaintext output for completion"
182 "use plaintext output for completion"
182 ))
183 ))
183 flags.update(boolean_flag(
184 flags.update(boolean_flag(
184 'confirm-exit', 'IPythonQtConsoleApp.confirm_exit',
185 'confirm-exit', 'IPythonQtConsoleApp.confirm_exit',
185 """Set to display confirmation dialog on exit. You can always use 'exit' or 'quit',
186 """Set to display confirmation dialog on exit. You can always use 'exit' or 'quit',
186 to force a direct exit without any confirmation.
187 to force a direct exit without any confirmation.
187 """,
188 """,
188 """Don't prompt the user when exiting. This will terminate the kernel
189 """Don't prompt the user when exiting. This will terminate the kernel
189 if it is owned by the frontend, and leave it alive if it is external.
190 if it is owned by the frontend, and leave it alive if it is external.
190 """
191 """
191 ))
192 ))
192 # the flags that are specific to the frontend
193 # the flags that are specific to the frontend
193 # these must be scrubbed before being passed to the kernel,
194 # these must be scrubbed before being passed to the kernel,
194 # or it will raise an error on unrecognized flags
195 # or it will raise an error on unrecognized flags
195 qt_flags = ['existing', 'pure', 'plain', 'gui-completion', 'no-gui-completion',
196 qt_flags = ['existing', 'pure', 'plain', 'gui-completion', 'no-gui-completion',
196 'confirm-exit', 'no-confirm-exit']
197 'confirm-exit', 'no-confirm-exit']
197
198
198 aliases = dict(ipkernel_aliases)
199 aliases = dict(ipkernel_aliases)
199
200
200 aliases.update(dict(
201 aliases.update(dict(
201 hb = 'IPythonQtConsoleApp.hb_port',
202 hb = 'IPythonQtConsoleApp.hb_port',
202 shell = 'IPythonQtConsoleApp.shell_port',
203 shell = 'IPythonQtConsoleApp.shell_port',
203 iopub = 'IPythonQtConsoleApp.iopub_port',
204 iopub = 'IPythonQtConsoleApp.iopub_port',
204 stdin = 'IPythonQtConsoleApp.stdin_port',
205 stdin = 'IPythonQtConsoleApp.stdin_port',
205 ip = 'IPythonQtConsoleApp.ip',
206 ip = 'IPythonQtConsoleApp.ip',
206
207
207 plain = 'IPythonQtConsoleApp.plain',
208 plain = 'IPythonQtConsoleApp.plain',
208 pure = 'IPythonQtConsoleApp.pure',
209 pure = 'IPythonQtConsoleApp.pure',
209 gui_completion = 'ConsoleWidget.gui_completion',
210 gui_completion = 'ConsoleWidget.gui_completion',
210 style = 'IPythonWidget.syntax_style',
211 style = 'IPythonWidget.syntax_style',
211 stylesheet = 'IPythonQtConsoleApp.stylesheet',
212 stylesheet = 'IPythonQtConsoleApp.stylesheet',
212 colors = 'ZMQInteractiveShell.colors',
213 colors = 'ZMQInteractiveShell.colors',
213
214
214 editor = 'IPythonWidget.editor',
215 editor = 'IPythonWidget.editor',
215 ))
216 ))
216
217
217 #-----------------------------------------------------------------------------
218 #-----------------------------------------------------------------------------
218 # IPythonQtConsole
219 # IPythonQtConsole
219 #-----------------------------------------------------------------------------
220 #-----------------------------------------------------------------------------
220 class IPythonQtConsoleApp(BaseIPythonApplication):
221 class IPythonQtConsoleApp(BaseIPythonApplication):
221 name = 'ipython-qtconsole'
222 name = 'ipython-qtconsole'
222 default_config_file_name='ipython_config.py'
223 default_config_file_name='ipython_config.py'
223
224
224 description = """
225 description = """
225 The IPython QtConsole.
226 The IPython QtConsole.
226
227
227 This launches a Console-style application using Qt. It is not a full
228 This launches a Console-style application using Qt. It is not a full
228 console, in that launched terminal subprocesses will not.
229 console, in that launched terminal subprocesses will not.
229
230
230 The QtConsole supports various extra features beyond the
231 The QtConsole supports various extra features beyond the
231
232
232 """
233 """
233
234
234 classes = [IPKernelApp, IPythonWidget, ZMQInteractiveShell, ProfileDir, Session]
235 classes = [IPKernelApp, IPythonWidget, ZMQInteractiveShell, ProfileDir, Session]
235 flags = Dict(flags)
236 flags = Dict(flags)
236 aliases = Dict(aliases)
237 aliases = Dict(aliases)
237
238
238 kernel_argv = List(Unicode)
239 kernel_argv = List(Unicode)
239
240
240 # connection info:
241 # connection info:
241 ip = Unicode(LOCALHOST, config=True,
242 ip = Unicode(LOCALHOST, config=True,
242 help="""Set the kernel\'s IP address [default localhost].
243 help="""Set the kernel\'s IP address [default localhost].
243 If the IP address is something other than localhost, then
244 If the IP address is something other than localhost, then
244 Consoles on other machines will be able to connect
245 Consoles on other machines will be able to connect
245 to the Kernel, so be careful!"""
246 to the Kernel, so be careful!"""
246 )
247 )
247 hb_port = Int(0, config=True,
248 hb_port = Int(0, config=True,
248 help="set the heartbeat port [default: random]")
249 help="set the heartbeat port [default: random]")
249 shell_port = Int(0, config=True,
250 shell_port = Int(0, config=True,
250 help="set the shell (XREP) port [default: random]")
251 help="set the shell (XREP) port [default: random]")
251 iopub_port = Int(0, config=True,
252 iopub_port = Int(0, config=True,
252 help="set the iopub (PUB) port [default: random]")
253 help="set the iopub (PUB) port [default: random]")
253 stdin_port = Int(0, config=True,
254 stdin_port = Int(0, config=True,
254 help="set the stdin (XREQ) port [default: random]")
255 help="set the stdin (XREQ) port [default: random]")
255
256
256 existing = CBool(False, config=True,
257 existing = CBool(False, config=True,
257 help="Whether to connect to an already running Kernel.")
258 help="Whether to connect to an already running Kernel.")
258
259
259 stylesheet = Unicode('', config=True,
260 stylesheet = Unicode('', config=True,
260 help="path to a custom CSS stylesheet")
261 help="path to a custom CSS stylesheet")
261
262
262 pure = CBool(False, config=True,
263 pure = CBool(False, config=True,
263 help="Use a pure Python kernel instead of an IPython kernel.")
264 help="Use a pure Python kernel instead of an IPython kernel.")
264 plain = CBool(False, config=True,
265 plain = CBool(False, config=True,
265 help="Use a plaintext widget instead of rich text (plain can't print/save).")
266 help="Use a plaintext widget instead of rich text (plain can't print/save).")
266
267
267 def _pure_changed(self, name, old, new):
268 def _pure_changed(self, name, old, new):
268 kind = 'plain' if self.plain else 'rich'
269 kind = 'plain' if self.plain else 'rich'
269 self.config.ConsoleWidget.kind = kind
270 self.config.ConsoleWidget.kind = kind
270 if self.pure:
271 if self.pure:
271 self.widget_factory = FrontendWidget
272 self.widget_factory = FrontendWidget
272 elif self.plain:
273 elif self.plain:
273 self.widget_factory = IPythonWidget
274 self.widget_factory = IPythonWidget
274 else:
275 else:
275 self.widget_factory = RichIPythonWidget
276 self.widget_factory = RichIPythonWidget
276
277
277 _plain_changed = _pure_changed
278 _plain_changed = _pure_changed
278
279
279 confirm_exit = CBool(True, config=True,
280 confirm_exit = CBool(True, config=True,
280 help="""
281 help="""
281 Set to display confirmation dialog on exit. You can always use 'exit' or 'quit',
282 Set to display confirmation dialog on exit. You can always use 'exit' or 'quit',
282 to force a direct exit without any confirmation.""",
283 to force a direct exit without any confirmation.""",
283 )
284 )
284
285
285 # the factory for creating a widget
286 # the factory for creating a widget
286 widget_factory = Any(RichIPythonWidget)
287 widget_factory = Any(RichIPythonWidget)
287
288
288 def parse_command_line(self, argv=None):
289 def parse_command_line(self, argv=None):
289 super(IPythonQtConsoleApp, self).parse_command_line(argv)
290 super(IPythonQtConsoleApp, self).parse_command_line(argv)
290 if argv is None:
291 if argv is None:
291 argv = sys.argv[1:]
292 argv = sys.argv[1:]
292
293
293 self.kernel_argv = list(argv) # copy
294 self.kernel_argv = list(argv) # copy
294
295
295 # scrub frontend-specific flags
296 # scrub frontend-specific flags
296 for a in argv:
297 for a in argv:
297 if a.startswith('--') and a[2:] in qt_flags:
298 if a.startswith('--') and a[2:] in qt_flags:
298 self.kernel_argv.remove(a)
299 self.kernel_argv.remove(a)
299
300
300 def init_kernel_manager(self):
301 def init_kernel_manager(self):
301 # Don't let Qt or ZMQ swallow KeyboardInterupts.
302 # Don't let Qt or ZMQ swallow KeyboardInterupts.
302 signal.signal(signal.SIGINT, signal.SIG_DFL)
303 signal.signal(signal.SIGINT, signal.SIG_DFL)
303
304
304 # Create a KernelManager and start a kernel.
305 # Create a KernelManager and start a kernel.
305 self.kernel_manager = QtKernelManager(
306 self.kernel_manager = QtKernelManager(
306 shell_address=(self.ip, self.shell_port),
307 shell_address=(self.ip, self.shell_port),
307 sub_address=(self.ip, self.iopub_port),
308 sub_address=(self.ip, self.iopub_port),
308 stdin_address=(self.ip, self.stdin_port),
309 stdin_address=(self.ip, self.stdin_port),
309 hb_address=(self.ip, self.hb_port),
310 hb_address=(self.ip, self.hb_port),
310 config=self.config
311 config=self.config
311 )
312 )
312 # start the kernel
313 # start the kernel
313 if not self.existing:
314 if not self.existing:
314 kwargs = dict(ip=self.ip, ipython=not self.pure)
315 kwargs = dict(ip=self.ip, ipython=not self.pure)
315 kwargs['extra_arguments'] = self.kernel_argv
316 kwargs['extra_arguments'] = self.kernel_argv
316 self.kernel_manager.start_kernel(**kwargs)
317 self.kernel_manager.start_kernel(**kwargs)
317 self.kernel_manager.start_channels()
318 self.kernel_manager.start_channels()
318
319
319
320
320 def init_qt_elements(self):
321 def init_qt_elements(self):
321 # Create the widget.
322 # Create the widget.
322 self.app = QtGui.QApplication([])
323 self.app = QtGui.QApplication([])
323 local_kernel = (not self.existing) or self.ip in LOCAL_IPS
324 local_kernel = (not self.existing) or self.ip in LOCAL_IPS
324 self.widget = self.widget_factory(config=self.config,
325 self.widget = self.widget_factory(config=self.config,
325 local_kernel=local_kernel)
326 local_kernel=local_kernel)
326 self.widget.kernel_manager = self.kernel_manager
327 self.widget.kernel_manager = self.kernel_manager
327 self.window = MainWindow(self.app, self.widget, self.existing,
328 self.window = MainWindow(self.app, self.widget, self.existing,
328 may_close=local_kernel,
329 may_close=local_kernel,
329 confirm_exit=self.confirm_exit)
330 confirm_exit=self.confirm_exit)
330 self.window.setWindowTitle('Python' if self.pure else 'IPython')
331 self.window.setWindowTitle('Python' if self.pure else 'IPython')
331
332
332 def init_colors(self):
333 def init_colors(self):
333 """Configure the coloring of the widget"""
334 """Configure the coloring of the widget"""
334 # Note: This will be dramatically simplified when colors
335 # Note: This will be dramatically simplified when colors
335 # are removed from the backend.
336 # are removed from the backend.
336
337
337 if self.pure:
338 if self.pure:
338 # only IPythonWidget supports styling
339 # only IPythonWidget supports styling
339 return
340 return
340
341
341 # parse the colors arg down to current known labels
342 # parse the colors arg down to current known labels
342 try:
343 try:
343 colors = self.config.ZMQInteractiveShell.colors
344 colors = self.config.ZMQInteractiveShell.colors
344 except AttributeError:
345 except AttributeError:
345 colors = None
346 colors = None
346 try:
347 try:
347 style = self.config.IPythonWidget.colors
348 style = self.config.IPythonWidget.colors
348 except AttributeError:
349 except AttributeError:
349 style = None
350 style = None
350
351
351 # find the value for colors:
352 # find the value for colors:
352 if colors:
353 if colors:
353 colors=colors.lower()
354 colors=colors.lower()
354 if colors in ('lightbg', 'light'):
355 if colors in ('lightbg', 'light'):
355 colors='lightbg'
356 colors='lightbg'
356 elif colors in ('dark', 'linux'):
357 elif colors in ('dark', 'linux'):
357 colors='linux'
358 colors='linux'
358 else:
359 else:
359 colors='nocolor'
360 colors='nocolor'
360 elif style:
361 elif style:
361 if style=='bw':
362 if style=='bw':
362 colors='nocolor'
363 colors='nocolor'
363 elif styles.dark_style(style):
364 elif styles.dark_style(style):
364 colors='linux'
365 colors='linux'
365 else:
366 else:
366 colors='lightbg'
367 colors='lightbg'
367 else:
368 else:
368 colors=None
369 colors=None
369
370
370 # Configure the style.
371 # Configure the style.
371 widget = self.widget
372 widget = self.widget
372 if style:
373 if style:
373 widget.style_sheet = styles.sheet_from_template(style, colors)
374 widget.style_sheet = styles.sheet_from_template(style, colors)
374 widget.syntax_style = style
375 widget.syntax_style = style
375 widget._syntax_style_changed()
376 widget._syntax_style_changed()
376 widget._style_sheet_changed()
377 widget._style_sheet_changed()
377 elif colors:
378 elif colors:
378 # use a default style
379 # use a default style
379 widget.set_default_style(colors=colors)
380 widget.set_default_style(colors=colors)
380 else:
381 else:
381 # this is redundant for now, but allows the widget's
382 # this is redundant for now, but allows the widget's
382 # defaults to change
383 # defaults to change
383 widget.set_default_style()
384 widget.set_default_style()
384
385
385 if self.stylesheet:
386 if self.stylesheet:
386 # we got an expicit stylesheet
387 # we got an expicit stylesheet
387 if os.path.isfile(self.stylesheet):
388 if os.path.isfile(self.stylesheet):
388 with open(self.stylesheet) as f:
389 with open(self.stylesheet) as f:
389 sheet = f.read()
390 sheet = f.read()
390 widget.style_sheet = sheet
391 widget.style_sheet = sheet
391 widget._style_sheet_changed()
392 widget._style_sheet_changed()
392 else:
393 else:
393 raise IOError("Stylesheet %r not found."%self.stylesheet)
394 raise IOError("Stylesheet %r not found."%self.stylesheet)
394
395
395 def initialize(self, argv=None):
396 def initialize(self, argv=None):
396 super(IPythonQtConsoleApp, self).initialize(argv)
397 super(IPythonQtConsoleApp, self).initialize(argv)
397 self.init_kernel_manager()
398 self.init_kernel_manager()
398 self.init_qt_elements()
399 self.init_qt_elements()
399 self.init_colors()
400 self.init_colors()
400
401
401 def start(self):
402 def start(self):
402
403
403 # draw the window
404 # draw the window
404 self.window.show()
405 self.window.show()
405
406
406 # Start the application main loop.
407 # Start the application main loop.
407 self.app.exec_()
408 self.app.exec_()
408
409
409 #-----------------------------------------------------------------------------
410 #-----------------------------------------------------------------------------
410 # Main entry point
411 # Main entry point
411 #-----------------------------------------------------------------------------
412 #-----------------------------------------------------------------------------
412
413
413 def main():
414 def main():
414 app = IPythonQtConsoleApp()
415 app = IPythonQtConsoleApp()
415 app.initialize()
416 app.initialize()
416 app.start()
417 app.start()
417
418
418
419
419 if __name__ == '__main__':
420 if __name__ == '__main__':
420 main()
421 main()
@@ -1,356 +1,358 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 The :class:`~IPython.core.application.Application` object for the command
4 The :class:`~IPython.core.application.Application` object for the command
5 line :command:`ipython` program.
5 line :command:`ipython` program.
6
6
7 Authors
7 Authors
8 -------
8 -------
9
9
10 * Brian Granger
10 * Brian Granger
11 * Fernando Perez
11 * Fernando Perez
12 * Min Ragan-Kelley
12 * Min Ragan-Kelley
13 """
13 """
14
14
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16 # Copyright (C) 2008-2010 The IPython Development Team
16 # Copyright (C) 2008-2010 The IPython Development Team
17 #
17 #
18 # Distributed under the terms of the BSD License. The full license is in
18 # Distributed under the terms of the BSD License. The full license is in
19 # the file COPYING, distributed as part of this software.
19 # the file COPYING, distributed as part of this software.
20 #-----------------------------------------------------------------------------
20 #-----------------------------------------------------------------------------
21
21
22 #-----------------------------------------------------------------------------
22 #-----------------------------------------------------------------------------
23 # Imports
23 # Imports
24 #-----------------------------------------------------------------------------
24 #-----------------------------------------------------------------------------
25
25
26 from __future__ import absolute_import
26 from __future__ import absolute_import
27
27
28 import logging
28 import logging
29 import os
29 import os
30 import sys
30 import sys
31
31
32 from IPython.config.loader import (
32 from IPython.config.loader import (
33 Config, PyFileConfigLoader
33 Config, PyFileConfigLoader
34 )
34 )
35 from IPython.config.application import boolean_flag
35 from IPython.config.application import boolean_flag
36 from IPython.core import release
36 from IPython.core import release
37 from IPython.core import usage
37 from IPython.core import usage
38 from IPython.core.crashhandler import CrashHandler
38 from IPython.core.crashhandler import CrashHandler
39 from IPython.core.formatters import PlainTextFormatter
39 from IPython.core.formatters import PlainTextFormatter
40 from IPython.core.application import (
40 from IPython.core.application import (
41 ProfileDir, BaseIPythonApplication, base_flags, base_aliases
41 ProfileDir, BaseIPythonApplication, base_flags, base_aliases
42 )
42 )
43 from IPython.core.shellapp import (
43 from IPython.core.shellapp import (
44 InteractiveShellApp, shell_flags, shell_aliases
44 InteractiveShellApp, shell_flags, shell_aliases
45 )
45 )
46 from IPython.frontend.terminal.interactiveshell import TerminalInteractiveShell
46 from IPython.frontend.terminal.interactiveshell import TerminalInteractiveShell
47 from IPython.lib import inputhook
47 from IPython.lib import inputhook
48 from IPython.utils.path import get_ipython_dir, check_for_old_config
48 from IPython.utils.path import get_ipython_dir, check_for_old_config
49 from IPython.utils.traitlets import (
49 from IPython.utils.traitlets import (
50 Bool, Dict, CaselessStrEnum
50 Bool, Dict, CaselessStrEnum
51 )
51 )
52
52
53 #-----------------------------------------------------------------------------
53 #-----------------------------------------------------------------------------
54 # Globals, utilities and helpers
54 # Globals, utilities and helpers
55 #-----------------------------------------------------------------------------
55 #-----------------------------------------------------------------------------
56
56
57 #: The default config file name for this application.
57 #: The default config file name for this application.
58 default_config_file_name = u'ipython_config.py'
58 default_config_file_name = u'ipython_config.py'
59
59
60
60
61 #-----------------------------------------------------------------------------
61 #-----------------------------------------------------------------------------
62 # Crash handler for this application
62 # Crash handler for this application
63 #-----------------------------------------------------------------------------
63 #-----------------------------------------------------------------------------
64
64
65 _message_template = """\
65 _message_template = """\
66 Oops, $self.app_name crashed. We do our best to make it stable, but...
66 Oops, $self.app_name crashed. We do our best to make it stable, but...
67
67
68 A crash report was automatically generated with the following information:
68 A crash report was automatically generated with the following information:
69 - A verbatim copy of the crash traceback.
69 - A verbatim copy of the crash traceback.
70 - A copy of your input history during this session.
70 - A copy of your input history during this session.
71 - Data on your current $self.app_name configuration.
71 - Data on your current $self.app_name configuration.
72
72
73 It was left in the file named:
73 It was left in the file named:
74 \t'$self.crash_report_fname'
74 \t'$self.crash_report_fname'
75 If you can email this file to the developers, the information in it will help
75 If you can email this file to the developers, the information in it will help
76 them in understanding and correcting the problem.
76 them in understanding and correcting the problem.
77
77
78 You can mail it to: $self.contact_name at $self.contact_email
78 You can mail it to: $self.contact_name at $self.contact_email
79 with the subject '$self.app_name Crash Report'.
79 with the subject '$self.app_name Crash Report'.
80
80
81 If you want to do it now, the following command will work (under Unix):
81 If you want to do it now, the following command will work (under Unix):
82 mail -s '$self.app_name Crash Report' $self.contact_email < $self.crash_report_fname
82 mail -s '$self.app_name Crash Report' $self.contact_email < $self.crash_report_fname
83
83
84 To ensure accurate tracking of this issue, please file a report about it at:
84 To ensure accurate tracking of this issue, please file a report about it at:
85 $self.bug_tracker
85 $self.bug_tracker
86 """
86 """
87
87
88 class IPAppCrashHandler(CrashHandler):
88 class IPAppCrashHandler(CrashHandler):
89 """sys.excepthook for IPython itself, leaves a detailed report on disk."""
89 """sys.excepthook for IPython itself, leaves a detailed report on disk."""
90
90
91 message_template = _message_template
91 message_template = _message_template
92
92
93 def __init__(self, app):
93 def __init__(self, app):
94 contact_name = release.authors['Fernando'][0]
94 contact_name = release.authors['Fernando'][0]
95 contact_email = release.authors['Fernando'][1]
95 contact_email = release.authors['Fernando'][1]
96 bug_tracker = 'http://github.com/ipython/ipython/issues'
96 bug_tracker = 'http://github.com/ipython/ipython/issues'
97 super(IPAppCrashHandler,self).__init__(
97 super(IPAppCrashHandler,self).__init__(
98 app, contact_name, contact_email, bug_tracker
98 app, contact_name, contact_email, bug_tracker
99 )
99 )
100
100
101 def make_report(self,traceback):
101 def make_report(self,traceback):
102 """Return a string containing a crash report."""
102 """Return a string containing a crash report."""
103
103
104 sec_sep = self.section_sep
104 sec_sep = self.section_sep
105 # Start with parent report
105 # Start with parent report
106 report = [super(IPAppCrashHandler, self).make_report(traceback)]
106 report = [super(IPAppCrashHandler, self).make_report(traceback)]
107 # Add interactive-specific info we may have
107 # Add interactive-specific info we may have
108 rpt_add = report.append
108 rpt_add = report.append
109 try:
109 try:
110 rpt_add(sec_sep+"History of session input:")
110 rpt_add(sec_sep+"History of session input:")
111 for line in self.app.shell.user_ns['_ih']:
111 for line in self.app.shell.user_ns['_ih']:
112 rpt_add(line)
112 rpt_add(line)
113 rpt_add('\n*** Last line of input (may not be in above history):\n')
113 rpt_add('\n*** Last line of input (may not be in above history):\n')
114 rpt_add(self.app.shell._last_input_line+'\n')
114 rpt_add(self.app.shell._last_input_line+'\n')
115 except:
115 except:
116 pass
116 pass
117
117
118 return ''.join(report)
118 return ''.join(report)
119
119
120 #-----------------------------------------------------------------------------
120 #-----------------------------------------------------------------------------
121 # Aliases and Flags
121 # Aliases and Flags
122 #-----------------------------------------------------------------------------
122 #-----------------------------------------------------------------------------
123 flags = dict(base_flags)
123 flags = dict(base_flags)
124 flags.update(shell_flags)
124 flags.update(shell_flags)
125 addflag = lambda *args: flags.update(boolean_flag(*args))
125 addflag = lambda *args: flags.update(boolean_flag(*args))
126 addflag('autoedit-syntax', 'TerminalInteractiveShell.autoedit_syntax',
126 addflag('autoedit-syntax', 'TerminalInteractiveShell.autoedit_syntax',
127 'Turn on auto editing of files with syntax errors.',
127 'Turn on auto editing of files with syntax errors.',
128 'Turn off auto editing of files with syntax errors.'
128 'Turn off auto editing of files with syntax errors.'
129 )
129 )
130 addflag('banner', 'TerminalIPythonApp.display_banner',
130 addflag('banner', 'TerminalIPythonApp.display_banner',
131 "Display a banner upon starting IPython.",
131 "Display a banner upon starting IPython.",
132 "Don't display a banner upon starting IPython."
132 "Don't display a banner upon starting IPython."
133 )
133 )
134 addflag('confirm-exit', 'TerminalInteractiveShell.confirm_exit',
134 addflag('confirm-exit', 'TerminalInteractiveShell.confirm_exit',
135 """Set to confirm when you try to exit IPython with an EOF (Control-D
135 """Set to confirm when you try to exit IPython with an EOF (Control-D
136 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
136 in Unix, Control-Z/Enter in Windows). By typing 'exit' or 'quit',
137 you can force a direct exit without any confirmation.""",
137 you can force a direct exit without any confirmation.""",
138 "Don't prompt the user when exiting."
138 "Don't prompt the user when exiting."
139 )
139 )
140 addflag('term-title', 'TerminalInteractiveShell.term_title',
140 addflag('term-title', 'TerminalInteractiveShell.term_title',
141 "Enable auto setting the terminal title.",
141 "Enable auto setting the terminal title.",
142 "Disable auto setting the terminal title."
142 "Disable auto setting the terminal title."
143 )
143 )
144 classic_config = Config()
144 classic_config = Config()
145 classic_config.InteractiveShell.cache_size = 0
145 classic_config.InteractiveShell.cache_size = 0
146 classic_config.PlainTextFormatter.pprint = False
146 classic_config.PlainTextFormatter.pprint = False
147 classic_config.InteractiveShell.prompt_in1 = '>>> '
147 classic_config.InteractiveShell.prompt_in1 = '>>> '
148 classic_config.InteractiveShell.prompt_in2 = '... '
148 classic_config.InteractiveShell.prompt_in2 = '... '
149 classic_config.InteractiveShell.prompt_out = ''
149 classic_config.InteractiveShell.prompt_out = ''
150 classic_config.InteractiveShell.separate_in = ''
150 classic_config.InteractiveShell.separate_in = ''
151 classic_config.InteractiveShell.separate_out = ''
151 classic_config.InteractiveShell.separate_out = ''
152 classic_config.InteractiveShell.separate_out2 = ''
152 classic_config.InteractiveShell.separate_out2 = ''
153 classic_config.InteractiveShell.colors = 'NoColor'
153 classic_config.InteractiveShell.colors = 'NoColor'
154 classic_config.InteractiveShell.xmode = 'Plain'
154 classic_config.InteractiveShell.xmode = 'Plain'
155
155
156 flags['classic']=(
156 flags['classic']=(
157 classic_config,
157 classic_config,
158 "Gives IPython a similar feel to the classic Python prompt."
158 "Gives IPython a similar feel to the classic Python prompt."
159 )
159 )
160 # # log doesn't make so much sense this way anymore
160 # # log doesn't make so much sense this way anymore
161 # paa('--log','-l',
161 # paa('--log','-l',
162 # action='store_true', dest='InteractiveShell.logstart',
162 # action='store_true', dest='InteractiveShell.logstart',
163 # help="Start logging to the default log file (./ipython_log.py).")
163 # help="Start logging to the default log file (./ipython_log.py).")
164 #
164 #
165 # # quick is harder to implement
165 # # quick is harder to implement
166 flags['quick']=(
166 flags['quick']=(
167 {'TerminalIPythonApp' : {'quick' : True}},
167 {'TerminalIPythonApp' : {'quick' : True}},
168 "Enable quick startup with no config files."
168 "Enable quick startup with no config files."
169 )
169 )
170
170
171 flags['i'] = (
171 flags['i'] = (
172 {'TerminalIPythonApp' : {'force_interact' : True}},
172 {'TerminalIPythonApp' : {'force_interact' : True}},
173 "If running code from the command line, become interactive afterwards."
173 "If running code from the command line, become interactive afterwards."
174 )
174 )
175 flags['pylab'] = (
175 flags['pylab'] = (
176 {'TerminalIPythonApp' : {'pylab' : 'auto'}},
176 {'TerminalIPythonApp' : {'pylab' : 'auto'}},
177 """Pre-load matplotlib and numpy for interactive use with
177 """Pre-load matplotlib and numpy for interactive use with
178 the default matplotlib backend."""
178 the default matplotlib backend."""
179 )
179 )
180
180
181 aliases = dict(base_aliases)
181 aliases = dict(base_aliases)
182 aliases.update(shell_aliases)
182 aliases.update(shell_aliases)
183
183
184 # it's possible we don't want short aliases for *all* of these:
184 # it's possible we don't want short aliases for *all* of these:
185 aliases.update(dict(
185 aliases.update(dict(
186 gui='TerminalIPythonApp.gui',
186 gui='TerminalIPythonApp.gui',
187 pylab='TerminalIPythonApp.pylab',
187 pylab='TerminalIPythonApp.pylab',
188 ))
188 ))
189
189
190 #-----------------------------------------------------------------------------
190 #-----------------------------------------------------------------------------
191 # Main classes and functions
191 # Main classes and functions
192 #-----------------------------------------------------------------------------
192 #-----------------------------------------------------------------------------
193
193
194 class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):
194 class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):
195 name = u'ipython'
195 name = u'ipython'
196 description = usage.cl_usage
196 description = usage.cl_usage
197 default_config_file_name = default_config_file_name
197 default_config_file_name = default_config_file_name
198 crash_handler_class = IPAppCrashHandler
198 crash_handler_class = IPAppCrashHandler
199
199
200 flags = Dict(flags)
200 flags = Dict(flags)
201 aliases = Dict(aliases)
201 aliases = Dict(aliases)
202 classes = [InteractiveShellApp, TerminalInteractiveShell, ProfileDir, PlainTextFormatter]
202 classes = [InteractiveShellApp, TerminalInteractiveShell, ProfileDir, PlainTextFormatter]
203 subcommands = Dict(dict(
203 subcommands = Dict(dict(
204 qtconsole=('IPython.frontend.qt.console.qtconsoleapp.IPythonQtConsoleApp',
204 qtconsole=('IPython.frontend.qt.console.qtconsoleapp.IPythonQtConsoleApp',
205 """Launch the IPython Qt Console."""
205 """Launch the IPython Qt Console."""
206 )
206 ),
207 profile = ("IPython.core.profileapp.ProfileApp",
208 "Create and manage IPython profiles.")
207 ))
209 ))
208
210
209 # *do* autocreate requested profile
211 # *do* autocreate requested profile
210 auto_create=Bool(True)
212 auto_create=Bool(True)
211 copy_config_files=Bool(True)
213 copy_config_files=Bool(True)
212 # configurables
214 # configurables
213 ignore_old_config=Bool(False, config=True,
215 ignore_old_config=Bool(False, config=True,
214 help="Suppress warning messages about legacy config files"
216 help="Suppress warning messages about legacy config files"
215 )
217 )
216 quick = Bool(False, config=True,
218 quick = Bool(False, config=True,
217 help="""Start IPython quickly by skipping the loading of config files."""
219 help="""Start IPython quickly by skipping the loading of config files."""
218 )
220 )
219 def _quick_changed(self, name, old, new):
221 def _quick_changed(self, name, old, new):
220 if new:
222 if new:
221 self.load_config_file = lambda *a, **kw: None
223 self.load_config_file = lambda *a, **kw: None
222 self.ignore_old_config=True
224 self.ignore_old_config=True
223
225
224 gui = CaselessStrEnum(('qt','wx','gtk'), config=True,
226 gui = CaselessStrEnum(('qt','wx','gtk'), config=True,
225 help="Enable GUI event loop integration ('qt', 'wx', 'gtk')."
227 help="Enable GUI event loop integration ('qt', 'wx', 'gtk')."
226 )
228 )
227 pylab = CaselessStrEnum(['tk', 'qt', 'wx', 'gtk', 'osx', 'auto'],
229 pylab = CaselessStrEnum(['tk', 'qt', 'wx', 'gtk', 'osx', 'auto'],
228 config=True,
230 config=True,
229 help="""Pre-load matplotlib and numpy for interactive use,
231 help="""Pre-load matplotlib and numpy for interactive use,
230 selecting a particular matplotlib backend and loop integration.
232 selecting a particular matplotlib backend and loop integration.
231 """
233 """
232 )
234 )
233 display_banner = Bool(True, config=True,
235 display_banner = Bool(True, config=True,
234 help="Whether to display a banner upon starting IPython."
236 help="Whether to display a banner upon starting IPython."
235 )
237 )
236
238
237 # if there is code of files to run from the cmd line, don't interact
239 # if there is code of files to run from the cmd line, don't interact
238 # unless the --i flag (App.force_interact) is true.
240 # unless the --i flag (App.force_interact) is true.
239 force_interact = Bool(False, config=True,
241 force_interact = Bool(False, config=True,
240 help="""If a command or file is given via the command-line,
242 help="""If a command or file is given via the command-line,
241 e.g. 'ipython foo.py"""
243 e.g. 'ipython foo.py"""
242 )
244 )
243 def _force_interact_changed(self, name, old, new):
245 def _force_interact_changed(self, name, old, new):
244 if new:
246 if new:
245 self.interact = True
247 self.interact = True
246
248
247 def _file_to_run_changed(self, name, old, new):
249 def _file_to_run_changed(self, name, old, new):
248 if new and not self.force_interact:
250 if new and not self.force_interact:
249 self.interact = False
251 self.interact = False
250 _code_to_run_changed = _file_to_run_changed
252 _code_to_run_changed = _file_to_run_changed
251
253
252 # internal, not-configurable
254 # internal, not-configurable
253 interact=Bool(True)
255 interact=Bool(True)
254
256
255
257
256 def initialize(self, argv=None):
258 def initialize(self, argv=None):
257 """Do actions after construct, but before starting the app."""
259 """Do actions after construct, but before starting the app."""
258 super(TerminalIPythonApp, self).initialize(argv)
260 super(TerminalIPythonApp, self).initialize(argv)
259 if self.subapp is not None:
261 if self.subapp is not None:
260 # don't bother initializing further, starting subapp
262 # don't bother initializing further, starting subapp
261 return
263 return
262 if not self.ignore_old_config:
264 if not self.ignore_old_config:
263 check_for_old_config(self.ipython_dir)
265 check_for_old_config(self.ipython_dir)
264 # print self.extra_args
266 # print self.extra_args
265 if self.extra_args:
267 if self.extra_args:
266 self.file_to_run = self.extra_args[0]
268 self.file_to_run = self.extra_args[0]
267 # create the shell
269 # create the shell
268 self.init_shell()
270 self.init_shell()
269 # and draw the banner
271 # and draw the banner
270 self.init_banner()
272 self.init_banner()
271 # Now a variety of things that happen after the banner is printed.
273 # Now a variety of things that happen after the banner is printed.
272 self.init_gui_pylab()
274 self.init_gui_pylab()
273 self.init_extensions()
275 self.init_extensions()
274 self.init_code()
276 self.init_code()
275
277
276 def init_shell(self):
278 def init_shell(self):
277 """initialize the InteractiveShell instance"""
279 """initialize the InteractiveShell instance"""
278 # I am a little hesitant to put these into InteractiveShell itself.
280 # I am a little hesitant to put these into InteractiveShell itself.
279 # But that might be the place for them
281 # But that might be the place for them
280 sys.path.insert(0, '')
282 sys.path.insert(0, '')
281
283
282 # Create an InteractiveShell instance.
284 # Create an InteractiveShell instance.
283 # shell.display_banner should always be False for the terminal
285 # shell.display_banner should always be False for the terminal
284 # based app, because we call shell.show_banner() by hand below
286 # based app, because we call shell.show_banner() by hand below
285 # so the banner shows *before* all extension loading stuff.
287 # so the banner shows *before* all extension loading stuff.
286 self.shell = TerminalInteractiveShell.instance(config=self.config,
288 self.shell = TerminalInteractiveShell.instance(config=self.config,
287 display_banner=False, profile_dir=self.profile_dir,
289 display_banner=False, profile_dir=self.profile_dir,
288 ipython_dir=self.ipython_dir)
290 ipython_dir=self.ipython_dir)
289
291
290 def init_banner(self):
292 def init_banner(self):
291 """optionally display the banner"""
293 """optionally display the banner"""
292 if self.display_banner and self.interact:
294 if self.display_banner and self.interact:
293 self.shell.show_banner()
295 self.shell.show_banner()
294 # Make sure there is a space below the banner.
296 # Make sure there is a space below the banner.
295 if self.log_level <= logging.INFO: print
297 if self.log_level <= logging.INFO: print
296
298
297
299
298 def init_gui_pylab(self):
300 def init_gui_pylab(self):
299 """Enable GUI event loop integration, taking pylab into account."""
301 """Enable GUI event loop integration, taking pylab into account."""
300 gui = self.gui
302 gui = self.gui
301
303
302 # Using `pylab` will also require gui activation, though which toolkit
304 # Using `pylab` will also require gui activation, though which toolkit
303 # to use may be chosen automatically based on mpl configuration.
305 # to use may be chosen automatically based on mpl configuration.
304 if self.pylab:
306 if self.pylab:
305 activate = self.shell.enable_pylab
307 activate = self.shell.enable_pylab
306 if self.pylab == 'auto':
308 if self.pylab == 'auto':
307 gui = None
309 gui = None
308 else:
310 else:
309 gui = self.pylab
311 gui = self.pylab
310 else:
312 else:
311 # Enable only GUI integration, no pylab
313 # Enable only GUI integration, no pylab
312 activate = inputhook.enable_gui
314 activate = inputhook.enable_gui
313
315
314 if gui or self.pylab:
316 if gui or self.pylab:
315 try:
317 try:
316 self.log.info("Enabling GUI event loop integration, "
318 self.log.info("Enabling GUI event loop integration, "
317 "toolkit=%s, pylab=%s" % (gui, self.pylab) )
319 "toolkit=%s, pylab=%s" % (gui, self.pylab) )
318 activate(gui)
320 activate(gui)
319 except:
321 except:
320 self.log.warn("Error in enabling GUI event loop integration:")
322 self.log.warn("Error in enabling GUI event loop integration:")
321 self.shell.showtraceback()
323 self.shell.showtraceback()
322
324
323 def start(self):
325 def start(self):
324 if self.subapp is not None:
326 if self.subapp is not None:
325 return self.subapp.start()
327 return self.subapp.start()
326 # perform any prexec steps:
328 # perform any prexec steps:
327 if self.interact:
329 if self.interact:
328 self.log.debug("Starting IPython's mainloop...")
330 self.log.debug("Starting IPython's mainloop...")
329 self.shell.mainloop()
331 self.shell.mainloop()
330 else:
332 else:
331 self.log.debug("IPython not interactive...")
333 self.log.debug("IPython not interactive...")
332
334
333
335
334 def load_default_config(ipython_dir=None):
336 def load_default_config(ipython_dir=None):
335 """Load the default config file from the default ipython_dir.
337 """Load the default config file from the default ipython_dir.
336
338
337 This is useful for embedded shells.
339 This is useful for embedded shells.
338 """
340 """
339 if ipython_dir is None:
341 if ipython_dir is None:
340 ipython_dir = get_ipython_dir()
342 ipython_dir = get_ipython_dir()
341 profile_dir = os.path.join(ipython_dir, 'profile_default')
343 profile_dir = os.path.join(ipython_dir, 'profile_default')
342 cl = PyFileConfigLoader(default_config_file_name, profile_dir)
344 cl = PyFileConfigLoader(default_config_file_name, profile_dir)
343 config = cl.load_config()
345 config = cl.load_config()
344 return config
346 return config
345
347
346
348
347 def launch_new_instance():
349 def launch_new_instance():
348 """Create and run a full blown IPython instance"""
350 """Create and run a full blown IPython instance"""
349 app = TerminalIPythonApp.instance()
351 app = TerminalIPythonApp.instance()
350 app.initialize()
352 app.initialize()
351 app.start()
353 app.start()
352
354
353
355
354 if __name__ == '__main__':
356 if __name__ == '__main__':
355 launch_new_instance()
357 launch_new_instance()
356
358
@@ -1,526 +1,446 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 The ipcluster application.
4 The ipcluster application.
5
5
6 Authors:
6 Authors:
7
7
8 * Brian Granger
8 * Brian Granger
9 * MinRK
9 * MinRK
10
10
11 """
11 """
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Copyright (C) 2008-2011 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
15 #
15 #
16 # Distributed under the terms of the BSD License. The full license is in
16 # Distributed under the terms of the BSD License. The full license is in
17 # the file COPYING, distributed as part of this software.
17 # the file COPYING, distributed as part of this software.
18 #-----------------------------------------------------------------------------
18 #-----------------------------------------------------------------------------
19
19
20 #-----------------------------------------------------------------------------
20 #-----------------------------------------------------------------------------
21 # Imports
21 # Imports
22 #-----------------------------------------------------------------------------
22 #-----------------------------------------------------------------------------
23
23
24 import errno
24 import errno
25 import logging
25 import logging
26 import os
26 import os
27 import re
27 import re
28 import signal
28 import signal
29
29
30 from subprocess import check_call, CalledProcessError, PIPE
30 from subprocess import check_call, CalledProcessError, PIPE
31 import zmq
31 import zmq
32 from zmq.eventloop import ioloop
32 from zmq.eventloop import ioloop
33
33
34 from IPython.config.application import Application, boolean_flag
34 from IPython.config.application import Application, boolean_flag
35 from IPython.config.loader import Config
35 from IPython.config.loader import Config
36 from IPython.core.application import BaseIPythonApplication, ProfileDir
36 from IPython.core.application import BaseIPythonApplication
37 from IPython.core.profiledir import ProfileDir
37 from IPython.utils.daemonize import daemonize
38 from IPython.utils.daemonize import daemonize
38 from IPython.utils.importstring import import_item
39 from IPython.utils.importstring import import_item
39 from IPython.utils.traitlets import Int, Unicode, Bool, CFloat, Dict, List
40 from IPython.utils.traitlets import Int, Unicode, Bool, CFloat, Dict, List
40
41
41 from IPython.parallel.apps.baseapp import (
42 from IPython.parallel.apps.baseapp import (
42 BaseParallelApplication,
43 BaseParallelApplication,
43 PIDFileError,
44 PIDFileError,
44 base_flags, base_aliases
45 base_flags, base_aliases
45 )
46 )
46
47
47
48
48 #-----------------------------------------------------------------------------
49 #-----------------------------------------------------------------------------
49 # Module level variables
50 # Module level variables
50 #-----------------------------------------------------------------------------
51 #-----------------------------------------------------------------------------
51
52
52
53
53 default_config_file_name = u'ipcluster_config.py'
54 default_config_file_name = u'ipcluster_config.py'
54
55
55
56
56 _description = """Start an IPython cluster for parallel computing.
57 _description = """Start an IPython cluster for parallel computing.
57
58
58 An IPython cluster consists of 1 controller and 1 or more engines.
59 An IPython cluster consists of 1 controller and 1 or more engines.
59 This command automates the startup of these processes using a wide
60 This command automates the startup of these processes using a wide
60 range of startup methods (SSH, local processes, PBS, mpiexec,
61 range of startup methods (SSH, local processes, PBS, mpiexec,
61 Windows HPC Server 2008). To start a cluster with 4 engines on your
62 Windows HPC Server 2008). To start a cluster with 4 engines on your
62 local host simply do 'ipcluster start n=4'. For more complex usage
63 local host simply do 'ipcluster start n=4'. For more complex usage
63 you will typically do 'ipcluster create profile=mycluster', then edit
64 you will typically do 'ipcluster create profile=mycluster', then edit
64 configuration files, followed by 'ipcluster start profile=mycluster n=4'.
65 configuration files, followed by 'ipcluster start profile=mycluster n=4'.
65 """
66 """
66
67
67
68
68 # Exit codes for ipcluster
69 # Exit codes for ipcluster
69
70
70 # This will be the exit code if the ipcluster appears to be running because
71 # This will be the exit code if the ipcluster appears to be running because
71 # a .pid file exists
72 # a .pid file exists
72 ALREADY_STARTED = 10
73 ALREADY_STARTED = 10
73
74
74
75
75 # This will be the exit code if ipcluster stop is run, but there is not .pid
76 # This will be the exit code if ipcluster stop is run, but there is not .pid
76 # file to be found.
77 # file to be found.
77 ALREADY_STOPPED = 11
78 ALREADY_STOPPED = 11
78
79
79 # This will be the exit code if ipcluster engines is run, but there is not .pid
80 # This will be the exit code if ipcluster engines is run, but there is not .pid
80 # file to be found.
81 # file to be found.
81 NO_CLUSTER = 12
82 NO_CLUSTER = 12
82
83
83
84
84 #-----------------------------------------------------------------------------
85 #-----------------------------------------------------------------------------
85 # Main application
86 # Main application
86 #-----------------------------------------------------------------------------
87 #-----------------------------------------------------------------------------
87 start_help = """Start an IPython cluster for parallel computing
88 start_help = """Start an IPython cluster for parallel computing
88
89
89 Start an ipython cluster by its profile name or cluster
90 Start an ipython cluster by its profile name or cluster
90 directory. Cluster directories contain configuration, log and
91 directory. Cluster directories contain configuration, log and
91 security related files and are named using the convention
92 security related files and are named using the convention
92 'cluster_<profile>' and should be creating using the 'start'
93 'profile_<name>' and should be creating using the 'start'
93 subcommand of 'ipcluster'. If your cluster directory is in
94 subcommand of 'ipcluster'. If your cluster directory is in
94 the cwd or the ipython directory, you can simply refer to it
95 the cwd or the ipython directory, you can simply refer to it
95 using its profile name, 'ipcluster start n=4 profile=<profile>`,
96 using its profile name, 'ipcluster start n=4 profile=<profile>`,
96 otherwise use the 'profile_dir' option.
97 otherwise use the 'profile_dir' option.
97 """
98 """
98 stop_help = """Stop a running IPython cluster
99 stop_help = """Stop a running IPython cluster
99
100
100 Stop a running ipython cluster by its profile name or cluster
101 Stop a running ipython cluster by its profile name or cluster
101 directory. Cluster directories are named using the convention
102 directory. Cluster directories are named using the convention
102 'cluster_<profile>'. If your cluster directory is in
103 'profile_<name>'. If your cluster directory is in
103 the cwd or the ipython directory, you can simply refer to it
104 the cwd or the ipython directory, you can simply refer to it
104 using its profile name, 'ipcluster stop profile=<profile>`, otherwise
105 using its profile name, 'ipcluster stop profile=<profile>`, otherwise
105 use the 'profile_dir' option.
106 use the 'profile_dir' option.
106 """
107 """
107 engines_help = """Start engines connected to an existing IPython cluster
108 engines_help = """Start engines connected to an existing IPython cluster
108
109
109 Start one or more engines to connect to an existing Cluster
110 Start one or more engines to connect to an existing Cluster
110 by profile name or cluster directory.
111 by profile name or cluster directory.
111 Cluster directories contain configuration, log and
112 Cluster directories contain configuration, log and
112 security related files and are named using the convention
113 security related files and are named using the convention
113 'cluster_<profile>' and should be creating using the 'start'
114 'profile_<name>' and should be creating using the 'start'
114 subcommand of 'ipcluster'. If your cluster directory is in
115 subcommand of 'ipcluster'. If your cluster directory is in
115 the cwd or the ipython directory, you can simply refer to it
116 the cwd or the ipython directory, you can simply refer to it
116 using its profile name, 'ipcluster engines n=4 profile=<profile>`,
117 using its profile name, 'ipcluster engines n=4 profile=<profile>`,
117 otherwise use the 'profile_dir' option.
118 otherwise use the 'profile_dir' option.
118 """
119 """
119 create_help = """Create an ipcluster profile by name
120
121 Create an ipython cluster directory by its profile name or
122 cluster directory path. Cluster directories contain
123 configuration, log and security related files and are named
124 using the convention 'cluster_<profile>'. By default they are
125 located in your ipython directory. Once created, you will
126 probably need to edit the configuration files in the cluster
127 directory to configure your cluster. Most users will create a
128 cluster directory by profile name,
129 `ipcluster create profile=mycluster`, which will put the directory
130 in `<ipython_dir>/cluster_mycluster`.
131 """
132 list_help = """List available cluster profiles
133
134 List all available clusters, by cluster directory, that can
135 be found in the current working directly or in the ipython
136 directory. Cluster directories are named using the convention
137 'cluster_<profile>'.
138 """
139
140
141 class IPClusterList(BaseIPythonApplication):
142 name = u'ipcluster-list'
143 description = list_help
144
145 # empty aliases
146 aliases=Dict()
147 flags = Dict(base_flags)
148
149 def _log_level_default(self):
150 return 20
151
152 def list_profile_dirs(self):
153 # Find the search paths
154 profile_dir_paths = os.environ.get('IPYTHON_PROFILE_PATH','')
155 if profile_dir_paths:
156 profile_dir_paths = profile_dir_paths.split(':')
157 else:
158 profile_dir_paths = []
159
160 ipython_dir = self.ipython_dir
161
162 paths = [os.getcwd(), ipython_dir] + profile_dir_paths
163 paths = list(set(paths))
164
165 self.log.info('Searching for cluster profiles in paths: %r' % paths)
166 for path in paths:
167 files = os.listdir(path)
168 for f in files:
169 full_path = os.path.join(path, f)
170 if os.path.isdir(full_path) and f.startswith('profile_') and \
171 os.path.isfile(os.path.join(full_path, 'ipcontroller_config.py')):
172 profile = f.split('_')[-1]
173 start_cmd = 'ipcluster start profile=%s n=4' % profile
174 print start_cmd + " ==> " + full_path
175
176 def start(self):
177 self.list_profile_dirs()
178
179
180 # `ipcluster create` will be deprecated when `ipython profile create` or equivalent exists
181
182 create_flags = {}
183 create_flags.update(base_flags)
184 create_flags.update(boolean_flag('reset', 'IPClusterCreate.overwrite',
185 "reset config files to defaults", "leave existing config files"))
186
187 class IPClusterCreate(BaseParallelApplication):
188 name = u'ipcluster-create'
189 description = create_help
190 auto_create = Bool(True)
191 config_file_name = Unicode(default_config_file_name)
192
193 flags = Dict(create_flags)
194
195 aliases = Dict(dict(profile='BaseIPythonApplication.profile'))
196
197 classes = [ProfileDir]
198
199
200 stop_aliases = dict(
120 stop_aliases = dict(
201 signal='IPClusterStop.signal',
121 signal='IPClusterStop.signal',
202 profile='BaseIPythonApplication.profile',
122 profile='BaseIPythonApplication.profile',
203 profile_dir='ProfileDir.location',
123 profile_dir='ProfileDir.location',
204 )
124 )
205
125
206 class IPClusterStop(BaseParallelApplication):
126 class IPClusterStop(BaseParallelApplication):
207 name = u'ipcluster'
127 name = u'ipcluster'
208 description = stop_help
128 description = stop_help
209 config_file_name = Unicode(default_config_file_name)
129 config_file_name = Unicode(default_config_file_name)
210
130
211 signal = Int(signal.SIGINT, config=True,
131 signal = Int(signal.SIGINT, config=True,
212 help="signal to use for stopping processes.")
132 help="signal to use for stopping processes.")
213
133
214 aliases = Dict(stop_aliases)
134 aliases = Dict(stop_aliases)
215
135
216 def start(self):
136 def start(self):
217 """Start the app for the stop subcommand."""
137 """Start the app for the stop subcommand."""
218 try:
138 try:
219 pid = self.get_pid_from_file()
139 pid = self.get_pid_from_file()
220 except PIDFileError:
140 except PIDFileError:
221 self.log.critical(
141 self.log.critical(
222 'Could not read pid file, cluster is probably not running.'
142 'Could not read pid file, cluster is probably not running.'
223 )
143 )
224 # Here I exit with a unusual exit status that other processes
144 # Here I exit with a unusual exit status that other processes
225 # can watch for to learn how I existed.
145 # can watch for to learn how I existed.
226 self.remove_pid_file()
146 self.remove_pid_file()
227 self.exit(ALREADY_STOPPED)
147 self.exit(ALREADY_STOPPED)
228
148
229 if not self.check_pid(pid):
149 if not self.check_pid(pid):
230 self.log.critical(
150 self.log.critical(
231 'Cluster [pid=%r] is not running.' % pid
151 'Cluster [pid=%r] is not running.' % pid
232 )
152 )
233 self.remove_pid_file()
153 self.remove_pid_file()
234 # Here I exit with a unusual exit status that other processes
154 # Here I exit with a unusual exit status that other processes
235 # can watch for to learn how I existed.
155 # can watch for to learn how I existed.
236 self.exit(ALREADY_STOPPED)
156 self.exit(ALREADY_STOPPED)
237
157
238 elif os.name=='posix':
158 elif os.name=='posix':
239 sig = self.signal
159 sig = self.signal
240 self.log.info(
160 self.log.info(
241 "Stopping cluster [pid=%r] with [signal=%r]" % (pid, sig)
161 "Stopping cluster [pid=%r] with [signal=%r]" % (pid, sig)
242 )
162 )
243 try:
163 try:
244 os.kill(pid, sig)
164 os.kill(pid, sig)
245 except OSError:
165 except OSError:
246 self.log.error("Stopping cluster failed, assuming already dead.",
166 self.log.error("Stopping cluster failed, assuming already dead.",
247 exc_info=True)
167 exc_info=True)
248 self.remove_pid_file()
168 self.remove_pid_file()
249 elif os.name=='nt':
169 elif os.name=='nt':
250 try:
170 try:
251 # kill the whole tree
171 # kill the whole tree
252 p = check_call(['taskkill', '-pid', str(pid), '-t', '-f'], stdout=PIPE,stderr=PIPE)
172 p = check_call(['taskkill', '-pid', str(pid), '-t', '-f'], stdout=PIPE,stderr=PIPE)
253 except (CalledProcessError, OSError):
173 except (CalledProcessError, OSError):
254 self.log.error("Stopping cluster failed, assuming already dead.",
174 self.log.error("Stopping cluster failed, assuming already dead.",
255 exc_info=True)
175 exc_info=True)
256 self.remove_pid_file()
176 self.remove_pid_file()
257
177
258 engine_aliases = {}
178 engine_aliases = {}
259 engine_aliases.update(base_aliases)
179 engine_aliases.update(base_aliases)
260 engine_aliases.update(dict(
180 engine_aliases.update(dict(
261 n='IPClusterEngines.n',
181 n='IPClusterEngines.n',
262 elauncher = 'IPClusterEngines.engine_launcher_class',
182 elauncher = 'IPClusterEngines.engine_launcher_class',
263 ))
183 ))
264 class IPClusterEngines(BaseParallelApplication):
184 class IPClusterEngines(BaseParallelApplication):
265
185
266 name = u'ipcluster'
186 name = u'ipcluster'
267 description = engines_help
187 description = engines_help
268 usage = None
188 usage = None
269 config_file_name = Unicode(default_config_file_name)
189 config_file_name = Unicode(default_config_file_name)
270 default_log_level = logging.INFO
190 default_log_level = logging.INFO
271 classes = List()
191 classes = List()
272 def _classes_default(self):
192 def _classes_default(self):
273 from IPython.parallel.apps import launcher
193 from IPython.parallel.apps import launcher
274 launchers = launcher.all_launchers
194 launchers = launcher.all_launchers
275 eslaunchers = [ l for l in launchers if 'EngineSet' in l.__name__]
195 eslaunchers = [ l for l in launchers if 'EngineSet' in l.__name__]
276 return [ProfileDir]+eslaunchers
196 return [ProfileDir]+eslaunchers
277
197
278 n = Int(2, config=True,
198 n = Int(2, config=True,
279 help="The number of engines to start.")
199 help="The number of engines to start.")
280
200
281 engine_launcher_class = Unicode('LocalEngineSetLauncher',
201 engine_launcher_class = Unicode('LocalEngineSetLauncher',
282 config=True,
202 config=True,
283 help="The class for launching a set of Engines."
203 help="The class for launching a set of Engines."
284 )
204 )
285 daemonize = Bool(False, config=True,
205 daemonize = Bool(False, config=True,
286 help='Daemonize the ipcluster program. This implies --log-to-file')
206 help='Daemonize the ipcluster program. This implies --log-to-file')
287
207
288 def _daemonize_changed(self, name, old, new):
208 def _daemonize_changed(self, name, old, new):
289 if new:
209 if new:
290 self.log_to_file = True
210 self.log_to_file = True
291
211
292 aliases = Dict(engine_aliases)
212 aliases = Dict(engine_aliases)
293 # flags = Dict(flags)
213 # flags = Dict(flags)
294 _stopping = False
214 _stopping = False
295
215
296 def initialize(self, argv=None):
216 def initialize(self, argv=None):
297 super(IPClusterEngines, self).initialize(argv)
217 super(IPClusterEngines, self).initialize(argv)
298 self.init_signal()
218 self.init_signal()
299 self.init_launchers()
219 self.init_launchers()
300
220
301 def init_launchers(self):
221 def init_launchers(self):
302 self.engine_launcher = self.build_launcher(self.engine_launcher_class)
222 self.engine_launcher = self.build_launcher(self.engine_launcher_class)
303 self.engine_launcher.on_stop(lambda r: self.loop.stop())
223 self.engine_launcher.on_stop(lambda r: self.loop.stop())
304
224
305 def init_signal(self):
225 def init_signal(self):
306 # Setup signals
226 # Setup signals
307 signal.signal(signal.SIGINT, self.sigint_handler)
227 signal.signal(signal.SIGINT, self.sigint_handler)
308
228
309 def build_launcher(self, clsname):
229 def build_launcher(self, clsname):
310 """import and instantiate a Launcher based on importstring"""
230 """import and instantiate a Launcher based on importstring"""
311 if '.' not in clsname:
231 if '.' not in clsname:
312 # not a module, presume it's the raw name in apps.launcher
232 # not a module, presume it's the raw name in apps.launcher
313 clsname = 'IPython.parallel.apps.launcher.'+clsname
233 clsname = 'IPython.parallel.apps.launcher.'+clsname
314 # print repr(clsname)
234 # print repr(clsname)
315 klass = import_item(clsname)
235 klass = import_item(clsname)
316
236
317 launcher = klass(
237 launcher = klass(
318 work_dir=self.profile_dir.location, config=self.config, log=self.log
238 work_dir=self.profile_dir.location, config=self.config, log=self.log
319 )
239 )
320 return launcher
240 return launcher
321
241
322 def start_engines(self):
242 def start_engines(self):
323 self.log.info("Starting %i engines"%self.n)
243 self.log.info("Starting %i engines"%self.n)
324 self.engine_launcher.start(
244 self.engine_launcher.start(
325 self.n,
245 self.n,
326 self.profile_dir.location
246 self.profile_dir.location
327 )
247 )
328
248
329 def stop_engines(self):
249 def stop_engines(self):
330 self.log.info("Stopping Engines...")
250 self.log.info("Stopping Engines...")
331 if self.engine_launcher.running:
251 if self.engine_launcher.running:
332 d = self.engine_launcher.stop()
252 d = self.engine_launcher.stop()
333 return d
253 return d
334 else:
254 else:
335 return None
255 return None
336
256
337 def stop_launchers(self, r=None):
257 def stop_launchers(self, r=None):
338 if not self._stopping:
258 if not self._stopping:
339 self._stopping = True
259 self._stopping = True
340 self.log.error("IPython cluster: stopping")
260 self.log.error("IPython cluster: stopping")
341 self.stop_engines()
261 self.stop_engines()
342 # Wait a few seconds to let things shut down.
262 # Wait a few seconds to let things shut down.
343 dc = ioloop.DelayedCallback(self.loop.stop, 4000, self.loop)
263 dc = ioloop.DelayedCallback(self.loop.stop, 4000, self.loop)
344 dc.start()
264 dc.start()
345
265
346 def sigint_handler(self, signum, frame):
266 def sigint_handler(self, signum, frame):
347 self.log.debug("SIGINT received, stopping launchers...")
267 self.log.debug("SIGINT received, stopping launchers...")
348 self.stop_launchers()
268 self.stop_launchers()
349
269
350 def start_logging(self):
270 def start_logging(self):
351 # Remove old log files of the controller and engine
271 # Remove old log files of the controller and engine
352 if self.clean_logs:
272 if self.clean_logs:
353 log_dir = self.profile_dir.log_dir
273 log_dir = self.profile_dir.log_dir
354 for f in os.listdir(log_dir):
274 for f in os.listdir(log_dir):
355 if re.match(r'ip(engine|controller)z-\d+\.(log|err|out)',f):
275 if re.match(r'ip(engine|controller)z-\d+\.(log|err|out)',f):
356 os.remove(os.path.join(log_dir, f))
276 os.remove(os.path.join(log_dir, f))
357 # This will remove old log files for ipcluster itself
277 # This will remove old log files for ipcluster itself
358 # super(IPBaseParallelApplication, self).start_logging()
278 # super(IPBaseParallelApplication, self).start_logging()
359
279
360 def start(self):
280 def start(self):
361 """Start the app for the engines subcommand."""
281 """Start the app for the engines subcommand."""
362 self.log.info("IPython cluster: started")
282 self.log.info("IPython cluster: started")
363 # First see if the cluster is already running
283 # First see if the cluster is already running
364
284
365 # Now log and daemonize
285 # Now log and daemonize
366 self.log.info(
286 self.log.info(
367 'Starting engines with [daemon=%r]' % self.daemonize
287 'Starting engines with [daemon=%r]' % self.daemonize
368 )
288 )
369 # TODO: Get daemonize working on Windows or as a Windows Server.
289 # TODO: Get daemonize working on Windows or as a Windows Server.
370 if self.daemonize:
290 if self.daemonize:
371 if os.name=='posix':
291 if os.name=='posix':
372 daemonize()
292 daemonize()
373
293
374 dc = ioloop.DelayedCallback(self.start_engines, 0, self.loop)
294 dc = ioloop.DelayedCallback(self.start_engines, 0, self.loop)
375 dc.start()
295 dc.start()
376 # Now write the new pid file AFTER our new forked pid is active.
296 # Now write the new pid file AFTER our new forked pid is active.
377 # self.write_pid_file()
297 # self.write_pid_file()
378 try:
298 try:
379 self.loop.start()
299 self.loop.start()
380 except KeyboardInterrupt:
300 except KeyboardInterrupt:
381 pass
301 pass
382 except zmq.ZMQError as e:
302 except zmq.ZMQError as e:
383 if e.errno == errno.EINTR:
303 if e.errno == errno.EINTR:
384 pass
304 pass
385 else:
305 else:
386 raise
306 raise
387
307
388 start_aliases = {}
308 start_aliases = {}
389 start_aliases.update(engine_aliases)
309 start_aliases.update(engine_aliases)
390 start_aliases.update(dict(
310 start_aliases.update(dict(
391 delay='IPClusterStart.delay',
311 delay='IPClusterStart.delay',
392 clean_logs='IPClusterStart.clean_logs',
312 clean_logs='IPClusterStart.clean_logs',
393 ))
313 ))
394
314
395 class IPClusterStart(IPClusterEngines):
315 class IPClusterStart(IPClusterEngines):
396
316
397 name = u'ipcluster'
317 name = u'ipcluster'
398 description = start_help
318 description = start_help
399 default_log_level = logging.INFO
319 default_log_level = logging.INFO
400 auto_create = Bool(True, config=True,
320 auto_create = Bool(True, config=True,
401 help="whether to create the profile_dir if it doesn't exist")
321 help="whether to create the profile_dir if it doesn't exist")
402 classes = List()
322 classes = List()
403 def _classes_default(self,):
323 def _classes_default(self,):
404 from IPython.parallel.apps import launcher
324 from IPython.parallel.apps import launcher
405 return [ProfileDir]+launcher.all_launchers
325 return [ProfileDir]+launcher.all_launchers
406
326
407 clean_logs = Bool(True, config=True,
327 clean_logs = Bool(True, config=True,
408 help="whether to cleanup old logs before starting")
328 help="whether to cleanup old logs before starting")
409
329
410 delay = CFloat(1., config=True,
330 delay = CFloat(1., config=True,
411 help="delay (in s) between starting the controller and the engines")
331 help="delay (in s) between starting the controller and the engines")
412
332
413 controller_launcher_class = Unicode('LocalControllerLauncher',
333 controller_launcher_class = Unicode('LocalControllerLauncher',
414 config=True,
334 config=True,
415 help="The class for launching a Controller."
335 help="The class for launching a Controller."
416 )
336 )
417 reset = Bool(False, config=True,
337 reset = Bool(False, config=True,
418 help="Whether to reset config files as part of '--create'."
338 help="Whether to reset config files as part of '--create'."
419 )
339 )
420
340
421 # flags = Dict(flags)
341 # flags = Dict(flags)
422 aliases = Dict(start_aliases)
342 aliases = Dict(start_aliases)
423
343
424 def init_launchers(self):
344 def init_launchers(self):
425 self.controller_launcher = self.build_launcher(self.controller_launcher_class)
345 self.controller_launcher = self.build_launcher(self.controller_launcher_class)
426 self.engine_launcher = self.build_launcher(self.engine_launcher_class)
346 self.engine_launcher = self.build_launcher(self.engine_launcher_class)
427 self.controller_launcher.on_stop(self.stop_launchers)
347 self.controller_launcher.on_stop(self.stop_launchers)
428
348
429 def start_controller(self):
349 def start_controller(self):
430 self.controller_launcher.start(
350 self.controller_launcher.start(
431 self.profile_dir.location
351 self.profile_dir.location
432 )
352 )
433
353
434 def stop_controller(self):
354 def stop_controller(self):
435 # self.log.info("In stop_controller")
355 # self.log.info("In stop_controller")
436 if self.controller_launcher and self.controller_launcher.running:
356 if self.controller_launcher and self.controller_launcher.running:
437 return self.controller_launcher.stop()
357 return self.controller_launcher.stop()
438
358
439 def stop_launchers(self, r=None):
359 def stop_launchers(self, r=None):
440 if not self._stopping:
360 if not self._stopping:
441 self.stop_controller()
361 self.stop_controller()
442 super(IPClusterStart, self).stop_launchers()
362 super(IPClusterStart, self).stop_launchers()
443
363
444 def start(self):
364 def start(self):
445 """Start the app for the start subcommand."""
365 """Start the app for the start subcommand."""
446 # First see if the cluster is already running
366 # First see if the cluster is already running
447 try:
367 try:
448 pid = self.get_pid_from_file()
368 pid = self.get_pid_from_file()
449 except PIDFileError:
369 except PIDFileError:
450 pass
370 pass
451 else:
371 else:
452 if self.check_pid(pid):
372 if self.check_pid(pid):
453 self.log.critical(
373 self.log.critical(
454 'Cluster is already running with [pid=%s]. '
374 'Cluster is already running with [pid=%s]. '
455 'use "ipcluster stop" to stop the cluster.' % pid
375 'use "ipcluster stop" to stop the cluster.' % pid
456 )
376 )
457 # Here I exit with a unusual exit status that other processes
377 # Here I exit with a unusual exit status that other processes
458 # can watch for to learn how I existed.
378 # can watch for to learn how I existed.
459 self.exit(ALREADY_STARTED)
379 self.exit(ALREADY_STARTED)
460 else:
380 else:
461 self.remove_pid_file()
381 self.remove_pid_file()
462
382
463
383
464 # Now log and daemonize
384 # Now log and daemonize
465 self.log.info(
385 self.log.info(
466 'Starting ipcluster with [daemon=%r]' % self.daemonize
386 'Starting ipcluster with [daemon=%r]' % self.daemonize
467 )
387 )
468 # TODO: Get daemonize working on Windows or as a Windows Server.
388 # TODO: Get daemonize working on Windows or as a Windows Server.
469 if self.daemonize:
389 if self.daemonize:
470 if os.name=='posix':
390 if os.name=='posix':
471 daemonize()
391 daemonize()
472
392
473 dc = ioloop.DelayedCallback(self.start_controller, 0, self.loop)
393 dc = ioloop.DelayedCallback(self.start_controller, 0, self.loop)
474 dc.start()
394 dc.start()
475 dc = ioloop.DelayedCallback(self.start_engines, 1000*self.delay, self.loop)
395 dc = ioloop.DelayedCallback(self.start_engines, 1000*self.delay, self.loop)
476 dc.start()
396 dc.start()
477 # Now write the new pid file AFTER our new forked pid is active.
397 # Now write the new pid file AFTER our new forked pid is active.
478 self.write_pid_file()
398 self.write_pid_file()
479 try:
399 try:
480 self.loop.start()
400 self.loop.start()
481 except KeyboardInterrupt:
401 except KeyboardInterrupt:
482 pass
402 pass
483 except zmq.ZMQError as e:
403 except zmq.ZMQError as e:
484 if e.errno == errno.EINTR:
404 if e.errno == errno.EINTR:
485 pass
405 pass
486 else:
406 else:
487 raise
407 raise
488 finally:
408 finally:
489 self.remove_pid_file()
409 self.remove_pid_file()
490
410
491 base='IPython.parallel.apps.ipclusterapp.IPCluster'
411 base='IPython.parallel.apps.ipclusterapp.IPCluster'
492
412
493 class IPBaseParallelApplication(Application):
413 class IPBaseParallelApplication(Application):
494 name = u'ipcluster'
414 name = u'ipcluster'
495 description = _description
415 description = _description
496
416
497 subcommands = {'create' : (base+'Create', create_help),
417 subcommands = {'create' : (base+'Create', create_help),
498 'list' : (base+'List', list_help),
418 'list' : (base+'List', list_help),
499 'start' : (base+'Start', start_help),
419 'start' : (base+'Start', start_help),
500 'stop' : (base+'Stop', stop_help),
420 'stop' : (base+'Stop', stop_help),
501 'engines' : (base+'Engines', engines_help),
421 'engines' : (base+'Engines', engines_help),
502 }
422 }
503
423
504 # no aliases or flags for parent App
424 # no aliases or flags for parent App
505 aliases = Dict()
425 aliases = Dict()
506 flags = Dict()
426 flags = Dict()
507
427
508 def start(self):
428 def start(self):
509 if self.subapp is None:
429 if self.subapp is None:
510 print "No subcommand specified! Must specify one of: %s"%(self.subcommands.keys())
430 print "No subcommand specified! Must specify one of: %s"%(self.subcommands.keys())
511 print
431 print
512 self.print_subcommands()
432 self.print_subcommands()
513 self.exit(1)
433 self.exit(1)
514 else:
434 else:
515 return self.subapp.start()
435 return self.subapp.start()
516
436
517 def launch_new_instance():
437 def launch_new_instance():
518 """Create and run the IPython cluster."""
438 """Create and run the IPython cluster."""
519 app = IPBaseParallelApplication.instance()
439 app = IPBaseParallelApplication.instance()
520 app.initialize()
440 app.initialize()
521 app.start()
441 app.start()
522
442
523
443
524 if __name__ == '__main__':
444 if __name__ == '__main__':
525 launch_new_instance()
445 launch_new_instance()
526
446
@@ -1,408 +1,408 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 The IPython controller application.
4 The IPython controller application.
5
5
6 Authors:
6 Authors:
7
7
8 * Brian Granger
8 * Brian Granger
9 * MinRK
9 * MinRK
10
10
11 """
11 """
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Copyright (C) 2008-2011 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
15 #
15 #
16 # Distributed under the terms of the BSD License. The full license is in
16 # Distributed under the terms of the BSD License. The full license is in
17 # the file COPYING, distributed as part of this software.
17 # the file COPYING, distributed as part of this software.
18 #-----------------------------------------------------------------------------
18 #-----------------------------------------------------------------------------
19
19
20 #-----------------------------------------------------------------------------
20 #-----------------------------------------------------------------------------
21 # Imports
21 # Imports
22 #-----------------------------------------------------------------------------
22 #-----------------------------------------------------------------------------
23
23
24 from __future__ import with_statement
24 from __future__ import with_statement
25
25
26 import os
26 import os
27 import socket
27 import socket
28 import stat
28 import stat
29 import sys
29 import sys
30 import uuid
30 import uuid
31
31
32 from multiprocessing import Process
32 from multiprocessing import Process
33
33
34 import zmq
34 import zmq
35 from zmq.devices import ProcessMonitoredQueue
35 from zmq.devices import ProcessMonitoredQueue
36 from zmq.log.handlers import PUBHandler
36 from zmq.log.handlers import PUBHandler
37 from zmq.utils import jsonapi as json
37 from zmq.utils import jsonapi as json
38
38
39 from IPython.config.application import boolean_flag
39 from IPython.config.application import boolean_flag
40 from IPython.core.application import ProfileDir
40 from IPython.core.profiledir import ProfileDir
41
41
42 from IPython.parallel.apps.baseapp import (
42 from IPython.parallel.apps.baseapp import (
43 BaseParallelApplication,
43 BaseParallelApplication,
44 base_flags
44 base_flags
45 )
45 )
46 from IPython.utils.importstring import import_item
46 from IPython.utils.importstring import import_item
47 from IPython.utils.traitlets import Instance, Unicode, Bool, List, Dict
47 from IPython.utils.traitlets import Instance, Unicode, Bool, List, Dict
48
48
49 # from IPython.parallel.controller.controller import ControllerFactory
49 # from IPython.parallel.controller.controller import ControllerFactory
50 from IPython.zmq.session import Session
50 from IPython.zmq.session import Session
51 from IPython.parallel.controller.heartmonitor import HeartMonitor
51 from IPython.parallel.controller.heartmonitor import HeartMonitor
52 from IPython.parallel.controller.hub import HubFactory
52 from IPython.parallel.controller.hub import HubFactory
53 from IPython.parallel.controller.scheduler import TaskScheduler,launch_scheduler
53 from IPython.parallel.controller.scheduler import TaskScheduler,launch_scheduler
54 from IPython.parallel.controller.sqlitedb import SQLiteDB
54 from IPython.parallel.controller.sqlitedb import SQLiteDB
55
55
56 from IPython.parallel.util import signal_children, split_url
56 from IPython.parallel.util import signal_children, split_url
57
57
58 # conditional import of MongoDB backend class
58 # conditional import of MongoDB backend class
59
59
60 try:
60 try:
61 from IPython.parallel.controller.mongodb import MongoDB
61 from IPython.parallel.controller.mongodb import MongoDB
62 except ImportError:
62 except ImportError:
63 maybe_mongo = []
63 maybe_mongo = []
64 else:
64 else:
65 maybe_mongo = [MongoDB]
65 maybe_mongo = [MongoDB]
66
66
67
67
68 #-----------------------------------------------------------------------------
68 #-----------------------------------------------------------------------------
69 # Module level variables
69 # Module level variables
70 #-----------------------------------------------------------------------------
70 #-----------------------------------------------------------------------------
71
71
72
72
73 #: The default config file name for this application
73 #: The default config file name for this application
74 default_config_file_name = u'ipcontroller_config.py'
74 default_config_file_name = u'ipcontroller_config.py'
75
75
76
76
77 _description = """Start the IPython controller for parallel computing.
77 _description = """Start the IPython controller for parallel computing.
78
78
79 The IPython controller provides a gateway between the IPython engines and
79 The IPython controller provides a gateway between the IPython engines and
80 clients. The controller needs to be started before the engines and can be
80 clients. The controller needs to be started before the engines and can be
81 configured using command line options or using a cluster directory. Cluster
81 configured using command line options or using a cluster directory. Cluster
82 directories contain config, log and security files and are usually located in
82 directories contain config, log and security files and are usually located in
83 your ipython directory and named as "cluster_<profile>". See the `profile`
83 your ipython directory and named as "profile_name". See the `profile`
84 and `profile_dir` options for details.
84 and `profile_dir` options for details.
85 """
85 """
86
86
87
87
88
88
89
89
90 #-----------------------------------------------------------------------------
90 #-----------------------------------------------------------------------------
91 # The main application
91 # The main application
92 #-----------------------------------------------------------------------------
92 #-----------------------------------------------------------------------------
93 flags = {}
93 flags = {}
94 flags.update(base_flags)
94 flags.update(base_flags)
95 flags.update({
95 flags.update({
96 'usethreads' : ( {'IPControllerApp' : {'use_threads' : True}},
96 'usethreads' : ( {'IPControllerApp' : {'use_threads' : True}},
97 'Use threads instead of processes for the schedulers'),
97 'Use threads instead of processes for the schedulers'),
98 'sqlitedb' : ({'HubFactory' : {'db_class' : 'IPython.parallel.controller.sqlitedb.SQLiteDB'}},
98 'sqlitedb' : ({'HubFactory' : {'db_class' : 'IPython.parallel.controller.sqlitedb.SQLiteDB'}},
99 'use the SQLiteDB backend'),
99 'use the SQLiteDB backend'),
100 'mongodb' : ({'HubFactory' : {'db_class' : 'IPython.parallel.controller.mongodb.MongoDB'}},
100 'mongodb' : ({'HubFactory' : {'db_class' : 'IPython.parallel.controller.mongodb.MongoDB'}},
101 'use the MongoDB backend'),
101 'use the MongoDB backend'),
102 'dictdb' : ({'HubFactory' : {'db_class' : 'IPython.parallel.controller.dictdb.DictDB'}},
102 'dictdb' : ({'HubFactory' : {'db_class' : 'IPython.parallel.controller.dictdb.DictDB'}},
103 'use the in-memory DictDB backend'),
103 'use the in-memory DictDB backend'),
104 'reuse' : ({'IPControllerApp' : {'reuse_files' : True}},
104 'reuse' : ({'IPControllerApp' : {'reuse_files' : True}},
105 'reuse existing json connection files')
105 'reuse existing json connection files')
106 })
106 })
107
107
108 flags.update(boolean_flag('secure', 'IPControllerApp.secure',
108 flags.update(boolean_flag('secure', 'IPControllerApp.secure',
109 "Use HMAC digests for authentication of messages.",
109 "Use HMAC digests for authentication of messages.",
110 "Don't authenticate messages."
110 "Don't authenticate messages."
111 ))
111 ))
112
112
113 class IPControllerApp(BaseParallelApplication):
113 class IPControllerApp(BaseParallelApplication):
114
114
115 name = u'ipcontroller'
115 name = u'ipcontroller'
116 description = _description
116 description = _description
117 config_file_name = Unicode(default_config_file_name)
117 config_file_name = Unicode(default_config_file_name)
118 classes = [ProfileDir, Session, HubFactory, TaskScheduler, HeartMonitor, SQLiteDB] + maybe_mongo
118 classes = [ProfileDir, Session, HubFactory, TaskScheduler, HeartMonitor, SQLiteDB] + maybe_mongo
119
119
120 # change default to True
120 # change default to True
121 auto_create = Bool(True, config=True,
121 auto_create = Bool(True, config=True,
122 help="""Whether to create profile dir if it doesn't exist.""")
122 help="""Whether to create profile dir if it doesn't exist.""")
123
123
124 reuse_files = Bool(False, config=True,
124 reuse_files = Bool(False, config=True,
125 help='Whether to reuse existing json connection files.'
125 help='Whether to reuse existing json connection files.'
126 )
126 )
127 secure = Bool(True, config=True,
127 secure = Bool(True, config=True,
128 help='Whether to use HMAC digests for extra message authentication.'
128 help='Whether to use HMAC digests for extra message authentication.'
129 )
129 )
130 ssh_server = Unicode(u'', config=True,
130 ssh_server = Unicode(u'', config=True,
131 help="""ssh url for clients to use when connecting to the Controller
131 help="""ssh url for clients to use when connecting to the Controller
132 processes. It should be of the form: [user@]server[:port]. The
132 processes. It should be of the form: [user@]server[:port]. The
133 Controller's listening addresses must be accessible from the ssh server""",
133 Controller's listening addresses must be accessible from the ssh server""",
134 )
134 )
135 location = Unicode(u'', config=True,
135 location = Unicode(u'', config=True,
136 help="""The external IP or domain name of the Controller, used for disambiguating
136 help="""The external IP or domain name of the Controller, used for disambiguating
137 engine and client connections.""",
137 engine and client connections.""",
138 )
138 )
139 import_statements = List([], config=True,
139 import_statements = List([], config=True,
140 help="import statements to be run at startup. Necessary in some environments"
140 help="import statements to be run at startup. Necessary in some environments"
141 )
141 )
142
142
143 use_threads = Bool(False, config=True,
143 use_threads = Bool(False, config=True,
144 help='Use threads instead of processes for the schedulers',
144 help='Use threads instead of processes for the schedulers',
145 )
145 )
146
146
147 # internal
147 # internal
148 children = List()
148 children = List()
149 mq_class = Unicode('zmq.devices.ProcessMonitoredQueue')
149 mq_class = Unicode('zmq.devices.ProcessMonitoredQueue')
150
150
151 def _use_threads_changed(self, name, old, new):
151 def _use_threads_changed(self, name, old, new):
152 self.mq_class = 'zmq.devices.%sMonitoredQueue'%('Thread' if new else 'Process')
152 self.mq_class = 'zmq.devices.%sMonitoredQueue'%('Thread' if new else 'Process')
153
153
154 aliases = Dict(dict(
154 aliases = Dict(dict(
155 log_level = 'IPControllerApp.log_level',
155 log_level = 'IPControllerApp.log_level',
156 log_url = 'IPControllerApp.log_url',
156 log_url = 'IPControllerApp.log_url',
157 reuse_files = 'IPControllerApp.reuse_files',
157 reuse_files = 'IPControllerApp.reuse_files',
158 secure = 'IPControllerApp.secure',
158 secure = 'IPControllerApp.secure',
159 ssh = 'IPControllerApp.ssh_server',
159 ssh = 'IPControllerApp.ssh_server',
160 use_threads = 'IPControllerApp.use_threads',
160 use_threads = 'IPControllerApp.use_threads',
161 import_statements = 'IPControllerApp.import_statements',
161 import_statements = 'IPControllerApp.import_statements',
162 location = 'IPControllerApp.location',
162 location = 'IPControllerApp.location',
163
163
164 ident = 'Session.session',
164 ident = 'Session.session',
165 user = 'Session.username',
165 user = 'Session.username',
166 exec_key = 'Session.keyfile',
166 exec_key = 'Session.keyfile',
167
167
168 url = 'HubFactory.url',
168 url = 'HubFactory.url',
169 ip = 'HubFactory.ip',
169 ip = 'HubFactory.ip',
170 transport = 'HubFactory.transport',
170 transport = 'HubFactory.transport',
171 port = 'HubFactory.regport',
171 port = 'HubFactory.regport',
172
172
173 ping = 'HeartMonitor.period',
173 ping = 'HeartMonitor.period',
174
174
175 scheme = 'TaskScheduler.scheme_name',
175 scheme = 'TaskScheduler.scheme_name',
176 hwm = 'TaskScheduler.hwm',
176 hwm = 'TaskScheduler.hwm',
177
177
178
178
179 profile = "BaseIPythonApplication.profile",
179 profile = "BaseIPythonApplication.profile",
180 profile_dir = 'ProfileDir.location',
180 profile_dir = 'ProfileDir.location',
181
181
182 ))
182 ))
183 flags = Dict(flags)
183 flags = Dict(flags)
184
184
185
185
186 def save_connection_dict(self, fname, cdict):
186 def save_connection_dict(self, fname, cdict):
187 """save a connection dict to json file."""
187 """save a connection dict to json file."""
188 c = self.config
188 c = self.config
189 url = cdict['url']
189 url = cdict['url']
190 location = cdict['location']
190 location = cdict['location']
191 if not location:
191 if not location:
192 try:
192 try:
193 proto,ip,port = split_url(url)
193 proto,ip,port = split_url(url)
194 except AssertionError:
194 except AssertionError:
195 pass
195 pass
196 else:
196 else:
197 location = socket.gethostbyname_ex(socket.gethostname())[2][-1]
197 location = socket.gethostbyname_ex(socket.gethostname())[2][-1]
198 cdict['location'] = location
198 cdict['location'] = location
199 fname = os.path.join(self.profile_dir.security_dir, fname)
199 fname = os.path.join(self.profile_dir.security_dir, fname)
200 with open(fname, 'w') as f:
200 with open(fname, 'w') as f:
201 f.write(json.dumps(cdict, indent=2))
201 f.write(json.dumps(cdict, indent=2))
202 os.chmod(fname, stat.S_IRUSR|stat.S_IWUSR)
202 os.chmod(fname, stat.S_IRUSR|stat.S_IWUSR)
203
203
204 def load_config_from_json(self):
204 def load_config_from_json(self):
205 """load config from existing json connector files."""
205 """load config from existing json connector files."""
206 c = self.config
206 c = self.config
207 # load from engine config
207 # load from engine config
208 with open(os.path.join(self.profile_dir.security_dir, 'ipcontroller-engine.json')) as f:
208 with open(os.path.join(self.profile_dir.security_dir, 'ipcontroller-engine.json')) as f:
209 cfg = json.loads(f.read())
209 cfg = json.loads(f.read())
210 key = c.Session.key = cfg['exec_key']
210 key = c.Session.key = cfg['exec_key']
211 xport,addr = cfg['url'].split('://')
211 xport,addr = cfg['url'].split('://')
212 c.HubFactory.engine_transport = xport
212 c.HubFactory.engine_transport = xport
213 ip,ports = addr.split(':')
213 ip,ports = addr.split(':')
214 c.HubFactory.engine_ip = ip
214 c.HubFactory.engine_ip = ip
215 c.HubFactory.regport = int(ports)
215 c.HubFactory.regport = int(ports)
216 self.location = cfg['location']
216 self.location = cfg['location']
217
217
218 # load client config
218 # load client config
219 with open(os.path.join(self.profile_dir.security_dir, 'ipcontroller-client.json')) as f:
219 with open(os.path.join(self.profile_dir.security_dir, 'ipcontroller-client.json')) as f:
220 cfg = json.loads(f.read())
220 cfg = json.loads(f.read())
221 assert key == cfg['exec_key'], "exec_key mismatch between engine and client keys"
221 assert key == cfg['exec_key'], "exec_key mismatch between engine and client keys"
222 xport,addr = cfg['url'].split('://')
222 xport,addr = cfg['url'].split('://')
223 c.HubFactory.client_transport = xport
223 c.HubFactory.client_transport = xport
224 ip,ports = addr.split(':')
224 ip,ports = addr.split(':')
225 c.HubFactory.client_ip = ip
225 c.HubFactory.client_ip = ip
226 self.ssh_server = cfg['ssh']
226 self.ssh_server = cfg['ssh']
227 assert int(ports) == c.HubFactory.regport, "regport mismatch"
227 assert int(ports) == c.HubFactory.regport, "regport mismatch"
228
228
229 def init_hub(self):
229 def init_hub(self):
230 c = self.config
230 c = self.config
231
231
232 self.do_import_statements()
232 self.do_import_statements()
233 reusing = self.reuse_files
233 reusing = self.reuse_files
234 if reusing:
234 if reusing:
235 try:
235 try:
236 self.load_config_from_json()
236 self.load_config_from_json()
237 except (AssertionError,IOError):
237 except (AssertionError,IOError):
238 reusing=False
238 reusing=False
239 # check again, because reusing may have failed:
239 # check again, because reusing may have failed:
240 if reusing:
240 if reusing:
241 pass
241 pass
242 elif self.secure:
242 elif self.secure:
243 key = str(uuid.uuid4())
243 key = str(uuid.uuid4())
244 # keyfile = os.path.join(self.profile_dir.security_dir, self.exec_key)
244 # keyfile = os.path.join(self.profile_dir.security_dir, self.exec_key)
245 # with open(keyfile, 'w') as f:
245 # with open(keyfile, 'w') as f:
246 # f.write(key)
246 # f.write(key)
247 # os.chmod(keyfile, stat.S_IRUSR|stat.S_IWUSR)
247 # os.chmod(keyfile, stat.S_IRUSR|stat.S_IWUSR)
248 c.Session.key = key
248 c.Session.key = key
249 else:
249 else:
250 key = c.Session.key = ''
250 key = c.Session.key = ''
251
251
252 try:
252 try:
253 self.factory = HubFactory(config=c, log=self.log)
253 self.factory = HubFactory(config=c, log=self.log)
254 # self.start_logging()
254 # self.start_logging()
255 self.factory.init_hub()
255 self.factory.init_hub()
256 except:
256 except:
257 self.log.error("Couldn't construct the Controller", exc_info=True)
257 self.log.error("Couldn't construct the Controller", exc_info=True)
258 self.exit(1)
258 self.exit(1)
259
259
260 if not reusing:
260 if not reusing:
261 # save to new json config files
261 # save to new json config files
262 f = self.factory
262 f = self.factory
263 cdict = {'exec_key' : key,
263 cdict = {'exec_key' : key,
264 'ssh' : self.ssh_server,
264 'ssh' : self.ssh_server,
265 'url' : "%s://%s:%s"%(f.client_transport, f.client_ip, f.regport),
265 'url' : "%s://%s:%s"%(f.client_transport, f.client_ip, f.regport),
266 'location' : self.location
266 'location' : self.location
267 }
267 }
268 self.save_connection_dict('ipcontroller-client.json', cdict)
268 self.save_connection_dict('ipcontroller-client.json', cdict)
269 edict = cdict
269 edict = cdict
270 edict['url']="%s://%s:%s"%((f.client_transport, f.client_ip, f.regport))
270 edict['url']="%s://%s:%s"%((f.client_transport, f.client_ip, f.regport))
271 self.save_connection_dict('ipcontroller-engine.json', edict)
271 self.save_connection_dict('ipcontroller-engine.json', edict)
272
272
273 #
273 #
274 def init_schedulers(self):
274 def init_schedulers(self):
275 children = self.children
275 children = self.children
276 mq = import_item(str(self.mq_class))
276 mq = import_item(str(self.mq_class))
277
277
278 hub = self.factory
278 hub = self.factory
279 # maybe_inproc = 'inproc://monitor' if self.use_threads else self.monitor_url
279 # maybe_inproc = 'inproc://monitor' if self.use_threads else self.monitor_url
280 # IOPub relay (in a Process)
280 # IOPub relay (in a Process)
281 q = mq(zmq.PUB, zmq.SUB, zmq.PUB, 'N/A','iopub')
281 q = mq(zmq.PUB, zmq.SUB, zmq.PUB, 'N/A','iopub')
282 q.bind_in(hub.client_info['iopub'])
282 q.bind_in(hub.client_info['iopub'])
283 q.bind_out(hub.engine_info['iopub'])
283 q.bind_out(hub.engine_info['iopub'])
284 q.setsockopt_out(zmq.SUBSCRIBE, '')
284 q.setsockopt_out(zmq.SUBSCRIBE, '')
285 q.connect_mon(hub.monitor_url)
285 q.connect_mon(hub.monitor_url)
286 q.daemon=True
286 q.daemon=True
287 children.append(q)
287 children.append(q)
288
288
289 # Multiplexer Queue (in a Process)
289 # Multiplexer Queue (in a Process)
290 q = mq(zmq.XREP, zmq.XREP, zmq.PUB, 'in', 'out')
290 q = mq(zmq.XREP, zmq.XREP, zmq.PUB, 'in', 'out')
291 q.bind_in(hub.client_info['mux'])
291 q.bind_in(hub.client_info['mux'])
292 q.setsockopt_in(zmq.IDENTITY, 'mux')
292 q.setsockopt_in(zmq.IDENTITY, 'mux')
293 q.bind_out(hub.engine_info['mux'])
293 q.bind_out(hub.engine_info['mux'])
294 q.connect_mon(hub.monitor_url)
294 q.connect_mon(hub.monitor_url)
295 q.daemon=True
295 q.daemon=True
296 children.append(q)
296 children.append(q)
297
297
298 # Control Queue (in a Process)
298 # Control Queue (in a Process)
299 q = mq(zmq.XREP, zmq.XREP, zmq.PUB, 'incontrol', 'outcontrol')
299 q = mq(zmq.XREP, zmq.XREP, zmq.PUB, 'incontrol', 'outcontrol')
300 q.bind_in(hub.client_info['control'])
300 q.bind_in(hub.client_info['control'])
301 q.setsockopt_in(zmq.IDENTITY, 'control')
301 q.setsockopt_in(zmq.IDENTITY, 'control')
302 q.bind_out(hub.engine_info['control'])
302 q.bind_out(hub.engine_info['control'])
303 q.connect_mon(hub.monitor_url)
303 q.connect_mon(hub.monitor_url)
304 q.daemon=True
304 q.daemon=True
305 children.append(q)
305 children.append(q)
306 try:
306 try:
307 scheme = self.config.TaskScheduler.scheme_name
307 scheme = self.config.TaskScheduler.scheme_name
308 except AttributeError:
308 except AttributeError:
309 scheme = TaskScheduler.scheme_name.get_default_value()
309 scheme = TaskScheduler.scheme_name.get_default_value()
310 # Task Queue (in a Process)
310 # Task Queue (in a Process)
311 if scheme == 'pure':
311 if scheme == 'pure':
312 self.log.warn("task::using pure XREQ Task scheduler")
312 self.log.warn("task::using pure XREQ Task scheduler")
313 q = mq(zmq.XREP, zmq.XREQ, zmq.PUB, 'intask', 'outtask')
313 q = mq(zmq.XREP, zmq.XREQ, zmq.PUB, 'intask', 'outtask')
314 # q.setsockopt_out(zmq.HWM, hub.hwm)
314 # q.setsockopt_out(zmq.HWM, hub.hwm)
315 q.bind_in(hub.client_info['task'][1])
315 q.bind_in(hub.client_info['task'][1])
316 q.setsockopt_in(zmq.IDENTITY, 'task')
316 q.setsockopt_in(zmq.IDENTITY, 'task')
317 q.bind_out(hub.engine_info['task'])
317 q.bind_out(hub.engine_info['task'])
318 q.connect_mon(hub.monitor_url)
318 q.connect_mon(hub.monitor_url)
319 q.daemon=True
319 q.daemon=True
320 children.append(q)
320 children.append(q)
321 elif scheme == 'none':
321 elif scheme == 'none':
322 self.log.warn("task::using no Task scheduler")
322 self.log.warn("task::using no Task scheduler")
323
323
324 else:
324 else:
325 self.log.info("task::using Python %s Task scheduler"%scheme)
325 self.log.info("task::using Python %s Task scheduler"%scheme)
326 sargs = (hub.client_info['task'][1], hub.engine_info['task'],
326 sargs = (hub.client_info['task'][1], hub.engine_info['task'],
327 hub.monitor_url, hub.client_info['notification'])
327 hub.monitor_url, hub.client_info['notification'])
328 kwargs = dict(logname='scheduler', loglevel=self.log_level,
328 kwargs = dict(logname='scheduler', loglevel=self.log_level,
329 log_url = self.log_url, config=dict(self.config))
329 log_url = self.log_url, config=dict(self.config))
330 q = Process(target=launch_scheduler, args=sargs, kwargs=kwargs)
330 q = Process(target=launch_scheduler, args=sargs, kwargs=kwargs)
331 q.daemon=True
331 q.daemon=True
332 children.append(q)
332 children.append(q)
333
333
334
334
335 def save_urls(self):
335 def save_urls(self):
336 """save the registration urls to files."""
336 """save the registration urls to files."""
337 c = self.config
337 c = self.config
338
338
339 sec_dir = self.profile_dir.security_dir
339 sec_dir = self.profile_dir.security_dir
340 cf = self.factory
340 cf = self.factory
341
341
342 with open(os.path.join(sec_dir, 'ipcontroller-engine.url'), 'w') as f:
342 with open(os.path.join(sec_dir, 'ipcontroller-engine.url'), 'w') as f:
343 f.write("%s://%s:%s"%(cf.engine_transport, cf.engine_ip, cf.regport))
343 f.write("%s://%s:%s"%(cf.engine_transport, cf.engine_ip, cf.regport))
344
344
345 with open(os.path.join(sec_dir, 'ipcontroller-client.url'), 'w') as f:
345 with open(os.path.join(sec_dir, 'ipcontroller-client.url'), 'w') as f:
346 f.write("%s://%s:%s"%(cf.client_transport, cf.client_ip, cf.regport))
346 f.write("%s://%s:%s"%(cf.client_transport, cf.client_ip, cf.regport))
347
347
348
348
349 def do_import_statements(self):
349 def do_import_statements(self):
350 statements = self.import_statements
350 statements = self.import_statements
351 for s in statements:
351 for s in statements:
352 try:
352 try:
353 self.log.msg("Executing statement: '%s'" % s)
353 self.log.msg("Executing statement: '%s'" % s)
354 exec s in globals(), locals()
354 exec s in globals(), locals()
355 except:
355 except:
356 self.log.msg("Error running statement: %s" % s)
356 self.log.msg("Error running statement: %s" % s)
357
357
358 def forward_logging(self):
358 def forward_logging(self):
359 if self.log_url:
359 if self.log_url:
360 self.log.info("Forwarding logging to %s"%self.log_url)
360 self.log.info("Forwarding logging to %s"%self.log_url)
361 context = zmq.Context.instance()
361 context = zmq.Context.instance()
362 lsock = context.socket(zmq.PUB)
362 lsock = context.socket(zmq.PUB)
363 lsock.connect(self.log_url)
363 lsock.connect(self.log_url)
364 handler = PUBHandler(lsock)
364 handler = PUBHandler(lsock)
365 self.log.removeHandler(self._log_handler)
365 self.log.removeHandler(self._log_handler)
366 handler.root_topic = 'controller'
366 handler.root_topic = 'controller'
367 handler.setLevel(self.log_level)
367 handler.setLevel(self.log_level)
368 self.log.addHandler(handler)
368 self.log.addHandler(handler)
369 self._log_handler = handler
369 self._log_handler = handler
370 # #
370 # #
371
371
372 def initialize(self, argv=None):
372 def initialize(self, argv=None):
373 super(IPControllerApp, self).initialize(argv)
373 super(IPControllerApp, self).initialize(argv)
374 self.forward_logging()
374 self.forward_logging()
375 self.init_hub()
375 self.init_hub()
376 self.init_schedulers()
376 self.init_schedulers()
377
377
378 def start(self):
378 def start(self):
379 # Start the subprocesses:
379 # Start the subprocesses:
380 self.factory.start()
380 self.factory.start()
381 child_procs = []
381 child_procs = []
382 for child in self.children:
382 for child in self.children:
383 child.start()
383 child.start()
384 if isinstance(child, ProcessMonitoredQueue):
384 if isinstance(child, ProcessMonitoredQueue):
385 child_procs.append(child.launcher)
385 child_procs.append(child.launcher)
386 elif isinstance(child, Process):
386 elif isinstance(child, Process):
387 child_procs.append(child)
387 child_procs.append(child)
388 if child_procs:
388 if child_procs:
389 signal_children(child_procs)
389 signal_children(child_procs)
390
390
391 self.write_pid_file(overwrite=True)
391 self.write_pid_file(overwrite=True)
392
392
393 try:
393 try:
394 self.factory.loop.start()
394 self.factory.loop.start()
395 except KeyboardInterrupt:
395 except KeyboardInterrupt:
396 self.log.critical("Interrupted, Exiting...\n")
396 self.log.critical("Interrupted, Exiting...\n")
397
397
398
398
399
399
400 def launch_new_instance():
400 def launch_new_instance():
401 """Create and run the IPython controller"""
401 """Create and run the IPython controller"""
402 app = IPControllerApp.instance()
402 app = IPControllerApp.instance()
403 app.initialize()
403 app.initialize()
404 app.start()
404 app.start()
405
405
406
406
407 if __name__ == '__main__':
407 if __name__ == '__main__':
408 launch_new_instance()
408 launch_new_instance()
@@ -1,276 +1,276 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 The IPython engine application
4 The IPython engine application
5
5
6 Authors:
6 Authors:
7
7
8 * Brian Granger
8 * Brian Granger
9 * MinRK
9 * MinRK
10
10
11 """
11 """
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Copyright (C) 2008-2011 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
15 #
15 #
16 # Distributed under the terms of the BSD License. The full license is in
16 # Distributed under the terms of the BSD License. The full license is in
17 # the file COPYING, distributed as part of this software.
17 # the file COPYING, distributed as part of this software.
18 #-----------------------------------------------------------------------------
18 #-----------------------------------------------------------------------------
19
19
20 #-----------------------------------------------------------------------------
20 #-----------------------------------------------------------------------------
21 # Imports
21 # Imports
22 #-----------------------------------------------------------------------------
22 #-----------------------------------------------------------------------------
23
23
24 import json
24 import json
25 import os
25 import os
26 import sys
26 import sys
27
27
28 import zmq
28 import zmq
29 from zmq.eventloop import ioloop
29 from zmq.eventloop import ioloop
30
30
31 from IPython.core.application import ProfileDir
31 from IPython.core.profiledir import ProfileDir
32 from IPython.parallel.apps.baseapp import BaseParallelApplication
32 from IPython.parallel.apps.baseapp import BaseParallelApplication
33 from IPython.zmq.log import EnginePUBHandler
33 from IPython.zmq.log import EnginePUBHandler
34
34
35 from IPython.config.configurable import Configurable
35 from IPython.config.configurable import Configurable
36 from IPython.zmq.session import Session
36 from IPython.zmq.session import Session
37 from IPython.parallel.engine.engine import EngineFactory
37 from IPython.parallel.engine.engine import EngineFactory
38 from IPython.parallel.engine.streamkernel import Kernel
38 from IPython.parallel.engine.streamkernel import Kernel
39 from IPython.parallel.util import disambiguate_url
39 from IPython.parallel.util import disambiguate_url
40
40
41 from IPython.utils.importstring import import_item
41 from IPython.utils.importstring import import_item
42 from IPython.utils.traitlets import Bool, Unicode, Dict, List
42 from IPython.utils.traitlets import Bool, Unicode, Dict, List
43
43
44
44
45 #-----------------------------------------------------------------------------
45 #-----------------------------------------------------------------------------
46 # Module level variables
46 # Module level variables
47 #-----------------------------------------------------------------------------
47 #-----------------------------------------------------------------------------
48
48
49 #: The default config file name for this application
49 #: The default config file name for this application
50 default_config_file_name = u'ipengine_config.py'
50 default_config_file_name = u'ipengine_config.py'
51
51
52 _description = """Start an IPython engine for parallel computing.
52 _description = """Start an IPython engine for parallel computing.
53
53
54 IPython engines run in parallel and perform computations on behalf of a client
54 IPython engines run in parallel and perform computations on behalf of a client
55 and controller. A controller needs to be started before the engines. The
55 and controller. A controller needs to be started before the engines. The
56 engine can be configured using command line options or using a cluster
56 engine can be configured using command line options or using a cluster
57 directory. Cluster directories contain config, log and security files and are
57 directory. Cluster directories contain config, log and security files and are
58 usually located in your ipython directory and named as "cluster_<profile>".
58 usually located in your ipython directory and named as "profile_name".
59 See the `profile` and `profile_dir` options for details.
59 See the `profile` and `profile_dir` options for details.
60 """
60 """
61
61
62
62
63 #-----------------------------------------------------------------------------
63 #-----------------------------------------------------------------------------
64 # MPI configuration
64 # MPI configuration
65 #-----------------------------------------------------------------------------
65 #-----------------------------------------------------------------------------
66
66
67 mpi4py_init = """from mpi4py import MPI as mpi
67 mpi4py_init = """from mpi4py import MPI as mpi
68 mpi.size = mpi.COMM_WORLD.Get_size()
68 mpi.size = mpi.COMM_WORLD.Get_size()
69 mpi.rank = mpi.COMM_WORLD.Get_rank()
69 mpi.rank = mpi.COMM_WORLD.Get_rank()
70 """
70 """
71
71
72
72
73 pytrilinos_init = """from PyTrilinos import Epetra
73 pytrilinos_init = """from PyTrilinos import Epetra
74 class SimpleStruct:
74 class SimpleStruct:
75 pass
75 pass
76 mpi = SimpleStruct()
76 mpi = SimpleStruct()
77 mpi.rank = 0
77 mpi.rank = 0
78 mpi.size = 0
78 mpi.size = 0
79 """
79 """
80
80
81 class MPI(Configurable):
81 class MPI(Configurable):
82 """Configurable for MPI initialization"""
82 """Configurable for MPI initialization"""
83 use = Unicode('', config=True,
83 use = Unicode('', config=True,
84 help='How to enable MPI (mpi4py, pytrilinos, or empty string to disable).'
84 help='How to enable MPI (mpi4py, pytrilinos, or empty string to disable).'
85 )
85 )
86
86
87 def _on_use_changed(self, old, new):
87 def _on_use_changed(self, old, new):
88 # load default init script if it's not set
88 # load default init script if it's not set
89 if not self.init_script:
89 if not self.init_script:
90 self.init_script = self.default_inits.get(new, '')
90 self.init_script = self.default_inits.get(new, '')
91
91
92 init_script = Unicode('', config=True,
92 init_script = Unicode('', config=True,
93 help="Initialization code for MPI")
93 help="Initialization code for MPI")
94
94
95 default_inits = Dict({'mpi4py' : mpi4py_init, 'pytrilinos':pytrilinos_init},
95 default_inits = Dict({'mpi4py' : mpi4py_init, 'pytrilinos':pytrilinos_init},
96 config=True)
96 config=True)
97
97
98
98
99 #-----------------------------------------------------------------------------
99 #-----------------------------------------------------------------------------
100 # Main application
100 # Main application
101 #-----------------------------------------------------------------------------
101 #-----------------------------------------------------------------------------
102
102
103
103
104 class IPEngineApp(BaseParallelApplication):
104 class IPEngineApp(BaseParallelApplication):
105
105
106 app_name = Unicode(u'ipengine')
106 app_name = Unicode(u'ipengine')
107 description = Unicode(_description)
107 description = Unicode(_description)
108 config_file_name = Unicode(default_config_file_name)
108 config_file_name = Unicode(default_config_file_name)
109 classes = List([ProfileDir, Session, EngineFactory, Kernel, MPI])
109 classes = List([ProfileDir, Session, EngineFactory, Kernel, MPI])
110
110
111 startup_script = Unicode(u'', config=True,
111 startup_script = Unicode(u'', config=True,
112 help='specify a script to be run at startup')
112 help='specify a script to be run at startup')
113 startup_command = Unicode('', config=True,
113 startup_command = Unicode('', config=True,
114 help='specify a command to be run at startup')
114 help='specify a command to be run at startup')
115
115
116 url_file = Unicode(u'', config=True,
116 url_file = Unicode(u'', config=True,
117 help="""The full location of the file containing the connection information for
117 help="""The full location of the file containing the connection information for
118 the controller. If this is not given, the file must be in the
118 the controller. If this is not given, the file must be in the
119 security directory of the cluster directory. This location is
119 security directory of the cluster directory. This location is
120 resolved using the `profile` or `profile_dir` options.""",
120 resolved using the `profile` or `profile_dir` options.""",
121 )
121 )
122
122
123 url_file_name = Unicode(u'ipcontroller-engine.json')
123 url_file_name = Unicode(u'ipcontroller-engine.json')
124 log_url = Unicode('', config=True,
124 log_url = Unicode('', config=True,
125 help="""The URL for the iploggerapp instance, for forwarding
125 help="""The URL for the iploggerapp instance, for forwarding
126 logging to a central location.""")
126 logging to a central location.""")
127
127
128 aliases = Dict(dict(
128 aliases = Dict(dict(
129 file = 'IPEngineApp.url_file',
129 file = 'IPEngineApp.url_file',
130 c = 'IPEngineApp.startup_command',
130 c = 'IPEngineApp.startup_command',
131 s = 'IPEngineApp.startup_script',
131 s = 'IPEngineApp.startup_script',
132
132
133 ident = 'Session.session',
133 ident = 'Session.session',
134 user = 'Session.username',
134 user = 'Session.username',
135 exec_key = 'Session.keyfile',
135 exec_key = 'Session.keyfile',
136
136
137 url = 'EngineFactory.url',
137 url = 'EngineFactory.url',
138 ip = 'EngineFactory.ip',
138 ip = 'EngineFactory.ip',
139 transport = 'EngineFactory.transport',
139 transport = 'EngineFactory.transport',
140 port = 'EngineFactory.regport',
140 port = 'EngineFactory.regport',
141 location = 'EngineFactory.location',
141 location = 'EngineFactory.location',
142
142
143 timeout = 'EngineFactory.timeout',
143 timeout = 'EngineFactory.timeout',
144
144
145 profile = "IPEngineApp.profile",
145 profile = "IPEngineApp.profile",
146 profile_dir = 'ProfileDir.location',
146 profile_dir = 'ProfileDir.location',
147
147
148 mpi = 'MPI.use',
148 mpi = 'MPI.use',
149
149
150 log_level = 'IPEngineApp.log_level',
150 log_level = 'IPEngineApp.log_level',
151 log_url = 'IPEngineApp.log_url'
151 log_url = 'IPEngineApp.log_url'
152 ))
152 ))
153
153
154 # def find_key_file(self):
154 # def find_key_file(self):
155 # """Set the key file.
155 # """Set the key file.
156 #
156 #
157 # Here we don't try to actually see if it exists for is valid as that
157 # Here we don't try to actually see if it exists for is valid as that
158 # is hadled by the connection logic.
158 # is hadled by the connection logic.
159 # """
159 # """
160 # config = self.master_config
160 # config = self.master_config
161 # # Find the actual controller key file
161 # # Find the actual controller key file
162 # if not config.Global.key_file:
162 # if not config.Global.key_file:
163 # try_this = os.path.join(
163 # try_this = os.path.join(
164 # config.Global.profile_dir,
164 # config.Global.profile_dir,
165 # config.Global.security_dir,
165 # config.Global.security_dir,
166 # config.Global.key_file_name
166 # config.Global.key_file_name
167 # )
167 # )
168 # config.Global.key_file = try_this
168 # config.Global.key_file = try_this
169
169
170 def find_url_file(self):
170 def find_url_file(self):
171 """Set the key file.
171 """Set the key file.
172
172
173 Here we don't try to actually see if it exists for is valid as that
173 Here we don't try to actually see if it exists for is valid as that
174 is hadled by the connection logic.
174 is hadled by the connection logic.
175 """
175 """
176 config = self.config
176 config = self.config
177 # Find the actual controller key file
177 # Find the actual controller key file
178 if not self.url_file:
178 if not self.url_file:
179 self.url_file = os.path.join(
179 self.url_file = os.path.join(
180 self.profile_dir.security_dir,
180 self.profile_dir.security_dir,
181 self.url_file_name
181 self.url_file_name
182 )
182 )
183 def init_engine(self):
183 def init_engine(self):
184 # This is the working dir by now.
184 # This is the working dir by now.
185 sys.path.insert(0, '')
185 sys.path.insert(0, '')
186 config = self.config
186 config = self.config
187 # print config
187 # print config
188 self.find_url_file()
188 self.find_url_file()
189
189
190 # if os.path.exists(config.Global.key_file) and config.Global.secure:
190 # if os.path.exists(config.Global.key_file) and config.Global.secure:
191 # config.SessionFactory.exec_key = config.Global.key_file
191 # config.SessionFactory.exec_key = config.Global.key_file
192 if os.path.exists(self.url_file):
192 if os.path.exists(self.url_file):
193 with open(self.url_file) as f:
193 with open(self.url_file) as f:
194 d = json.loads(f.read())
194 d = json.loads(f.read())
195 for k,v in d.iteritems():
195 for k,v in d.iteritems():
196 if isinstance(v, unicode):
196 if isinstance(v, unicode):
197 d[k] = v.encode()
197 d[k] = v.encode()
198 if d['exec_key']:
198 if d['exec_key']:
199 config.Session.key = d['exec_key']
199 config.Session.key = d['exec_key']
200 d['url'] = disambiguate_url(d['url'], d['location'])
200 d['url'] = disambiguate_url(d['url'], d['location'])
201 config.EngineFactory.url = d['url']
201 config.EngineFactory.url = d['url']
202 config.EngineFactory.location = d['location']
202 config.EngineFactory.location = d['location']
203
203
204 try:
204 try:
205 exec_lines = config.Kernel.exec_lines
205 exec_lines = config.Kernel.exec_lines
206 except AttributeError:
206 except AttributeError:
207 config.Kernel.exec_lines = []
207 config.Kernel.exec_lines = []
208 exec_lines = config.Kernel.exec_lines
208 exec_lines = config.Kernel.exec_lines
209
209
210 if self.startup_script:
210 if self.startup_script:
211 enc = sys.getfilesystemencoding() or 'utf8'
211 enc = sys.getfilesystemencoding() or 'utf8'
212 cmd="execfile(%r)"%self.startup_script.encode(enc)
212 cmd="execfile(%r)"%self.startup_script.encode(enc)
213 exec_lines.append(cmd)
213 exec_lines.append(cmd)
214 if self.startup_command:
214 if self.startup_command:
215 exec_lines.append(self.startup_command)
215 exec_lines.append(self.startup_command)
216
216
217 # Create the underlying shell class and Engine
217 # Create the underlying shell class and Engine
218 # shell_class = import_item(self.master_config.Global.shell_class)
218 # shell_class = import_item(self.master_config.Global.shell_class)
219 # print self.config
219 # print self.config
220 try:
220 try:
221 self.engine = EngineFactory(config=config, log=self.log)
221 self.engine = EngineFactory(config=config, log=self.log)
222 except:
222 except:
223 self.log.error("Couldn't start the Engine", exc_info=True)
223 self.log.error("Couldn't start the Engine", exc_info=True)
224 self.exit(1)
224 self.exit(1)
225
225
226 def forward_logging(self):
226 def forward_logging(self):
227 if self.log_url:
227 if self.log_url:
228 self.log.info("Forwarding logging to %s"%self.log_url)
228 self.log.info("Forwarding logging to %s"%self.log_url)
229 context = self.engine.context
229 context = self.engine.context
230 lsock = context.socket(zmq.PUB)
230 lsock = context.socket(zmq.PUB)
231 lsock.connect(self.log_url)
231 lsock.connect(self.log_url)
232 self.log.removeHandler(self._log_handler)
232 self.log.removeHandler(self._log_handler)
233 handler = EnginePUBHandler(self.engine, lsock)
233 handler = EnginePUBHandler(self.engine, lsock)
234 handler.setLevel(self.log_level)
234 handler.setLevel(self.log_level)
235 self.log.addHandler(handler)
235 self.log.addHandler(handler)
236 self._log_handler = handler
236 self._log_handler = handler
237 #
237 #
238 def init_mpi(self):
238 def init_mpi(self):
239 global mpi
239 global mpi
240 self.mpi = MPI(config=self.config)
240 self.mpi = MPI(config=self.config)
241
241
242 mpi_import_statement = self.mpi.init_script
242 mpi_import_statement = self.mpi.init_script
243 if mpi_import_statement:
243 if mpi_import_statement:
244 try:
244 try:
245 self.log.info("Initializing MPI:")
245 self.log.info("Initializing MPI:")
246 self.log.info(mpi_import_statement)
246 self.log.info(mpi_import_statement)
247 exec mpi_import_statement in globals()
247 exec mpi_import_statement in globals()
248 except:
248 except:
249 mpi = None
249 mpi = None
250 else:
250 else:
251 mpi = None
251 mpi = None
252
252
253 def initialize(self, argv=None):
253 def initialize(self, argv=None):
254 super(IPEngineApp, self).initialize(argv)
254 super(IPEngineApp, self).initialize(argv)
255 self.init_mpi()
255 self.init_mpi()
256 self.init_engine()
256 self.init_engine()
257 self.forward_logging()
257 self.forward_logging()
258
258
259 def start(self):
259 def start(self):
260 self.engine.start()
260 self.engine.start()
261 try:
261 try:
262 self.engine.loop.start()
262 self.engine.loop.start()
263 except KeyboardInterrupt:
263 except KeyboardInterrupt:
264 self.log.critical("Engine Interrupted, shutting down...\n")
264 self.log.critical("Engine Interrupted, shutting down...\n")
265
265
266
266
267 def launch_new_instance():
267 def launch_new_instance():
268 """Create and run the IPython engine"""
268 """Create and run the IPython engine"""
269 app = IPEngineApp.instance()
269 app = IPEngineApp.instance()
270 app.initialize()
270 app.initialize()
271 app.start()
271 app.start()
272
272
273
273
274 if __name__ == '__main__':
274 if __name__ == '__main__':
275 launch_new_instance()
275 launch_new_instance()
276
276
@@ -1,101 +1,101 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 # encoding: utf-8
2 # encoding: utf-8
3 """
3 """
4 A simple IPython logger application
4 A simple IPython logger application
5
5
6 Authors:
6 Authors:
7
7
8 * MinRK
8 * MinRK
9
9
10 """
10 """
11
11
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13 # Copyright (C) 2011 The IPython Development Team
13 # Copyright (C) 2011 The IPython Development Team
14 #
14 #
15 # Distributed under the terms of the BSD License. The full license is in
15 # Distributed under the terms of the BSD License. The full license is in
16 # the file COPYING, distributed as part of this software.
16 # the file COPYING, distributed as part of this software.
17 #-----------------------------------------------------------------------------
17 #-----------------------------------------------------------------------------
18
18
19 #-----------------------------------------------------------------------------
19 #-----------------------------------------------------------------------------
20 # Imports
20 # Imports
21 #-----------------------------------------------------------------------------
21 #-----------------------------------------------------------------------------
22
22
23 import os
23 import os
24 import sys
24 import sys
25
25
26 import zmq
26 import zmq
27
27
28 from IPython.core.application import ProfileDir
28 from IPython.core.profiledir import ProfileDir
29 from IPython.utils.traitlets import Bool, Dict, Unicode
29 from IPython.utils.traitlets import Bool, Dict, Unicode
30
30
31 from IPython.parallel.apps.baseapp import (
31 from IPython.parallel.apps.baseapp import (
32 BaseParallelApplication,
32 BaseParallelApplication,
33 base_aliases
33 base_aliases
34 )
34 )
35 from IPython.parallel.apps.logwatcher import LogWatcher
35 from IPython.parallel.apps.logwatcher import LogWatcher
36
36
37 #-----------------------------------------------------------------------------
37 #-----------------------------------------------------------------------------
38 # Module level variables
38 # Module level variables
39 #-----------------------------------------------------------------------------
39 #-----------------------------------------------------------------------------
40
40
41 #: The default config file name for this application
41 #: The default config file name for this application
42 default_config_file_name = u'iplogger_config.py'
42 default_config_file_name = u'iplogger_config.py'
43
43
44 _description = """Start an IPython logger for parallel computing.
44 _description = """Start an IPython logger for parallel computing.
45
45
46 IPython controllers and engines (and your own processes) can broadcast log messages
46 IPython controllers and engines (and your own processes) can broadcast log messages
47 by registering a `zmq.log.handlers.PUBHandler` with the `logging` module. The
47 by registering a `zmq.log.handlers.PUBHandler` with the `logging` module. The
48 logger can be configured using command line options or using a cluster
48 logger can be configured using command line options or using a cluster
49 directory. Cluster directories contain config, log and security files and are
49 directory. Cluster directories contain config, log and security files and are
50 usually located in your ipython directory and named as "cluster_<profile>".
50 usually located in your ipython directory and named as "profile_name".
51 See the `profile` and `profile_dir` options for details.
51 See the `profile` and `profile_dir` options for details.
52 """
52 """
53
53
54
54
55 #-----------------------------------------------------------------------------
55 #-----------------------------------------------------------------------------
56 # Main application
56 # Main application
57 #-----------------------------------------------------------------------------
57 #-----------------------------------------------------------------------------
58 aliases = {}
58 aliases = {}
59 aliases.update(base_aliases)
59 aliases.update(base_aliases)
60 aliases.update(dict(url='LogWatcher.url', topics='LogWatcher.topics'))
60 aliases.update(dict(url='LogWatcher.url', topics='LogWatcher.topics'))
61
61
62 class IPLoggerApp(BaseParallelApplication):
62 class IPLoggerApp(BaseParallelApplication):
63
63
64 name = u'iploggerz'
64 name = u'iploggerz'
65 description = _description
65 description = _description
66 config_file_name = Unicode(default_config_file_name)
66 config_file_name = Unicode(default_config_file_name)
67
67
68 classes = [LogWatcher, ProfileDir]
68 classes = [LogWatcher, ProfileDir]
69 aliases = Dict(aliases)
69 aliases = Dict(aliases)
70
70
71 def initialize(self, argv=None):
71 def initialize(self, argv=None):
72 super(IPLoggerApp, self).initialize(argv)
72 super(IPLoggerApp, self).initialize(argv)
73 self.init_watcher()
73 self.init_watcher()
74
74
75 def init_watcher(self):
75 def init_watcher(self):
76 try:
76 try:
77 self.watcher = LogWatcher(config=self.config, log=self.log)
77 self.watcher = LogWatcher(config=self.config, log=self.log)
78 except:
78 except:
79 self.log.error("Couldn't start the LogWatcher", exc_info=True)
79 self.log.error("Couldn't start the LogWatcher", exc_info=True)
80 self.exit(1)
80 self.exit(1)
81 self.log.info("Listening for log messages on %r"%self.watcher.url)
81 self.log.info("Listening for log messages on %r"%self.watcher.url)
82
82
83
83
84 def start(self):
84 def start(self):
85 self.watcher.start()
85 self.watcher.start()
86 try:
86 try:
87 self.watcher.loop.start()
87 self.watcher.loop.start()
88 except KeyboardInterrupt:
88 except KeyboardInterrupt:
89 self.log.critical("Logging Interrupted, shutting down...\n")
89 self.log.critical("Logging Interrupted, shutting down...\n")
90
90
91
91
92 def launch_new_instance():
92 def launch_new_instance():
93 """Create and run the IPython LogWatcher"""
93 """Create and run the IPython LogWatcher"""
94 app = IPLoggerApp.instance()
94 app = IPLoggerApp.instance()
95 app.initialize()
95 app.initialize()
96 app.start()
96 app.start()
97
97
98
98
99 if __name__ == '__main__':
99 if __name__ == '__main__':
100 launch_new_instance()
100 launch_new_instance()
101
101
@@ -1,1373 +1,1373 b''
1 """A semi-synchronous Client for the ZMQ cluster
1 """A semi-synchronous Client for the ZMQ cluster
2
2
3 Authors:
3 Authors:
4
4
5 * MinRK
5 * MinRK
6 """
6 """
7 #-----------------------------------------------------------------------------
7 #-----------------------------------------------------------------------------
8 # Copyright (C) 2010-2011 The IPython Development Team
8 # Copyright (C) 2010-2011 The IPython Development Team
9 #
9 #
10 # Distributed under the terms of the BSD License. The full license is in
10 # Distributed under the terms of the BSD License. The full license is in
11 # the file COPYING, distributed as part of this software.
11 # the file COPYING, distributed as part of this software.
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13
13
14 #-----------------------------------------------------------------------------
14 #-----------------------------------------------------------------------------
15 # Imports
15 # Imports
16 #-----------------------------------------------------------------------------
16 #-----------------------------------------------------------------------------
17
17
18 import os
18 import os
19 import json
19 import json
20 import time
20 import time
21 import warnings
21 import warnings
22 from datetime import datetime
22 from datetime import datetime
23 from getpass import getpass
23 from getpass import getpass
24 from pprint import pprint
24 from pprint import pprint
25
25
26 pjoin = os.path.join
26 pjoin = os.path.join
27
27
28 import zmq
28 import zmq
29 # from zmq.eventloop import ioloop, zmqstream
29 # from zmq.eventloop import ioloop, zmqstream
30
30
31 from IPython.utils.path import get_ipython_dir
31 from IPython.utils.path import get_ipython_dir
32 from IPython.utils.traitlets import (HasTraits, Int, Instance, Unicode,
32 from IPython.utils.traitlets import (HasTraits, Int, Instance, Unicode,
33 Dict, List, Bool, Set)
33 Dict, List, Bool, Set)
34 from IPython.external.decorator import decorator
34 from IPython.external.decorator import decorator
35 from IPython.external.ssh import tunnel
35 from IPython.external.ssh import tunnel
36
36
37 from IPython.parallel import error
37 from IPython.parallel import error
38 from IPython.parallel import util
38 from IPython.parallel import util
39
39
40 from IPython.zmq.session import Session, Message
40 from IPython.zmq.session import Session, Message
41
41
42 from .asyncresult import AsyncResult, AsyncHubResult
42 from .asyncresult import AsyncResult, AsyncHubResult
43 from IPython.core.application import ProfileDir, ProfileDirError
43 from IPython.core.profiledir import ProfileDir, ProfileDirError
44 from .view import DirectView, LoadBalancedView
44 from .view import DirectView, LoadBalancedView
45
45
46 #--------------------------------------------------------------------------
46 #--------------------------------------------------------------------------
47 # Decorators for Client methods
47 # Decorators for Client methods
48 #--------------------------------------------------------------------------
48 #--------------------------------------------------------------------------
49
49
50 @decorator
50 @decorator
51 def spin_first(f, self, *args, **kwargs):
51 def spin_first(f, self, *args, **kwargs):
52 """Call spin() to sync state prior to calling the method."""
52 """Call spin() to sync state prior to calling the method."""
53 self.spin()
53 self.spin()
54 return f(self, *args, **kwargs)
54 return f(self, *args, **kwargs)
55
55
56
56
57 #--------------------------------------------------------------------------
57 #--------------------------------------------------------------------------
58 # Classes
58 # Classes
59 #--------------------------------------------------------------------------
59 #--------------------------------------------------------------------------
60
60
61 class Metadata(dict):
61 class Metadata(dict):
62 """Subclass of dict for initializing metadata values.
62 """Subclass of dict for initializing metadata values.
63
63
64 Attribute access works on keys.
64 Attribute access works on keys.
65
65
66 These objects have a strict set of keys - errors will raise if you try
66 These objects have a strict set of keys - errors will raise if you try
67 to add new keys.
67 to add new keys.
68 """
68 """
69 def __init__(self, *args, **kwargs):
69 def __init__(self, *args, **kwargs):
70 dict.__init__(self)
70 dict.__init__(self)
71 md = {'msg_id' : None,
71 md = {'msg_id' : None,
72 'submitted' : None,
72 'submitted' : None,
73 'started' : None,
73 'started' : None,
74 'completed' : None,
74 'completed' : None,
75 'received' : None,
75 'received' : None,
76 'engine_uuid' : None,
76 'engine_uuid' : None,
77 'engine_id' : None,
77 'engine_id' : None,
78 'follow' : None,
78 'follow' : None,
79 'after' : None,
79 'after' : None,
80 'status' : None,
80 'status' : None,
81
81
82 'pyin' : None,
82 'pyin' : None,
83 'pyout' : None,
83 'pyout' : None,
84 'pyerr' : None,
84 'pyerr' : None,
85 'stdout' : '',
85 'stdout' : '',
86 'stderr' : '',
86 'stderr' : '',
87 }
87 }
88 self.update(md)
88 self.update(md)
89 self.update(dict(*args, **kwargs))
89 self.update(dict(*args, **kwargs))
90
90
91 def __getattr__(self, key):
91 def __getattr__(self, key):
92 """getattr aliased to getitem"""
92 """getattr aliased to getitem"""
93 if key in self.iterkeys():
93 if key in self.iterkeys():
94 return self[key]
94 return self[key]
95 else:
95 else:
96 raise AttributeError(key)
96 raise AttributeError(key)
97
97
98 def __setattr__(self, key, value):
98 def __setattr__(self, key, value):
99 """setattr aliased to setitem, with strict"""
99 """setattr aliased to setitem, with strict"""
100 if key in self.iterkeys():
100 if key in self.iterkeys():
101 self[key] = value
101 self[key] = value
102 else:
102 else:
103 raise AttributeError(key)
103 raise AttributeError(key)
104
104
105 def __setitem__(self, key, value):
105 def __setitem__(self, key, value):
106 """strict static key enforcement"""
106 """strict static key enforcement"""
107 if key in self.iterkeys():
107 if key in self.iterkeys():
108 dict.__setitem__(self, key, value)
108 dict.__setitem__(self, key, value)
109 else:
109 else:
110 raise KeyError(key)
110 raise KeyError(key)
111
111
112
112
113 class Client(HasTraits):
113 class Client(HasTraits):
114 """A semi-synchronous client to the IPython ZMQ cluster
114 """A semi-synchronous client to the IPython ZMQ cluster
115
115
116 Parameters
116 Parameters
117 ----------
117 ----------
118
118
119 url_or_file : bytes; zmq url or path to ipcontroller-client.json
119 url_or_file : bytes; zmq url or path to ipcontroller-client.json
120 Connection information for the Hub's registration. If a json connector
120 Connection information for the Hub's registration. If a json connector
121 file is given, then likely no further configuration is necessary.
121 file is given, then likely no further configuration is necessary.
122 [Default: use profile]
122 [Default: use profile]
123 profile : bytes
123 profile : bytes
124 The name of the Cluster profile to be used to find connector information.
124 The name of the Cluster profile to be used to find connector information.
125 [Default: 'default']
125 [Default: 'default']
126 context : zmq.Context
126 context : zmq.Context
127 Pass an existing zmq.Context instance, otherwise the client will create its own.
127 Pass an existing zmq.Context instance, otherwise the client will create its own.
128 debug : bool
128 debug : bool
129 flag for lots of message printing for debug purposes
129 flag for lots of message printing for debug purposes
130 timeout : int/float
130 timeout : int/float
131 time (in seconds) to wait for connection replies from the Hub
131 time (in seconds) to wait for connection replies from the Hub
132 [Default: 10]
132 [Default: 10]
133
133
134 #-------------- session related args ----------------
134 #-------------- session related args ----------------
135
135
136 config : Config object
136 config : Config object
137 If specified, this will be relayed to the Session for configuration
137 If specified, this will be relayed to the Session for configuration
138 username : str
138 username : str
139 set username for the session object
139 set username for the session object
140 packer : str (import_string) or callable
140 packer : str (import_string) or callable
141 Can be either the simple keyword 'json' or 'pickle', or an import_string to a
141 Can be either the simple keyword 'json' or 'pickle', or an import_string to a
142 function to serialize messages. Must support same input as
142 function to serialize messages. Must support same input as
143 JSON, and output must be bytes.
143 JSON, and output must be bytes.
144 You can pass a callable directly as `pack`
144 You can pass a callable directly as `pack`
145 unpacker : str (import_string) or callable
145 unpacker : str (import_string) or callable
146 The inverse of packer. Only necessary if packer is specified as *not* one
146 The inverse of packer. Only necessary if packer is specified as *not* one
147 of 'json' or 'pickle'.
147 of 'json' or 'pickle'.
148
148
149 #-------------- ssh related args ----------------
149 #-------------- ssh related args ----------------
150 # These are args for configuring the ssh tunnel to be used
150 # These are args for configuring the ssh tunnel to be used
151 # credentials are used to forward connections over ssh to the Controller
151 # credentials are used to forward connections over ssh to the Controller
152 # Note that the ip given in `addr` needs to be relative to sshserver
152 # Note that the ip given in `addr` needs to be relative to sshserver
153 # The most basic case is to leave addr as pointing to localhost (127.0.0.1),
153 # The most basic case is to leave addr as pointing to localhost (127.0.0.1),
154 # and set sshserver as the same machine the Controller is on. However,
154 # and set sshserver as the same machine the Controller is on. However,
155 # the only requirement is that sshserver is able to see the Controller
155 # the only requirement is that sshserver is able to see the Controller
156 # (i.e. is within the same trusted network).
156 # (i.e. is within the same trusted network).
157
157
158 sshserver : str
158 sshserver : str
159 A string of the form passed to ssh, i.e. 'server.tld' or 'user@server.tld:port'
159 A string of the form passed to ssh, i.e. 'server.tld' or 'user@server.tld:port'
160 If keyfile or password is specified, and this is not, it will default to
160 If keyfile or password is specified, and this is not, it will default to
161 the ip given in addr.
161 the ip given in addr.
162 sshkey : str; path to public ssh key file
162 sshkey : str; path to public ssh key file
163 This specifies a key to be used in ssh login, default None.
163 This specifies a key to be used in ssh login, default None.
164 Regular default ssh keys will be used without specifying this argument.
164 Regular default ssh keys will be used without specifying this argument.
165 password : str
165 password : str
166 Your ssh password to sshserver. Note that if this is left None,
166 Your ssh password to sshserver. Note that if this is left None,
167 you will be prompted for it if passwordless key based login is unavailable.
167 you will be prompted for it if passwordless key based login is unavailable.
168 paramiko : bool
168 paramiko : bool
169 flag for whether to use paramiko instead of shell ssh for tunneling.
169 flag for whether to use paramiko instead of shell ssh for tunneling.
170 [default: True on win32, False else]
170 [default: True on win32, False else]
171
171
172 ------- exec authentication args -------
172 ------- exec authentication args -------
173 If even localhost is untrusted, you can have some protection against
173 If even localhost is untrusted, you can have some protection against
174 unauthorized execution by signing messages with HMAC digests.
174 unauthorized execution by signing messages with HMAC digests.
175 Messages are still sent as cleartext, so if someone can snoop your
175 Messages are still sent as cleartext, so if someone can snoop your
176 loopback traffic this will not protect your privacy, but will prevent
176 loopback traffic this will not protect your privacy, but will prevent
177 unauthorized execution.
177 unauthorized execution.
178
178
179 exec_key : str
179 exec_key : str
180 an authentication key or file containing a key
180 an authentication key or file containing a key
181 default: None
181 default: None
182
182
183
183
184 Attributes
184 Attributes
185 ----------
185 ----------
186
186
187 ids : list of int engine IDs
187 ids : list of int engine IDs
188 requesting the ids attribute always synchronizes
188 requesting the ids attribute always synchronizes
189 the registration state. To request ids without synchronization,
189 the registration state. To request ids without synchronization,
190 use semi-private _ids attributes.
190 use semi-private _ids attributes.
191
191
192 history : list of msg_ids
192 history : list of msg_ids
193 a list of msg_ids, keeping track of all the execution
193 a list of msg_ids, keeping track of all the execution
194 messages you have submitted in order.
194 messages you have submitted in order.
195
195
196 outstanding : set of msg_ids
196 outstanding : set of msg_ids
197 a set of msg_ids that have been submitted, but whose
197 a set of msg_ids that have been submitted, but whose
198 results have not yet been received.
198 results have not yet been received.
199
199
200 results : dict
200 results : dict
201 a dict of all our results, keyed by msg_id
201 a dict of all our results, keyed by msg_id
202
202
203 block : bool
203 block : bool
204 determines default behavior when block not specified
204 determines default behavior when block not specified
205 in execution methods
205 in execution methods
206
206
207 Methods
207 Methods
208 -------
208 -------
209
209
210 spin
210 spin
211 flushes incoming results and registration state changes
211 flushes incoming results and registration state changes
212 control methods spin, and requesting `ids` also ensures up to date
212 control methods spin, and requesting `ids` also ensures up to date
213
213
214 wait
214 wait
215 wait on one or more msg_ids
215 wait on one or more msg_ids
216
216
217 execution methods
217 execution methods
218 apply
218 apply
219 legacy: execute, run
219 legacy: execute, run
220
220
221 data movement
221 data movement
222 push, pull, scatter, gather
222 push, pull, scatter, gather
223
223
224 query methods
224 query methods
225 queue_status, get_result, purge, result_status
225 queue_status, get_result, purge, result_status
226
226
227 control methods
227 control methods
228 abort, shutdown
228 abort, shutdown
229
229
230 """
230 """
231
231
232
232
233 block = Bool(False)
233 block = Bool(False)
234 outstanding = Set()
234 outstanding = Set()
235 results = Instance('collections.defaultdict', (dict,))
235 results = Instance('collections.defaultdict', (dict,))
236 metadata = Instance('collections.defaultdict', (Metadata,))
236 metadata = Instance('collections.defaultdict', (Metadata,))
237 history = List()
237 history = List()
238 debug = Bool(False)
238 debug = Bool(False)
239 profile=Unicode('default')
239 profile=Unicode('default')
240
240
241 _outstanding_dict = Instance('collections.defaultdict', (set,))
241 _outstanding_dict = Instance('collections.defaultdict', (set,))
242 _ids = List()
242 _ids = List()
243 _connected=Bool(False)
243 _connected=Bool(False)
244 _ssh=Bool(False)
244 _ssh=Bool(False)
245 _context = Instance('zmq.Context')
245 _context = Instance('zmq.Context')
246 _config = Dict()
246 _config = Dict()
247 _engines=Instance(util.ReverseDict, (), {})
247 _engines=Instance(util.ReverseDict, (), {})
248 # _hub_socket=Instance('zmq.Socket')
248 # _hub_socket=Instance('zmq.Socket')
249 _query_socket=Instance('zmq.Socket')
249 _query_socket=Instance('zmq.Socket')
250 _control_socket=Instance('zmq.Socket')
250 _control_socket=Instance('zmq.Socket')
251 _iopub_socket=Instance('zmq.Socket')
251 _iopub_socket=Instance('zmq.Socket')
252 _notification_socket=Instance('zmq.Socket')
252 _notification_socket=Instance('zmq.Socket')
253 _mux_socket=Instance('zmq.Socket')
253 _mux_socket=Instance('zmq.Socket')
254 _task_socket=Instance('zmq.Socket')
254 _task_socket=Instance('zmq.Socket')
255 _task_scheme=Unicode()
255 _task_scheme=Unicode()
256 _closed = False
256 _closed = False
257 _ignored_control_replies=Int(0)
257 _ignored_control_replies=Int(0)
258 _ignored_hub_replies=Int(0)
258 _ignored_hub_replies=Int(0)
259
259
260 def __init__(self, url_or_file=None, profile='default', profile_dir=None, ipython_dir=None,
260 def __init__(self, url_or_file=None, profile='default', profile_dir=None, ipython_dir=None,
261 context=None, debug=False, exec_key=None,
261 context=None, debug=False, exec_key=None,
262 sshserver=None, sshkey=None, password=None, paramiko=None,
262 sshserver=None, sshkey=None, password=None, paramiko=None,
263 timeout=10, **extra_args
263 timeout=10, **extra_args
264 ):
264 ):
265 super(Client, self).__init__(debug=debug, profile=profile)
265 super(Client, self).__init__(debug=debug, profile=profile)
266 if context is None:
266 if context is None:
267 context = zmq.Context.instance()
267 context = zmq.Context.instance()
268 self._context = context
268 self._context = context
269
269
270
270
271 self._setup_profile_dir(profile, profile_dir, ipython_dir)
271 self._setup_profile_dir(profile, profile_dir, ipython_dir)
272 if self._cd is not None:
272 if self._cd is not None:
273 if url_or_file is None:
273 if url_or_file is None:
274 url_or_file = pjoin(self._cd.security_dir, 'ipcontroller-client.json')
274 url_or_file = pjoin(self._cd.security_dir, 'ipcontroller-client.json')
275 assert url_or_file is not None, "I can't find enough information to connect to a hub!"\
275 assert url_or_file is not None, "I can't find enough information to connect to a hub!"\
276 " Please specify at least one of url_or_file or profile."
276 " Please specify at least one of url_or_file or profile."
277
277
278 try:
278 try:
279 util.validate_url(url_or_file)
279 util.validate_url(url_or_file)
280 except AssertionError:
280 except AssertionError:
281 if not os.path.exists(url_or_file):
281 if not os.path.exists(url_or_file):
282 if self._cd:
282 if self._cd:
283 url_or_file = os.path.join(self._cd.security_dir, url_or_file)
283 url_or_file = os.path.join(self._cd.security_dir, url_or_file)
284 assert os.path.exists(url_or_file), "Not a valid connection file or url: %r"%url_or_file
284 assert os.path.exists(url_or_file), "Not a valid connection file or url: %r"%url_or_file
285 with open(url_or_file) as f:
285 with open(url_or_file) as f:
286 cfg = json.loads(f.read())
286 cfg = json.loads(f.read())
287 else:
287 else:
288 cfg = {'url':url_or_file}
288 cfg = {'url':url_or_file}
289
289
290 # sync defaults from args, json:
290 # sync defaults from args, json:
291 if sshserver:
291 if sshserver:
292 cfg['ssh'] = sshserver
292 cfg['ssh'] = sshserver
293 if exec_key:
293 if exec_key:
294 cfg['exec_key'] = exec_key
294 cfg['exec_key'] = exec_key
295 exec_key = cfg['exec_key']
295 exec_key = cfg['exec_key']
296 sshserver=cfg['ssh']
296 sshserver=cfg['ssh']
297 url = cfg['url']
297 url = cfg['url']
298 location = cfg.setdefault('location', None)
298 location = cfg.setdefault('location', None)
299 cfg['url'] = util.disambiguate_url(cfg['url'], location)
299 cfg['url'] = util.disambiguate_url(cfg['url'], location)
300 url = cfg['url']
300 url = cfg['url']
301
301
302 self._config = cfg
302 self._config = cfg
303
303
304 self._ssh = bool(sshserver or sshkey or password)
304 self._ssh = bool(sshserver or sshkey or password)
305 if self._ssh and sshserver is None:
305 if self._ssh and sshserver is None:
306 # default to ssh via localhost
306 # default to ssh via localhost
307 sshserver = url.split('://')[1].split(':')[0]
307 sshserver = url.split('://')[1].split(':')[0]
308 if self._ssh and password is None:
308 if self._ssh and password is None:
309 if tunnel.try_passwordless_ssh(sshserver, sshkey, paramiko):
309 if tunnel.try_passwordless_ssh(sshserver, sshkey, paramiko):
310 password=False
310 password=False
311 else:
311 else:
312 password = getpass("SSH Password for %s: "%sshserver)
312 password = getpass("SSH Password for %s: "%sshserver)
313 ssh_kwargs = dict(keyfile=sshkey, password=password, paramiko=paramiko)
313 ssh_kwargs = dict(keyfile=sshkey, password=password, paramiko=paramiko)
314
314
315 # configure and construct the session
315 # configure and construct the session
316 if exec_key is not None:
316 if exec_key is not None:
317 if os.path.isfile(exec_key):
317 if os.path.isfile(exec_key):
318 extra_args['keyfile'] = exec_key
318 extra_args['keyfile'] = exec_key
319 else:
319 else:
320 extra_args['key'] = exec_key
320 extra_args['key'] = exec_key
321 self.session = Session(**extra_args)
321 self.session = Session(**extra_args)
322
322
323 self._query_socket = self._context.socket(zmq.XREQ)
323 self._query_socket = self._context.socket(zmq.XREQ)
324 self._query_socket.setsockopt(zmq.IDENTITY, self.session.session)
324 self._query_socket.setsockopt(zmq.IDENTITY, self.session.session)
325 if self._ssh:
325 if self._ssh:
326 tunnel.tunnel_connection(self._query_socket, url, sshserver, **ssh_kwargs)
326 tunnel.tunnel_connection(self._query_socket, url, sshserver, **ssh_kwargs)
327 else:
327 else:
328 self._query_socket.connect(url)
328 self._query_socket.connect(url)
329
329
330 self.session.debug = self.debug
330 self.session.debug = self.debug
331
331
332 self._notification_handlers = {'registration_notification' : self._register_engine,
332 self._notification_handlers = {'registration_notification' : self._register_engine,
333 'unregistration_notification' : self._unregister_engine,
333 'unregistration_notification' : self._unregister_engine,
334 'shutdown_notification' : lambda msg: self.close(),
334 'shutdown_notification' : lambda msg: self.close(),
335 }
335 }
336 self._queue_handlers = {'execute_reply' : self._handle_execute_reply,
336 self._queue_handlers = {'execute_reply' : self._handle_execute_reply,
337 'apply_reply' : self._handle_apply_reply}
337 'apply_reply' : self._handle_apply_reply}
338 self._connect(sshserver, ssh_kwargs, timeout)
338 self._connect(sshserver, ssh_kwargs, timeout)
339
339
340 def __del__(self):
340 def __del__(self):
341 """cleanup sockets, but _not_ context."""
341 """cleanup sockets, but _not_ context."""
342 self.close()
342 self.close()
343
343
344 def _setup_profile_dir(self, profile, profile_dir, ipython_dir):
344 def _setup_profile_dir(self, profile, profile_dir, ipython_dir):
345 if ipython_dir is None:
345 if ipython_dir is None:
346 ipython_dir = get_ipython_dir()
346 ipython_dir = get_ipython_dir()
347 if profile_dir is not None:
347 if profile_dir is not None:
348 try:
348 try:
349 self._cd = ProfileDir.find_profile_dir(profile_dir)
349 self._cd = ProfileDir.find_profile_dir(profile_dir)
350 return
350 return
351 except ProfileDirError:
351 except ProfileDirError:
352 pass
352 pass
353 elif profile is not None:
353 elif profile is not None:
354 try:
354 try:
355 self._cd = ProfileDir.find_profile_dir_by_name(
355 self._cd = ProfileDir.find_profile_dir_by_name(
356 ipython_dir, profile)
356 ipython_dir, profile)
357 return
357 return
358 except ProfileDirError:
358 except ProfileDirError:
359 pass
359 pass
360 self._cd = None
360 self._cd = None
361
361
362 def _update_engines(self, engines):
362 def _update_engines(self, engines):
363 """Update our engines dict and _ids from a dict of the form: {id:uuid}."""
363 """Update our engines dict and _ids from a dict of the form: {id:uuid}."""
364 for k,v in engines.iteritems():
364 for k,v in engines.iteritems():
365 eid = int(k)
365 eid = int(k)
366 self._engines[eid] = bytes(v) # force not unicode
366 self._engines[eid] = bytes(v) # force not unicode
367 self._ids.append(eid)
367 self._ids.append(eid)
368 self._ids = sorted(self._ids)
368 self._ids = sorted(self._ids)
369 if sorted(self._engines.keys()) != range(len(self._engines)) and \
369 if sorted(self._engines.keys()) != range(len(self._engines)) and \
370 self._task_scheme == 'pure' and self._task_socket:
370 self._task_scheme == 'pure' and self._task_socket:
371 self._stop_scheduling_tasks()
371 self._stop_scheduling_tasks()
372
372
373 def _stop_scheduling_tasks(self):
373 def _stop_scheduling_tasks(self):
374 """Stop scheduling tasks because an engine has been unregistered
374 """Stop scheduling tasks because an engine has been unregistered
375 from a pure ZMQ scheduler.
375 from a pure ZMQ scheduler.
376 """
376 """
377 self._task_socket.close()
377 self._task_socket.close()
378 self._task_socket = None
378 self._task_socket = None
379 msg = "An engine has been unregistered, and we are using pure " +\
379 msg = "An engine has been unregistered, and we are using pure " +\
380 "ZMQ task scheduling. Task farming will be disabled."
380 "ZMQ task scheduling. Task farming will be disabled."
381 if self.outstanding:
381 if self.outstanding:
382 msg += " If you were running tasks when this happened, " +\
382 msg += " If you were running tasks when this happened, " +\
383 "some `outstanding` msg_ids may never resolve."
383 "some `outstanding` msg_ids may never resolve."
384 warnings.warn(msg, RuntimeWarning)
384 warnings.warn(msg, RuntimeWarning)
385
385
386 def _build_targets(self, targets):
386 def _build_targets(self, targets):
387 """Turn valid target IDs or 'all' into two lists:
387 """Turn valid target IDs or 'all' into two lists:
388 (int_ids, uuids).
388 (int_ids, uuids).
389 """
389 """
390 if not self._ids:
390 if not self._ids:
391 # flush notification socket if no engines yet, just in case
391 # flush notification socket if no engines yet, just in case
392 if not self.ids:
392 if not self.ids:
393 raise error.NoEnginesRegistered("Can't build targets without any engines")
393 raise error.NoEnginesRegistered("Can't build targets without any engines")
394
394
395 if targets is None:
395 if targets is None:
396 targets = self._ids
396 targets = self._ids
397 elif isinstance(targets, str):
397 elif isinstance(targets, str):
398 if targets.lower() == 'all':
398 if targets.lower() == 'all':
399 targets = self._ids
399 targets = self._ids
400 else:
400 else:
401 raise TypeError("%r not valid str target, must be 'all'"%(targets))
401 raise TypeError("%r not valid str target, must be 'all'"%(targets))
402 elif isinstance(targets, int):
402 elif isinstance(targets, int):
403 if targets < 0:
403 if targets < 0:
404 targets = self.ids[targets]
404 targets = self.ids[targets]
405 if targets not in self._ids:
405 if targets not in self._ids:
406 raise IndexError("No such engine: %i"%targets)
406 raise IndexError("No such engine: %i"%targets)
407 targets = [targets]
407 targets = [targets]
408
408
409 if isinstance(targets, slice):
409 if isinstance(targets, slice):
410 indices = range(len(self._ids))[targets]
410 indices = range(len(self._ids))[targets]
411 ids = self.ids
411 ids = self.ids
412 targets = [ ids[i] for i in indices ]
412 targets = [ ids[i] for i in indices ]
413
413
414 if not isinstance(targets, (tuple, list, xrange)):
414 if not isinstance(targets, (tuple, list, xrange)):
415 raise TypeError("targets by int/slice/collection of ints only, not %s"%(type(targets)))
415 raise TypeError("targets by int/slice/collection of ints only, not %s"%(type(targets)))
416
416
417 return [self._engines[t] for t in targets], list(targets)
417 return [self._engines[t] for t in targets], list(targets)
418
418
419 def _connect(self, sshserver, ssh_kwargs, timeout):
419 def _connect(self, sshserver, ssh_kwargs, timeout):
420 """setup all our socket connections to the cluster. This is called from
420 """setup all our socket connections to the cluster. This is called from
421 __init__."""
421 __init__."""
422
422
423 # Maybe allow reconnecting?
423 # Maybe allow reconnecting?
424 if self._connected:
424 if self._connected:
425 return
425 return
426 self._connected=True
426 self._connected=True
427
427
428 def connect_socket(s, url):
428 def connect_socket(s, url):
429 url = util.disambiguate_url(url, self._config['location'])
429 url = util.disambiguate_url(url, self._config['location'])
430 if self._ssh:
430 if self._ssh:
431 return tunnel.tunnel_connection(s, url, sshserver, **ssh_kwargs)
431 return tunnel.tunnel_connection(s, url, sshserver, **ssh_kwargs)
432 else:
432 else:
433 return s.connect(url)
433 return s.connect(url)
434
434
435 self.session.send(self._query_socket, 'connection_request')
435 self.session.send(self._query_socket, 'connection_request')
436 r,w,x = zmq.select([self._query_socket],[],[], timeout)
436 r,w,x = zmq.select([self._query_socket],[],[], timeout)
437 if not r:
437 if not r:
438 raise error.TimeoutError("Hub connection request timed out")
438 raise error.TimeoutError("Hub connection request timed out")
439 idents,msg = self.session.recv(self._query_socket,mode=0)
439 idents,msg = self.session.recv(self._query_socket,mode=0)
440 if self.debug:
440 if self.debug:
441 pprint(msg)
441 pprint(msg)
442 msg = Message(msg)
442 msg = Message(msg)
443 content = msg.content
443 content = msg.content
444 self._config['registration'] = dict(content)
444 self._config['registration'] = dict(content)
445 if content.status == 'ok':
445 if content.status == 'ok':
446 if content.mux:
446 if content.mux:
447 self._mux_socket = self._context.socket(zmq.XREQ)
447 self._mux_socket = self._context.socket(zmq.XREQ)
448 self._mux_socket.setsockopt(zmq.IDENTITY, self.session.session)
448 self._mux_socket.setsockopt(zmq.IDENTITY, self.session.session)
449 connect_socket(self._mux_socket, content.mux)
449 connect_socket(self._mux_socket, content.mux)
450 if content.task:
450 if content.task:
451 self._task_scheme, task_addr = content.task
451 self._task_scheme, task_addr = content.task
452 self._task_socket = self._context.socket(zmq.XREQ)
452 self._task_socket = self._context.socket(zmq.XREQ)
453 self._task_socket.setsockopt(zmq.IDENTITY, self.session.session)
453 self._task_socket.setsockopt(zmq.IDENTITY, self.session.session)
454 connect_socket(self._task_socket, task_addr)
454 connect_socket(self._task_socket, task_addr)
455 if content.notification:
455 if content.notification:
456 self._notification_socket = self._context.socket(zmq.SUB)
456 self._notification_socket = self._context.socket(zmq.SUB)
457 connect_socket(self._notification_socket, content.notification)
457 connect_socket(self._notification_socket, content.notification)
458 self._notification_socket.setsockopt(zmq.SUBSCRIBE, b'')
458 self._notification_socket.setsockopt(zmq.SUBSCRIBE, b'')
459 # if content.query:
459 # if content.query:
460 # self._query_socket = self._context.socket(zmq.XREQ)
460 # self._query_socket = self._context.socket(zmq.XREQ)
461 # self._query_socket.setsockopt(zmq.IDENTITY, self.session.session)
461 # self._query_socket.setsockopt(zmq.IDENTITY, self.session.session)
462 # connect_socket(self._query_socket, content.query)
462 # connect_socket(self._query_socket, content.query)
463 if content.control:
463 if content.control:
464 self._control_socket = self._context.socket(zmq.XREQ)
464 self._control_socket = self._context.socket(zmq.XREQ)
465 self._control_socket.setsockopt(zmq.IDENTITY, self.session.session)
465 self._control_socket.setsockopt(zmq.IDENTITY, self.session.session)
466 connect_socket(self._control_socket, content.control)
466 connect_socket(self._control_socket, content.control)
467 if content.iopub:
467 if content.iopub:
468 self._iopub_socket = self._context.socket(zmq.SUB)
468 self._iopub_socket = self._context.socket(zmq.SUB)
469 self._iopub_socket.setsockopt(zmq.SUBSCRIBE, b'')
469 self._iopub_socket.setsockopt(zmq.SUBSCRIBE, b'')
470 self._iopub_socket.setsockopt(zmq.IDENTITY, self.session.session)
470 self._iopub_socket.setsockopt(zmq.IDENTITY, self.session.session)
471 connect_socket(self._iopub_socket, content.iopub)
471 connect_socket(self._iopub_socket, content.iopub)
472 self._update_engines(dict(content.engines))
472 self._update_engines(dict(content.engines))
473 else:
473 else:
474 self._connected = False
474 self._connected = False
475 raise Exception("Failed to connect!")
475 raise Exception("Failed to connect!")
476
476
477 #--------------------------------------------------------------------------
477 #--------------------------------------------------------------------------
478 # handlers and callbacks for incoming messages
478 # handlers and callbacks for incoming messages
479 #--------------------------------------------------------------------------
479 #--------------------------------------------------------------------------
480
480
481 def _unwrap_exception(self, content):
481 def _unwrap_exception(self, content):
482 """unwrap exception, and remap engine_id to int."""
482 """unwrap exception, and remap engine_id to int."""
483 e = error.unwrap_exception(content)
483 e = error.unwrap_exception(content)
484 # print e.traceback
484 # print e.traceback
485 if e.engine_info:
485 if e.engine_info:
486 e_uuid = e.engine_info['engine_uuid']
486 e_uuid = e.engine_info['engine_uuid']
487 eid = self._engines[e_uuid]
487 eid = self._engines[e_uuid]
488 e.engine_info['engine_id'] = eid
488 e.engine_info['engine_id'] = eid
489 return e
489 return e
490
490
491 def _extract_metadata(self, header, parent, content):
491 def _extract_metadata(self, header, parent, content):
492 md = {'msg_id' : parent['msg_id'],
492 md = {'msg_id' : parent['msg_id'],
493 'received' : datetime.now(),
493 'received' : datetime.now(),
494 'engine_uuid' : header.get('engine', None),
494 'engine_uuid' : header.get('engine', None),
495 'follow' : parent.get('follow', []),
495 'follow' : parent.get('follow', []),
496 'after' : parent.get('after', []),
496 'after' : parent.get('after', []),
497 'status' : content['status'],
497 'status' : content['status'],
498 }
498 }
499
499
500 if md['engine_uuid'] is not None:
500 if md['engine_uuid'] is not None:
501 md['engine_id'] = self._engines.get(md['engine_uuid'], None)
501 md['engine_id'] = self._engines.get(md['engine_uuid'], None)
502
502
503 if 'date' in parent:
503 if 'date' in parent:
504 md['submitted'] = parent['date']
504 md['submitted'] = parent['date']
505 if 'started' in header:
505 if 'started' in header:
506 md['started'] = header['started']
506 md['started'] = header['started']
507 if 'date' in header:
507 if 'date' in header:
508 md['completed'] = header['date']
508 md['completed'] = header['date']
509 return md
509 return md
510
510
511 def _register_engine(self, msg):
511 def _register_engine(self, msg):
512 """Register a new engine, and update our connection info."""
512 """Register a new engine, and update our connection info."""
513 content = msg['content']
513 content = msg['content']
514 eid = content['id']
514 eid = content['id']
515 d = {eid : content['queue']}
515 d = {eid : content['queue']}
516 self._update_engines(d)
516 self._update_engines(d)
517
517
518 def _unregister_engine(self, msg):
518 def _unregister_engine(self, msg):
519 """Unregister an engine that has died."""
519 """Unregister an engine that has died."""
520 content = msg['content']
520 content = msg['content']
521 eid = int(content['id'])
521 eid = int(content['id'])
522 if eid in self._ids:
522 if eid in self._ids:
523 self._ids.remove(eid)
523 self._ids.remove(eid)
524 uuid = self._engines.pop(eid)
524 uuid = self._engines.pop(eid)
525
525
526 self._handle_stranded_msgs(eid, uuid)
526 self._handle_stranded_msgs(eid, uuid)
527
527
528 if self._task_socket and self._task_scheme == 'pure':
528 if self._task_socket and self._task_scheme == 'pure':
529 self._stop_scheduling_tasks()
529 self._stop_scheduling_tasks()
530
530
531 def _handle_stranded_msgs(self, eid, uuid):
531 def _handle_stranded_msgs(self, eid, uuid):
532 """Handle messages known to be on an engine when the engine unregisters.
532 """Handle messages known to be on an engine when the engine unregisters.
533
533
534 It is possible that this will fire prematurely - that is, an engine will
534 It is possible that this will fire prematurely - that is, an engine will
535 go down after completing a result, and the client will be notified
535 go down after completing a result, and the client will be notified
536 of the unregistration and later receive the successful result.
536 of the unregistration and later receive the successful result.
537 """
537 """
538
538
539 outstanding = self._outstanding_dict[uuid]
539 outstanding = self._outstanding_dict[uuid]
540
540
541 for msg_id in list(outstanding):
541 for msg_id in list(outstanding):
542 if msg_id in self.results:
542 if msg_id in self.results:
543 # we already
543 # we already
544 continue
544 continue
545 try:
545 try:
546 raise error.EngineError("Engine %r died while running task %r"%(eid, msg_id))
546 raise error.EngineError("Engine %r died while running task %r"%(eid, msg_id))
547 except:
547 except:
548 content = error.wrap_exception()
548 content = error.wrap_exception()
549 # build a fake message:
549 # build a fake message:
550 parent = {}
550 parent = {}
551 header = {}
551 header = {}
552 parent['msg_id'] = msg_id
552 parent['msg_id'] = msg_id
553 header['engine'] = uuid
553 header['engine'] = uuid
554 header['date'] = datetime.now()
554 header['date'] = datetime.now()
555 msg = dict(parent_header=parent, header=header, content=content)
555 msg = dict(parent_header=parent, header=header, content=content)
556 self._handle_apply_reply(msg)
556 self._handle_apply_reply(msg)
557
557
558 def _handle_execute_reply(self, msg):
558 def _handle_execute_reply(self, msg):
559 """Save the reply to an execute_request into our results.
559 """Save the reply to an execute_request into our results.
560
560
561 execute messages are never actually used. apply is used instead.
561 execute messages are never actually used. apply is used instead.
562 """
562 """
563
563
564 parent = msg['parent_header']
564 parent = msg['parent_header']
565 msg_id = parent['msg_id']
565 msg_id = parent['msg_id']
566 if msg_id not in self.outstanding:
566 if msg_id not in self.outstanding:
567 if msg_id in self.history:
567 if msg_id in self.history:
568 print ("got stale result: %s"%msg_id)
568 print ("got stale result: %s"%msg_id)
569 else:
569 else:
570 print ("got unknown result: %s"%msg_id)
570 print ("got unknown result: %s"%msg_id)
571 else:
571 else:
572 self.outstanding.remove(msg_id)
572 self.outstanding.remove(msg_id)
573 self.results[msg_id] = self._unwrap_exception(msg['content'])
573 self.results[msg_id] = self._unwrap_exception(msg['content'])
574
574
575 def _handle_apply_reply(self, msg):
575 def _handle_apply_reply(self, msg):
576 """Save the reply to an apply_request into our results."""
576 """Save the reply to an apply_request into our results."""
577 parent = msg['parent_header']
577 parent = msg['parent_header']
578 msg_id = parent['msg_id']
578 msg_id = parent['msg_id']
579 if msg_id not in self.outstanding:
579 if msg_id not in self.outstanding:
580 if msg_id in self.history:
580 if msg_id in self.history:
581 print ("got stale result: %s"%msg_id)
581 print ("got stale result: %s"%msg_id)
582 print self.results[msg_id]
582 print self.results[msg_id]
583 print msg
583 print msg
584 else:
584 else:
585 print ("got unknown result: %s"%msg_id)
585 print ("got unknown result: %s"%msg_id)
586 else:
586 else:
587 self.outstanding.remove(msg_id)
587 self.outstanding.remove(msg_id)
588 content = msg['content']
588 content = msg['content']
589 header = msg['header']
589 header = msg['header']
590
590
591 # construct metadata:
591 # construct metadata:
592 md = self.metadata[msg_id]
592 md = self.metadata[msg_id]
593 md.update(self._extract_metadata(header, parent, content))
593 md.update(self._extract_metadata(header, parent, content))
594 # is this redundant?
594 # is this redundant?
595 self.metadata[msg_id] = md
595 self.metadata[msg_id] = md
596
596
597 e_outstanding = self._outstanding_dict[md['engine_uuid']]
597 e_outstanding = self._outstanding_dict[md['engine_uuid']]
598 if msg_id in e_outstanding:
598 if msg_id in e_outstanding:
599 e_outstanding.remove(msg_id)
599 e_outstanding.remove(msg_id)
600
600
601 # construct result:
601 # construct result:
602 if content['status'] == 'ok':
602 if content['status'] == 'ok':
603 self.results[msg_id] = util.unserialize_object(msg['buffers'])[0]
603 self.results[msg_id] = util.unserialize_object(msg['buffers'])[0]
604 elif content['status'] == 'aborted':
604 elif content['status'] == 'aborted':
605 self.results[msg_id] = error.TaskAborted(msg_id)
605 self.results[msg_id] = error.TaskAborted(msg_id)
606 elif content['status'] == 'resubmitted':
606 elif content['status'] == 'resubmitted':
607 # TODO: handle resubmission
607 # TODO: handle resubmission
608 pass
608 pass
609 else:
609 else:
610 self.results[msg_id] = self._unwrap_exception(content)
610 self.results[msg_id] = self._unwrap_exception(content)
611
611
612 def _flush_notifications(self):
612 def _flush_notifications(self):
613 """Flush notifications of engine registrations waiting
613 """Flush notifications of engine registrations waiting
614 in ZMQ queue."""
614 in ZMQ queue."""
615 idents,msg = self.session.recv(self._notification_socket, mode=zmq.NOBLOCK)
615 idents,msg = self.session.recv(self._notification_socket, mode=zmq.NOBLOCK)
616 while msg is not None:
616 while msg is not None:
617 if self.debug:
617 if self.debug:
618 pprint(msg)
618 pprint(msg)
619 msg_type = msg['msg_type']
619 msg_type = msg['msg_type']
620 handler = self._notification_handlers.get(msg_type, None)
620 handler = self._notification_handlers.get(msg_type, None)
621 if handler is None:
621 if handler is None:
622 raise Exception("Unhandled message type: %s"%msg.msg_type)
622 raise Exception("Unhandled message type: %s"%msg.msg_type)
623 else:
623 else:
624 handler(msg)
624 handler(msg)
625 idents,msg = self.session.recv(self._notification_socket, mode=zmq.NOBLOCK)
625 idents,msg = self.session.recv(self._notification_socket, mode=zmq.NOBLOCK)
626
626
627 def _flush_results(self, sock):
627 def _flush_results(self, sock):
628 """Flush task or queue results waiting in ZMQ queue."""
628 """Flush task or queue results waiting in ZMQ queue."""
629 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
629 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
630 while msg is not None:
630 while msg is not None:
631 if self.debug:
631 if self.debug:
632 pprint(msg)
632 pprint(msg)
633 msg_type = msg['msg_type']
633 msg_type = msg['msg_type']
634 handler = self._queue_handlers.get(msg_type, None)
634 handler = self._queue_handlers.get(msg_type, None)
635 if handler is None:
635 if handler is None:
636 raise Exception("Unhandled message type: %s"%msg.msg_type)
636 raise Exception("Unhandled message type: %s"%msg.msg_type)
637 else:
637 else:
638 handler(msg)
638 handler(msg)
639 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
639 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
640
640
641 def _flush_control(self, sock):
641 def _flush_control(self, sock):
642 """Flush replies from the control channel waiting
642 """Flush replies from the control channel waiting
643 in the ZMQ queue.
643 in the ZMQ queue.
644
644
645 Currently: ignore them."""
645 Currently: ignore them."""
646 if self._ignored_control_replies <= 0:
646 if self._ignored_control_replies <= 0:
647 return
647 return
648 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
648 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
649 while msg is not None:
649 while msg is not None:
650 self._ignored_control_replies -= 1
650 self._ignored_control_replies -= 1
651 if self.debug:
651 if self.debug:
652 pprint(msg)
652 pprint(msg)
653 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
653 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
654
654
655 def _flush_ignored_control(self):
655 def _flush_ignored_control(self):
656 """flush ignored control replies"""
656 """flush ignored control replies"""
657 while self._ignored_control_replies > 0:
657 while self._ignored_control_replies > 0:
658 self.session.recv(self._control_socket)
658 self.session.recv(self._control_socket)
659 self._ignored_control_replies -= 1
659 self._ignored_control_replies -= 1
660
660
661 def _flush_ignored_hub_replies(self):
661 def _flush_ignored_hub_replies(self):
662 ident,msg = self.session.recv(self._query_socket, mode=zmq.NOBLOCK)
662 ident,msg = self.session.recv(self._query_socket, mode=zmq.NOBLOCK)
663 while msg is not None:
663 while msg is not None:
664 ident,msg = self.session.recv(self._query_socket, mode=zmq.NOBLOCK)
664 ident,msg = self.session.recv(self._query_socket, mode=zmq.NOBLOCK)
665
665
666 def _flush_iopub(self, sock):
666 def _flush_iopub(self, sock):
667 """Flush replies from the iopub channel waiting
667 """Flush replies from the iopub channel waiting
668 in the ZMQ queue.
668 in the ZMQ queue.
669 """
669 """
670 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
670 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
671 while msg is not None:
671 while msg is not None:
672 if self.debug:
672 if self.debug:
673 pprint(msg)
673 pprint(msg)
674 parent = msg['parent_header']
674 parent = msg['parent_header']
675 msg_id = parent['msg_id']
675 msg_id = parent['msg_id']
676 content = msg['content']
676 content = msg['content']
677 header = msg['header']
677 header = msg['header']
678 msg_type = msg['msg_type']
678 msg_type = msg['msg_type']
679
679
680 # init metadata:
680 # init metadata:
681 md = self.metadata[msg_id]
681 md = self.metadata[msg_id]
682
682
683 if msg_type == 'stream':
683 if msg_type == 'stream':
684 name = content['name']
684 name = content['name']
685 s = md[name] or ''
685 s = md[name] or ''
686 md[name] = s + content['data']
686 md[name] = s + content['data']
687 elif msg_type == 'pyerr':
687 elif msg_type == 'pyerr':
688 md.update({'pyerr' : self._unwrap_exception(content)})
688 md.update({'pyerr' : self._unwrap_exception(content)})
689 elif msg_type == 'pyin':
689 elif msg_type == 'pyin':
690 md.update({'pyin' : content['code']})
690 md.update({'pyin' : content['code']})
691 else:
691 else:
692 md.update({msg_type : content.get('data', '')})
692 md.update({msg_type : content.get('data', '')})
693
693
694 # reduntant?
694 # reduntant?
695 self.metadata[msg_id] = md
695 self.metadata[msg_id] = md
696
696
697 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
697 idents,msg = self.session.recv(sock, mode=zmq.NOBLOCK)
698
698
699 #--------------------------------------------------------------------------
699 #--------------------------------------------------------------------------
700 # len, getitem
700 # len, getitem
701 #--------------------------------------------------------------------------
701 #--------------------------------------------------------------------------
702
702
703 def __len__(self):
703 def __len__(self):
704 """len(client) returns # of engines."""
704 """len(client) returns # of engines."""
705 return len(self.ids)
705 return len(self.ids)
706
706
707 def __getitem__(self, key):
707 def __getitem__(self, key):
708 """index access returns DirectView multiplexer objects
708 """index access returns DirectView multiplexer objects
709
709
710 Must be int, slice, or list/tuple/xrange of ints"""
710 Must be int, slice, or list/tuple/xrange of ints"""
711 if not isinstance(key, (int, slice, tuple, list, xrange)):
711 if not isinstance(key, (int, slice, tuple, list, xrange)):
712 raise TypeError("key by int/slice/iterable of ints only, not %s"%(type(key)))
712 raise TypeError("key by int/slice/iterable of ints only, not %s"%(type(key)))
713 else:
713 else:
714 return self.direct_view(key)
714 return self.direct_view(key)
715
715
716 #--------------------------------------------------------------------------
716 #--------------------------------------------------------------------------
717 # Begin public methods
717 # Begin public methods
718 #--------------------------------------------------------------------------
718 #--------------------------------------------------------------------------
719
719
720 @property
720 @property
721 def ids(self):
721 def ids(self):
722 """Always up-to-date ids property."""
722 """Always up-to-date ids property."""
723 self._flush_notifications()
723 self._flush_notifications()
724 # always copy:
724 # always copy:
725 return list(self._ids)
725 return list(self._ids)
726
726
727 def close(self):
727 def close(self):
728 if self._closed:
728 if self._closed:
729 return
729 return
730 snames = filter(lambda n: n.endswith('socket'), dir(self))
730 snames = filter(lambda n: n.endswith('socket'), dir(self))
731 for socket in map(lambda name: getattr(self, name), snames):
731 for socket in map(lambda name: getattr(self, name), snames):
732 if isinstance(socket, zmq.Socket) and not socket.closed:
732 if isinstance(socket, zmq.Socket) and not socket.closed:
733 socket.close()
733 socket.close()
734 self._closed = True
734 self._closed = True
735
735
736 def spin(self):
736 def spin(self):
737 """Flush any registration notifications and execution results
737 """Flush any registration notifications and execution results
738 waiting in the ZMQ queue.
738 waiting in the ZMQ queue.
739 """
739 """
740 if self._notification_socket:
740 if self._notification_socket:
741 self._flush_notifications()
741 self._flush_notifications()
742 if self._mux_socket:
742 if self._mux_socket:
743 self._flush_results(self._mux_socket)
743 self._flush_results(self._mux_socket)
744 if self._task_socket:
744 if self._task_socket:
745 self._flush_results(self._task_socket)
745 self._flush_results(self._task_socket)
746 if self._control_socket:
746 if self._control_socket:
747 self._flush_control(self._control_socket)
747 self._flush_control(self._control_socket)
748 if self._iopub_socket:
748 if self._iopub_socket:
749 self._flush_iopub(self._iopub_socket)
749 self._flush_iopub(self._iopub_socket)
750 if self._query_socket:
750 if self._query_socket:
751 self._flush_ignored_hub_replies()
751 self._flush_ignored_hub_replies()
752
752
753 def wait(self, jobs=None, timeout=-1):
753 def wait(self, jobs=None, timeout=-1):
754 """waits on one or more `jobs`, for up to `timeout` seconds.
754 """waits on one or more `jobs`, for up to `timeout` seconds.
755
755
756 Parameters
756 Parameters
757 ----------
757 ----------
758
758
759 jobs : int, str, or list of ints and/or strs, or one or more AsyncResult objects
759 jobs : int, str, or list of ints and/or strs, or one or more AsyncResult objects
760 ints are indices to self.history
760 ints are indices to self.history
761 strs are msg_ids
761 strs are msg_ids
762 default: wait on all outstanding messages
762 default: wait on all outstanding messages
763 timeout : float
763 timeout : float
764 a time in seconds, after which to give up.
764 a time in seconds, after which to give up.
765 default is -1, which means no timeout
765 default is -1, which means no timeout
766
766
767 Returns
767 Returns
768 -------
768 -------
769
769
770 True : when all msg_ids are done
770 True : when all msg_ids are done
771 False : timeout reached, some msg_ids still outstanding
771 False : timeout reached, some msg_ids still outstanding
772 """
772 """
773 tic = time.time()
773 tic = time.time()
774 if jobs is None:
774 if jobs is None:
775 theids = self.outstanding
775 theids = self.outstanding
776 else:
776 else:
777 if isinstance(jobs, (int, str, AsyncResult)):
777 if isinstance(jobs, (int, str, AsyncResult)):
778 jobs = [jobs]
778 jobs = [jobs]
779 theids = set()
779 theids = set()
780 for job in jobs:
780 for job in jobs:
781 if isinstance(job, int):
781 if isinstance(job, int):
782 # index access
782 # index access
783 job = self.history[job]
783 job = self.history[job]
784 elif isinstance(job, AsyncResult):
784 elif isinstance(job, AsyncResult):
785 map(theids.add, job.msg_ids)
785 map(theids.add, job.msg_ids)
786 continue
786 continue
787 theids.add(job)
787 theids.add(job)
788 if not theids.intersection(self.outstanding):
788 if not theids.intersection(self.outstanding):
789 return True
789 return True
790 self.spin()
790 self.spin()
791 while theids.intersection(self.outstanding):
791 while theids.intersection(self.outstanding):
792 if timeout >= 0 and ( time.time()-tic ) > timeout:
792 if timeout >= 0 and ( time.time()-tic ) > timeout:
793 break
793 break
794 time.sleep(1e-3)
794 time.sleep(1e-3)
795 self.spin()
795 self.spin()
796 return len(theids.intersection(self.outstanding)) == 0
796 return len(theids.intersection(self.outstanding)) == 0
797
797
798 #--------------------------------------------------------------------------
798 #--------------------------------------------------------------------------
799 # Control methods
799 # Control methods
800 #--------------------------------------------------------------------------
800 #--------------------------------------------------------------------------
801
801
802 @spin_first
802 @spin_first
803 def clear(self, targets=None, block=None):
803 def clear(self, targets=None, block=None):
804 """Clear the namespace in target(s)."""
804 """Clear the namespace in target(s)."""
805 block = self.block if block is None else block
805 block = self.block if block is None else block
806 targets = self._build_targets(targets)[0]
806 targets = self._build_targets(targets)[0]
807 for t in targets:
807 for t in targets:
808 self.session.send(self._control_socket, 'clear_request', content={}, ident=t)
808 self.session.send(self._control_socket, 'clear_request', content={}, ident=t)
809 error = False
809 error = False
810 if block:
810 if block:
811 self._flush_ignored_control()
811 self._flush_ignored_control()
812 for i in range(len(targets)):
812 for i in range(len(targets)):
813 idents,msg = self.session.recv(self._control_socket,0)
813 idents,msg = self.session.recv(self._control_socket,0)
814 if self.debug:
814 if self.debug:
815 pprint(msg)
815 pprint(msg)
816 if msg['content']['status'] != 'ok':
816 if msg['content']['status'] != 'ok':
817 error = self._unwrap_exception(msg['content'])
817 error = self._unwrap_exception(msg['content'])
818 else:
818 else:
819 self._ignored_control_replies += len(targets)
819 self._ignored_control_replies += len(targets)
820 if error:
820 if error:
821 raise error
821 raise error
822
822
823
823
824 @spin_first
824 @spin_first
825 def abort(self, jobs=None, targets=None, block=None):
825 def abort(self, jobs=None, targets=None, block=None):
826 """Abort specific jobs from the execution queues of target(s).
826 """Abort specific jobs from the execution queues of target(s).
827
827
828 This is a mechanism to prevent jobs that have already been submitted
828 This is a mechanism to prevent jobs that have already been submitted
829 from executing.
829 from executing.
830
830
831 Parameters
831 Parameters
832 ----------
832 ----------
833
833
834 jobs : msg_id, list of msg_ids, or AsyncResult
834 jobs : msg_id, list of msg_ids, or AsyncResult
835 The jobs to be aborted
835 The jobs to be aborted
836
836
837
837
838 """
838 """
839 block = self.block if block is None else block
839 block = self.block if block is None else block
840 targets = self._build_targets(targets)[0]
840 targets = self._build_targets(targets)[0]
841 msg_ids = []
841 msg_ids = []
842 if isinstance(jobs, (basestring,AsyncResult)):
842 if isinstance(jobs, (basestring,AsyncResult)):
843 jobs = [jobs]
843 jobs = [jobs]
844 bad_ids = filter(lambda obj: not isinstance(obj, (basestring, AsyncResult)), jobs)
844 bad_ids = filter(lambda obj: not isinstance(obj, (basestring, AsyncResult)), jobs)
845 if bad_ids:
845 if bad_ids:
846 raise TypeError("Invalid msg_id type %r, expected str or AsyncResult"%bad_ids[0])
846 raise TypeError("Invalid msg_id type %r, expected str or AsyncResult"%bad_ids[0])
847 for j in jobs:
847 for j in jobs:
848 if isinstance(j, AsyncResult):
848 if isinstance(j, AsyncResult):
849 msg_ids.extend(j.msg_ids)
849 msg_ids.extend(j.msg_ids)
850 else:
850 else:
851 msg_ids.append(j)
851 msg_ids.append(j)
852 content = dict(msg_ids=msg_ids)
852 content = dict(msg_ids=msg_ids)
853 for t in targets:
853 for t in targets:
854 self.session.send(self._control_socket, 'abort_request',
854 self.session.send(self._control_socket, 'abort_request',
855 content=content, ident=t)
855 content=content, ident=t)
856 error = False
856 error = False
857 if block:
857 if block:
858 self._flush_ignored_control()
858 self._flush_ignored_control()
859 for i in range(len(targets)):
859 for i in range(len(targets)):
860 idents,msg = self.session.recv(self._control_socket,0)
860 idents,msg = self.session.recv(self._control_socket,0)
861 if self.debug:
861 if self.debug:
862 pprint(msg)
862 pprint(msg)
863 if msg['content']['status'] != 'ok':
863 if msg['content']['status'] != 'ok':
864 error = self._unwrap_exception(msg['content'])
864 error = self._unwrap_exception(msg['content'])
865 else:
865 else:
866 self._ignored_control_replies += len(targets)
866 self._ignored_control_replies += len(targets)
867 if error:
867 if error:
868 raise error
868 raise error
869
869
870 @spin_first
870 @spin_first
871 def shutdown(self, targets=None, restart=False, hub=False, block=None):
871 def shutdown(self, targets=None, restart=False, hub=False, block=None):
872 """Terminates one or more engine processes, optionally including the hub."""
872 """Terminates one or more engine processes, optionally including the hub."""
873 block = self.block if block is None else block
873 block = self.block if block is None else block
874 if hub:
874 if hub:
875 targets = 'all'
875 targets = 'all'
876 targets = self._build_targets(targets)[0]
876 targets = self._build_targets(targets)[0]
877 for t in targets:
877 for t in targets:
878 self.session.send(self._control_socket, 'shutdown_request',
878 self.session.send(self._control_socket, 'shutdown_request',
879 content={'restart':restart},ident=t)
879 content={'restart':restart},ident=t)
880 error = False
880 error = False
881 if block or hub:
881 if block or hub:
882 self._flush_ignored_control()
882 self._flush_ignored_control()
883 for i in range(len(targets)):
883 for i in range(len(targets)):
884 idents,msg = self.session.recv(self._control_socket, 0)
884 idents,msg = self.session.recv(self._control_socket, 0)
885 if self.debug:
885 if self.debug:
886 pprint(msg)
886 pprint(msg)
887 if msg['content']['status'] != 'ok':
887 if msg['content']['status'] != 'ok':
888 error = self._unwrap_exception(msg['content'])
888 error = self._unwrap_exception(msg['content'])
889 else:
889 else:
890 self._ignored_control_replies += len(targets)
890 self._ignored_control_replies += len(targets)
891
891
892 if hub:
892 if hub:
893 time.sleep(0.25)
893 time.sleep(0.25)
894 self.session.send(self._query_socket, 'shutdown_request')
894 self.session.send(self._query_socket, 'shutdown_request')
895 idents,msg = self.session.recv(self._query_socket, 0)
895 idents,msg = self.session.recv(self._query_socket, 0)
896 if self.debug:
896 if self.debug:
897 pprint(msg)
897 pprint(msg)
898 if msg['content']['status'] != 'ok':
898 if msg['content']['status'] != 'ok':
899 error = self._unwrap_exception(msg['content'])
899 error = self._unwrap_exception(msg['content'])
900
900
901 if error:
901 if error:
902 raise error
902 raise error
903
903
904 #--------------------------------------------------------------------------
904 #--------------------------------------------------------------------------
905 # Execution related methods
905 # Execution related methods
906 #--------------------------------------------------------------------------
906 #--------------------------------------------------------------------------
907
907
908 def _maybe_raise(self, result):
908 def _maybe_raise(self, result):
909 """wrapper for maybe raising an exception if apply failed."""
909 """wrapper for maybe raising an exception if apply failed."""
910 if isinstance(result, error.RemoteError):
910 if isinstance(result, error.RemoteError):
911 raise result
911 raise result
912
912
913 return result
913 return result
914
914
915 def send_apply_message(self, socket, f, args=None, kwargs=None, subheader=None, track=False,
915 def send_apply_message(self, socket, f, args=None, kwargs=None, subheader=None, track=False,
916 ident=None):
916 ident=None):
917 """construct and send an apply message via a socket.
917 """construct and send an apply message via a socket.
918
918
919 This is the principal method with which all engine execution is performed by views.
919 This is the principal method with which all engine execution is performed by views.
920 """
920 """
921
921
922 assert not self._closed, "cannot use me anymore, I'm closed!"
922 assert not self._closed, "cannot use me anymore, I'm closed!"
923 # defaults:
923 # defaults:
924 args = args if args is not None else []
924 args = args if args is not None else []
925 kwargs = kwargs if kwargs is not None else {}
925 kwargs = kwargs if kwargs is not None else {}
926 subheader = subheader if subheader is not None else {}
926 subheader = subheader if subheader is not None else {}
927
927
928 # validate arguments
928 # validate arguments
929 if not callable(f):
929 if not callable(f):
930 raise TypeError("f must be callable, not %s"%type(f))
930 raise TypeError("f must be callable, not %s"%type(f))
931 if not isinstance(args, (tuple, list)):
931 if not isinstance(args, (tuple, list)):
932 raise TypeError("args must be tuple or list, not %s"%type(args))
932 raise TypeError("args must be tuple or list, not %s"%type(args))
933 if not isinstance(kwargs, dict):
933 if not isinstance(kwargs, dict):
934 raise TypeError("kwargs must be dict, not %s"%type(kwargs))
934 raise TypeError("kwargs must be dict, not %s"%type(kwargs))
935 if not isinstance(subheader, dict):
935 if not isinstance(subheader, dict):
936 raise TypeError("subheader must be dict, not %s"%type(subheader))
936 raise TypeError("subheader must be dict, not %s"%type(subheader))
937
937
938 bufs = util.pack_apply_message(f,args,kwargs)
938 bufs = util.pack_apply_message(f,args,kwargs)
939
939
940 msg = self.session.send(socket, "apply_request", buffers=bufs, ident=ident,
940 msg = self.session.send(socket, "apply_request", buffers=bufs, ident=ident,
941 subheader=subheader, track=track)
941 subheader=subheader, track=track)
942
942
943 msg_id = msg['msg_id']
943 msg_id = msg['msg_id']
944 self.outstanding.add(msg_id)
944 self.outstanding.add(msg_id)
945 if ident:
945 if ident:
946 # possibly routed to a specific engine
946 # possibly routed to a specific engine
947 if isinstance(ident, list):
947 if isinstance(ident, list):
948 ident = ident[-1]
948 ident = ident[-1]
949 if ident in self._engines.values():
949 if ident in self._engines.values():
950 # save for later, in case of engine death
950 # save for later, in case of engine death
951 self._outstanding_dict[ident].add(msg_id)
951 self._outstanding_dict[ident].add(msg_id)
952 self.history.append(msg_id)
952 self.history.append(msg_id)
953 self.metadata[msg_id]['submitted'] = datetime.now()
953 self.metadata[msg_id]['submitted'] = datetime.now()
954
954
955 return msg
955 return msg
956
956
957 #--------------------------------------------------------------------------
957 #--------------------------------------------------------------------------
958 # construct a View object
958 # construct a View object
959 #--------------------------------------------------------------------------
959 #--------------------------------------------------------------------------
960
960
961 def load_balanced_view(self, targets=None):
961 def load_balanced_view(self, targets=None):
962 """construct a DirectView object.
962 """construct a DirectView object.
963
963
964 If no arguments are specified, create a LoadBalancedView
964 If no arguments are specified, create a LoadBalancedView
965 using all engines.
965 using all engines.
966
966
967 Parameters
967 Parameters
968 ----------
968 ----------
969
969
970 targets: list,slice,int,etc. [default: use all engines]
970 targets: list,slice,int,etc. [default: use all engines]
971 The subset of engines across which to load-balance
971 The subset of engines across which to load-balance
972 """
972 """
973 if targets is not None:
973 if targets is not None:
974 targets = self._build_targets(targets)[1]
974 targets = self._build_targets(targets)[1]
975 return LoadBalancedView(client=self, socket=self._task_socket, targets=targets)
975 return LoadBalancedView(client=self, socket=self._task_socket, targets=targets)
976
976
977 def direct_view(self, targets='all'):
977 def direct_view(self, targets='all'):
978 """construct a DirectView object.
978 """construct a DirectView object.
979
979
980 If no targets are specified, create a DirectView
980 If no targets are specified, create a DirectView
981 using all engines.
981 using all engines.
982
982
983 Parameters
983 Parameters
984 ----------
984 ----------
985
985
986 targets: list,slice,int,etc. [default: use all engines]
986 targets: list,slice,int,etc. [default: use all engines]
987 The engines to use for the View
987 The engines to use for the View
988 """
988 """
989 single = isinstance(targets, int)
989 single = isinstance(targets, int)
990 targets = self._build_targets(targets)[1]
990 targets = self._build_targets(targets)[1]
991 if single:
991 if single:
992 targets = targets[0]
992 targets = targets[0]
993 return DirectView(client=self, socket=self._mux_socket, targets=targets)
993 return DirectView(client=self, socket=self._mux_socket, targets=targets)
994
994
995 #--------------------------------------------------------------------------
995 #--------------------------------------------------------------------------
996 # Query methods
996 # Query methods
997 #--------------------------------------------------------------------------
997 #--------------------------------------------------------------------------
998
998
999 @spin_first
999 @spin_first
1000 def get_result(self, indices_or_msg_ids=None, block=None):
1000 def get_result(self, indices_or_msg_ids=None, block=None):
1001 """Retrieve a result by msg_id or history index, wrapped in an AsyncResult object.
1001 """Retrieve a result by msg_id or history index, wrapped in an AsyncResult object.
1002
1002
1003 If the client already has the results, no request to the Hub will be made.
1003 If the client already has the results, no request to the Hub will be made.
1004
1004
1005 This is a convenient way to construct AsyncResult objects, which are wrappers
1005 This is a convenient way to construct AsyncResult objects, which are wrappers
1006 that include metadata about execution, and allow for awaiting results that
1006 that include metadata about execution, and allow for awaiting results that
1007 were not submitted by this Client.
1007 were not submitted by this Client.
1008
1008
1009 It can also be a convenient way to retrieve the metadata associated with
1009 It can also be a convenient way to retrieve the metadata associated with
1010 blocking execution, since it always retrieves
1010 blocking execution, since it always retrieves
1011
1011
1012 Examples
1012 Examples
1013 --------
1013 --------
1014 ::
1014 ::
1015
1015
1016 In [10]: r = client.apply()
1016 In [10]: r = client.apply()
1017
1017
1018 Parameters
1018 Parameters
1019 ----------
1019 ----------
1020
1020
1021 indices_or_msg_ids : integer history index, str msg_id, or list of either
1021 indices_or_msg_ids : integer history index, str msg_id, or list of either
1022 The indices or msg_ids of indices to be retrieved
1022 The indices or msg_ids of indices to be retrieved
1023
1023
1024 block : bool
1024 block : bool
1025 Whether to wait for the result to be done
1025 Whether to wait for the result to be done
1026
1026
1027 Returns
1027 Returns
1028 -------
1028 -------
1029
1029
1030 AsyncResult
1030 AsyncResult
1031 A single AsyncResult object will always be returned.
1031 A single AsyncResult object will always be returned.
1032
1032
1033 AsyncHubResult
1033 AsyncHubResult
1034 A subclass of AsyncResult that retrieves results from the Hub
1034 A subclass of AsyncResult that retrieves results from the Hub
1035
1035
1036 """
1036 """
1037 block = self.block if block is None else block
1037 block = self.block if block is None else block
1038 if indices_or_msg_ids is None:
1038 if indices_or_msg_ids is None:
1039 indices_or_msg_ids = -1
1039 indices_or_msg_ids = -1
1040
1040
1041 if not isinstance(indices_or_msg_ids, (list,tuple)):
1041 if not isinstance(indices_or_msg_ids, (list,tuple)):
1042 indices_or_msg_ids = [indices_or_msg_ids]
1042 indices_or_msg_ids = [indices_or_msg_ids]
1043
1043
1044 theids = []
1044 theids = []
1045 for id in indices_or_msg_ids:
1045 for id in indices_or_msg_ids:
1046 if isinstance(id, int):
1046 if isinstance(id, int):
1047 id = self.history[id]
1047 id = self.history[id]
1048 if not isinstance(id, str):
1048 if not isinstance(id, str):
1049 raise TypeError("indices must be str or int, not %r"%id)
1049 raise TypeError("indices must be str or int, not %r"%id)
1050 theids.append(id)
1050 theids.append(id)
1051
1051
1052 local_ids = filter(lambda msg_id: msg_id in self.history or msg_id in self.results, theids)
1052 local_ids = filter(lambda msg_id: msg_id in self.history or msg_id in self.results, theids)
1053 remote_ids = filter(lambda msg_id: msg_id not in local_ids, theids)
1053 remote_ids = filter(lambda msg_id: msg_id not in local_ids, theids)
1054
1054
1055 if remote_ids:
1055 if remote_ids:
1056 ar = AsyncHubResult(self, msg_ids=theids)
1056 ar = AsyncHubResult(self, msg_ids=theids)
1057 else:
1057 else:
1058 ar = AsyncResult(self, msg_ids=theids)
1058 ar = AsyncResult(self, msg_ids=theids)
1059
1059
1060 if block:
1060 if block:
1061 ar.wait()
1061 ar.wait()
1062
1062
1063 return ar
1063 return ar
1064
1064
1065 @spin_first
1065 @spin_first
1066 def resubmit(self, indices_or_msg_ids=None, subheader=None, block=None):
1066 def resubmit(self, indices_or_msg_ids=None, subheader=None, block=None):
1067 """Resubmit one or more tasks.
1067 """Resubmit one or more tasks.
1068
1068
1069 in-flight tasks may not be resubmitted.
1069 in-flight tasks may not be resubmitted.
1070
1070
1071 Parameters
1071 Parameters
1072 ----------
1072 ----------
1073
1073
1074 indices_or_msg_ids : integer history index, str msg_id, or list of either
1074 indices_or_msg_ids : integer history index, str msg_id, or list of either
1075 The indices or msg_ids of indices to be retrieved
1075 The indices or msg_ids of indices to be retrieved
1076
1076
1077 block : bool
1077 block : bool
1078 Whether to wait for the result to be done
1078 Whether to wait for the result to be done
1079
1079
1080 Returns
1080 Returns
1081 -------
1081 -------
1082
1082
1083 AsyncHubResult
1083 AsyncHubResult
1084 A subclass of AsyncResult that retrieves results from the Hub
1084 A subclass of AsyncResult that retrieves results from the Hub
1085
1085
1086 """
1086 """
1087 block = self.block if block is None else block
1087 block = self.block if block is None else block
1088 if indices_or_msg_ids is None:
1088 if indices_or_msg_ids is None:
1089 indices_or_msg_ids = -1
1089 indices_or_msg_ids = -1
1090
1090
1091 if not isinstance(indices_or_msg_ids, (list,tuple)):
1091 if not isinstance(indices_or_msg_ids, (list,tuple)):
1092 indices_or_msg_ids = [indices_or_msg_ids]
1092 indices_or_msg_ids = [indices_or_msg_ids]
1093
1093
1094 theids = []
1094 theids = []
1095 for id in indices_or_msg_ids:
1095 for id in indices_or_msg_ids:
1096 if isinstance(id, int):
1096 if isinstance(id, int):
1097 id = self.history[id]
1097 id = self.history[id]
1098 if not isinstance(id, str):
1098 if not isinstance(id, str):
1099 raise TypeError("indices must be str or int, not %r"%id)
1099 raise TypeError("indices must be str or int, not %r"%id)
1100 theids.append(id)
1100 theids.append(id)
1101
1101
1102 for msg_id in theids:
1102 for msg_id in theids:
1103 self.outstanding.discard(msg_id)
1103 self.outstanding.discard(msg_id)
1104 if msg_id in self.history:
1104 if msg_id in self.history:
1105 self.history.remove(msg_id)
1105 self.history.remove(msg_id)
1106 self.results.pop(msg_id, None)
1106 self.results.pop(msg_id, None)
1107 self.metadata.pop(msg_id, None)
1107 self.metadata.pop(msg_id, None)
1108 content = dict(msg_ids = theids)
1108 content = dict(msg_ids = theids)
1109
1109
1110 self.session.send(self._query_socket, 'resubmit_request', content)
1110 self.session.send(self._query_socket, 'resubmit_request', content)
1111
1111
1112 zmq.select([self._query_socket], [], [])
1112 zmq.select([self._query_socket], [], [])
1113 idents,msg = self.session.recv(self._query_socket, zmq.NOBLOCK)
1113 idents,msg = self.session.recv(self._query_socket, zmq.NOBLOCK)
1114 if self.debug:
1114 if self.debug:
1115 pprint(msg)
1115 pprint(msg)
1116 content = msg['content']
1116 content = msg['content']
1117 if content['status'] != 'ok':
1117 if content['status'] != 'ok':
1118 raise self._unwrap_exception(content)
1118 raise self._unwrap_exception(content)
1119
1119
1120 ar = AsyncHubResult(self, msg_ids=theids)
1120 ar = AsyncHubResult(self, msg_ids=theids)
1121
1121
1122 if block:
1122 if block:
1123 ar.wait()
1123 ar.wait()
1124
1124
1125 return ar
1125 return ar
1126
1126
1127 @spin_first
1127 @spin_first
1128 def result_status(self, msg_ids, status_only=True):
1128 def result_status(self, msg_ids, status_only=True):
1129 """Check on the status of the result(s) of the apply request with `msg_ids`.
1129 """Check on the status of the result(s) of the apply request with `msg_ids`.
1130
1130
1131 If status_only is False, then the actual results will be retrieved, else
1131 If status_only is False, then the actual results will be retrieved, else
1132 only the status of the results will be checked.
1132 only the status of the results will be checked.
1133
1133
1134 Parameters
1134 Parameters
1135 ----------
1135 ----------
1136
1136
1137 msg_ids : list of msg_ids
1137 msg_ids : list of msg_ids
1138 if int:
1138 if int:
1139 Passed as index to self.history for convenience.
1139 Passed as index to self.history for convenience.
1140 status_only : bool (default: True)
1140 status_only : bool (default: True)
1141 if False:
1141 if False:
1142 Retrieve the actual results of completed tasks.
1142 Retrieve the actual results of completed tasks.
1143
1143
1144 Returns
1144 Returns
1145 -------
1145 -------
1146
1146
1147 results : dict
1147 results : dict
1148 There will always be the keys 'pending' and 'completed', which will
1148 There will always be the keys 'pending' and 'completed', which will
1149 be lists of msg_ids that are incomplete or complete. If `status_only`
1149 be lists of msg_ids that are incomplete or complete. If `status_only`
1150 is False, then completed results will be keyed by their `msg_id`.
1150 is False, then completed results will be keyed by their `msg_id`.
1151 """
1151 """
1152 if not isinstance(msg_ids, (list,tuple)):
1152 if not isinstance(msg_ids, (list,tuple)):
1153 msg_ids = [msg_ids]
1153 msg_ids = [msg_ids]
1154
1154
1155 theids = []
1155 theids = []
1156 for msg_id in msg_ids:
1156 for msg_id in msg_ids:
1157 if isinstance(msg_id, int):
1157 if isinstance(msg_id, int):
1158 msg_id = self.history[msg_id]
1158 msg_id = self.history[msg_id]
1159 if not isinstance(msg_id, basestring):
1159 if not isinstance(msg_id, basestring):
1160 raise TypeError("msg_ids must be str, not %r"%msg_id)
1160 raise TypeError("msg_ids must be str, not %r"%msg_id)
1161 theids.append(msg_id)
1161 theids.append(msg_id)
1162
1162
1163 completed = []
1163 completed = []
1164 local_results = {}
1164 local_results = {}
1165
1165
1166 # comment this block out to temporarily disable local shortcut:
1166 # comment this block out to temporarily disable local shortcut:
1167 for msg_id in theids:
1167 for msg_id in theids:
1168 if msg_id in self.results:
1168 if msg_id in self.results:
1169 completed.append(msg_id)
1169 completed.append(msg_id)
1170 local_results[msg_id] = self.results[msg_id]
1170 local_results[msg_id] = self.results[msg_id]
1171 theids.remove(msg_id)
1171 theids.remove(msg_id)
1172
1172
1173 if theids: # some not locally cached
1173 if theids: # some not locally cached
1174 content = dict(msg_ids=theids, status_only=status_only)
1174 content = dict(msg_ids=theids, status_only=status_only)
1175 msg = self.session.send(self._query_socket, "result_request", content=content)
1175 msg = self.session.send(self._query_socket, "result_request", content=content)
1176 zmq.select([self._query_socket], [], [])
1176 zmq.select([self._query_socket], [], [])
1177 idents,msg = self.session.recv(self._query_socket, zmq.NOBLOCK)
1177 idents,msg = self.session.recv(self._query_socket, zmq.NOBLOCK)
1178 if self.debug:
1178 if self.debug:
1179 pprint(msg)
1179 pprint(msg)
1180 content = msg['content']
1180 content = msg['content']
1181 if content['status'] != 'ok':
1181 if content['status'] != 'ok':
1182 raise self._unwrap_exception(content)
1182 raise self._unwrap_exception(content)
1183 buffers = msg['buffers']
1183 buffers = msg['buffers']
1184 else:
1184 else:
1185 content = dict(completed=[],pending=[])
1185 content = dict(completed=[],pending=[])
1186
1186
1187 content['completed'].extend(completed)
1187 content['completed'].extend(completed)
1188
1188
1189 if status_only:
1189 if status_only:
1190 return content
1190 return content
1191
1191
1192 failures = []
1192 failures = []
1193 # load cached results into result:
1193 # load cached results into result:
1194 content.update(local_results)
1194 content.update(local_results)
1195
1195
1196 # update cache with results:
1196 # update cache with results:
1197 for msg_id in sorted(theids):
1197 for msg_id in sorted(theids):
1198 if msg_id in content['completed']:
1198 if msg_id in content['completed']:
1199 rec = content[msg_id]
1199 rec = content[msg_id]
1200 parent = rec['header']
1200 parent = rec['header']
1201 header = rec['result_header']
1201 header = rec['result_header']
1202 rcontent = rec['result_content']
1202 rcontent = rec['result_content']
1203 iodict = rec['io']
1203 iodict = rec['io']
1204 if isinstance(rcontent, str):
1204 if isinstance(rcontent, str):
1205 rcontent = self.session.unpack(rcontent)
1205 rcontent = self.session.unpack(rcontent)
1206
1206
1207 md = self.metadata[msg_id]
1207 md = self.metadata[msg_id]
1208 md.update(self._extract_metadata(header, parent, rcontent))
1208 md.update(self._extract_metadata(header, parent, rcontent))
1209 md.update(iodict)
1209 md.update(iodict)
1210
1210
1211 if rcontent['status'] == 'ok':
1211 if rcontent['status'] == 'ok':
1212 res,buffers = util.unserialize_object(buffers)
1212 res,buffers = util.unserialize_object(buffers)
1213 else:
1213 else:
1214 print rcontent
1214 print rcontent
1215 res = self._unwrap_exception(rcontent)
1215 res = self._unwrap_exception(rcontent)
1216 failures.append(res)
1216 failures.append(res)
1217
1217
1218 self.results[msg_id] = res
1218 self.results[msg_id] = res
1219 content[msg_id] = res
1219 content[msg_id] = res
1220
1220
1221 if len(theids) == 1 and failures:
1221 if len(theids) == 1 and failures:
1222 raise failures[0]
1222 raise failures[0]
1223
1223
1224 error.collect_exceptions(failures, "result_status")
1224 error.collect_exceptions(failures, "result_status")
1225 return content
1225 return content
1226
1226
1227 @spin_first
1227 @spin_first
1228 def queue_status(self, targets='all', verbose=False):
1228 def queue_status(self, targets='all', verbose=False):
1229 """Fetch the status of engine queues.
1229 """Fetch the status of engine queues.
1230
1230
1231 Parameters
1231 Parameters
1232 ----------
1232 ----------
1233
1233
1234 targets : int/str/list of ints/strs
1234 targets : int/str/list of ints/strs
1235 the engines whose states are to be queried.
1235 the engines whose states are to be queried.
1236 default : all
1236 default : all
1237 verbose : bool
1237 verbose : bool
1238 Whether to return lengths only, or lists of ids for each element
1238 Whether to return lengths only, or lists of ids for each element
1239 """
1239 """
1240 engine_ids = self._build_targets(targets)[1]
1240 engine_ids = self._build_targets(targets)[1]
1241 content = dict(targets=engine_ids, verbose=verbose)
1241 content = dict(targets=engine_ids, verbose=verbose)
1242 self.session.send(self._query_socket, "queue_request", content=content)
1242 self.session.send(self._query_socket, "queue_request", content=content)
1243 idents,msg = self.session.recv(self._query_socket, 0)
1243 idents,msg = self.session.recv(self._query_socket, 0)
1244 if self.debug:
1244 if self.debug:
1245 pprint(msg)
1245 pprint(msg)
1246 content = msg['content']
1246 content = msg['content']
1247 status = content.pop('status')
1247 status = content.pop('status')
1248 if status != 'ok':
1248 if status != 'ok':
1249 raise self._unwrap_exception(content)
1249 raise self._unwrap_exception(content)
1250 content = util.rekey(content)
1250 content = util.rekey(content)
1251 if isinstance(targets, int):
1251 if isinstance(targets, int):
1252 return content[targets]
1252 return content[targets]
1253 else:
1253 else:
1254 return content
1254 return content
1255
1255
1256 @spin_first
1256 @spin_first
1257 def purge_results(self, jobs=[], targets=[]):
1257 def purge_results(self, jobs=[], targets=[]):
1258 """Tell the Hub to forget results.
1258 """Tell the Hub to forget results.
1259
1259
1260 Individual results can be purged by msg_id, or the entire
1260 Individual results can be purged by msg_id, or the entire
1261 history of specific targets can be purged.
1261 history of specific targets can be purged.
1262
1262
1263 Parameters
1263 Parameters
1264 ----------
1264 ----------
1265
1265
1266 jobs : str or list of str or AsyncResult objects
1266 jobs : str or list of str or AsyncResult objects
1267 the msg_ids whose results should be forgotten.
1267 the msg_ids whose results should be forgotten.
1268 targets : int/str/list of ints/strs
1268 targets : int/str/list of ints/strs
1269 The targets, by uuid or int_id, whose entire history is to be purged.
1269 The targets, by uuid or int_id, whose entire history is to be purged.
1270 Use `targets='all'` to scrub everything from the Hub's memory.
1270 Use `targets='all'` to scrub everything from the Hub's memory.
1271
1271
1272 default : None
1272 default : None
1273 """
1273 """
1274 if not targets and not jobs:
1274 if not targets and not jobs:
1275 raise ValueError("Must specify at least one of `targets` and `jobs`")
1275 raise ValueError("Must specify at least one of `targets` and `jobs`")
1276 if targets:
1276 if targets:
1277 targets = self._build_targets(targets)[1]
1277 targets = self._build_targets(targets)[1]
1278
1278
1279 # construct msg_ids from jobs
1279 # construct msg_ids from jobs
1280 msg_ids = []
1280 msg_ids = []
1281 if isinstance(jobs, (basestring,AsyncResult)):
1281 if isinstance(jobs, (basestring,AsyncResult)):
1282 jobs = [jobs]
1282 jobs = [jobs]
1283 bad_ids = filter(lambda obj: not isinstance(obj, (basestring, AsyncResult)), jobs)
1283 bad_ids = filter(lambda obj: not isinstance(obj, (basestring, AsyncResult)), jobs)
1284 if bad_ids:
1284 if bad_ids:
1285 raise TypeError("Invalid msg_id type %r, expected str or AsyncResult"%bad_ids[0])
1285 raise TypeError("Invalid msg_id type %r, expected str or AsyncResult"%bad_ids[0])
1286 for j in jobs:
1286 for j in jobs:
1287 if isinstance(j, AsyncResult):
1287 if isinstance(j, AsyncResult):
1288 msg_ids.extend(j.msg_ids)
1288 msg_ids.extend(j.msg_ids)
1289 else:
1289 else:
1290 msg_ids.append(j)
1290 msg_ids.append(j)
1291
1291
1292 content = dict(targets=targets, msg_ids=msg_ids)
1292 content = dict(targets=targets, msg_ids=msg_ids)
1293 self.session.send(self._query_socket, "purge_request", content=content)
1293 self.session.send(self._query_socket, "purge_request", content=content)
1294 idents, msg = self.session.recv(self._query_socket, 0)
1294 idents, msg = self.session.recv(self._query_socket, 0)
1295 if self.debug:
1295 if self.debug:
1296 pprint(msg)
1296 pprint(msg)
1297 content = msg['content']
1297 content = msg['content']
1298 if content['status'] != 'ok':
1298 if content['status'] != 'ok':
1299 raise self._unwrap_exception(content)
1299 raise self._unwrap_exception(content)
1300
1300
1301 @spin_first
1301 @spin_first
1302 def hub_history(self):
1302 def hub_history(self):
1303 """Get the Hub's history
1303 """Get the Hub's history
1304
1304
1305 Just like the Client, the Hub has a history, which is a list of msg_ids.
1305 Just like the Client, the Hub has a history, which is a list of msg_ids.
1306 This will contain the history of all clients, and, depending on configuration,
1306 This will contain the history of all clients, and, depending on configuration,
1307 may contain history across multiple cluster sessions.
1307 may contain history across multiple cluster sessions.
1308
1308
1309 Any msg_id returned here is a valid argument to `get_result`.
1309 Any msg_id returned here is a valid argument to `get_result`.
1310
1310
1311 Returns
1311 Returns
1312 -------
1312 -------
1313
1313
1314 msg_ids : list of strs
1314 msg_ids : list of strs
1315 list of all msg_ids, ordered by task submission time.
1315 list of all msg_ids, ordered by task submission time.
1316 """
1316 """
1317
1317
1318 self.session.send(self._query_socket, "history_request", content={})
1318 self.session.send(self._query_socket, "history_request", content={})
1319 idents, msg = self.session.recv(self._query_socket, 0)
1319 idents, msg = self.session.recv(self._query_socket, 0)
1320
1320
1321 if self.debug:
1321 if self.debug:
1322 pprint(msg)
1322 pprint(msg)
1323 content = msg['content']
1323 content = msg['content']
1324 if content['status'] != 'ok':
1324 if content['status'] != 'ok':
1325 raise self._unwrap_exception(content)
1325 raise self._unwrap_exception(content)
1326 else:
1326 else:
1327 return content['history']
1327 return content['history']
1328
1328
1329 @spin_first
1329 @spin_first
1330 def db_query(self, query, keys=None):
1330 def db_query(self, query, keys=None):
1331 """Query the Hub's TaskRecord database
1331 """Query the Hub's TaskRecord database
1332
1332
1333 This will return a list of task record dicts that match `query`
1333 This will return a list of task record dicts that match `query`
1334
1334
1335 Parameters
1335 Parameters
1336 ----------
1336 ----------
1337
1337
1338 query : mongodb query dict
1338 query : mongodb query dict
1339 The search dict. See mongodb query docs for details.
1339 The search dict. See mongodb query docs for details.
1340 keys : list of strs [optional]
1340 keys : list of strs [optional]
1341 The subset of keys to be returned. The default is to fetch everything but buffers.
1341 The subset of keys to be returned. The default is to fetch everything but buffers.
1342 'msg_id' will *always* be included.
1342 'msg_id' will *always* be included.
1343 """
1343 """
1344 if isinstance(keys, basestring):
1344 if isinstance(keys, basestring):
1345 keys = [keys]
1345 keys = [keys]
1346 content = dict(query=query, keys=keys)
1346 content = dict(query=query, keys=keys)
1347 self.session.send(self._query_socket, "db_request", content=content)
1347 self.session.send(self._query_socket, "db_request", content=content)
1348 idents, msg = self.session.recv(self._query_socket, 0)
1348 idents, msg = self.session.recv(self._query_socket, 0)
1349 if self.debug:
1349 if self.debug:
1350 pprint(msg)
1350 pprint(msg)
1351 content = msg['content']
1351 content = msg['content']
1352 if content['status'] != 'ok':
1352 if content['status'] != 'ok':
1353 raise self._unwrap_exception(content)
1353 raise self._unwrap_exception(content)
1354
1354
1355 records = content['records']
1355 records = content['records']
1356
1356
1357 buffer_lens = content['buffer_lens']
1357 buffer_lens = content['buffer_lens']
1358 result_buffer_lens = content['result_buffer_lens']
1358 result_buffer_lens = content['result_buffer_lens']
1359 buffers = msg['buffers']
1359 buffers = msg['buffers']
1360 has_bufs = buffer_lens is not None
1360 has_bufs = buffer_lens is not None
1361 has_rbufs = result_buffer_lens is not None
1361 has_rbufs = result_buffer_lens is not None
1362 for i,rec in enumerate(records):
1362 for i,rec in enumerate(records):
1363 # relink buffers
1363 # relink buffers
1364 if has_bufs:
1364 if has_bufs:
1365 blen = buffer_lens[i]
1365 blen = buffer_lens[i]
1366 rec['buffers'], buffers = buffers[:blen],buffers[blen:]
1366 rec['buffers'], buffers = buffers[:blen],buffers[blen:]
1367 if has_rbufs:
1367 if has_rbufs:
1368 blen = result_buffer_lens[i]
1368 blen = result_buffer_lens[i]
1369 rec['result_buffers'], buffers = buffers[:blen],buffers[blen:]
1369 rec['result_buffers'], buffers = buffers[:blen],buffers[blen:]
1370
1370
1371 return records
1371 return records
1372
1372
1373 __all__ = [ 'Client' ]
1373 __all__ = [ 'Client' ]
@@ -1,425 +1,425 b''
1 # encoding: utf-8
1 # encoding: utf-8
2 """
2 """
3 Utilities for path handling.
3 Utilities for path handling.
4 """
4 """
5
5
6 #-----------------------------------------------------------------------------
6 #-----------------------------------------------------------------------------
7 # Copyright (C) 2008-2009 The IPython Development Team
7 # Copyright (C) 2008-2009 The IPython Development Team
8 #
8 #
9 # Distributed under the terms of the BSD License. The full license is in
9 # Distributed under the terms of the BSD License. The full license is in
10 # the file COPYING, distributed as part of this software.
10 # the file COPYING, distributed as part of this software.
11 #-----------------------------------------------------------------------------
11 #-----------------------------------------------------------------------------
12
12
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14 # Imports
14 # Imports
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 import os
17 import os
18 import sys
18 import sys
19
19
20 import IPython
20 import IPython
21 from IPython.utils import warn
21 from IPython.utils import warn
22 from IPython.utils.process import system
22 from IPython.utils.process import system
23 from IPython.utils.importstring import import_item
23 from IPython.utils.importstring import import_item
24
24
25 #-----------------------------------------------------------------------------
25 #-----------------------------------------------------------------------------
26 # Code
26 # Code
27 #-----------------------------------------------------------------------------
27 #-----------------------------------------------------------------------------
28
28
29 fs_encoding = sys.getfilesystemencoding()
29 fs_encoding = sys.getfilesystemencoding()
30
30
31 def _cast_unicode(s, enc=None):
31 def _cast_unicode(s, enc=None):
32 """Turn 8-bit strings into unicode."""
32 """Turn 8-bit strings into unicode."""
33 if isinstance(s, bytes):
33 if isinstance(s, bytes):
34 enc = enc or sys.getdefaultencoding()
34 enc = enc or sys.getdefaultencoding()
35 return s.decode(enc)
35 return s.decode(enc)
36 return s
36 return s
37
37
38
38
39 def _get_long_path_name(path):
39 def _get_long_path_name(path):
40 """Dummy no-op."""
40 """Dummy no-op."""
41 return path
41 return path
42
42
43 if sys.platform == 'win32':
43 if sys.platform == 'win32':
44 def _get_long_path_name(path):
44 def _get_long_path_name(path):
45 """Get a long path name (expand ~) on Windows using ctypes.
45 """Get a long path name (expand ~) on Windows using ctypes.
46
46
47 Examples
47 Examples
48 --------
48 --------
49
49
50 >>> get_long_path_name('c:\\docume~1')
50 >>> get_long_path_name('c:\\docume~1')
51 u'c:\\\\Documents and Settings'
51 u'c:\\\\Documents and Settings'
52
52
53 """
53 """
54 try:
54 try:
55 import ctypes
55 import ctypes
56 except ImportError:
56 except ImportError:
57 raise ImportError('you need to have ctypes installed for this to work')
57 raise ImportError('you need to have ctypes installed for this to work')
58 _GetLongPathName = ctypes.windll.kernel32.GetLongPathNameW
58 _GetLongPathName = ctypes.windll.kernel32.GetLongPathNameW
59 _GetLongPathName.argtypes = [ctypes.c_wchar_p, ctypes.c_wchar_p,
59 _GetLongPathName.argtypes = [ctypes.c_wchar_p, ctypes.c_wchar_p,
60 ctypes.c_uint ]
60 ctypes.c_uint ]
61
61
62 buf = ctypes.create_unicode_buffer(260)
62 buf = ctypes.create_unicode_buffer(260)
63 rv = _GetLongPathName(path, buf, 260)
63 rv = _GetLongPathName(path, buf, 260)
64 if rv == 0 or rv > 260:
64 if rv == 0 or rv > 260:
65 return path
65 return path
66 else:
66 else:
67 return buf.value
67 return buf.value
68
68
69
69
70 def get_long_path_name(path):
70 def get_long_path_name(path):
71 """Expand a path into its long form.
71 """Expand a path into its long form.
72
72
73 On Windows this expands any ~ in the paths. On other platforms, it is
73 On Windows this expands any ~ in the paths. On other platforms, it is
74 a null operation.
74 a null operation.
75 """
75 """
76 return _get_long_path_name(path)
76 return _get_long_path_name(path)
77
77
78
78
79 def get_py_filename(name):
79 def get_py_filename(name):
80 """Return a valid python filename in the current directory.
80 """Return a valid python filename in the current directory.
81
81
82 If the given name is not a file, it adds '.py' and searches again.
82 If the given name is not a file, it adds '.py' and searches again.
83 Raises IOError with an informative message if the file isn't found."""
83 Raises IOError with an informative message if the file isn't found."""
84
84
85 name = os.path.expanduser(name)
85 name = os.path.expanduser(name)
86 if not os.path.isfile(name) and not name.endswith('.py'):
86 if not os.path.isfile(name) and not name.endswith('.py'):
87 name += '.py'
87 name += '.py'
88 if os.path.isfile(name):
88 if os.path.isfile(name):
89 return name
89 return name
90 else:
90 else:
91 raise IOError,'File `%s` not found.' % name
91 raise IOError,'File `%s` not found.' % name
92
92
93
93
94 def filefind(filename, path_dirs=None):
94 def filefind(filename, path_dirs=None):
95 """Find a file by looking through a sequence of paths.
95 """Find a file by looking through a sequence of paths.
96
96
97 This iterates through a sequence of paths looking for a file and returns
97 This iterates through a sequence of paths looking for a file and returns
98 the full, absolute path of the first occurence of the file. If no set of
98 the full, absolute path of the first occurence of the file. If no set of
99 path dirs is given, the filename is tested as is, after running through
99 path dirs is given, the filename is tested as is, after running through
100 :func:`expandvars` and :func:`expanduser`. Thus a simple call::
100 :func:`expandvars` and :func:`expanduser`. Thus a simple call::
101
101
102 filefind('myfile.txt')
102 filefind('myfile.txt')
103
103
104 will find the file in the current working dir, but::
104 will find the file in the current working dir, but::
105
105
106 filefind('~/myfile.txt')
106 filefind('~/myfile.txt')
107
107
108 Will find the file in the users home directory. This function does not
108 Will find the file in the users home directory. This function does not
109 automatically try any paths, such as the cwd or the user's home directory.
109 automatically try any paths, such as the cwd or the user's home directory.
110
110
111 Parameters
111 Parameters
112 ----------
112 ----------
113 filename : str
113 filename : str
114 The filename to look for.
114 The filename to look for.
115 path_dirs : str, None or sequence of str
115 path_dirs : str, None or sequence of str
116 The sequence of paths to look for the file in. If None, the filename
116 The sequence of paths to look for the file in. If None, the filename
117 need to be absolute or be in the cwd. If a string, the string is
117 need to be absolute or be in the cwd. If a string, the string is
118 put into a sequence and the searched. If a sequence, walk through
118 put into a sequence and the searched. If a sequence, walk through
119 each element and join with ``filename``, calling :func:`expandvars`
119 each element and join with ``filename``, calling :func:`expandvars`
120 and :func:`expanduser` before testing for existence.
120 and :func:`expanduser` before testing for existence.
121
121
122 Returns
122 Returns
123 -------
123 -------
124 Raises :exc:`IOError` or returns absolute path to file.
124 Raises :exc:`IOError` or returns absolute path to file.
125 """
125 """
126
126
127 # If paths are quoted, abspath gets confused, strip them...
127 # If paths are quoted, abspath gets confused, strip them...
128 filename = filename.strip('"').strip("'")
128 filename = filename.strip('"').strip("'")
129 # If the input is an absolute path, just check it exists
129 # If the input is an absolute path, just check it exists
130 if os.path.isabs(filename) and os.path.isfile(filename):
130 if os.path.isabs(filename) and os.path.isfile(filename):
131 return filename
131 return filename
132
132
133 if path_dirs is None:
133 if path_dirs is None:
134 path_dirs = ("",)
134 path_dirs = ("",)
135 elif isinstance(path_dirs, basestring):
135 elif isinstance(path_dirs, basestring):
136 path_dirs = (path_dirs,)
136 path_dirs = (path_dirs,)
137
137
138 for path in path_dirs:
138 for path in path_dirs:
139 if path == '.': path = os.getcwd()
139 if path == '.': path = os.getcwd()
140 testname = expand_path(os.path.join(path, filename))
140 testname = expand_path(os.path.join(path, filename))
141 if os.path.isfile(testname):
141 if os.path.isfile(testname):
142 return os.path.abspath(testname)
142 return os.path.abspath(testname)
143
143
144 raise IOError("File %r does not exist in any of the search paths: %r" %
144 raise IOError("File %r does not exist in any of the search paths: %r" %
145 (filename, path_dirs) )
145 (filename, path_dirs) )
146
146
147
147
148 class HomeDirError(Exception):
148 class HomeDirError(Exception):
149 pass
149 pass
150
150
151
151
152 def get_home_dir():
152 def get_home_dir():
153 """Return the closest possible equivalent to a 'home' directory.
153 """Return the closest possible equivalent to a 'home' directory.
154
154
155 * On POSIX, we try $HOME.
155 * On POSIX, we try $HOME.
156 * On Windows we try:
156 * On Windows we try:
157 - %HOMESHARE%
157 - %HOMESHARE%
158 - %HOMEDRIVE\%HOMEPATH%
158 - %HOMEDRIVE\%HOMEPATH%
159 - %USERPROFILE%
159 - %USERPROFILE%
160 - Registry hack for My Documents
160 - Registry hack for My Documents
161 - %HOME%: rare, but some people with unix-like setups may have defined it
161 - %HOME%: rare, but some people with unix-like setups may have defined it
162 * On Dos C:\
162 * On Dos C:\
163
163
164 Currently only Posix and NT are implemented, a HomeDirError exception is
164 Currently only Posix and NT are implemented, a HomeDirError exception is
165 raised for all other OSes.
165 raised for all other OSes.
166 """
166 """
167
167
168 isdir = os.path.isdir
168 isdir = os.path.isdir
169 env = os.environ
169 env = os.environ
170
170
171 # first, check py2exe distribution root directory for _ipython.
171 # first, check py2exe distribution root directory for _ipython.
172 # This overrides all. Normally does not exist.
172 # This overrides all. Normally does not exist.
173
173
174 if hasattr(sys, "frozen"): #Is frozen by py2exe
174 if hasattr(sys, "frozen"): #Is frozen by py2exe
175 if '\\library.zip\\' in IPython.__file__.lower():#libraries compressed to zip-file
175 if '\\library.zip\\' in IPython.__file__.lower():#libraries compressed to zip-file
176 root, rest = IPython.__file__.lower().split('library.zip')
176 root, rest = IPython.__file__.lower().split('library.zip')
177 else:
177 else:
178 root=os.path.join(os.path.split(IPython.__file__)[0],"../../")
178 root=os.path.join(os.path.split(IPython.__file__)[0],"../../")
179 root=os.path.abspath(root).rstrip('\\')
179 root=os.path.abspath(root).rstrip('\\')
180 if isdir(os.path.join(root, '_ipython')):
180 if isdir(os.path.join(root, '_ipython')):
181 os.environ["IPYKITROOT"] = root
181 os.environ["IPYKITROOT"] = root
182 return _cast_unicode(root, fs_encoding)
182 return _cast_unicode(root, fs_encoding)
183
183
184 if os.name == 'posix':
184 if os.name == 'posix':
185 # Linux, Unix, AIX, OS X
185 # Linux, Unix, AIX, OS X
186 try:
186 try:
187 homedir = env['HOME']
187 homedir = env['HOME']
188 except KeyError:
188 except KeyError:
189 # Last-ditch attempt at finding a suitable $HOME, on systems where
189 # Last-ditch attempt at finding a suitable $HOME, on systems where
190 # it may not be defined in the environment but the system shell
190 # it may not be defined in the environment but the system shell
191 # still knows it - reported once as:
191 # still knows it - reported once as:
192 # https://github.com/ipython/ipython/issues/154
192 # https://github.com/ipython/ipython/issues/154
193 from subprocess import Popen, PIPE
193 from subprocess import Popen, PIPE
194 homedir = Popen('echo $HOME', shell=True,
194 homedir = Popen('echo $HOME', shell=True,
195 stdout=PIPE).communicate()[0].strip()
195 stdout=PIPE).communicate()[0].strip()
196 if homedir:
196 if homedir:
197 return _cast_unicode(homedir, fs_encoding)
197 return _cast_unicode(homedir, fs_encoding)
198 else:
198 else:
199 raise HomeDirError('Undefined $HOME, IPython cannot proceed.')
199 raise HomeDirError('Undefined $HOME, IPython cannot proceed.')
200 else:
200 else:
201 return _cast_unicode(homedir, fs_encoding)
201 return _cast_unicode(homedir, fs_encoding)
202 elif os.name == 'nt':
202 elif os.name == 'nt':
203 # Now for win9x, XP, Vista, 7?
203 # Now for win9x, XP, Vista, 7?
204 # For some strange reason all of these return 'nt' for os.name.
204 # For some strange reason all of these return 'nt' for os.name.
205 # First look for a network home directory. This will return the UNC
205 # First look for a network home directory. This will return the UNC
206 # path (\\server\\Users\%username%) not the mapped path (Z:\). This
206 # path (\\server\\Users\%username%) not the mapped path (Z:\). This
207 # is needed when running IPython on cluster where all paths have to
207 # is needed when running IPython on cluster where all paths have to
208 # be UNC.
208 # be UNC.
209 try:
209 try:
210 homedir = env['HOMESHARE']
210 homedir = env['HOMESHARE']
211 except KeyError:
211 except KeyError:
212 pass
212 pass
213 else:
213 else:
214 if isdir(homedir):
214 if isdir(homedir):
215 return _cast_unicode(homedir, fs_encoding)
215 return _cast_unicode(homedir, fs_encoding)
216
216
217 # Now look for a local home directory
217 # Now look for a local home directory
218 try:
218 try:
219 homedir = os.path.join(env['HOMEDRIVE'],env['HOMEPATH'])
219 homedir = os.path.join(env['HOMEDRIVE'],env['HOMEPATH'])
220 except KeyError:
220 except KeyError:
221 pass
221 pass
222 else:
222 else:
223 if isdir(homedir):
223 if isdir(homedir):
224 return _cast_unicode(homedir, fs_encoding)
224 return _cast_unicode(homedir, fs_encoding)
225
225
226 # Now the users profile directory
226 # Now the users profile directory
227 try:
227 try:
228 homedir = os.path.join(env['USERPROFILE'])
228 homedir = os.path.join(env['USERPROFILE'])
229 except KeyError:
229 except KeyError:
230 pass
230 pass
231 else:
231 else:
232 if isdir(homedir):
232 if isdir(homedir):
233 return _cast_unicode(homedir, fs_encoding)
233 return _cast_unicode(homedir, fs_encoding)
234
234
235 # Use the registry to get the 'My Documents' folder.
235 # Use the registry to get the 'My Documents' folder.
236 try:
236 try:
237 import _winreg as wreg
237 import _winreg as wreg
238 key = wreg.OpenKey(
238 key = wreg.OpenKey(
239 wreg.HKEY_CURRENT_USER,
239 wreg.HKEY_CURRENT_USER,
240 "Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
240 "Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders"
241 )
241 )
242 homedir = wreg.QueryValueEx(key,'Personal')[0]
242 homedir = wreg.QueryValueEx(key,'Personal')[0]
243 key.Close()
243 key.Close()
244 except:
244 except:
245 pass
245 pass
246 else:
246 else:
247 if isdir(homedir):
247 if isdir(homedir):
248 return _cast_unicode(homedir, fs_encoding)
248 return _cast_unicode(homedir, fs_encoding)
249
249
250 # A user with a lot of unix tools in win32 may have defined $HOME.
250 # A user with a lot of unix tools in win32 may have defined $HOME.
251 # Try this as a last ditch option.
251 # Try this as a last ditch option.
252 try:
252 try:
253 homedir = env['HOME']
253 homedir = env['HOME']
254 except KeyError:
254 except KeyError:
255 pass
255 pass
256 else:
256 else:
257 if isdir(homedir):
257 if isdir(homedir):
258 return _cast_unicode(homedir, fs_encoding)
258 return _cast_unicode(homedir, fs_encoding)
259
259
260 # If all else fails, raise HomeDirError
260 # If all else fails, raise HomeDirError
261 raise HomeDirError('No valid home directory could be found')
261 raise HomeDirError('No valid home directory could be found')
262 elif os.name == 'dos':
262 elif os.name == 'dos':
263 # Desperate, may do absurd things in classic MacOS. May work under DOS.
263 # Desperate, may do absurd things in classic MacOS. May work under DOS.
264 return u'C:\\'
264 return u'C:\\'
265 else:
265 else:
266 raise HomeDirError('No valid home directory could be found for your OS')
266 raise HomeDirError('No valid home directory could be found for your OS')
267
267
268 def get_xdg_dir():
268 def get_xdg_dir():
269 """Return the XDG_CONFIG_HOME, if it is defined and exists, else None.
269 """Return the XDG_CONFIG_HOME, if it is defined and exists, else None.
270
270
271 This is only for posix (Linux,Unix,OS X, etc) systems.
271 This is only for posix (Linux,Unix,OS X, etc) systems.
272 """
272 """
273
273
274 isdir = os.path.isdir
274 isdir = os.path.isdir
275 env = os.environ
275 env = os.environ
276
276
277 if os.name == 'posix':
277 if os.name == 'posix':
278 # Linux, Unix, AIX, OS X
278 # Linux, Unix, AIX, OS X
279 # use ~/.config if not set OR empty
279 # use ~/.config if not set OR empty
280 xdg = env.get("XDG_CONFIG_HOME", None) or os.path.join(get_home_dir(), '.config')
280 xdg = env.get("XDG_CONFIG_HOME", None) or os.path.join(get_home_dir(), '.config')
281 if xdg and isdir(xdg):
281 if xdg and isdir(xdg):
282 return _cast_unicode(xdg, fs_encoding)
282 return _cast_unicode(xdg, fs_encoding)
283
283
284 return None
284 return None
285
285
286
286
287 def get_ipython_dir():
287 def get_ipython_dir():
288 """Get the IPython directory for this platform and user.
288 """Get the IPython directory for this platform and user.
289
289
290 This uses the logic in `get_home_dir` to find the home directory
290 This uses the logic in `get_home_dir` to find the home directory
291 and the adds .ipython to the end of the path.
291 and the adds .ipython to the end of the path.
292 """
292 """
293
293
294 env = os.environ
294 env = os.environ
295 pjoin = os.path.join
295 pjoin = os.path.join
296 exists = os.path.exists
296 exists = os.path.exists
297
297
298 ipdir_def = '.ipython'
298 ipdir_def = '.ipython'
299 xdg_def = 'ipython'
299 xdg_def = 'ipython'
300
300
301 home_dir = get_home_dir()
301 home_dir = get_home_dir()
302 xdg_dir = get_xdg_dir()
302 xdg_dir = get_xdg_dir()
303 # import pdb; pdb.set_trace() # dbg
303 # import pdb; pdb.set_trace() # dbg
304 ipdir = env.get('IPYTHON_DIR', env.get('IPYTHONDIR', None))
304 ipdir = env.get('IPYTHON_DIR', env.get('IPYTHONDIR', None))
305 if ipdir is None:
305 if ipdir is None:
306 # not set explicitly, use XDG_CONFIG_HOME or HOME
306 # not set explicitly, use XDG_CONFIG_HOME or HOME
307 home_ipdir = pjoin(home_dir, ipdir_def)
307 home_ipdir = pjoin(home_dir, ipdir_def)
308 if xdg_dir:
308 if xdg_dir:
309 # use XDG, as long as the user isn't already
309 # use XDG, as long as the user isn't already
310 # using $HOME/.ipython and *not* XDG/ipython
310 # using $HOME/.ipython and *not* XDG/ipython
311
311
312 xdg_ipdir = pjoin(xdg_dir, xdg_def)
312 xdg_ipdir = pjoin(xdg_dir, xdg_def)
313
313
314 if exists(xdg_ipdir) or not exists(home_ipdir):
314 if exists(xdg_ipdir) or not exists(home_ipdir):
315 ipdir = xdg_ipdir
315 ipdir = xdg_ipdir
316
316
317 if ipdir is None:
317 if ipdir is None:
318 # not using XDG
318 # not using XDG
319 ipdir = home_ipdir
319 ipdir = home_ipdir
320
320
321 ipdir = os.path.normpath(os.path.expanduser(ipdir))
321 ipdir = os.path.normpath(os.path.expanduser(ipdir))
322
322
323 return _cast_unicode(ipdir, fs_encoding)
323 return _cast_unicode(ipdir, fs_encoding)
324
324
325
325
326 def get_ipython_package_dir():
326 def get_ipython_package_dir():
327 """Get the base directory where IPython itself is installed."""
327 """Get the base directory where IPython itself is installed."""
328 ipdir = os.path.dirname(IPython.__file__)
328 ipdir = os.path.dirname(IPython.__file__)
329 return _cast_unicode(ipdir, fs_encoding)
329 return _cast_unicode(ipdir, fs_encoding)
330
330
331
331
332 def get_ipython_module_path(module_str):
332 def get_ipython_module_path(module_str):
333 """Find the path to an IPython module in this version of IPython.
333 """Find the path to an IPython module in this version of IPython.
334
334
335 This will always find the version of the module that is in this importable
335 This will always find the version of the module that is in this importable
336 IPython package. This will always return the path to the ``.py``
336 IPython package. This will always return the path to the ``.py``
337 version of the module.
337 version of the module.
338 """
338 """
339 if module_str == 'IPython':
339 if module_str == 'IPython':
340 return os.path.join(get_ipython_package_dir(), '__init__.py')
340 return os.path.join(get_ipython_package_dir(), '__init__.py')
341 mod = import_item(module_str)
341 mod = import_item(module_str)
342 the_path = mod.__file__.replace('.pyc', '.py')
342 the_path = mod.__file__.replace('.pyc', '.py')
343 the_path = the_path.replace('.pyo', '.py')
343 the_path = the_path.replace('.pyo', '.py')
344 return _cast_unicode(the_path, fs_encoding)
344 return _cast_unicode(the_path, fs_encoding)
345
345
346
346
347 def expand_path(s):
347 def expand_path(s):
348 """Expand $VARS and ~names in a string, like a shell
348 """Expand $VARS and ~names in a string, like a shell
349
349
350 :Examples:
350 :Examples:
351
351
352 In [2]: os.environ['FOO']='test'
352 In [2]: os.environ['FOO']='test'
353
353
354 In [3]: expand_path('variable FOO is $FOO')
354 In [3]: expand_path('variable FOO is $FOO')
355 Out[3]: 'variable FOO is test'
355 Out[3]: 'variable FOO is test'
356 """
356 """
357 # This is a pretty subtle hack. When expand user is given a UNC path
357 # This is a pretty subtle hack. When expand user is given a UNC path
358 # on Windows (\\server\share$\%username%), os.path.expandvars, removes
358 # on Windows (\\server\share$\%username%), os.path.expandvars, removes
359 # the $ to get (\\server\share\%username%). I think it considered $
359 # the $ to get (\\server\share\%username%). I think it considered $
360 # alone an empty var. But, we need the $ to remains there (it indicates
360 # alone an empty var. But, we need the $ to remains there (it indicates
361 # a hidden share).
361 # a hidden share).
362 if os.name=='nt':
362 if os.name=='nt':
363 s = s.replace('$\\', 'IPYTHON_TEMP')
363 s = s.replace('$\\', 'IPYTHON_TEMP')
364 s = os.path.expandvars(os.path.expanduser(s))
364 s = os.path.expandvars(os.path.expanduser(s))
365 if os.name=='nt':
365 if os.name=='nt':
366 s = s.replace('IPYTHON_TEMP', '$\\')
366 s = s.replace('IPYTHON_TEMP', '$\\')
367 return s
367 return s
368
368
369
369
370 def target_outdated(target,deps):
370 def target_outdated(target,deps):
371 """Determine whether a target is out of date.
371 """Determine whether a target is out of date.
372
372
373 target_outdated(target,deps) -> 1/0
373 target_outdated(target,deps) -> 1/0
374
374
375 deps: list of filenames which MUST exist.
375 deps: list of filenames which MUST exist.
376 target: single filename which may or may not exist.
376 target: single filename which may or may not exist.
377
377
378 If target doesn't exist or is older than any file listed in deps, return
378 If target doesn't exist or is older than any file listed in deps, return
379 true, otherwise return false.
379 true, otherwise return false.
380 """
380 """
381 try:
381 try:
382 target_time = os.path.getmtime(target)
382 target_time = os.path.getmtime(target)
383 except os.error:
383 except os.error:
384 return 1
384 return 1
385 for dep in deps:
385 for dep in deps:
386 dep_time = os.path.getmtime(dep)
386 dep_time = os.path.getmtime(dep)
387 if dep_time > target_time:
387 if dep_time > target_time:
388 #print "For target",target,"Dep failed:",dep # dbg
388 #print "For target",target,"Dep failed:",dep # dbg
389 #print "times (dep,tar):",dep_time,target_time # dbg
389 #print "times (dep,tar):",dep_time,target_time # dbg
390 return 1
390 return 1
391 return 0
391 return 0
392
392
393
393
394 def target_update(target,deps,cmd):
394 def target_update(target,deps,cmd):
395 """Update a target with a given command given a list of dependencies.
395 """Update a target with a given command given a list of dependencies.
396
396
397 target_update(target,deps,cmd) -> runs cmd if target is outdated.
397 target_update(target,deps,cmd) -> runs cmd if target is outdated.
398
398
399 This is just a wrapper around target_outdated() which calls the given
399 This is just a wrapper around target_outdated() which calls the given
400 command if target is outdated."""
400 command if target is outdated."""
401
401
402 if target_outdated(target,deps):
402 if target_outdated(target,deps):
403 system(cmd)
403 system(cmd)
404
404
405 def check_for_old_config(ipython_dir=None):
405 def check_for_old_config(ipython_dir=None):
406 """Check for old config files, and present a warning if they exist.
406 """Check for old config files, and present a warning if they exist.
407
407
408 A link to the docs of the new config is included in the message.
408 A link to the docs of the new config is included in the message.
409
409
410 This should mitigate confusion with the transition to the new
410 This should mitigate confusion with the transition to the new
411 config system in 0.11.
411 config system in 0.11.
412 """
412 """
413 if ipython_dir is None:
413 if ipython_dir is None:
414 ipython_dir = get_ipython_dir()
414 ipython_dir = get_ipython_dir()
415
415
416 old_configs = ['ipy_user_conf.py', 'ipythonrc']
416 old_configs = ['ipy_user_conf.py', 'ipythonrc', 'ipython_config.py']
417 for cfg in old_configs:
417 for cfg in old_configs:
418 f = os.path.join(ipython_dir, cfg)
418 f = os.path.join(ipython_dir, cfg)
419 if os.path.exists(f):
419 if os.path.exists(f):
420 warn.warn("""Found old IPython config file %r.
420 warn.warn("""Found old IPython config file %r.
421 The IPython configuration system has changed as of 0.11, and this file will be ignored.
421 The IPython configuration system has changed as of 0.11, and this file will be ignored.
422 See http://ipython.github.com/ipython-doc/dev/config for details on the new config system.
422 See http://ipython.github.com/ipython-doc/dev/config for details on the new config system.
423 The current default config file is 'ipython_config.py', where you can suppress these
423 To start configuring IPython, do `ipython profile create`, and edit `ipython_config.py` in
424 warnings with `Global.ignore_old_config = True`."""%f)
424 <ipython_dir>/profile_default."""%f)
425
425
@@ -1,504 +1,504 b''
1 .. _parallel_process:
1 .. _parallel_process:
2
2
3 ===========================================
3 ===========================================
4 Starting the IPython controller and engines
4 Starting the IPython controller and engines
5 ===========================================
5 ===========================================
6
6
7 To use IPython for parallel computing, you need to start one instance of
7 To use IPython for parallel computing, you need to start one instance of
8 the controller and one or more instances of the engine. The controller
8 the controller and one or more instances of the engine. The controller
9 and each engine can run on different machines or on the same machine.
9 and each engine can run on different machines or on the same machine.
10 Because of this, there are many different possibilities.
10 Because of this, there are many different possibilities.
11
11
12 Broadly speaking, there are two ways of going about starting a controller and engines:
12 Broadly speaking, there are two ways of going about starting a controller and engines:
13
13
14 * In an automated manner using the :command:`ipcluster` command.
14 * In an automated manner using the :command:`ipcluster` command.
15 * In a more manual way using the :command:`ipcontroller` and
15 * In a more manual way using the :command:`ipcontroller` and
16 :command:`ipengine` commands.
16 :command:`ipengine` commands.
17
17
18 This document describes both of these methods. We recommend that new users
18 This document describes both of these methods. We recommend that new users
19 start with the :command:`ipcluster` command as it simplifies many common usage
19 start with the :command:`ipcluster` command as it simplifies many common usage
20 cases.
20 cases.
21
21
22 General considerations
22 General considerations
23 ======================
23 ======================
24
24
25 Before delving into the details about how you can start a controller and
25 Before delving into the details about how you can start a controller and
26 engines using the various methods, we outline some of the general issues that
26 engines using the various methods, we outline some of the general issues that
27 come up when starting the controller and engines. These things come up no
27 come up when starting the controller and engines. These things come up no
28 matter which method you use to start your IPython cluster.
28 matter which method you use to start your IPython cluster.
29
29
30 Let's say that you want to start the controller on ``host0`` and engines on
30 Let's say that you want to start the controller on ``host0`` and engines on
31 hosts ``host1``-``hostn``. The following steps are then required:
31 hosts ``host1``-``hostn``. The following steps are then required:
32
32
33 1. Start the controller on ``host0`` by running :command:`ipcontroller` on
33 1. Start the controller on ``host0`` by running :command:`ipcontroller` on
34 ``host0``.
34 ``host0``.
35 2. Move the JSON file (:file:`ipcontroller-engine.json`) created by the
35 2. Move the JSON file (:file:`ipcontroller-engine.json`) created by the
36 controller from ``host0`` to hosts ``host1``-``hostn``.
36 controller from ``host0`` to hosts ``host1``-``hostn``.
37 3. Start the engines on hosts ``host1``-``hostn`` by running
37 3. Start the engines on hosts ``host1``-``hostn`` by running
38 :command:`ipengine`. This command has to be told where the JSON file
38 :command:`ipengine`. This command has to be told where the JSON file
39 (:file:`ipcontroller-engine.json`) is located.
39 (:file:`ipcontroller-engine.json`) is located.
40
40
41 At this point, the controller and engines will be connected. By default, the JSON files
41 At this point, the controller and engines will be connected. By default, the JSON files
42 created by the controller are put into the :file:`~/.ipython/cluster_default/security`
42 created by the controller are put into the :file:`~/.ipython/cluster_default/security`
43 directory. If the engines share a filesystem with the controller, step 2 can be skipped as
43 directory. If the engines share a filesystem with the controller, step 2 can be skipped as
44 the engines will automatically look at that location.
44 the engines will automatically look at that location.
45
45
46 The final step required to actually use the running controller from a client is to move
46 The final step required to actually use the running controller from a client is to move
47 the JSON file :file:`ipcontroller-client.json` from ``host0`` to any host where clients
47 the JSON file :file:`ipcontroller-client.json` from ``host0`` to any host where clients
48 will be run. If these file are put into the :file:`~/.ipython/cluster_default/security`
48 will be run. If these file are put into the :file:`~/.ipython/cluster_default/security`
49 directory of the client's host, they will be found automatically. Otherwise, the full path
49 directory of the client's host, they will be found automatically. Otherwise, the full path
50 to them has to be passed to the client's constructor.
50 to them has to be passed to the client's constructor.
51
51
52 Using :command:`ipcluster`
52 Using :command:`ipcluster`
53 ===========================
53 ===========================
54
54
55 The :command:`ipcluster` command provides a simple way of starting a
55 The :command:`ipcluster` command provides a simple way of starting a
56 controller and engines in the following situations:
56 controller and engines in the following situations:
57
57
58 1. When the controller and engines are all run on localhost. This is useful
58 1. When the controller and engines are all run on localhost. This is useful
59 for testing or running on a multicore computer.
59 for testing or running on a multicore computer.
60 2. When engines are started using the :command:`mpiexec` command that comes
60 2. When engines are started using the :command:`mpiexec` command that comes
61 with most MPI [MPI]_ implementations
61 with most MPI [MPI]_ implementations
62 3. When engines are started using the PBS [PBS]_ batch system
62 3. When engines are started using the PBS [PBS]_ batch system
63 (or other `qsub` systems, such as SGE).
63 (or other `qsub` systems, such as SGE).
64 4. When the controller is started on localhost and the engines are started on
64 4. When the controller is started on localhost and the engines are started on
65 remote nodes using :command:`ssh`.
65 remote nodes using :command:`ssh`.
66 5. When engines are started using the Windows HPC Server batch system.
66 5. When engines are started using the Windows HPC Server batch system.
67
67
68 .. note::
68 .. note::
69
69
70 Currently :command:`ipcluster` requires that the
70 Currently :command:`ipcluster` requires that the
71 :file:`~/.ipython/cluster_<profile>/security` directory live on a shared filesystem that is
71 :file:`~/.ipython/profile_<name>/security` directory live on a shared filesystem that is
72 seen by both the controller and engines. If you don't have a shared file
72 seen by both the controller and engines. If you don't have a shared file
73 system you will need to use :command:`ipcontroller` and
73 system you will need to use :command:`ipcontroller` and
74 :command:`ipengine` directly.
74 :command:`ipengine` directly.
75
75
76 Under the hood, :command:`ipcluster` just uses :command:`ipcontroller`
76 Under the hood, :command:`ipcluster` just uses :command:`ipcontroller`
77 and :command:`ipengine` to perform the steps described above.
77 and :command:`ipengine` to perform the steps described above.
78
78
79 The simplest way to use ipcluster requires no configuration, and will
79 The simplest way to use ipcluster requires no configuration, and will
80 launch a controller and a number of engines on the local machine. For instance,
80 launch a controller and a number of engines on the local machine. For instance,
81 to start one controller and 4 engines on localhost, just do::
81 to start one controller and 4 engines on localhost, just do::
82
82
83 $ ipcluster start n=4
83 $ ipcluster start n=4
84
84
85 To see other command line options, do::
85 To see other command line options, do::
86
86
87 $ ipcluster -h
87 $ ipcluster -h
88
88
89
89
90 Configuring an IPython cluster
90 Configuring an IPython cluster
91 ==============================
91 ==============================
92
92
93 Cluster configurations are stored as `profiles`. You can create a new profile with::
93 Cluster configurations are stored as `profiles`. You can create a new profile with::
94
94
95 $ ipcluster create profile=myprofile
95 $ ipython profile create --cluster profile=myprofile
96
96
97 This will create the directory :file:`IPYTHONDIR/cluster_myprofile`, and populate it
97 This will create the directory :file:`IPYTHONDIR/cluster_myprofile`, and populate it
98 with the default configuration files for the three IPython cluster commands. Once
98 with the default configuration files for the three IPython cluster commands. Once
99 you edit those files, you can continue to call ipcluster/ipcontroller/ipengine
99 you edit those files, you can continue to call ipcluster/ipcontroller/ipengine
100 with no arguments beyond ``p=myprofile``, and any configuration will be maintained.
100 with no arguments beyond ``p=myprofile``, and any configuration will be maintained.
101
101
102 There is no limit to the number of profiles you can have, so you can maintain a profile for each
102 There is no limit to the number of profiles you can have, so you can maintain a profile for each
103 of your common use cases. The default profile will be used whenever the
103 of your common use cases. The default profile will be used whenever the
104 profile argument is not specified, so edit :file:`IPYTHONDIR/cluster_default/*_config.py` to
104 profile argument is not specified, so edit :file:`IPYTHONDIR/cluster_default/*_config.py` to
105 represent your most common use case.
105 represent your most common use case.
106
106
107 The configuration files are loaded with commented-out settings and explanations,
107 The configuration files are loaded with commented-out settings and explanations,
108 which should cover most of the available possibilities.
108 which should cover most of the available possibilities.
109
109
110 Using various batch systems with :command:`ipcluster`
110 Using various batch systems with :command:`ipcluster`
111 ------------------------------------------------------
111 ------------------------------------------------------
112
112
113 :command:`ipcluster` has a notion of Launchers that can start controllers
113 :command:`ipcluster` has a notion of Launchers that can start controllers
114 and engines with various remote execution schemes. Currently supported
114 and engines with various remote execution schemes. Currently supported
115 models include :command:`ssh`, :command`mpiexec`, PBS-style (Torque, SGE),
115 models include :command:`ssh`, :command`mpiexec`, PBS-style (Torque, SGE),
116 and Windows HPC Server.
116 and Windows HPC Server.
117
117
118 .. note::
118 .. note::
119
119
120 The Launchers and configuration are designed in such a way that advanced
120 The Launchers and configuration are designed in such a way that advanced
121 users can subclass and configure them to fit their own system that we
121 users can subclass and configure them to fit their own system that we
122 have not yet supported (such as Condor)
122 have not yet supported (such as Condor)
123
123
124 Using :command:`ipcluster` in mpiexec/mpirun mode
124 Using :command:`ipcluster` in mpiexec/mpirun mode
125 --------------------------------------------------
125 --------------------------------------------------
126
126
127
127
128 The mpiexec/mpirun mode is useful if you:
128 The mpiexec/mpirun mode is useful if you:
129
129
130 1. Have MPI installed.
130 1. Have MPI installed.
131 2. Your systems are configured to use the :command:`mpiexec` or
131 2. Your systems are configured to use the :command:`mpiexec` or
132 :command:`mpirun` commands to start MPI processes.
132 :command:`mpirun` commands to start MPI processes.
133
133
134 If these are satisfied, you can create a new profile::
134 If these are satisfied, you can create a new profile::
135
135
136 $ ipcluster create profile=mpi
136 $ ipython profile create --cluster profile=mpi
137
137
138 and edit the file :file:`IPYTHONDIR/cluster_mpi/ipcluster_config.py`.
138 and edit the file :file:`IPYTHONDIR/cluster_mpi/ipcluster_config.py`.
139
139
140 There, instruct ipcluster to use the MPIExec launchers by adding the lines:
140 There, instruct ipcluster to use the MPIExec launchers by adding the lines:
141
141
142 .. sourcecode:: python
142 .. sourcecode:: python
143
143
144 c.IPClusterEnginesApp.engine_launcher = 'IPython.parallel.apps.launcher.MPIExecEngineSetLauncher'
144 c.IPClusterEnginesApp.engine_launcher = 'IPython.parallel.apps.launcher.MPIExecEngineSetLauncher'
145
145
146 If the default MPI configuration is correct, then you can now start your cluster, with::
146 If the default MPI configuration is correct, then you can now start your cluster, with::
147
147
148 $ ipcluster start n=4 profile=mpi
148 $ ipcluster start n=4 profile=mpi
149
149
150 This does the following:
150 This does the following:
151
151
152 1. Starts the IPython controller on current host.
152 1. Starts the IPython controller on current host.
153 2. Uses :command:`mpiexec` to start 4 engines.
153 2. Uses :command:`mpiexec` to start 4 engines.
154
154
155 If you have a reason to also start the Controller with mpi, you can specify:
155 If you have a reason to also start the Controller with mpi, you can specify:
156
156
157 .. sourcecode:: python
157 .. sourcecode:: python
158
158
159 c.IPClusterStartApp.controller_launcher = 'IPython.parallel.apps.launcher.MPIExecControllerLauncher'
159 c.IPClusterStartApp.controller_launcher = 'IPython.parallel.apps.launcher.MPIExecControllerLauncher'
160
160
161 .. note::
161 .. note::
162
162
163 The Controller *will not* be in the same MPI universe as the engines, so there is not
163 The Controller *will not* be in the same MPI universe as the engines, so there is not
164 much reason to do this unless sysadmins demand it.
164 much reason to do this unless sysadmins demand it.
165
165
166 On newer MPI implementations (such as OpenMPI), this will work even if you
166 On newer MPI implementations (such as OpenMPI), this will work even if you
167 don't make any calls to MPI or call :func:`MPI_Init`. However, older MPI
167 don't make any calls to MPI or call :func:`MPI_Init`. However, older MPI
168 implementations actually require each process to call :func:`MPI_Init` upon
168 implementations actually require each process to call :func:`MPI_Init` upon
169 starting. The easiest way of having this done is to install the mpi4py
169 starting. The easiest way of having this done is to install the mpi4py
170 [mpi4py]_ package and then specify the ``c.MPI.use`` option in :file:`ipengine_config.py`:
170 [mpi4py]_ package and then specify the ``c.MPI.use`` option in :file:`ipengine_config.py`:
171
171
172 .. sourcecode:: python
172 .. sourcecode:: python
173
173
174 c.MPI.use = 'mpi4py'
174 c.MPI.use = 'mpi4py'
175
175
176 Unfortunately, even this won't work for some MPI implementations. If you are
176 Unfortunately, even this won't work for some MPI implementations. If you are
177 having problems with this, you will likely have to use a custom Python
177 having problems with this, you will likely have to use a custom Python
178 executable that itself calls :func:`MPI_Init` at the appropriate time.
178 executable that itself calls :func:`MPI_Init` at the appropriate time.
179 Fortunately, mpi4py comes with such a custom Python executable that is easy to
179 Fortunately, mpi4py comes with such a custom Python executable that is easy to
180 install and use. However, this custom Python executable approach will not work
180 install and use. However, this custom Python executable approach will not work
181 with :command:`ipcluster` currently.
181 with :command:`ipcluster` currently.
182
182
183 More details on using MPI with IPython can be found :ref:`here <parallelmpi>`.
183 More details on using MPI with IPython can be found :ref:`here <parallelmpi>`.
184
184
185
185
186 Using :command:`ipcluster` in PBS mode
186 Using :command:`ipcluster` in PBS mode
187 ---------------------------------------
187 ---------------------------------------
188
188
189 The PBS mode uses the Portable Batch System [PBS]_ to start the engines.
189 The PBS mode uses the Portable Batch System [PBS]_ to start the engines.
190
190
191 As usual, we will start by creating a fresh profile::
191 As usual, we will start by creating a fresh profile::
192
192
193 $ ipcluster create profile=pbs
193 $ ipython profile create --cluster profile=pbs
194
194
195 And in :file:`ipcluster_config.py`, we will select the PBS launchers for the controller
195 And in :file:`ipcluster_config.py`, we will select the PBS launchers for the controller
196 and engines:
196 and engines:
197
197
198 .. sourcecode:: python
198 .. sourcecode:: python
199
199
200 c.Global.controller_launcher = 'IPython.parallel.apps.launcher.PBSControllerLauncher'
200 c.Global.controller_launcher = 'IPython.parallel.apps.launcher.PBSControllerLauncher'
201 c.Global.engine_launcher = 'IPython.parallel.apps.launcher.PBSEngineSetLauncher'
201 c.Global.engine_launcher = 'IPython.parallel.apps.launcher.PBSEngineSetLauncher'
202
202
203 IPython does provide simple default batch templates for PBS and SGE, but you may need
203 IPython does provide simple default batch templates for PBS and SGE, but you may need
204 to specify your own. Here is a sample PBS script template:
204 to specify your own. Here is a sample PBS script template:
205
205
206 .. sourcecode:: bash
206 .. sourcecode:: bash
207
207
208 #PBS -N ipython
208 #PBS -N ipython
209 #PBS -j oe
209 #PBS -j oe
210 #PBS -l walltime=00:10:00
210 #PBS -l walltime=00:10:00
211 #PBS -l nodes={n/4}:ppn=4
211 #PBS -l nodes={n/4}:ppn=4
212 #PBS -q {queue}
212 #PBS -q {queue}
213
213
214 cd $PBS_O_WORKDIR
214 cd $PBS_O_WORKDIR
215 export PATH=$HOME/usr/local/bin
215 export PATH=$HOME/usr/local/bin
216 export PYTHONPATH=$HOME/usr/local/lib/python2.7/site-packages
216 export PYTHONPATH=$HOME/usr/local/lib/python2.7/site-packages
217 /usr/local/bin/mpiexec -n {n} ipengine profile_dir={profile_dir}
217 /usr/local/bin/mpiexec -n {n} ipengine profile_dir={profile_dir}
218
218
219 There are a few important points about this template:
219 There are a few important points about this template:
220
220
221 1. This template will be rendered at runtime using IPython's :class:`EvalFormatter`.
221 1. This template will be rendered at runtime using IPython's :class:`EvalFormatter`.
222 This is simply a subclass of :class:`string.Formatter` that allows simple expressions
222 This is simply a subclass of :class:`string.Formatter` that allows simple expressions
223 on keys.
223 on keys.
224
224
225 2. Instead of putting in the actual number of engines, use the notation
225 2. Instead of putting in the actual number of engines, use the notation
226 ``{n}`` to indicate the number of engines to be started. You can also use
226 ``{n}`` to indicate the number of engines to be started. You can also use
227 expressions like ``{n/4}`` in the template to indicate the number of nodes.
227 expressions like ``{n/4}`` in the template to indicate the number of nodes.
228 There will always be ``{n}`` and ``{profile_dir}`` variables passed to the formatter.
228 There will always be ``{n}`` and ``{profile_dir}`` variables passed to the formatter.
229 These allow the batch system to know how many engines, and where the configuration
229 These allow the batch system to know how many engines, and where the configuration
230 files reside. The same is true for the batch queue, with the template variable
230 files reside. The same is true for the batch queue, with the template variable
231 ``{queue}``.
231 ``{queue}``.
232
232
233 3. Any options to :command:`ipengine` can be given in the batch script
233 3. Any options to :command:`ipengine` can be given in the batch script
234 template, or in :file:`ipengine_config.py`.
234 template, or in :file:`ipengine_config.py`.
235
235
236 4. Depending on the configuration of you system, you may have to set
236 4. Depending on the configuration of you system, you may have to set
237 environment variables in the script template.
237 environment variables in the script template.
238
238
239 The controller template should be similar, but simpler:
239 The controller template should be similar, but simpler:
240
240
241 .. sourcecode:: bash
241 .. sourcecode:: bash
242
242
243 #PBS -N ipython
243 #PBS -N ipython
244 #PBS -j oe
244 #PBS -j oe
245 #PBS -l walltime=00:10:00
245 #PBS -l walltime=00:10:00
246 #PBS -l nodes=1:ppn=4
246 #PBS -l nodes=1:ppn=4
247 #PBS -q {queue}
247 #PBS -q {queue}
248
248
249 cd $PBS_O_WORKDIR
249 cd $PBS_O_WORKDIR
250 export PATH=$HOME/usr/local/bin
250 export PATH=$HOME/usr/local/bin
251 export PYTHONPATH=$HOME/usr/local/lib/python2.7/site-packages
251 export PYTHONPATH=$HOME/usr/local/lib/python2.7/site-packages
252 ipcontroller profile_dir={profile_dir}
252 ipcontroller profile_dir={profile_dir}
253
253
254
254
255 Once you have created these scripts, save them with names like
255 Once you have created these scripts, save them with names like
256 :file:`pbs.engine.template`. Now you can load them into the :file:`ipcluster_config` with:
256 :file:`pbs.engine.template`. Now you can load them into the :file:`ipcluster_config` with:
257
257
258 .. sourcecode:: python
258 .. sourcecode:: python
259
259
260 c.PBSEngineSetLauncher.batch_template_file = "pbs.engine.template"
260 c.PBSEngineSetLauncher.batch_template_file = "pbs.engine.template"
261
261
262 c.PBSControllerLauncher.batch_template_file = "pbs.controller.template"
262 c.PBSControllerLauncher.batch_template_file = "pbs.controller.template"
263
263
264
264
265 Alternately, you can just define the templates as strings inside :file:`ipcluster_config`.
265 Alternately, you can just define the templates as strings inside :file:`ipcluster_config`.
266
266
267 Whether you are using your own templates or our defaults, the extra configurables available are
267 Whether you are using your own templates or our defaults, the extra configurables available are
268 the number of engines to launch (``{n}``, and the batch system queue to which the jobs are to be
268 the number of engines to launch (``{n}``, and the batch system queue to which the jobs are to be
269 submitted (``{queue}``)). These are configurables, and can be specified in
269 submitted (``{queue}``)). These are configurables, and can be specified in
270 :file:`ipcluster_config`:
270 :file:`ipcluster_config`:
271
271
272 .. sourcecode:: python
272 .. sourcecode:: python
273
273
274 c.PBSLauncher.queue = 'veryshort.q'
274 c.PBSLauncher.queue = 'veryshort.q'
275 c.IPClusterEnginesApp.n = 64
275 c.IPClusterEnginesApp.n = 64
276
276
277 Note that assuming you are running PBS on a multi-node cluster, the Controller's default behavior
277 Note that assuming you are running PBS on a multi-node cluster, the Controller's default behavior
278 of listening only on localhost is likely too restrictive. In this case, also assuming the
278 of listening only on localhost is likely too restrictive. In this case, also assuming the
279 nodes are safely behind a firewall, you can simply instruct the Controller to listen for
279 nodes are safely behind a firewall, you can simply instruct the Controller to listen for
280 connections on all its interfaces, by adding in :file:`ipcontroller_config`:
280 connections on all its interfaces, by adding in :file:`ipcontroller_config`:
281
281
282 .. sourcecode:: python
282 .. sourcecode:: python
283
283
284 c.RegistrationFactory.ip = '*'
284 c.RegistrationFactory.ip = '*'
285
285
286 You can now run the cluster with::
286 You can now run the cluster with::
287
287
288 $ ipcluster start profile=pbs n=128
288 $ ipcluster start profile=pbs n=128
289
289
290 Additional configuration options can be found in the PBS section of :file:`ipcluster_config`.
290 Additional configuration options can be found in the PBS section of :file:`ipcluster_config`.
291
291
292 .. note::
292 .. note::
293
293
294 Due to the flexibility of configuration, the PBS launchers work with simple changes
294 Due to the flexibility of configuration, the PBS launchers work with simple changes
295 to the template for other :command:`qsub`-using systems, such as Sun Grid Engine,
295 to the template for other :command:`qsub`-using systems, such as Sun Grid Engine,
296 and with further configuration in similar batch systems like Condor.
296 and with further configuration in similar batch systems like Condor.
297
297
298
298
299 Using :command:`ipcluster` in SSH mode
299 Using :command:`ipcluster` in SSH mode
300 ---------------------------------------
300 ---------------------------------------
301
301
302
302
303 The SSH mode uses :command:`ssh` to execute :command:`ipengine` on remote
303 The SSH mode uses :command:`ssh` to execute :command:`ipengine` on remote
304 nodes and :command:`ipcontroller` can be run remotely as well, or on localhost.
304 nodes and :command:`ipcontroller` can be run remotely as well, or on localhost.
305
305
306 .. note::
306 .. note::
307
307
308 When using this mode it highly recommended that you have set up SSH keys
308 When using this mode it highly recommended that you have set up SSH keys
309 and are using ssh-agent [SSH]_ for password-less logins.
309 and are using ssh-agent [SSH]_ for password-less logins.
310
310
311 As usual, we start by creating a clean profile::
311 As usual, we start by creating a clean profile::
312
312
313 $ ipcluster create profile=ssh
313 $ ipython profile create --cluster profile=ssh
314
314
315 To use this mode, select the SSH launchers in :file:`ipcluster_config.py`:
315 To use this mode, select the SSH launchers in :file:`ipcluster_config.py`:
316
316
317 .. sourcecode:: python
317 .. sourcecode:: python
318
318
319 c.Global.engine_launcher = 'IPython.parallel.apps.launcher.SSHEngineSetLauncher'
319 c.Global.engine_launcher = 'IPython.parallel.apps.launcher.SSHEngineSetLauncher'
320 # and if the Controller is also to be remote:
320 # and if the Controller is also to be remote:
321 c.Global.controller_launcher = 'IPython.parallel.apps.launcher.SSHControllerLauncher'
321 c.Global.controller_launcher = 'IPython.parallel.apps.launcher.SSHControllerLauncher'
322
322
323
323
324 The controller's remote location and configuration can be specified:
324 The controller's remote location and configuration can be specified:
325
325
326 .. sourcecode:: python
326 .. sourcecode:: python
327
327
328 # Set the user and hostname for the controller
328 # Set the user and hostname for the controller
329 # c.SSHControllerLauncher.hostname = 'controller.example.com'
329 # c.SSHControllerLauncher.hostname = 'controller.example.com'
330 # c.SSHControllerLauncher.user = os.environ.get('USER','username')
330 # c.SSHControllerLauncher.user = os.environ.get('USER','username')
331
331
332 # Set the arguments to be passed to ipcontroller
332 # Set the arguments to be passed to ipcontroller
333 # note that remotely launched ipcontroller will not get the contents of
333 # note that remotely launched ipcontroller will not get the contents of
334 # the local ipcontroller_config.py unless it resides on the *remote host*
334 # the local ipcontroller_config.py unless it resides on the *remote host*
335 # in the location specified by the `profile_dir` argument.
335 # in the location specified by the `profile_dir` argument.
336 # c.SSHControllerLauncher.program_args = ['--reuse', 'ip=0.0.0.0', 'profile_dir=/path/to/cd']
336 # c.SSHControllerLauncher.program_args = ['--reuse', 'ip=0.0.0.0', 'profile_dir=/path/to/cd']
337
337
338 .. note::
338 .. note::
339
339
340 SSH mode does not do any file movement, so you will need to distribute configuration
340 SSH mode does not do any file movement, so you will need to distribute configuration
341 files manually. To aid in this, the `reuse_files` flag defaults to True for ssh-launched
341 files manually. To aid in this, the `reuse_files` flag defaults to True for ssh-launched
342 Controllers, so you will only need to do this once, unless you override this flag back
342 Controllers, so you will only need to do this once, unless you override this flag back
343 to False.
343 to False.
344
344
345 Engines are specified in a dictionary, by hostname and the number of engines to be run
345 Engines are specified in a dictionary, by hostname and the number of engines to be run
346 on that host.
346 on that host.
347
347
348 .. sourcecode:: python
348 .. sourcecode:: python
349
349
350 c.SSHEngineSetLauncher.engines = { 'host1.example.com' : 2,
350 c.SSHEngineSetLauncher.engines = { 'host1.example.com' : 2,
351 'host2.example.com' : 5,
351 'host2.example.com' : 5,
352 'host3.example.com' : (1, ['profile_dir=/home/different/location']),
352 'host3.example.com' : (1, ['profile_dir=/home/different/location']),
353 'host4.example.com' : 8 }
353 'host4.example.com' : 8 }
354
354
355 * The `engines` dict, where the keys are the host we want to run engines on and
355 * The `engines` dict, where the keys are the host we want to run engines on and
356 the value is the number of engines to run on that host.
356 the value is the number of engines to run on that host.
357 * on host3, the value is a tuple, where the number of engines is first, and the arguments
357 * on host3, the value is a tuple, where the number of engines is first, and the arguments
358 to be passed to :command:`ipengine` are the second element.
358 to be passed to :command:`ipengine` are the second element.
359
359
360 For engines without explicitly specified arguments, the default arguments are set in
360 For engines without explicitly specified arguments, the default arguments are set in
361 a single location:
361 a single location:
362
362
363 .. sourcecode:: python
363 .. sourcecode:: python
364
364
365 c.SSHEngineSetLauncher.engine_args = ['profile_dir=/path/to/cluster_ssh']
365 c.SSHEngineSetLauncher.engine_args = ['profile_dir=/path/to/cluster_ssh']
366
366
367 Current limitations of the SSH mode of :command:`ipcluster` are:
367 Current limitations of the SSH mode of :command:`ipcluster` are:
368
368
369 * Untested on Windows. Would require a working :command:`ssh` on Windows.
369 * Untested on Windows. Would require a working :command:`ssh` on Windows.
370 Also, we are using shell scripts to setup and execute commands on remote
370 Also, we are using shell scripts to setup and execute commands on remote
371 hosts.
371 hosts.
372 * No file movement -
372 * No file movement -
373
373
374 Using the :command:`ipcontroller` and :command:`ipengine` commands
374 Using the :command:`ipcontroller` and :command:`ipengine` commands
375 ====================================================================
375 ====================================================================
376
376
377 It is also possible to use the :command:`ipcontroller` and :command:`ipengine`
377 It is also possible to use the :command:`ipcontroller` and :command:`ipengine`
378 commands to start your controller and engines. This approach gives you full
378 commands to start your controller and engines. This approach gives you full
379 control over all aspects of the startup process.
379 control over all aspects of the startup process.
380
380
381 Starting the controller and engine on your local machine
381 Starting the controller and engine on your local machine
382 --------------------------------------------------------
382 --------------------------------------------------------
383
383
384 To use :command:`ipcontroller` and :command:`ipengine` to start things on your
384 To use :command:`ipcontroller` and :command:`ipengine` to start things on your
385 local machine, do the following.
385 local machine, do the following.
386
386
387 First start the controller::
387 First start the controller::
388
388
389 $ ipcontroller
389 $ ipcontroller
390
390
391 Next, start however many instances of the engine you want using (repeatedly)
391 Next, start however many instances of the engine you want using (repeatedly)
392 the command::
392 the command::
393
393
394 $ ipengine
394 $ ipengine
395
395
396 The engines should start and automatically connect to the controller using the
396 The engines should start and automatically connect to the controller using the
397 JSON files in :file:`~/.ipython/cluster_default/security`. You are now ready to use the
397 JSON files in :file:`~/.ipython/cluster_default/security`. You are now ready to use the
398 controller and engines from IPython.
398 controller and engines from IPython.
399
399
400 .. warning::
400 .. warning::
401
401
402 The order of the above operations may be important. You *must*
402 The order of the above operations may be important. You *must*
403 start the controller before the engines, unless you are reusing connection
403 start the controller before the engines, unless you are reusing connection
404 information (via `-r`), in which case ordering is not important.
404 information (via `-r`), in which case ordering is not important.
405
405
406 .. note::
406 .. note::
407
407
408 On some platforms (OS X), to put the controller and engine into the
408 On some platforms (OS X), to put the controller and engine into the
409 background you may need to give these commands in the form ``(ipcontroller
409 background you may need to give these commands in the form ``(ipcontroller
410 &)`` and ``(ipengine &)`` (with the parentheses) for them to work
410 &)`` and ``(ipengine &)`` (with the parentheses) for them to work
411 properly.
411 properly.
412
412
413 Starting the controller and engines on different hosts
413 Starting the controller and engines on different hosts
414 ------------------------------------------------------
414 ------------------------------------------------------
415
415
416 When the controller and engines are running on different hosts, things are
416 When the controller and engines are running on different hosts, things are
417 slightly more complicated, but the underlying ideas are the same:
417 slightly more complicated, but the underlying ideas are the same:
418
418
419 1. Start the controller on a host using :command:`ipcontroller`.
419 1. Start the controller on a host using :command:`ipcontroller`.
420 2. Copy :file:`ipcontroller-engine.json` from :file:`~/.ipython/cluster_<profile>/security` on
420 2. Copy :file:`ipcontroller-engine.json` from :file:`~/.ipython/profile_<name>/security` on
421 the controller's host to the host where the engines will run.
421 the controller's host to the host where the engines will run.
422 3. Use :command:`ipengine` on the engine's hosts to start the engines.
422 3. Use :command:`ipengine` on the engine's hosts to start the engines.
423
423
424 The only thing you have to be careful of is to tell :command:`ipengine` where
424 The only thing you have to be careful of is to tell :command:`ipengine` where
425 the :file:`ipcontroller-engine.json` file is located. There are two ways you
425 the :file:`ipcontroller-engine.json` file is located. There are two ways you
426 can do this:
426 can do this:
427
427
428 * Put :file:`ipcontroller-engine.json` in the :file:`~/.ipython/cluster_<profile>/security`
428 * Put :file:`ipcontroller-engine.json` in the :file:`~/.ipython/profile_<name>/security`
429 directory on the engine's host, where it will be found automatically.
429 directory on the engine's host, where it will be found automatically.
430 * Call :command:`ipengine` with the ``--file=full_path_to_the_file``
430 * Call :command:`ipengine` with the ``--file=full_path_to_the_file``
431 flag.
431 flag.
432
432
433 The ``--file`` flag works like this::
433 The ``--file`` flag works like this::
434
434
435 $ ipengine --file=/path/to/my/ipcontroller-engine.json
435 $ ipengine --file=/path/to/my/ipcontroller-engine.json
436
436
437 .. note::
437 .. note::
438
438
439 If the controller's and engine's hosts all have a shared file system
439 If the controller's and engine's hosts all have a shared file system
440 (:file:`~/.ipython/cluster_<profile>/security` is the same on all of them), then things
440 (:file:`~/.ipython/profile_<name>/security` is the same on all of them), then things
441 will just work!
441 will just work!
442
442
443 Make JSON files persistent
443 Make JSON files persistent
444 --------------------------
444 --------------------------
445
445
446 At fist glance it may seem that that managing the JSON files is a bit
446 At fist glance it may seem that that managing the JSON files is a bit
447 annoying. Going back to the house and key analogy, copying the JSON around
447 annoying. Going back to the house and key analogy, copying the JSON around
448 each time you start the controller is like having to make a new key every time
448 each time you start the controller is like having to make a new key every time
449 you want to unlock the door and enter your house. As with your house, you want
449 you want to unlock the door and enter your house. As with your house, you want
450 to be able to create the key (or JSON file) once, and then simply use it at
450 to be able to create the key (or JSON file) once, and then simply use it at
451 any point in the future.
451 any point in the future.
452
452
453 To do this, the only thing you have to do is specify the `--reuse` flag, so that
453 To do this, the only thing you have to do is specify the `--reuse` flag, so that
454 the connection information in the JSON files remains accurate::
454 the connection information in the JSON files remains accurate::
455
455
456 $ ipcontroller --reuse
456 $ ipcontroller --reuse
457
457
458 Then, just copy the JSON files over the first time and you are set. You can
458 Then, just copy the JSON files over the first time and you are set. You can
459 start and stop the controller and engines any many times as you want in the
459 start and stop the controller and engines any many times as you want in the
460 future, just make sure to tell the controller to reuse the file.
460 future, just make sure to tell the controller to reuse the file.
461
461
462 .. note::
462 .. note::
463
463
464 You may ask the question: what ports does the controller listen on if you
464 You may ask the question: what ports does the controller listen on if you
465 don't tell is to use specific ones? The default is to use high random port
465 don't tell is to use specific ones? The default is to use high random port
466 numbers. We do this for two reasons: i) to increase security through
466 numbers. We do this for two reasons: i) to increase security through
467 obscurity and ii) to multiple controllers on a given host to start and
467 obscurity and ii) to multiple controllers on a given host to start and
468 automatically use different ports.
468 automatically use different ports.
469
469
470 Log files
470 Log files
471 ---------
471 ---------
472
472
473 All of the components of IPython have log files associated with them.
473 All of the components of IPython have log files associated with them.
474 These log files can be extremely useful in debugging problems with
474 These log files can be extremely useful in debugging problems with
475 IPython and can be found in the directory :file:`~/.ipython/cluster_<profile>/log`.
475 IPython and can be found in the directory :file:`~/.ipython/profile_<name>/log`.
476 Sending the log files to us will often help us to debug any problems.
476 Sending the log files to us will often help us to debug any problems.
477
477
478
478
479 Configuring `ipcontroller`
479 Configuring `ipcontroller`
480 ---------------------------
480 ---------------------------
481
481
482 Ports and addresses
482 Ports and addresses
483 *******************
483 *******************
484
484
485
485
486 Database Backend
486 Database Backend
487 ****************
487 ****************
488
488
489
489
490 .. seealso::
490 .. seealso::
491
491
492
492
493
493
494 Configuring `ipengine`
494 Configuring `ipengine`
495 -----------------------
495 -----------------------
496
496
497 .. note::
497 .. note::
498
498
499 TODO
499 TODO
500
500
501
501
502
502
503 .. [PBS] Portable Batch System. http://www.openpbs.org/
503 .. [PBS] Portable Batch System. http://www.openpbs.org/
504 .. [SSH] SSH-Agent http://en.wikipedia.org/wiki/ssh-agent
504 .. [SSH] SSH-Agent http://en.wikipedia.org/wiki/ssh-agent
@@ -1,334 +1,334 b''
1 ============================================
1 ============================================
2 Getting started with Windows HPC Server 2008
2 Getting started with Windows HPC Server 2008
3 ============================================
3 ============================================
4
4
5 .. note::
5 .. note::
6
6
7 Not adapted to zmq yet
7 Not adapted to zmq yet
8
8
9 Introduction
9 Introduction
10 ============
10 ============
11
11
12 The Python programming language is an increasingly popular language for
12 The Python programming language is an increasingly popular language for
13 numerical computing. This is due to a unique combination of factors. First,
13 numerical computing. This is due to a unique combination of factors. First,
14 Python is a high-level and *interactive* language that is well matched to
14 Python is a high-level and *interactive* language that is well matched to
15 interactive numerical work. Second, it is easy (often times trivial) to
15 interactive numerical work. Second, it is easy (often times trivial) to
16 integrate legacy C/C++/Fortran code into Python. Third, a large number of
16 integrate legacy C/C++/Fortran code into Python. Third, a large number of
17 high-quality open source projects provide all the needed building blocks for
17 high-quality open source projects provide all the needed building blocks for
18 numerical computing: numerical arrays (NumPy), algorithms (SciPy), 2D/3D
18 numerical computing: numerical arrays (NumPy), algorithms (SciPy), 2D/3D
19 Visualization (Matplotlib, Mayavi, Chaco), Symbolic Mathematics (Sage, Sympy)
19 Visualization (Matplotlib, Mayavi, Chaco), Symbolic Mathematics (Sage, Sympy)
20 and others.
20 and others.
21
21
22 The IPython project is a core part of this open-source toolchain and is
22 The IPython project is a core part of this open-source toolchain and is
23 focused on creating a comprehensive environment for interactive and
23 focused on creating a comprehensive environment for interactive and
24 exploratory computing in the Python programming language. It enables all of
24 exploratory computing in the Python programming language. It enables all of
25 the above tools to be used interactively and consists of two main components:
25 the above tools to be used interactively and consists of two main components:
26
26
27 * An enhanced interactive Python shell with support for interactive plotting
27 * An enhanced interactive Python shell with support for interactive plotting
28 and visualization.
28 and visualization.
29 * An architecture for interactive parallel computing.
29 * An architecture for interactive parallel computing.
30
30
31 With these components, it is possible to perform all aspects of a parallel
31 With these components, it is possible to perform all aspects of a parallel
32 computation interactively. This type of workflow is particularly relevant in
32 computation interactively. This type of workflow is particularly relevant in
33 scientific and numerical computing where algorithms, code and data are
33 scientific and numerical computing where algorithms, code and data are
34 continually evolving as the user/developer explores a problem. The broad
34 continually evolving as the user/developer explores a problem. The broad
35 treads in computing (commodity clusters, multicore, cloud computing, etc.)
35 treads in computing (commodity clusters, multicore, cloud computing, etc.)
36 make these capabilities of IPython particularly relevant.
36 make these capabilities of IPython particularly relevant.
37
37
38 While IPython is a cross platform tool, it has particularly strong support for
38 While IPython is a cross platform tool, it has particularly strong support for
39 Windows based compute clusters running Windows HPC Server 2008. This document
39 Windows based compute clusters running Windows HPC Server 2008. This document
40 describes how to get started with IPython on Windows HPC Server 2008. The
40 describes how to get started with IPython on Windows HPC Server 2008. The
41 content and emphasis here is practical: installing IPython, configuring
41 content and emphasis here is practical: installing IPython, configuring
42 IPython to use the Windows job scheduler and running example parallel programs
42 IPython to use the Windows job scheduler and running example parallel programs
43 interactively. A more complete description of IPython's parallel computing
43 interactively. A more complete description of IPython's parallel computing
44 capabilities can be found in IPython's online documentation
44 capabilities can be found in IPython's online documentation
45 (http://ipython.scipy.org/moin/Documentation).
45 (http://ipython.scipy.org/moin/Documentation).
46
46
47 Setting up your Windows cluster
47 Setting up your Windows cluster
48 ===============================
48 ===============================
49
49
50 This document assumes that you already have a cluster running Windows
50 This document assumes that you already have a cluster running Windows
51 HPC Server 2008. Here is a broad overview of what is involved with setting up
51 HPC Server 2008. Here is a broad overview of what is involved with setting up
52 such a cluster:
52 such a cluster:
53
53
54 1. Install Windows Server 2008 on the head and compute nodes in the cluster.
54 1. Install Windows Server 2008 on the head and compute nodes in the cluster.
55 2. Setup the network configuration on each host. Each host should have a
55 2. Setup the network configuration on each host. Each host should have a
56 static IP address.
56 static IP address.
57 3. On the head node, activate the "Active Directory Domain Services" role
57 3. On the head node, activate the "Active Directory Domain Services" role
58 and make the head node the domain controller.
58 and make the head node the domain controller.
59 4. Join the compute nodes to the newly created Active Directory (AD) domain.
59 4. Join the compute nodes to the newly created Active Directory (AD) domain.
60 5. Setup user accounts in the domain with shared home directories.
60 5. Setup user accounts in the domain with shared home directories.
61 6. Install the HPC Pack 2008 on the head node to create a cluster.
61 6. Install the HPC Pack 2008 on the head node to create a cluster.
62 7. Install the HPC Pack 2008 on the compute nodes.
62 7. Install the HPC Pack 2008 on the compute nodes.
63
63
64 More details about installing and configuring Windows HPC Server 2008 can be
64 More details about installing and configuring Windows HPC Server 2008 can be
65 found on the Windows HPC Home Page (http://www.microsoft.com/hpc). Regardless
65 found on the Windows HPC Home Page (http://www.microsoft.com/hpc). Regardless
66 of what steps you follow to set up your cluster, the remainder of this
66 of what steps you follow to set up your cluster, the remainder of this
67 document will assume that:
67 document will assume that:
68
68
69 * There are domain users that can log on to the AD domain and submit jobs
69 * There are domain users that can log on to the AD domain and submit jobs
70 to the cluster scheduler.
70 to the cluster scheduler.
71 * These domain users have shared home directories. While shared home
71 * These domain users have shared home directories. While shared home
72 directories are not required to use IPython, they make it much easier to
72 directories are not required to use IPython, they make it much easier to
73 use IPython.
73 use IPython.
74
74
75 Installation of IPython and its dependencies
75 Installation of IPython and its dependencies
76 ============================================
76 ============================================
77
77
78 IPython and all of its dependencies are freely available and open source.
78 IPython and all of its dependencies are freely available and open source.
79 These packages provide a powerful and cost-effective approach to numerical and
79 These packages provide a powerful and cost-effective approach to numerical and
80 scientific computing on Windows. The following dependencies are needed to run
80 scientific computing on Windows. The following dependencies are needed to run
81 IPython on Windows:
81 IPython on Windows:
82
82
83 * Python 2.6 or 2.7 (http://www.python.org)
83 * Python 2.6 or 2.7 (http://www.python.org)
84 * pywin32 (http://sourceforge.net/projects/pywin32/)
84 * pywin32 (http://sourceforge.net/projects/pywin32/)
85 * PyReadline (https://launchpad.net/pyreadline)
85 * PyReadline (https://launchpad.net/pyreadline)
86 * pyzmq (http://github.com/zeromq/pyzmq/downloads)
86 * pyzmq (http://github.com/zeromq/pyzmq/downloads)
87 * IPython (http://ipython.scipy.org)
87 * IPython (http://ipython.scipy.org)
88
88
89 In addition, the following dependencies are needed to run the demos described
89 In addition, the following dependencies are needed to run the demos described
90 in this document.
90 in this document.
91
91
92 * NumPy and SciPy (http://www.scipy.org)
92 * NumPy and SciPy (http://www.scipy.org)
93 * Matplotlib (http://matplotlib.sourceforge.net/)
93 * Matplotlib (http://matplotlib.sourceforge.net/)
94
94
95 The easiest way of obtaining these dependencies is through the Enthought
95 The easiest way of obtaining these dependencies is through the Enthought
96 Python Distribution (EPD) (http://www.enthought.com/products/epd.php). EPD is
96 Python Distribution (EPD) (http://www.enthought.com/products/epd.php). EPD is
97 produced by Enthought, Inc. and contains all of these packages and others in a
97 produced by Enthought, Inc. and contains all of these packages and others in a
98 single installer and is available free for academic users. While it is also
98 single installer and is available free for academic users. While it is also
99 possible to download and install each package individually, this is a tedious
99 possible to download and install each package individually, this is a tedious
100 process. Thus, we highly recommend using EPD to install these packages on
100 process. Thus, we highly recommend using EPD to install these packages on
101 Windows.
101 Windows.
102
102
103 Regardless of how you install the dependencies, here are the steps you will
103 Regardless of how you install the dependencies, here are the steps you will
104 need to follow:
104 need to follow:
105
105
106 1. Install all of the packages listed above, either individually or using EPD
106 1. Install all of the packages listed above, either individually or using EPD
107 on the head node, compute nodes and user workstations.
107 on the head node, compute nodes and user workstations.
108
108
109 2. Make sure that :file:`C:\\Python27` and :file:`C:\\Python27\\Scripts` are
109 2. Make sure that :file:`C:\\Python27` and :file:`C:\\Python27\\Scripts` are
110 in the system :envvar:`%PATH%` variable on each node.
110 in the system :envvar:`%PATH%` variable on each node.
111
111
112 3. Install the latest development version of IPython. This can be done by
112 3. Install the latest development version of IPython. This can be done by
113 downloading the the development version from the IPython website
113 downloading the the development version from the IPython website
114 (http://ipython.scipy.org) and following the installation instructions.
114 (http://ipython.scipy.org) and following the installation instructions.
115
115
116 Further details about installing IPython or its dependencies can be found in
116 Further details about installing IPython or its dependencies can be found in
117 the online IPython documentation (http://ipython.scipy.org/moin/Documentation)
117 the online IPython documentation (http://ipython.scipy.org/moin/Documentation)
118 Once you are finished with the installation, you can try IPython out by
118 Once you are finished with the installation, you can try IPython out by
119 opening a Windows Command Prompt and typing ``ipython``. This will
119 opening a Windows Command Prompt and typing ``ipython``. This will
120 start IPython's interactive shell and you should see something like the
120 start IPython's interactive shell and you should see something like the
121 following screenshot:
121 following screenshot:
122
122
123 .. image:: ipython_shell.*
123 .. image:: ipython_shell.*
124
124
125 Starting an IPython cluster
125 Starting an IPython cluster
126 ===========================
126 ===========================
127
127
128 To use IPython's parallel computing capabilities, you will need to start an
128 To use IPython's parallel computing capabilities, you will need to start an
129 IPython cluster. An IPython cluster consists of one controller and multiple
129 IPython cluster. An IPython cluster consists of one controller and multiple
130 engines:
130 engines:
131
131
132 IPython controller
132 IPython controller
133 The IPython controller manages the engines and acts as a gateway between
133 The IPython controller manages the engines and acts as a gateway between
134 the engines and the client, which runs in the user's interactive IPython
134 the engines and the client, which runs in the user's interactive IPython
135 session. The controller is started using the :command:`ipcontroller`
135 session. The controller is started using the :command:`ipcontroller`
136 command.
136 command.
137
137
138 IPython engine
138 IPython engine
139 IPython engines run a user's Python code in parallel on the compute nodes.
139 IPython engines run a user's Python code in parallel on the compute nodes.
140 Engines are starting using the :command:`ipengine` command.
140 Engines are starting using the :command:`ipengine` command.
141
141
142 Once these processes are started, a user can run Python code interactively and
142 Once these processes are started, a user can run Python code interactively and
143 in parallel on the engines from within the IPython shell using an appropriate
143 in parallel on the engines from within the IPython shell using an appropriate
144 client. This includes the ability to interact with, plot and visualize data
144 client. This includes the ability to interact with, plot and visualize data
145 from the engines.
145 from the engines.
146
146
147 IPython has a command line program called :command:`ipcluster` that automates
147 IPython has a command line program called :command:`ipcluster` that automates
148 all aspects of starting the controller and engines on the compute nodes.
148 all aspects of starting the controller and engines on the compute nodes.
149 :command:`ipcluster` has full support for the Windows HPC job scheduler,
149 :command:`ipcluster` has full support for the Windows HPC job scheduler,
150 meaning that :command:`ipcluster` can use this job scheduler to start the
150 meaning that :command:`ipcluster` can use this job scheduler to start the
151 controller and engines. In our experience, the Windows HPC job scheduler is
151 controller and engines. In our experience, the Windows HPC job scheduler is
152 particularly well suited for interactive applications, such as IPython. Once
152 particularly well suited for interactive applications, such as IPython. Once
153 :command:`ipcluster` is configured properly, a user can start an IPython
153 :command:`ipcluster` is configured properly, a user can start an IPython
154 cluster from their local workstation almost instantly, without having to log
154 cluster from their local workstation almost instantly, without having to log
155 on to the head node (as is typically required by Unix based job schedulers).
155 on to the head node (as is typically required by Unix based job schedulers).
156 This enables a user to move seamlessly between serial and parallel
156 This enables a user to move seamlessly between serial and parallel
157 computations.
157 computations.
158
158
159 In this section we show how to use :command:`ipcluster` to start an IPython
159 In this section we show how to use :command:`ipcluster` to start an IPython
160 cluster using the Windows HPC Server 2008 job scheduler. To make sure that
160 cluster using the Windows HPC Server 2008 job scheduler. To make sure that
161 :command:`ipcluster` is installed and working properly, you should first try
161 :command:`ipcluster` is installed and working properly, you should first try
162 to start an IPython cluster on your local host. To do this, open a Windows
162 to start an IPython cluster on your local host. To do this, open a Windows
163 Command Prompt and type the following command::
163 Command Prompt and type the following command::
164
164
165 ipcluster start n=2
165 ipcluster start n=2
166
166
167 You should see a number of messages printed to the screen, ending with
167 You should see a number of messages printed to the screen, ending with
168 "IPython cluster: started". The result should look something like the following
168 "IPython cluster: started". The result should look something like the following
169 screenshot:
169 screenshot:
170
170
171 .. image:: ipcluster_start.*
171 .. image:: ipcluster_start.*
172
172
173 At this point, the controller and two engines are running on your local host.
173 At this point, the controller and two engines are running on your local host.
174 This configuration is useful for testing and for situations where you want to
174 This configuration is useful for testing and for situations where you want to
175 take advantage of multiple cores on your local computer.
175 take advantage of multiple cores on your local computer.
176
176
177 Now that we have confirmed that :command:`ipcluster` is working properly, we
177 Now that we have confirmed that :command:`ipcluster` is working properly, we
178 describe how to configure and run an IPython cluster on an actual compute
178 describe how to configure and run an IPython cluster on an actual compute
179 cluster running Windows HPC Server 2008. Here is an outline of the needed
179 cluster running Windows HPC Server 2008. Here is an outline of the needed
180 steps:
180 steps:
181
181
182 1. Create a cluster profile using: ``ipcluster create profile=mycluster``
182 1. Create a cluster profile using: ``ipython profile create --cluster profile=mycluster``
183
183
184 2. Edit configuration files in the directory :file:`.ipython\\cluster_mycluster`
184 2. Edit configuration files in the directory :file:`.ipython\\cluster_mycluster`
185
185
186 3. Start the cluster using: ``ipcluser start profile=mycluster n=32``
186 3. Start the cluster using: ``ipcluser start profile=mycluster n=32``
187
187
188 Creating a cluster profile
188 Creating a cluster profile
189 --------------------------
189 --------------------------
190
190
191 In most cases, you will have to create a cluster profile to use IPython on a
191 In most cases, you will have to create a cluster profile to use IPython on a
192 cluster. A cluster profile is a name (like "mycluster") that is associated
192 cluster. A cluster profile is a name (like "mycluster") that is associated
193 with a particular cluster configuration. The profile name is used by
193 with a particular cluster configuration. The profile name is used by
194 :command:`ipcluster` when working with the cluster.
194 :command:`ipcluster` when working with the cluster.
195
195
196 Associated with each cluster profile is a cluster directory. This cluster
196 Associated with each cluster profile is a cluster directory. This cluster
197 directory is a specially named directory (typically located in the
197 directory is a specially named directory (typically located in the
198 :file:`.ipython` subdirectory of your home directory) that contains the
198 :file:`.ipython` subdirectory of your home directory) that contains the
199 configuration files for a particular cluster profile, as well as log files and
199 configuration files for a particular cluster profile, as well as log files and
200 security keys. The naming convention for cluster directories is:
200 security keys. The naming convention for cluster directories is:
201 :file:`cluster_<profile name>`. Thus, the cluster directory for a profile named
201 :file:`profile_<profile name>`. Thus, the cluster directory for a profile named
202 "foo" would be :file:`.ipython\\cluster_foo`.
202 "foo" would be :file:`.ipython\\cluster_foo`.
203
203
204 To create a new cluster profile (named "mycluster") and the associated cluster
204 To create a new cluster profile (named "mycluster") and the associated cluster
205 directory, type the following command at the Windows Command Prompt::
205 directory, type the following command at the Windows Command Prompt::
206
206
207 ipcluster create profile=mycluster
207 ipython profile create --cluster profile=mycluster
208
208
209 The output of this command is shown in the screenshot below. Notice how
209 The output of this command is shown in the screenshot below. Notice how
210 :command:`ipcluster` prints out the location of the newly created cluster
210 :command:`ipcluster` prints out the location of the newly created cluster
211 directory.
211 directory.
212
212
213 .. image:: ipcluster_create.*
213 .. image:: ipcluster_create.*
214
214
215 Configuring a cluster profile
215 Configuring a cluster profile
216 -----------------------------
216 -----------------------------
217
217
218 Next, you will need to configure the newly created cluster profile by editing
218 Next, you will need to configure the newly created cluster profile by editing
219 the following configuration files in the cluster directory:
219 the following configuration files in the cluster directory:
220
220
221 * :file:`ipcluster_config.py`
221 * :file:`ipcluster_config.py`
222 * :file:`ipcontroller_config.py`
222 * :file:`ipcontroller_config.py`
223 * :file:`ipengine_config.py`
223 * :file:`ipengine_config.py`
224
224
225 When :command:`ipcluster` is run, these configuration files are used to
225 When :command:`ipcluster` is run, these configuration files are used to
226 determine how the engines and controller will be started. In most cases,
226 determine how the engines and controller will be started. In most cases,
227 you will only have to set a few of the attributes in these files.
227 you will only have to set a few of the attributes in these files.
228
228
229 To configure :command:`ipcluster` to use the Windows HPC job scheduler, you
229 To configure :command:`ipcluster` to use the Windows HPC job scheduler, you
230 will need to edit the following attributes in the file
230 will need to edit the following attributes in the file
231 :file:`ipcluster_config.py`::
231 :file:`ipcluster_config.py`::
232
232
233 # Set these at the top of the file to tell ipcluster to use the
233 # Set these at the top of the file to tell ipcluster to use the
234 # Windows HPC job scheduler.
234 # Windows HPC job scheduler.
235 c.Global.controller_launcher = \
235 c.Global.controller_launcher = \
236 'IPython.parallel.apps.launcher.WindowsHPCControllerLauncher'
236 'IPython.parallel.apps.launcher.WindowsHPCControllerLauncher'
237 c.Global.engine_launcher = \
237 c.Global.engine_launcher = \
238 'IPython.parallel.apps.launcher.WindowsHPCEngineSetLauncher'
238 'IPython.parallel.apps.launcher.WindowsHPCEngineSetLauncher'
239
239
240 # Set these to the host name of the scheduler (head node) of your cluster.
240 # Set these to the host name of the scheduler (head node) of your cluster.
241 c.WindowsHPCControllerLauncher.scheduler = 'HEADNODE'
241 c.WindowsHPCControllerLauncher.scheduler = 'HEADNODE'
242 c.WindowsHPCEngineSetLauncher.scheduler = 'HEADNODE'
242 c.WindowsHPCEngineSetLauncher.scheduler = 'HEADNODE'
243
243
244 There are a number of other configuration attributes that can be set, but
244 There are a number of other configuration attributes that can be set, but
245 in most cases these will be sufficient to get you started.
245 in most cases these will be sufficient to get you started.
246
246
247 .. warning::
247 .. warning::
248 If any of your configuration attributes involve specifying the location
248 If any of your configuration attributes involve specifying the location
249 of shared directories or files, you must make sure that you use UNC paths
249 of shared directories or files, you must make sure that you use UNC paths
250 like :file:`\\\\host\\share`. It is also important that you specify
250 like :file:`\\\\host\\share`. It is also important that you specify
251 these paths using raw Python strings: ``r'\\host\share'`` to make sure
251 these paths using raw Python strings: ``r'\\host\share'`` to make sure
252 that the backslashes are properly escaped.
252 that the backslashes are properly escaped.
253
253
254 Starting the cluster profile
254 Starting the cluster profile
255 ----------------------------
255 ----------------------------
256
256
257 Once a cluster profile has been configured, starting an IPython cluster using
257 Once a cluster profile has been configured, starting an IPython cluster using
258 the profile is simple::
258 the profile is simple::
259
259
260 ipcluster start profile=mycluster n=32
260 ipcluster start profile=mycluster n=32
261
261
262 The ``-n`` option tells :command:`ipcluster` how many engines to start (in
262 The ``-n`` option tells :command:`ipcluster` how many engines to start (in
263 this case 32). Stopping the cluster is as simple as typing Control-C.
263 this case 32). Stopping the cluster is as simple as typing Control-C.
264
264
265 Using the HPC Job Manager
265 Using the HPC Job Manager
266 -------------------------
266 -------------------------
267
267
268 When ``ipcluster start`` is run the first time, :command:`ipcluster` creates
268 When ``ipcluster start`` is run the first time, :command:`ipcluster` creates
269 two XML job description files in the cluster directory:
269 two XML job description files in the cluster directory:
270
270
271 * :file:`ipcontroller_job.xml`
271 * :file:`ipcontroller_job.xml`
272 * :file:`ipengineset_job.xml`
272 * :file:`ipengineset_job.xml`
273
273
274 Once these files have been created, they can be imported into the HPC Job
274 Once these files have been created, they can be imported into the HPC Job
275 Manager application. Then, the controller and engines for that profile can be
275 Manager application. Then, the controller and engines for that profile can be
276 started using the HPC Job Manager directly, without using :command:`ipcluster`.
276 started using the HPC Job Manager directly, without using :command:`ipcluster`.
277 However, anytime the cluster profile is re-configured, ``ipcluster start``
277 However, anytime the cluster profile is re-configured, ``ipcluster start``
278 must be run again to regenerate the XML job description files. The
278 must be run again to regenerate the XML job description files. The
279 following screenshot shows what the HPC Job Manager interface looks like
279 following screenshot shows what the HPC Job Manager interface looks like
280 with a running IPython cluster.
280 with a running IPython cluster.
281
281
282 .. image:: hpc_job_manager.*
282 .. image:: hpc_job_manager.*
283
283
284 Performing a simple interactive parallel computation
284 Performing a simple interactive parallel computation
285 ====================================================
285 ====================================================
286
286
287 Once you have started your IPython cluster, you can start to use it. To do
287 Once you have started your IPython cluster, you can start to use it. To do
288 this, open up a new Windows Command Prompt and start up IPython's interactive
288 this, open up a new Windows Command Prompt and start up IPython's interactive
289 shell by typing::
289 shell by typing::
290
290
291 ipython
291 ipython
292
292
293 Then you can create a :class:`MultiEngineClient` instance for your profile and
293 Then you can create a :class:`MultiEngineClient` instance for your profile and
294 use the resulting instance to do a simple interactive parallel computation. In
294 use the resulting instance to do a simple interactive parallel computation. In
295 the code and screenshot that follows, we take a simple Python function and
295 the code and screenshot that follows, we take a simple Python function and
296 apply it to each element of an array of integers in parallel using the
296 apply it to each element of an array of integers in parallel using the
297 :meth:`MultiEngineClient.map` method:
297 :meth:`MultiEngineClient.map` method:
298
298
299 .. sourcecode:: ipython
299 .. sourcecode:: ipython
300
300
301 In [1]: from IPython.parallel import *
301 In [1]: from IPython.parallel import *
302
302
303 In [2]: c = MultiEngineClient(profile='mycluster')
303 In [2]: c = MultiEngineClient(profile='mycluster')
304
304
305 In [3]: mec.get_ids()
305 In [3]: mec.get_ids()
306 Out[3]: [0, 1, 2, 3, 4, 5, 67, 8, 9, 10, 11, 12, 13, 14]
306 Out[3]: [0, 1, 2, 3, 4, 5, 67, 8, 9, 10, 11, 12, 13, 14]
307
307
308 In [4]: def f(x):
308 In [4]: def f(x):
309 ...: return x**10
309 ...: return x**10
310
310
311 In [5]: mec.map(f, range(15)) # f is applied in parallel
311 In [5]: mec.map(f, range(15)) # f is applied in parallel
312 Out[5]:
312 Out[5]:
313 [0,
313 [0,
314 1,
314 1,
315 1024,
315 1024,
316 59049,
316 59049,
317 1048576,
317 1048576,
318 9765625,
318 9765625,
319 60466176,
319 60466176,
320 282475249,
320 282475249,
321 1073741824,
321 1073741824,
322 3486784401L,
322 3486784401L,
323 10000000000L,
323 10000000000L,
324 25937424601L,
324 25937424601L,
325 61917364224L,
325 61917364224L,
326 137858491849L,
326 137858491849L,
327 289254654976L]
327 289254654976L]
328
328
329 The :meth:`map` method has the same signature as Python's builtin :func:`map`
329 The :meth:`map` method has the same signature as Python's builtin :func:`map`
330 function, but runs the calculation in parallel. More involved examples of using
330 function, but runs the calculation in parallel. More involved examples of using
331 :class:`MultiEngineClient` are provided in the examples that follow.
331 :class:`MultiEngineClient` are provided in the examples that follow.
332
332
333 .. image:: mec_simple.*
333 .. image:: mec_simple.*
334
334
General Comments 0
You need to be logged in to leave comments. Login now