storemagic.py
243 lines
| 8.1 KiB
| text/x-python
|
PythonLexer
vivainio
|
r166 | # -*- coding: utf-8 -*- | ||
""" | ||||
%store magic for lightweight persistence. | ||||
Thomas Kluyver
|
r5543 | Stores variables, aliases and macros in IPython's database. | ||
Fernando Perez
|
r5379 | |||
Thomas Kluyver
|
r5543 | To automatically restore stored variables at startup, add this to your | ||
:file:`ipython_config.py` file:: | ||||
Fernando Perez
|
r5379 | |||
Thomas Kluyver
|
r5543 | c.StoreMagic.autorestore = True | ||
vivainio
|
r166 | """ | ||
Thomas Kluyver
|
r13348 | from __future__ import print_function | ||
Fernando Perez
|
r7001 | #----------------------------------------------------------------------------- | ||
# Copyright (c) 2012, The IPython Development Team. | ||||
# | ||||
# Distributed under the terms of the Modified BSD License. | ||||
# | ||||
# The full license is in the file COPYING.txt, distributed with this software. | ||||
#----------------------------------------------------------------------------- | ||||
#----------------------------------------------------------------------------- | ||||
# Imports | ||||
#----------------------------------------------------------------------------- | ||||
# Stdlib | ||||
Fernando Perez
|
r6958 | import inspect, os, sys, textwrap | ||
Fernando Perez
|
r7001 | # Our own | ||
Fernando Perez
|
r6958 | from IPython.core.error import UsageError | ||
Fernando Perez
|
r6973 | from IPython.core.magic import Magics, magics_class, line_magic | ||
Thomas Kluyver
|
r5544 | from IPython.testing.skipdoctest import skip_doctest | ||
Thomas Kluyver
|
r12331 | from IPython.utils.traitlets import Bool | ||
Thomas Kluyver
|
r13353 | from IPython.utils.py3compat import string_types | ||
vivainio
|
r165 | |||
Fernando Perez
|
r7001 | #----------------------------------------------------------------------------- | ||
# Functions and classes | ||||
#----------------------------------------------------------------------------- | ||||
Michael Shuffett
|
r10343 | |||
Thomas Kluyver
|
r5378 | def restore_aliases(ip): | ||
fperez
|
r284 | staliases = ip.db.get('stored_aliases', {}) | ||
vivainio
|
r166 | for k,v in staliases.items(): | ||
#print "restore alias",k,v # dbg | ||||
vivainio
|
r783 | #self.alias_table[k] = v | ||
Thomas Kluyver
|
r5378 | ip.alias_manager.define_alias(k,v) | ||
vivainio
|
r166 | |||
vivainio
|
r165 | def refresh_variables(ip): | ||
fperez
|
r284 | db = ip.db | ||
vivainio
|
r165 | for key in db.keys('autorestore/*'): | ||
# strip autorestore | ||||
justkey = os.path.basename(key) | ||||
try: | ||||
obj = db[key] | ||||
except KeyError: | ||||
Thomas Kluyver
|
r13348 | print("Unable to restore variable '%s', ignoring (use %%store -d to forget!)" % justkey) | ||
print("The error was:", sys.exc_info()[0]) | ||||
vivainio
|
r165 | else: | ||
#print "restored",justkey,"=",obj #dbg | ||||
fperez
|
r284 | ip.user_ns[justkey] = obj | ||
Bernardo B. Marques
|
r4872 | |||
vivainio
|
r165 | |||
vivainio
|
r713 | def restore_dhist(ip): | ||
Thomas Kluyver
|
r5378 | ip.user_ns['_dh'] = ip.db.get('dhist',[]) | ||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | |||
Thomas Kluyver
|
r5378 | def restore_data(ip): | ||
vivainio
|
r165 | refresh_variables(ip) | ||
Thomas Kluyver
|
r5378 | restore_aliases(ip) | ||
restore_dhist(ip) | ||||
vivainio
|
r165 | |||
Fernando Perez
|
r6935 | |||
Fernando Perez
|
r6973 | @magics_class | ||
Matthias BUSSONNIER
|
r13237 | class StoreMagics(Magics): | ||
vivainio
|
r165 | """Lightweight persistence for python variables. | ||
Fernando Perez
|
r6935 | Provides the %store magic.""" | ||
Thomas Kluyver
|
r12331 | |||
autorestore = Bool(False, config=True, help= | ||||
"""If True, any %store-d variables will be automatically restored | ||||
when IPython starts. | ||||
""" | ||||
) | ||||
def __init__(self, shell): | ||||
Matthias BUSSONNIER
|
r13237 | super(StoreMagics, self).__init__(shell=shell) | ||
Thomas Kluyver
|
r12331 | self.shell.configurables.append(self) | ||
if self.autorestore: | ||||
restore_data(self.shell) | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | @skip_doctest | ||
@line_magic | ||||
def store(self, parameter_s=''): | ||||
"""Lightweight persistence for python variables. | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | Example:: | ||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | In [1]: l = ['hello',10,'world'] | ||
In [2]: %store l | ||||
In [3]: exit | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | (IPython session is closed and started again...) | ||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | ville@badger:~$ ipython | ||
In [1]: l | ||||
MinRK
|
r11155 | NameError: name 'l' is not defined | ||
In [2]: %store -r | ||||
In [3]: l | ||||
Out[3]: ['hello', 10, 'world'] | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | Usage: | ||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | * ``%store`` - Show list of all variables and their current | ||
values | ||||
* ``%store spam`` - Store the *current* value of the variable spam | ||||
to disk | ||||
* ``%store -d spam`` - Remove the variable and its value from storage | ||||
* ``%store -z`` - Remove all variables from storage | ||||
MinRK
|
r11155 | * ``%store -r`` - Refresh all variables from store (overwrite | ||
Fernando Perez
|
r6935 | current vals) | ||
Michael Shuffett
|
r10344 | * ``%store -r spam bar`` - Refresh specified variables from store | ||
(delete current val) | ||||
Fernando Perez
|
r6935 | * ``%store foo >a.txt`` - Store value of foo to new file a.txt | ||
* ``%store foo >>a.txt`` - Append value of foo to file a.txt | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | It should be noted that if you change the value of a variable, you | ||
need to %store it again if you want to persist the new value. | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | Note also that the variables will need to be pickleable; most basic | ||
python types can be safely %store'd. | ||||
vivainio
|
r165 | |||
Fernando Perez
|
r6935 | Also aliases can be %store'd across sessions. | ||
""" | ||||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | opts,argsl = self.parse_options(parameter_s,'drz',mode='string') | ||
args = argsl.split(None,1) | ||||
ip = self.shell | ||||
db = ip.db | ||||
# delete | ||||
Bradley M. Froehle
|
r7859 | if 'd' in opts: | ||
Fernando Perez
|
r6935 | try: | ||
todel = args[0] | ||||
except IndexError: | ||||
raise UsageError('You must provide the variable to forget') | ||||
vivainio
|
r165 | else: | ||
Fernando Perez
|
r6935 | try: | ||
del db['autorestore/' + todel] | ||||
except: | ||||
raise UsageError("Can't delete variable '%s'" % todel) | ||||
# reset | ||||
Bradley M. Froehle
|
r7859 | elif 'z' in opts: | ||
Fernando Perez
|
r6935 | for k in db.keys('autorestore/*'): | ||
del db[k] | ||||
Bradley M. Froehle
|
r7859 | elif 'r' in opts: | ||
Michael Shuffett
|
r10343 | if args: | ||
Michael Shuffett
|
r10344 | for arg in args: | ||
try: | ||||
obj = db['autorestore/' + arg] | ||||
except KeyError: | ||||
Thomas Kluyver
|
r13348 | print("no stored variable %s" % arg) | ||
Michael Shuffett
|
r10344 | else: | ||
ip.user_ns[arg] = obj | ||||
Michael Shuffett
|
r10343 | else: | ||
Thomas Kluyver
|
r11107 | restore_data(ip) | ||
Fernando Perez
|
r6935 | |||
# run without arguments -> list variables & values | ||||
elif not args: | ||||
Cavendish McKay
|
r8002 | vars = db.keys('autorestore/*') | ||
Fernando Perez
|
r6935 | vars.sort() | ||
if vars: | ||||
Fernando Perez
|
r6986 | size = max(map(len, vars)) | ||
vivainio
|
r243 | else: | ||
Fernando Perez
|
r6935 | size = 0 | ||
Thomas Kluyver
|
r13348 | print('Stored variables and their in-db values:') | ||
Fernando Perez
|
r6935 | fmt = '%-'+str(size)+'s -> %s' | ||
get = db.get | ||||
for var in vars: | ||||
justkey = os.path.basename(var) | ||||
# print 30 first characters from every var | ||||
Thomas Kluyver
|
r13348 | print(fmt % (justkey, repr(get(var, '<unavailable>'))[:50])) | ||
Bernardo B. Marques
|
r4872 | |||
Fernando Perez
|
r6935 | # default action - store the variable | ||
vivainio
|
r166 | else: | ||
Fernando Perez
|
r6935 | # %store foo >file.txt or >>file.txt | ||
if len(args) > 1 and args[1].startswith('>'): | ||||
fnam = os.path.expanduser(args[1].lstrip('>').lstrip()) | ||||
if args[1].startswith('>>'): | ||||
Fernando Perez
|
r6986 | fil = open(fnam, 'a') | ||
Fernando Perez
|
r6935 | else: | ||
Fernando Perez
|
r6986 | fil = open(fnam, 'w') | ||
Fernando Perez
|
r6935 | obj = ip.ev(args[0]) | ||
Thomas Kluyver
|
r13348 | print("Writing '%s' (%s) to file '%s'." % (args[0], | ||
obj.__class__.__name__, fnam)) | ||||
Fernando Perez
|
r6935 | |||
Thomas Kluyver
|
r13353 | if not isinstance (obj, string_types): | ||
Fernando Perez
|
r6935 | from pprint import pprint | ||
Fernando Perez
|
r6986 | pprint(obj, fil) | ||
Fernando Perez
|
r6935 | else: | ||
fil.write(obj) | ||||
if not obj.endswith('\n'): | ||||
fil.write('\n') | ||||
fil.close() | ||||
vivainio
|
r166 | return | ||
Fernando Perez
|
r6935 | |||
# %store foo | ||||
try: | ||||
obj = ip.user_ns[args[0]] | ||||
except KeyError: | ||||
# it might be an alias | ||||
Thomas Kluyver
|
r12596 | name = args[0] | ||
try: | ||||
cmd = ip.alias_manager.retrieve_alias(name) | ||||
except ValueError: | ||||
raise UsageError("Unknown variable '%s'" % name) | ||||
staliases = db.get('stored_aliases',{}) | ||||
staliases[name] = cmd | ||||
db['stored_aliases'] = staliases | ||||
Thomas Kluyver
|
r13348 | print("Alias stored: %s (%s)" % (name, cmd)) | ||
Thomas Kluyver
|
r12596 | return | ||
Fernando Perez
|
r6935 | |||
else: | ||||
Thomas Kluyver
|
r12563 | modname = getattr(inspect.getmodule(obj), '__name__', '') | ||
if modname == '__main__': | ||||
Thomas Kluyver
|
r13348 | print(textwrap.dedent("""\ | ||
Fernando Perez
|
r6935 | Warning:%s is %s | ||
Proper storage of interactively declared classes (or instances | ||||
of those classes) is not possible! Only instances | ||||
of classes in real modules on file system can be %%store'd. | ||||
Thomas Kluyver
|
r13348 | """ % (args[0], obj) )) | ||
Fernando Perez
|
r6935 | return | ||
#pickled = pickle.dumps(obj) | ||||
Cavendish McKay
|
r8002 | db[ 'autorestore/' + args[0] ] = obj | ||
Thomas Kluyver
|
r13348 | print("Stored '%s' (%s)" % (args[0], obj.__class__.__name__)) | ||
vivainio
|
r165 | |||
Thomas Kluyver
|
r5541 | |||
Thomas Kluyver
|
r5378 | def load_ipython_extension(ip): | ||
Thomas Kluyver
|
r5541 | """Load the extension in IPython.""" | ||
Thomas Kluyver
|
r8552 | ip.register_magics(StoreMagics) | ||
Thomas Kluyver
|
r12331 | |||