hashable dict

This commit is contained in:
mwiegand 2021-10-30 11:13:40 +02:00
parent 07e6a2d07e
commit 1066ca50ab

38
libs/hashable.py Normal file
View file

@ -0,0 +1,38 @@
import json
from functools import total_ordering
from bundlewrap.metadata import MetadataJSONEncoder
@total_ordering
class Hashable():
def _json(self):
return json.dumps(
self,
sort_keys=True,
cls=MetadataJSONEncoder,
)
def __lt__(self, other):
return self._json() < other._json()
def __eq__(self, other):
return self._json() == other._json()
def __hash__(self):
return hash(self._json())
class HashableDict(Hashable, dict):
pass
class HashableSet(Hashable, set):
pass
def hashable(object):
return {
dict: HashableDict,
set: HashableSet,
}[type(object)](object)