notebook/IPython/html/widgets/widget.py

448 lines
15 KiB
Python
Raw Normal View History

2014-01-14 17:43:46 +08:00
"""Base Widget class. Allows user to create widgets in the back-end that render
in the IPython notebook front-end.
2013-10-26 02:31:48 +08:00
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2013, 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
#-----------------------------------------------------------------------------
from contextlib import contextmanager
2013-11-07 13:59:58 +08:00
import inspect
2013-11-08 23:26:36 +08:00
import types
2013-10-10 23:23:19 +08:00
from IPython.kernel.comm import Comm
from IPython.config import LoggingConfigurable
2014-01-14 09:45:37 +08:00
from IPython.utils.traitlets import Unicode, Dict, Instance, Bool
from IPython.utils.py3compat import string_types
2013-10-26 02:31:48 +08:00
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
2014-01-07 20:04:24 +08:00
class Widget(LoggingConfigurable):
2013-10-10 23:23:19 +08:00
2013-12-21 07:24:14 +08:00
# Shared declarations (Class level)
widget_construction_callback = None
2014-01-14 17:43:46 +08:00
widgets = {}
2013-12-21 07:24:14 +08:00
def on_widget_constructed(callback):
"""Class method, registers a callback to be called when a widget is
constructed. The callback must have the following signature:
callback(widget)"""
2014-01-07 20:04:24 +08:00
Widget.widget_construction_callback = callback
2013-12-21 07:24:14 +08:00
def _call_widget_constructed(widget):
2013-12-21 07:24:14 +08:00
"""Class method, called when a widget is constructed."""
2014-01-07 20:04:24 +08:00
if Widget.widget_construction_callback is not None and callable(Widget.widget_construction_callback):
Widget.widget_construction_callback(widget)
2013-12-21 07:24:14 +08:00
2013-12-21 07:24:14 +08:00
# Public declarations (Instance level)
2014-01-14 23:28:01 +08:00
model_name = Unicode('WidgetModel', help="""Name of the backbone model
2014-01-14 17:43:46 +08:00
registered in the front-end to create and sync this widget with.""")
view_name = Unicode(help="""Default view registered in the front-end
2014-01-14 23:15:19 +08:00
to use to represent the widget.""", sync=True)
2014-01-14 17:43:46 +08:00
@contextmanager
def property_lock(self, key, value):
"""Lock a property-value pair.
NOTE: This, in addition to the single lock for all state changes, is
flawed. In the future we may want to look into buffering state changes
back to the front-end."""
self._property_lock = (key, value)
try:
yield
finally:
self._property_lock = (None, None)
def should_send_property(self, key, value):
"""Check the property lock (property_lock)"""
return key != self._property_lock[0] or \
value != self._property_lock[1]
2014-01-14 23:15:19 +08:00
@property
def keys(self):
if self._keys is None:
self._keys = []
for trait_name in self.trait_names():
if self.trait_metadata(trait_name, 'sync'):
self._keys.append(trait_name)
return self._keys
2013-10-26 02:31:48 +08:00
# Private/protected declarations
_comm = Instance('IPython.kernel.comm.Comm')
2013-10-10 23:23:19 +08:00
def __init__(self, **kwargs):
2013-10-26 02:31:48 +08:00
"""Public constructor
"""
self.closed = False
2014-01-14 17:43:46 +08:00
self._property_lock = (None, None)
2013-11-07 01:41:26 +08:00
self._display_callbacks = []
2013-11-19 05:07:32 +08:00
self._msg_callbacks = []
2014-01-14 23:15:19 +08:00
self._keys = None
2014-01-07 20:04:24 +08:00
super(Widget, self).__init__(**kwargs)
2013-12-21 07:24:14 +08:00
self.on_trait_change(self._handle_property_changed, self.keys)
Widget._call_widget_constructed(self)
2013-10-10 23:23:19 +08:00
def __del__(self):
2013-10-26 02:31:48 +08:00
"""Object disposal"""
2013-10-10 23:23:19 +08:00
self.close()
2013-10-10 23:23:19 +08:00
def close(self):
2013-10-26 02:31:48 +08:00
"""Close method. Closes the widget which closes the underlying comm.
When the comm is closed, all of the widget views are automatically
2014-01-14 17:43:46 +08:00
removed from the front-end."""
if not self.closed:
2014-01-14 17:43:46 +08:00
self._comm.close()
self._close()
def _close(self):
"""Unsafe close"""
del Widget.widgets[self.model_id]
self._comm = None
self.closed = True
@property
def comm(self):
if self._comm is None:
2014-01-14 17:43:46 +08:00
# Create a comm.
self._comm = Comm(target_name=self.model_name)
self._comm.on_msg(self._handle_msg)
self._comm.on_close(self._close)
Widget.widgets[self.model_id] = self
# first update
self.send_state()
return self._comm
@property
def model_id(self):
2014-01-04 05:53:35 +08:00
return self.comm.comm_id
2013-10-26 02:31:48 +08:00
# Event handlers
2013-10-10 23:23:19 +08:00
def _handle_msg(self, msg):
2014-01-14 17:43:46 +08:00
"""Called when a msg is received from the front-end"""
2013-11-19 05:07:32 +08:00
data = msg['content']['data']
method = data['method']
2014-01-14 17:43:46 +08:00
if not method in ['backbone', 'custom']:
self.log.error('Unknown front-end to back-end widget msg with method "%s"' % method)
2014-01-07 19:53:23 +08:00
# Handle backbone sync methods CREATE, PATCH, and UPDATE all in one.
if method == 'backbone' and 'sync_data' in data:
sync_data = data['sync_data']
2014-01-14 10:07:30 +08:00
self._handle_receive_state(sync_data) # handles all methods
2013-11-19 05:07:32 +08:00
# Handle a custom msg from the front-end
elif method == 'custom':
if 'custom_content' in data:
self._handle_custom_msg(data['custom_content'])
2013-11-19 05:07:32 +08:00
2014-01-14 10:07:30 +08:00
def _handle_receive_state(self, sync_data):
2014-01-14 17:43:46 +08:00
"""Called when a state is received from the front-end."""
for name in self.keys:
if name in sync_data:
value = self._unpack_widgets(sync_data[name])
2014-01-14 17:43:46 +08:00
with self.property_lock(name, value):
setattr(self, name, value)
2013-11-19 05:07:32 +08:00
def _handle_custom_msg(self, content):
2014-01-14 10:07:30 +08:00
"""Called when a custom msg is received."""
2013-11-19 05:07:32 +08:00
for handler in self._msg_callbacks:
2014-01-14 17:43:46 +08:00
handler(self, content)
2013-10-10 23:23:19 +08:00
def _handle_property_changed(self, name, old, new):
"""Called when a property has been changed."""
# Make sure this isn't information that the front-end just sent us.
if self.should_send_property(name, new):
2014-01-14 17:43:46 +08:00
# Send new state to front-end
2013-10-23 01:30:30 +08:00
self.send_state(key=name)
def _handle_displayed(self, **kwargs):
"""Called when a view has been displayed for this widget instance"""
2013-11-19 05:07:32 +08:00
for handler in self._display_callbacks:
2014-01-14 17:43:46 +08:00
handler(self, **kwargs)
2013-10-26 02:31:48 +08:00
# Public methods
def send_state(self, key=None):
2014-01-14 17:43:46 +08:00
"""Sends the widget state, or a piece of it, to the front-end.
2013-10-26 02:31:48 +08:00
Parameters
----------
key : unicode (optional)
2014-01-14 17:43:46 +08:00
A single property's name to sync with the front-end.
2013-10-26 02:31:48 +08:00
"""
self._send({"method": "update",
2014-01-03 07:06:18 +08:00
"state": self.get_state()})
2013-10-26 02:31:48 +08:00
def get_state(self, key=None):
"""Gets the widget state, or a piece of it.
2013-10-26 02:31:48 +08:00
Parameters
----------
key : unicode (optional)
A single property's name to get.
2013-10-26 02:31:48 +08:00
"""
2014-01-14 17:43:46 +08:00
keys = self.keys if key is None else [key]
return {k: self._pack_widgets(getattr(self, k)) for k in keys}
2013-10-26 02:31:48 +08:00
def _pack_widgets(self, values):
"""This function recursively converts all widget instances to model id
strings.
Children widgets will be stored and transmitted to the front-end by
their model ids."""
if isinstance(values, dict):
new_dict = {}
2014-01-14 17:43:46 +08:00
for key, value in values.items():
new_dict[key] = self._pack_widgets(value)
return new_dict
elif isinstance(values, list):
new_list = []
for value in values:
new_list.append(self._pack_widgets(value))
return new_list
elif isinstance(values, Widget):
return values.model_id
else:
return values
def _unpack_widgets(self, values):
"""This function recursively converts all model id strings to widget
instances.
Children widgets will be stored and transmitted to the front-end by
their model ids."""
if isinstance(values, dict):
new_dict = {}
2014-01-14 17:43:46 +08:00
for key, values in values.items():
new_dict[key] = self._unpack_widgets(values[key])
return new_dict
elif isinstance(values, list):
new_list = []
for value in values:
new_list.append(self._unpack_widgets(value))
return new_list
elif isinstance(values, string_types):
2014-01-15 02:56:16 +08:00
if values in Widget.widgets:
return Widget.widgets[values]
2014-01-14 17:43:46 +08:00
else:
return values
else:
return values
2013-11-19 05:07:32 +08:00
def send(self, content):
"""Sends a custom msg to the widget model in the front-end.
Parameters
----------
content : dict
Content of the message to send.
"""
2014-01-14 17:43:46 +08:00
self._send({"method": "custom", "custom_content": content})
2013-11-19 05:07:32 +08:00
2014-01-14 17:43:46 +08:00
def on_msg(self, callback, remove=False):
"""Register or unregister a callback for when a custom msg is recieved
from the front-end.
2013-11-19 05:07:32 +08:00
Parameters
----------
callback: method handler
Can have a signature of:
- callback(content)
- callback(sender, content)
remove: bool
True if the callback should be unregistered."""
if remove and callback in self._msg_callbacks:
self._msg_callbacks.remove(callback)
elif not remove and not callback in self._msg_callbacks:
2014-01-14 17:43:46 +08:00
if callable(callback):
argspec = inspect.getargspec(callback)
nargs = len(argspec[0])
# Bound methods have an additional 'self' argument
if isinstance(callback, types.MethodType):
nargs -= 1
# Call the callback
if nargs == 1:
self._msg_callbacks.append(lambda sender, content: callback(content))
elif nargs == 2:
self._msg_callbacks.append(callback)
else:
raise TypeError('Widget msg callback must ' \
'accept 1 or 2 arguments, not %d.' % nargs)
else:
raise Exception('Callback must be callable.')
2013-11-19 05:07:32 +08:00
2013-11-07 01:41:26 +08:00
def on_displayed(self, callback, remove=False):
"""Register or unregister a callback to be called when the widget has
been displayed.
2013-11-07 01:41:26 +08:00
Parameters
----------
2013-11-07 01:41:26 +08:00
callback: method handler
Can have a signature of:
- callback(sender, **kwargs)
kwargs from display call passed through without modification.
2013-11-07 01:41:26 +08:00
remove: bool
True if the callback should be unregistered."""
2013-11-19 05:07:32 +08:00
if remove and callback in self._display_callbacks:
2013-11-07 01:41:26 +08:00
self._display_callbacks.remove(callback)
2013-11-19 05:07:32 +08:00
elif not remove and not callback in self._display_callbacks:
2014-01-14 17:43:46 +08:00
if callable(handler):
self._display_callbacks.append(callback)
else:
raise Exception('Callback must be callable.')
2013-11-07 01:41:26 +08:00
2013-10-26 02:31:48 +08:00
# Support methods
2014-01-14 17:43:46 +08:00
def _ipython_display_(self, **kwargs):
2013-10-26 02:31:48 +08:00
"""Function that is called when `IPython.display.display` is called on
2014-01-08 07:22:37 +08:00
the widget."""
2013-10-10 23:23:19 +08:00
# Show view. By sending a display message, the comm is opened and the
# initial state is sent.
2014-01-08 07:22:37 +08:00
self._send({"method": "display"})
self._handle_displayed(**kwargs)
def _send(self, msg):
"""Sends a message to the model in the front-end"""
self.comm.send(msg)
2014-01-03 07:36:24 +08:00
2014-01-07 20:04:24 +08:00
class DOMWidget(Widget):
2014-01-14 23:18:17 +08:00
visible = Bool(True, help="Whether or not the widget is visible.", sync=True)
# Private/protected declarations
2014-01-14 23:18:17 +08:00
_css = Dict(sync=True) # Internal CSS property dict
def get_css(self, key, selector=""):
"""Get a CSS property of the widget.
Note: This function does not actually request the CSS from the
front-end; Only properties that have been set with set_css can be read.
Parameters
----------
key: unicode
CSS key
selector: unicode (optional)
JQuery selector used when the CSS key/value was set.
"""
if selector in self._css and key in self._css[selector]:
return self._css[selector][key]
else:
return None
def set_css(self, *args, **kwargs):
"""Set one or more CSS properties of the widget.
This function has two signatures:
- set_css(css_dict, selector='')
- set_css(key, value, selector='')
Parameters
----------
css_dict : dict
CSS key/value pairs to apply
key: unicode
CSS key
value
CSS value
selector: unicode (optional)
JQuery selector to use to apply the CSS key/value. If no selector
is provided, an empty selector is used. An empty selector makes the
front-end try to apply the css to a default element. The default
element is an attribute unique to each view, which is a DOM element
of the view that should be styled with common CSS (see
`$el_to_style` in the Javascript code).
"""
selector = kwargs.get('selector', '')
# Signature 1: set_css(css_dict, selector='')
if len(args) == 1:
if isinstance(args[0], dict):
for (key, value) in args[0].items():
if not (key in self._css[selector] and value == self._css[selector][key]):
self._css[selector][key] = value
self.send_state('_css')
else:
raise Exception('css_dict must be a dict.')
# Signature 2: set_css(key, value, selector='')
elif len(args) == 2 or len(args) == 3:
# Selector can be a positional arg if it's the 3rd value
if len(args) == 3:
selector = args[2]
if selector not in self._css:
self._css[selector] = {}
# Only update the property if it has changed.
key = args[0]
value = args[1]
if not (key in self._css[selector] and value == self._css[selector][key]):
self._css[selector][key] = value
self.send_state('_css') # Send new state to client.
else:
raise Exception('set_css only accepts 1-3 arguments')
def add_class(self, class_names, selector=""):
"""Add class[es] to a DOM element
Parameters
----------
class_names: unicode or list
Class name(s) to add to the DOM element(s).
selector: unicode (optional)
JQuery selector to select the DOM element(s) that the class(es) will
be added to.
"""
class_list = class_names
if isinstance(class_list, list):
class_list = ' '.join(class_list)
self.send({"msg_type": "add_class",
"class_list": class_list,
2014-01-03 07:06:18 +08:00
"selector": selector})
def remove_class(self, class_names, selector=""):
"""Remove class[es] from a DOM element
Parameters
----------
class_names: unicode or list
Class name(s) to remove from the DOM element(s).
selector: unicode (optional)
JQuery selector to select the DOM element(s) that the class(es) will
be removed from.
"""
class_list = class_names
if isinstance(class_list, list):
class_list = ' '.join(class_list)
self.send({"msg_type": "remove_class",
"class_list": class_list,
2014-01-03 07:06:18 +08:00
"selector": selector})