linkchecker/linkcheck/loader.py

112 lines
3.5 KiB
Python
Raw Normal View History

2014-01-08 21:33:04 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
2013-12-11 17:41:55 +00:00
"""
Functions to load plugin modules.
2020-07-25 15:35:48 +00:00
Example usage::
modules = loader.get_package_modules('plugins')
2013-12-11 17:41:55 +00:00
plugins = loader.get_plugins(modules, PluginClass)
"""
import os
import importlib
import pkgutil
from .fileutil import is_writable_by_others
2013-12-11 17:41:55 +00:00
def check_writable_by_others(filename):
2014-03-01 18:14:43 +00:00
"""Check if file is writable by others on POSIX systems.
On non-POSIX systems the check is ignored."""
if os.name != 'posix':
# XXX on non-posix systems other bits are relevant
return
return is_writable_by_others(filename)
def get_package_modules(packagename, packagepath):
"""Find all valid modules in the given package which must be a folder
in the same directory as this loader.py module. A valid module has
a .py extension, and is importable.
2020-07-25 15:35:48 +00:00
2013-12-11 17:41:55 +00:00
@return: all loaded valid modules
@rtype: iterator of module
"""
for mod in pkgutil.iter_modules(packagepath):
if not mod.ispkg:
try:
name = "..%s.%s" % (packagename, mod.name)
yield importlib.import_module(name, __name__)
except ImportError as msg:
print("WARN: could not load module %s: %s" % (mod.name, msg))
2013-12-11 17:41:55 +00:00
def get_folder_modules(folder, parentpackage):
"""."""
if check_writable_by_others(folder):
print("ERROR: refuse to load modules from world writable folder %r" % folder)
return
for filename in get_importable_files(folder):
fullname = os.path.join(folder, filename)
2020-05-30 16:01:36 +00:00
modname = parentpackage + "." + filename[:-3]
try:
spec = importlib.util.spec_from_file_location(modname, fullname)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
yield module
except ImportError as msg:
print("WARN: could not load file %s: %s" % (fullname, msg))
def get_importable_files(folder):
2013-12-11 17:41:55 +00:00
"""Find all module files in the given folder that end with '.py' and
don't start with an underscore.
2020-07-25 15:35:48 +00:00
@return: module names
2013-12-11 17:41:55 +00:00
@rtype: iterator of string
"""
for fname in os.listdir(folder):
if fname.endswith('.py') and not fname.startswith('_'):
fullname = os.path.join(folder, fname)
if check_writable_by_others(fullname):
2020-05-30 16:01:36 +00:00
print(
"ERROR: refuse to load module from world writable file %r"
% fullname
)
else:
yield fname
2013-12-11 17:41:55 +00:00
def get_plugins(modules, classes):
"""Find all given (sub-)classes in all modules.
2020-07-25 15:35:48 +00:00
2013-12-11 17:41:55 +00:00
@param modules: the modules to search
2020-07-25 15:35:48 +00:00
@type modules: iterator of modules
2013-12-11 17:41:55 +00:00
@return: found classes
2020-07-25 15:35:48 +00:00
@rtype: iterator of class objects
2013-12-11 17:41:55 +00:00
"""
for module in modules:
for plugin in get_module_plugins(module, classes):
2013-12-11 17:41:55 +00:00
yield plugin
def get_module_plugins(module, classes):
2013-12-11 17:41:55 +00:00
"""Return all subclasses of a class in the module.
If the module defines __all__, only those entries will be searched,
otherwise all objects not starting with '_' will be searched.
"""
try:
names = module.__all__
except AttributeError:
names = [x for x in vars(module) if not x.startswith('_')]
for name in names:
try:
obj = getattr(module, name)
except AttributeError:
continue
try:
for classobj in classes:
if issubclass(obj, classobj):
yield obj
2013-12-11 17:41:55 +00:00
except TypeError:
continue