Source code for faust.utils.json

"""JSON utilities."""

import datetime
import enum
import typing
import uuid
from collections import Counter, deque
from decimal import Decimal
from typing import (
    Any,
    Callable,
    Iterable,
    List,
    Mapping,
    Optional,
    Tuple,
    Type,
    TypeVar,
    Union,
)

__all__ = [
    "JSONEncoder",
    "dumps",
    "loads",
    "str_to_decimal",
]

if typing.TYPE_CHECKING:
    import orjson
else:  # pragma: no cover
    try:
        import orjson
    except ImportError:
        orjson = None  # noqa

DEFAULT_TEXTUAL_TYPES: List[Type] = [Decimal, uuid.UUID, bytes]

T = TypeVar("T")

TypeTuple = Tuple[Type[T], ...]
IsInstanceArg = Union[Type[Any], TypeTuple[Any]]

try:  # pragma: no cover
    from django.utils.functional import Promise

    DJANGO_TEXTUAL_TYPES = [Promise]
except ImportError:  # pragma: no cover
    DJANGO_TEXTUAL_TYPES = []

TEXTUAL_TYPES: TypeTuple[Any] = tuple(DEFAULT_TEXTUAL_TYPES + DJANGO_TEXTUAL_TYPES)

try:  # pragma: no cover
    import simplejson as json

    # simplejson converts Decimal to float by default, i.e. before
    # we have a chance to override it using Encoder.default.
    _JSON_DEFAULT_KWARGS = {
        "use_decimal": False,
        "namedtuple_as_object": False,
    }

except ImportError:  # pragma: no cover
    import json  # type: ignore

    _JSON_DEFAULT_KWARGS = {}

#: Max length for string to be converted to decimal.
DECIMAL_MAXLEN = 1000

#: Types that we convert to lists.
SEQUENCE_TYPES: TypeTuple[Iterable] = (set, frozenset, deque, tuple)

DateTypeTuple = Tuple[Union[Type[datetime.date], Type[datetime.time]], ...]
DatetimeTypeTuple = Tuple[
    Union[
        Type[datetime.time],
        Type[datetime.datetime],
    ],
    ...,
]

#: Types that we convert o mapping.
MAPPING_TYPES: TypeTuple[Mapping] = (Counter,)

#: Types that are datetimes and dates (-> .isoformat())
DATE_TYPES: DateTypeTuple = (datetime.date, datetime.time)

#: Types we use `return obj.value` for (Enum)
VALUE_DELEGATE_TYPES: TypeTuple[enum.Enum] = (enum.Enum,)

HAS_TIME: DatetimeTypeTuple = (datetime.datetime, datetime.time)


[docs]def str_to_decimal(s: str, maxlen: int = DECIMAL_MAXLEN) -> Optional[Decimal]: """Convert string to :class:`~decimal.Decimal`. Args: s (str): Number to convert. maxlen (int): Max length of string. Default is 100. Raises: ValueError: if length exceeds maximum length, or if value is not a valid number (e.g. Inf, NaN or sNaN). Returns: Decimal: Converted number. """ if s is None: return None if len(s) > maxlen: raise ValueError(f"string of length {len(s)} is longer than limit ({maxlen})") v = Decimal(s) if not v.is_finite(): # check for Inf/NaN/sNaN/qNaN raise ValueError(f"Illegal value in decimal: {s!r}") return v
def on_default( o: Any, *, sequences: TypeTuple[Iterable] = SEQUENCE_TYPES, maps: TypeTuple[Mapping] = MAPPING_TYPES, dates: DateTypeTuple = DATE_TYPES, value_delegate: TypeTuple[enum.Enum] = VALUE_DELEGATE_TYPES, has_time: DatetimeTypeTuple = HAS_TIME, _isinstance: Callable[[Any, IsInstanceArg], bool] = isinstance, _dict: Callable = dict, _str: Callable[[Any], str] = str, _list: Callable = list, textual: TypeTuple[Any] = TEXTUAL_TYPES, ) -> Any: if _isinstance(o, textual): return _str(o) elif _isinstance(o, maps): return _dict(o) elif _isinstance(o, dates): if not _isinstance(o, has_time): o = datetime.datetime(o.year, o.month, o.day, 0, 0, 0, 0) r = o.isoformat() if r.endswith("+00:00"): r = r[:-6] + "Z" return r elif isinstance(o, value_delegate): return o.value elif isinstance(o, sequences): return _list(o) else: to_json = getattr(o, "__json__", None) if to_json is not None: return to_json() raise TypeError(f"JSON cannot serialize {type(o).__name__!r}: {o!r}")
[docs]class JSONEncoder(json.JSONEncoder): """Faust customized :class:`json.JSONEncoder`. Our version supports additional types like :class:`~uuid.UUID`, and importantly includes microsecond information in datetimes. """
[docs] def default(self, o: Any, *, callback: Callable[[Any], Any] = on_default) -> Any: """Try to convert non-built-in json type to json.""" return callback(o)
if orjson is not None: # pragma: no cover def dumps( obj: Any, json_dumps: Callable = orjson.dumps, cls: Type[JSONEncoder] = JSONEncoder, **kwargs: Any, ) -> str: """Serialize to json.""" return json_dumps( obj, default=on_default, option=orjson.OPT_NON_STR_KEYS | orjson.OPT_UTC_Z, ) def loads(s: str, json_loads: Callable = orjson.loads, **kwargs: Any) -> Any: """Deserialize json string.""" return json_loads(s) else:
[docs] def dumps( obj: Any, json_dumps: Callable = json.dumps, cls: Type[JSONEncoder] = JSONEncoder, **kwargs: Any, ) -> str: """Serialize to json. See :func:`json.dumps`.""" return json_dumps( obj, cls=cls, **dict(_JSON_DEFAULT_KWARGS, **kwargs), separators=(",", ":"), )
[docs] def loads(s: str, json_loads: Callable = json.loads, **kwargs: Any) -> Any: """Deserialize json string. See :func:`json.loads`.""" return json_loads(s, **kwargs)