-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathjson.py
48 lines (38 loc) · 1.28 KB
/
json.py
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
41
42
43
44
45
46
47
48
"""Helpers to work with (de)serializing of json."""
from base64 import b64encode
from typing import Any
from chip.clusters.Types import Nullable
from chip.tlv import float32, uint
import orjson
JSON_ENCODE_EXCEPTIONS = (TypeError, ValueError)
JSON_DECODE_EXCEPTIONS = (orjson.JSONDecodeError,)
def json_encoder_default(obj: Any) -> Any:
"""Convert Special objects.
Hand other objects to the original method.
"""
# pylint: disable=too-many-return-statements
if getattr(obj, "do_not_serialize", None):
return None
if isinstance(obj, (set, tuple)):
return list(obj)
if isinstance(obj, float32):
return float(obj)
if isinstance(obj, uint):
return int(obj)
if isinstance(obj, Nullable):
return None
if isinstance(obj, bytes):
return b64encode(obj).decode("utf-8")
if isinstance(obj, Exception):
return str(obj)
if type(obj) is type: # pylint: disable=unidiomatic-typecheck
return f"{obj.__module__}.{obj.__qualname__}"
raise TypeError
def json_dumps(data: Any) -> str:
"""Dump json string."""
return orjson.dumps(
data,
option=orjson.OPT_NON_STR_KEYS | orjson.OPT_INDENT_2,
default=json_encoder_default,
).decode("utf-8")
json_loads = orjson.loads