-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy pathutils.py
57 lines (46 loc) · 1.66 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 2015 The TensorFlow Authors. 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.
# ==============================================================================
"""Utility functions."""
import importlib
import logging
import pkgutil
def _onerror(name):
logging.exception('Failed to load package: %r', name)
logging.error('Continuing')
def recursive_import(root, strict=False):
"""Recursively imports all the modules under a root package.
Args:
root: A python package.
strict: Bool, if `True` raise exceptions, else just log them.
Returns:
A list of all imported modules.
"""
modules = []
kwargs = {}
# If strict=False, ignore errors during `pkgutil.walk_packages`.
if not strict:
kwargs = {'onerror': _onerror}
for _, name, _ in pkgutil.walk_packages(
root.__path__, prefix=root.__name__ + '.', **kwargs):
try:
modules.append(importlib.import_module(name))
# And ignore the same set of errors if import_module fails, these are not
# triggered by walk_packages.
except Exception: # pylint: disable=broad-except
if strict:
raise
else:
_onerror(name)
return modules