hashable dict
This commit is contained in:
parent
07e6a2d07e
commit
1066ca50ab
1 changed files with 38 additions and 0 deletions
38
libs/hashable.py
Normal file
38
libs/hashable.py
Normal 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)
|
Loading…
Reference in a new issue