forked-synapse/synapse/util/frozenutils.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.4 KiB
Python
Raw Normal View History

2014-12-08 09:10:12 +00:00
#
2023-11-21 20:29:58 +00:00
# This file is licensed under the Affero General Public License (AGPL) version 3.
#
# Copyright 2014-2016 OpenMarket Ltd
2023-11-21 20:29:58 +00:00
# Copyright (C) 2023 New Vector, Ltd
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# See the GNU Affero General Public License for more details:
# <https://www.gnu.org/licenses/agpl-3.0.html>.
#
# Originally licensed under the Apache License, Version 2.0:
# <http://www.apache.org/licenses/LICENSE-2.0>.
#
# [This file includes modifications made by New Vector Limited]
2014-12-08 09:10:12 +00:00
#
#
import collections.abc
2021-09-10 16:03:18 +00:00
from typing import Any
2014-12-08 09:10:12 +00:00
from immutabledict import immutabledict
2018-07-09 06:09:20 +00:00
2018-05-29 15:35:55 +00:00
2021-09-10 16:03:18 +00:00
def freeze(o: Any) -> Any:
2018-05-24 19:44:10 +00:00
if isinstance(o, dict):
return immutabledict({k: freeze(v) for k, v in o.items()})
2014-12-08 09:10:12 +00:00
if isinstance(o, immutabledict):
return o
if isinstance(o, (bytes, str)):
2014-12-08 09:10:12 +00:00
return o
try:
return tuple(freeze(i) for i in o)
2014-12-08 09:10:12 +00:00
except TypeError:
pass
return o
2021-09-10 16:03:18 +00:00
def unfreeze(o: Any) -> Any:
if isinstance(o, collections.abc.Mapping):
return {k: unfreeze(v) for k, v in o.items()}
2014-12-08 09:10:12 +00:00
if isinstance(o, (bytes, str)):
2014-12-08 09:10:12 +00:00
return o
try:
return [unfreeze(i) for i in o]
except TypeError:
pass
return o