-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Logging Refactor #305
Merged
Merged
Logging Refactor #305
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2a3bbbe
add files from #292
blisc 6143907
update logger.py
blisc 90d2b61
import and bug fixes
blisc d4791b9
Merge remote-tracking branch 'nvidia/master' into u_logging_update_3
blisc 3bb0cdc
update exp_logging to use new logger
blisc ebd9273
style fix
blisc 3807de7
style fix
blisc 073e1e6
fix deprecated unittest
blisc 08b1eed
isort
blisc 0cbcc8c
update headeR
blisc 7260a90
remove unused imports
blisc bf15666
merge with master
blisc 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,50 @@ | ||
# Copyright (C) NVIDIA CORPORATION. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License.**** | ||
|
||
import numpy as np | ||
|
||
# Supported Numpy DTypes: `np.sctypes` | ||
ACCEPTED_INT_NUMBER_FORMATS = ( | ||
int, | ||
np.uint8, | ||
np.uint16, | ||
np.uint32, | ||
np.uint64, | ||
np.int, | ||
np.int8, | ||
np.int16, | ||
np.int32, | ||
np.int64, | ||
) | ||
|
||
ACCEPTED_FLOAT_NUMBER_FORMATS = ( | ||
float, | ||
np.float, | ||
np.float16, | ||
np.float32, | ||
np.float64, | ||
np.float128, | ||
) | ||
|
||
ACCEPTED_STR_NUMBER_FORMATS = ( | ||
str, | ||
np.str, | ||
) | ||
|
||
ACCEPTED_NUMBER_FORMATS = ACCEPTED_INT_NUMBER_FORMATS + ACCEPTED_FLOAT_NUMBER_FORMATS + ACCEPTED_STR_NUMBER_FORMATS | ||
|
||
# NEMO_ENV_VARNAME_DEBUG_VERBOSITY = "NEMO_DEBUG_VERBOSITY" | ||
NEMO_ENV_VARNAME_ENABLE_COLORING = "NEMO_ENABLE_COLORING" | ||
NEMO_ENV_VARNAME_REDIRECT_LOGS_TO_STDERR = "NEMO_REDIRECT_LOGS_TO_STDERR" | ||
# NEMO_ENV_VARNAME_SAVE_LOGS_TO_DIR = "NEMO_SAVE_LOGS_TO_DIR" |
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,208 @@ | ||
# The MIT Licence (MIT) | ||
# | ||
# Copyright (c) 2016 YunoJuno Ltd | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
# | ||
# Vendored dependency from : https://github.com/yunojuno/python-env-utils/blob/master/env_utils/utils.py | ||
# | ||
# ========================================================================================================= | ||
# | ||
# Modified by NVIDIA | ||
# | ||
# Copyright (C) NVIDIA CORPORATION. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License.**** | ||
|
||
import decimal | ||
import json | ||
import os | ||
|
||
from dateutil import parser | ||
|
||
__all__ = [ | ||
"get_env", | ||
"get_envbool", | ||
"get_envint", | ||
"get_envfloat", | ||
"get_envdecimal", | ||
"get_envdate", | ||
"get_envdatetime", | ||
"get_envlist", | ||
"get_envdict", | ||
"CoercionError", | ||
"RequiredSettingMissingError", | ||
] | ||
|
||
|
||
class CoercionError(Exception): | ||
"""Custom error raised when a value cannot be coerced.""" | ||
|
||
def __init__(self, key, value, func): | ||
msg = "Unable to coerce '{}={}' using {}.".format(key, value, func.__name__) | ||
super(CoercionError, self).__init__(msg) | ||
|
||
|
||
class RequiredSettingMissingError(Exception): | ||
"""Custom error raised when a required env var is missing.""" | ||
|
||
def __init__(self, key): | ||
msg = "Required env var '{}' is missing.".format(key) | ||
super(RequiredSettingMissingError, self).__init__(msg) | ||
|
||
|
||
def _get_env(key, default=None, coerce=lambda x: x, required=False): | ||
""" | ||
Return env var coerced into a type other than string. | ||
This function extends the standard os.getenv function to enable | ||
the coercion of values into data types other than string (all env | ||
vars are strings by default). | ||
Args: | ||
key: string, the name of the env var to look up | ||
Kwargs: | ||
default: the default value to return if the env var does not exist. NB the | ||
default value is **not** coerced, and is assumed to be of the correct type. | ||
coerce: a function that is used to coerce the value returned into | ||
another type | ||
required: bool, if True, then a RequiredSettingMissingError error is raised | ||
if the env var does not exist. | ||
Returns the env var, passed through the coerce function | ||
""" | ||
try: | ||
value = os.environ[key] | ||
except KeyError: | ||
if required is True: | ||
raise RequiredSettingMissingError(key) | ||
else: | ||
return default | ||
|
||
try: | ||
return coerce(value) | ||
except Exception: | ||
raise CoercionError(key, value, coerce) | ||
|
||
|
||
# standard type coercion functions | ||
def _bool(value): | ||
if isinstance(value, bool): | ||
return value | ||
|
||
return not (value is None or value.lower() in ("false", "0", "no", "n", "f", "none")) | ||
|
||
|
||
def _int(value): | ||
return int(value) | ||
|
||
|
||
def _float(value): | ||
return float(value) | ||
|
||
|
||
def _decimal(value): | ||
return decimal.Decimal(value) | ||
|
||
|
||
def _dict(value): | ||
return json.loads(value) | ||
|
||
|
||
def _datetime(value): | ||
return parser.parse(value) | ||
|
||
|
||
def _date(value): | ||
return parser.parse(value).date() | ||
|
||
|
||
def get_env(key, *default, **kwargs): | ||
""" | ||
Return env var. | ||
This is the parent function of all other get_foo functions, | ||
and is responsible for unpacking args/kwargs into the values | ||
that _get_env expects (it is the root function that actually | ||
interacts with environ). | ||
Args: | ||
key: string, the env var name to look up. | ||
default: (optional) the value to use if the env var does not | ||
exist. If this value is not supplied, then the env var is | ||
considered to be required, and a RequiredSettingMissingError | ||
error will be raised if it does not exist. | ||
Kwargs: | ||
coerce: a func that may be supplied to coerce the value into | ||
something else. This is used by the default get_foo functions | ||
to cast strings to builtin types, but could be a function that | ||
returns a custom class. | ||
Returns the env var, coerced if required, and a default if supplied. | ||
""" | ||
assert len(default) in (0, 1), "Too many args supplied." | ||
func = kwargs.get('coerce', lambda x: x) | ||
required = len(default) == 0 | ||
default = default[0] if not required else None | ||
return _get_env(key, default=default, coerce=func, required=required) | ||
|
||
|
||
def get_envbool(key, *default): | ||
"""Return env var cast as boolean.""" | ||
return get_env(key, *default, coerce=_bool) | ||
|
||
|
||
def get_envint(key, *default): | ||
"""Return env var cast as integer.""" | ||
return get_env(key, *default, coerce=_int) | ||
|
||
|
||
def get_envfloat(key, *default): | ||
"""Return env var cast as float.""" | ||
return get_env(key, *default, coerce=_float) | ||
|
||
|
||
def get_envdecimal(key, *default): | ||
"""Return env var cast as Decimal.""" | ||
return get_env(key, *default, coerce=_decimal) | ||
|
||
|
||
def get_envdate(key, *default): | ||
"""Return env var as a date.""" | ||
return get_env(key, *default, coerce=_date) | ||
|
||
|
||
def get_envdatetime(key, *default): | ||
"""Return env var as a datetime.""" | ||
return get_env(key, *default, coerce=_datetime) | ||
|
||
|
||
def get_envlist(key, *default, **kwargs): | ||
"""Return env var as a list.""" | ||
separator = kwargs.get('separator', ' ') | ||
return get_env(key, *default, coerce=lambda x: x.split(separator)) | ||
|
||
|
||
def get_envdict(key, *default): | ||
"""Return env var as a dict.""" | ||
return get_env(key, *default, coerce=_dict) |
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
Empty file.
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.
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.
these constants look like logging only constants. Should we rename the file to reflect that?
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.
I think the idea is that we can put environment variables and other Nemo constants into this file as the project progresses