aboutsummaryrefslogtreecommitdiffhomepage
path: root/custom_libs/subzero/lib/json.py
blob: 1dd011fc3252adcb1969119ffc851a78b47f4b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# coding=utf-8
from __future__ import absolute_import
from gzip import GzipFile

from json_tricks import TricksEncoder
from json_tricks.nonp import DEFAULT_ENCODERS, ENCODING
from io import BytesIO


def dumps(obj, sort_keys=None, cls=TricksEncoder, obj_encoders=DEFAULT_ENCODERS, extra_obj_encoders=(),
          primitives=False, compression=None, allow_nan=False, conv_str_byte=False, **jsonkwargs):
    """
    Convert a nested data structure to a json string.

    :param obj: The Python object to convert.
    :param sort_keys: Keep this False if you want order to be preserved.
    :param cls: The json encoder class to use, defaults to NoNumpyEncoder which gives a warning for numpy arrays.
    :param obj_encoders: Iterable of encoders to use to convert arbitrary objects into json-able promitives.
    :param extra_obj_encoders: Like `obj_encoders` but on top of them: use this to add encoders without replacing defaults. Since v3.5 these happen before default encoders.
    :param allow_nan: Allow NaN and Infinity values, which is a (useful) violation of the JSON standard (default False).
    :param conv_str_byte: Try to automatically convert between strings and bytes (assuming utf-8) (default False).
    :return: The string containing the json-encoded version of obj.

    Other arguments are passed on to `cls`. Note that `sort_keys` should be false if you want to preserve order.
    """
    if not hasattr(extra_obj_encoders, '__iter__'):
        raise TypeError('`extra_obj_encoders` should be a tuple in `json_tricks.dump(s)`')
    encoders = tuple(extra_obj_encoders) + tuple(obj_encoders)
    txt = cls(sort_keys=sort_keys, obj_encoders=encoders, allow_nan=allow_nan,
              primitives=primitives, **jsonkwargs).encode(obj)
    if not compression:
        return txt
    if compression is True:
        compression = 5
    txt = txt.encode(ENCODING)
    sh = BytesIO()
    with GzipFile(mode='wb', fileobj=sh, compresslevel=compression) as zh:
        zh.write(txt)
    gzstring = sh.getvalue()
    return gzstring