-
-
Notifications
You must be signed in to change notification settings - Fork 37.5k
Add better handling of deprecated configs #20565
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
Merged
MartinHjelmare
merged 16 commits into
home-assistant:dev
from
rohankapoorcom:deprecated_configs
Feb 8, 2019
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
5b60e96
Add better handling of deprecated configs
rohankapoorcom 44649e0
Embed the call to has_at_most_one_key in deprecated
rohankapoorcom 98c0f41
Add tests for checking the deprecated logs
rohankapoorcom 67acc63
Add thoroughly documented tests
rohankapoorcom c4d6f3e
Always check has_at_most_one_key
rohankapoorcom 47a53fe
Fix typing
rohankapoorcom fc8e2ae
Move logging helpers to homea new logging helper
rohankapoorcom aa3fe75
Lint
rohankapoorcom 34f461d
Rename to KeywordMessage instead of BraceMessage
rohankapoorcom af54e3e
Remove unneeded KeywordStyleAdapter
rohankapoorcom 4764e76
Lint
rohankapoorcom e306bda
Use dict directly rather than dict.keys() when creating set
rohankapoorcom 851ec1a
Patch the version in unit tests, update logging and use parse_version
rohankapoorcom 0d0a48a
Re-add KeywordStyleAdapter and fix tests
rohankapoorcom cab3d20
Lint
rohankapoorcom 5de4766
Lint
rohankapoorcom 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 hidden or 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 hidden or 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 hidden or 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,49 @@ | ||
| """Helpers for logging allowing more advanced logging styles to be used.""" | ||
| import inspect | ||
| import logging | ||
|
|
||
|
|
||
| class KeywordMessage: | ||
| """ | ||
| Represents a logging message with keyword arguments. | ||
|
|
||
| Adapted from: https://stackoverflow.com/a/24683360/2267718 | ||
| """ | ||
|
|
||
| def __init__(self, fmt, args, kwargs): | ||
| """Initialize a new BraceMessage object.""" | ||
| self._fmt = fmt | ||
| self._args = args | ||
| self._kwargs = kwargs | ||
|
|
||
| def __str__(self): | ||
| """Convert the object to a string for logging.""" | ||
| return str(self._fmt).format(*self._args, **self._kwargs) | ||
|
|
||
|
|
||
| class KeywordStyleAdapter(logging.LoggerAdapter): | ||
| """Represents an adapter wrapping the logger allowing KeywordMessages.""" | ||
|
|
||
| def __init__(self, logger, extra=None): | ||
| """Initialize a new StyleAdapter for the provided logger.""" | ||
| super(KeywordStyleAdapter, self).__init__(logger, extra or {}) | ||
|
|
||
| def log(self, level, msg, *args, **kwargs): | ||
| """Log the message provided at the appropriate level.""" | ||
| if self.isEnabledFor(level): | ||
| msg, log_kwargs = self.process(msg, kwargs) | ||
| self.logger._log( # pylint: disable=protected-access | ||
| level, KeywordMessage(msg, args, kwargs), (), **log_kwargs | ||
| ) | ||
|
|
||
| def process(self, msg, kwargs): | ||
| """Process the keyward args in preparation for logging.""" | ||
| return ( | ||
| msg, | ||
| { | ||
| k: kwargs[k] | ||
| for k in inspect.getfullargspec( | ||
| self.logger._log # pylint: disable=protected-access | ||
| ).args[1:] if k in kwargs | ||
| } | ||
| ) |
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.