Source code for pyannote.core.json

#!/usr/bin/env python
# encoding: utf-8

# The MIT License (MIT)

# Copyright (c) 2014-2019 CNRS

# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:

# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.

# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

# AUTHORS
# Hervé BREDIN - http://herve.niderb.fr
from pathlib import Path
from typing import Union, TextIO

import simplejson as json
from .utils.types import Resource

PYANNOTE_JSON = 'pyannote'
PYANNOTE_JSON_CONTENT = 'content'


[docs]def object_hook(d): """Utility function for deserialization >>> with open('file.json', 'r') as f: ... json.load(f, object_hook=object_hook) """ if PYANNOTE_JSON in d: import pyannote.core cls = getattr(pyannote.core, d[PYANNOTE_JSON]) return cls.from_json(d) return d
[docs]def load(fp: TextIO) -> Resource: """Deserialize Parameters ---------- fp : file File containing serialized `pyannote.core` data structure Returns ------- deserialized : `pyannote.core` data structure """ return json.load(fp, encoding='utf-8', object_hook=object_hook)
[docs]def loads(s: str) -> Resource: """Deserialize Parameters ---------- s : string String containing serialized `pyannote.core` data structure Returns ------- deserialized : `pyannote.core` data structure """ return json.loads(s, encoding='utf-8', object_hook=object_hook)
[docs]def load_from(path: Union[str, Path]) -> Resource: """Deserialize Parameters ---------- path : string or Path Path to file containing serialized `pyannote.core` data structure Returns ------- deserialized : `pyannote.core` data structure """ with open(path, 'r') as fp: return load(fp)
[docs]def dump(resource: Resource, fp: TextIO): """Serialize Parameters ---------- resource : `pyannote.core` data structure Resource to serialize fp : file File in which `resource` serialization is written """ json.dump(resource, fp, encoding='utf-8', for_json=True)
[docs]def dumps(resource: Resource) -> str: """Serialize to string Parameters ---------- resource : `pyannote.core` data structure Returns ------- serialization : string """ return json.dumps(resource, encoding='utf-8', for_json=True)
[docs]def dump_to(resource: Resource, path: Union[str, Path]): """Serialize Parameters ---------- resource : `pyannote.core` data structure Resource to serialize path : string Path to file in which `resource` serialization is written """ with open(path, 'w') as fp: dump(resource, fp)