2014-12-08 04:10:12 -05:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05: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 04:10:12 -05:00
|
|
|
#
|
|
|
|
#
|
2022-04-27 09:00:07 -04:00
|
|
|
import collections.abc
|
2021-09-10 12:03:18 -04:00
|
|
|
from typing import Any
|
2014-12-08 04:10:12 -05:00
|
|
|
|
2023-03-22 13:15:34 -04:00
|
|
|
from immutabledict import immutabledict
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2018-05-29 11:35:55 -04:00
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def freeze(o: Any) -> Any:
|
2018-05-24 15:44:10 -04:00
|
|
|
if isinstance(o, dict):
|
2023-03-22 13:15:34 -04:00
|
|
|
return immutabledict({k: freeze(v) for k, v in o.items()})
|
2014-12-08 04:10:12 -05:00
|
|
|
|
2023-03-22 13:15:34 -04:00
|
|
|
if isinstance(o, immutabledict):
|
2015-02-11 10:44:28 -05:00
|
|
|
return o
|
|
|
|
|
2020-06-16 08:51:47 -04:00
|
|
|
if isinstance(o, (bytes, str)):
|
2014-12-08 04:10:12 -05:00
|
|
|
return o
|
|
|
|
|
|
|
|
try:
|
2020-02-21 07:15:07 -05:00
|
|
|
return tuple(freeze(i) for i in o)
|
2014-12-08 04:10:12 -05:00
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return o
|
|
|
|
|
|
|
|
|
2021-09-10 12:03:18 -04:00
|
|
|
def unfreeze(o: Any) -> Any:
|
2022-04-27 09:00:07 -04:00
|
|
|
if isinstance(o, collections.abc.Mapping):
|
2021-03-22 11:18:13 -04:00
|
|
|
return {k: unfreeze(v) for k, v in o.items()}
|
2014-12-08 04:10:12 -05:00
|
|
|
|
2020-06-16 08:51:47 -04:00
|
|
|
if isinstance(o, (bytes, str)):
|
2014-12-08 04:10:12 -05:00
|
|
|
return o
|
|
|
|
|
|
|
|
try:
|
|
|
|
return [unfreeze(i) for i in o]
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return o
|