#-----------------------------------------------------------------------------# Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors.# All rights reserved.## The full license is in the file LICENSE.txt, distributed with this software.#-----------------------------------------------------------------------------''' Provide a functions and classes to implement a custom JSON encoder forserializing objects for BokehJS.The primary interface is provided by the |serialize_json| function, whichuses the custom |BokehJSONEncoder| to produce JSON output.In general, functions in this module convert values in the following way:* Datetime values (Python, Pandas, NumPy) are converted to floating point milliseconds since epoch.* TimeDelta values are converted to absolute floating point milliseconds.* RelativeDelta values are converted to dictionaries.* Decimal values are converted to floating point.* Sequences (Pandas Series, NumPy arrays, python sequences) that are passed though this interface are converted to lists. Note, however, that arrays in data sources inside Bokeh Documents are converted elsewhere, and by default use a binary encoded format.* Bokeh ``Model`` instances are usually serialized elsewhere in the context of an entire Bokeh Document. Models passed trough this interface are converted to references.* ``HasProps`` (that are not Bokeh models) are converted to key/value dicts or all their properties and values.* ``Color`` instances are converted to CSS color values... |serialize_json| replace:: :class:`~bokeh.core.json_encoder.serialize_json`.. |BokehJSONEncoder| replace:: :class:`~bokeh.core.json_encoder.BokehJSONEncoder`'''#-----------------------------------------------------------------------------# Boilerplate#-----------------------------------------------------------------------------from__future__importannotationsimportlogging# isort:skiplog=logging.getLogger(__name__)#-----------------------------------------------------------------------------# Imports#-----------------------------------------------------------------------------# Standard library importsimportcollectionsimportdatetimeasdtimportdecimalimportjsonfromtypingimportTYPE_CHECKING,Any# External importsimportnumpyasnpifTYPE_CHECKING:importdateutil.relativedeltaasrdimportpandasaspdelse:from..util.dependenciesimportimport_optionalrd=import_optional("dateutil.relativedelta")pd=import_optional("pandas")# Bokeh importsfrom..settingsimportsettingsfrom..util.serializationimport(convert_datetime_type,convert_timedelta_type,is_datetime_type,is_timedelta_type,transform_array,transform_series,)#-----------------------------------------------------------------------------# Globals and constants#-----------------------------------------------------------------------------__all__=('BokehJSONEncoder','serialize_json',)#-----------------------------------------------------------------------------# General API#-----------------------------------------------------------------------------
[docs]defserialize_json(obj:Any,pretty:bool|None=None,indent:int|None=None,**kwargs:Any)->str:''' Return a serialized JSON representation of objects, suitable to send to BokehJS. This function is typically used to serialize single python objects in the manner expected by BokehJS. In particular, many datetime values are automatically normalized to an expected format. Some Bokeh objects can also be passed, but note that Bokeh models are typically properly serialized in the context of an entire Bokeh document. The resulting JSON always has sorted keys. By default. the output is as compact as possible unless pretty output or indentation is requested. Args: obj (obj) : the object to serialize to JSON format pretty (bool, optional) : Whether to generate prettified output. If ``True``, spaces are added after added after separators, and indentation and newlines are applied. (default: False) Pretty output can also be enabled with the environment variable ``BOKEH_PRETTY``, which overrides this argument, if set. indent (int or None, optional) : Amount of indentation to use in generated JSON output. If ``None`` then no indentation is used, unless pretty output is enabled, in which case two spaces are used. (default: None) Any additional keyword arguments are passed to ``json.dumps``, except for some that are computed internally, and cannot be overridden: * allow_nan * indent * separators * sort_keys Examples: .. code-block:: python >>> data = dict(b=np.datetime64('2017-01-01'), a = np.arange(3)) >>>print(serialize_json(data)) {"a":[0,1,2],"b":1483228800000.0} >>> print(serialize_json(data, pretty=True)) { "a": [ 0, 1, 2 ], "b": 1483228800000.0 } '''# these args to json.dumps are computed internally and should not be passed alongfornamein['allow_nan','separators','sort_keys']:ifnameinkwargs:raiseValueError(f"The value of {name!r} is computed internally, overriding is not permissible.")pretty=settings.pretty(pretty)ifpretty:separators=(",",": ")else:separators=(",",":")ifprettyandindentisNone:indent=2returnjson.dumps(obj,cls=BokehJSONEncoder,allow_nan=False,indent=indent,separators=separators,sort_keys=True,**kwargs)
#-----------------------------------------------------------------------------# Dev API#-----------------------------------------------------------------------------
[docs]classBokehJSONEncoder(json.JSONEncoder):''' A custom ``json.JSONEncoder`` subclass for encoding objects in accordance with the BokehJS protocol. '''
[docs]deftransform_python_types(self,obj:Any)->Any:''' Handle special scalars such as (Python, NumPy, or Pandas) datetimes, or Decimal values. Args: obj (obj) : The object to encode. Anything not specifically handled in this method is passed on to the default system JSON encoder. '''# date/time values that get serialized as millisecondsifis_datetime_type(obj):returnconvert_datetime_type(obj)ifis_timedelta_type(obj):returnconvert_timedelta_type(obj)# Dateifisinstance(obj,dt.date):returnobj.isoformat()# slice objectselifisinstance(obj,slice):returndict(start=obj.start,stop=obj.stop,step=obj.step)# NumPy scalarselifnp.issubdtype(type(obj),np.floating):returnfloat(obj)elifnp.issubdtype(type(obj),np.integer):returnint(obj)elifnp.issubdtype(type(obj),np.bool_):returnbool(obj)# Decimal valueselifisinstance(obj,decimal.Decimal):returnfloat(obj)# RelativeDelta gets serialized as a dictelifrdandisinstance(obj,rd.relativedelta):returndict(years=obj.years,months=obj.months,days=obj.days,hours=obj.hours,minutes=obj.minutes,seconds=obj.seconds,microseconds=obj.microseconds)else:returnsuper().default(obj)
[docs]defdefault(self,obj:Any)->Any:''' The required ``default`` method for ``JSONEncoder`` subclasses. Args: obj (obj) : The object to encode. Anything not specifically handled in this method is passed on to the default system JSON encoder. '''from..colorsimportColorfrom..modelimportModelfrom.has_propsimportHasProps# array types -- use force_list here, only binary# encoding CDS columns for nowifpdandisinstance(obj,(pd.Series,pd.Index)):returntransform_series(obj,force_list=True)elifisinstance(obj,np.ndarray):returntransform_array(obj,force_list=True)elifisinstance(obj,collections.deque):return[self.default(item)foriteminobj]elifisinstance(obj,Model):returnobj.refelifisinstance(obj,HasProps):returnobj.properties_with_values(include_defaults=False)elifisinstance(obj,Color):returnobj.to_css()else:returnself.transform_python_types(obj)