-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix params hashing #2540
Merged
Merged
Fix params hashing #2540
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
bd62192
move params freezing to separated module
orsinium fcc5660
freeze dict for toml parser
orsinium 501acb5
FIX FrozenOrderedDict name
orsinium 3af39ed
Freeze only params of config, not all config
orsinium b3d6944
Merge remote-tracking branch 'spotify/master' into fix_params_hashing
orsinium 93523ce
Merge remote-tracking branch 'spotify/master' into fix_params_hashing
orsinium a927c79
Merge remote-tracking branch 'spotify/master' into fix_params_hashing
orsinium dde1dbc
+docstring
orsinium File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
"""Internal-only module with immutable data structures. | ||
|
||
Please, do not use it outside of Luigi codebase itself. | ||
""" | ||
|
||
|
||
from collections import OrderedDict, Mapping | ||
orsinium marked this conversation as resolved.
Show resolved
Hide resolved
|
||
import operator | ||
import functools | ||
|
||
|
||
class FrozenOrderedDict(Mapping): | ||
orsinium marked this conversation as resolved.
Show resolved
Hide resolved
|
||
""" | ||
It is an immutable wrapper around ordered dictionaries that implements the complete :py:class:`collections.Mapping` | ||
interface. It can be used as a drop-in replacement for dictionaries where immutability and ordering are desired. | ||
""" | ||
|
||
def __init__(self, *args, **kwargs): | ||
self.__dict = OrderedDict(*args, **kwargs) | ||
self.__hash = None | ||
|
||
def __getitem__(self, key): | ||
return self.__dict[key] | ||
|
||
def __iter__(self): | ||
return iter(self.__dict) | ||
|
||
def __len__(self): | ||
return len(self.__dict) | ||
|
||
def __repr__(self): | ||
# We should use short representation for beautiful console output | ||
return repr(dict(self.__dict)) | ||
|
||
def __hash__(self): | ||
if self.__hash is None: | ||
hashes = map(hash, self.items()) | ||
self.__hash = functools.reduce(operator.xor, hashes, 0) | ||
|
||
return self.__hash | ||
|
||
def get_wrapped(self): | ||
return self.__dict | ||
|
||
|
||
def recursively_freeze(value): | ||
""" | ||
Recursively walks ``Mapping``s and ``list``s and converts them to ``FrozenOrderedDict`` and ``tuples``, respectively. | ||
""" | ||
if isinstance(value, Mapping): | ||
return FrozenOrderedDict(((k, recursively_freeze(v)) for k, v in value.items())) | ||
elif isinstance(value, list) or isinstance(value, tuple): | ||
return tuple(recursively_freeze(v) for v in value) | ||
return value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are we referencing relative paths? can we not
from luigi.configuration.freezing import recursively_freeze
?