blob: eae7ca90a63d4513f48d00737a30ca9bc67d3586 (
plain) (
blame)
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
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright (C) 2005-2010 Aaron Bentley <abentley@panoramicfeedback.com>
# Gianluca Montecchi <gian@grys.it>
# Marien Zwart <marienz@gentoo.org>
# W. Trevor King <wking@drexel.edu>
#
# This file is part of Bugs Everywhere.
#
# Bugs Everywhere is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 2 of the License, or (at your
# option) any later version.
#
# Bugs Everywhere is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Bugs Everywhere. If not, see <http://www.gnu.org/licenses/>.
"""
Allow simple listing and loading of the various becommands and libbe
submodules (i.e. "plugins").
"""
import os
import os.path
import sys
_PLUGIN_PATH = os.path.realpath(
os.path.dirname(
os.path.dirname(
os.path.dirname(__file__))))
if _PLUGIN_PATH not in sys.path:
sys.path.append(_PLUGIN_PATH)
def import_by_name(modname):
"""
>>> mod = import_by_name('libbe.bugdir')
>>> 'BugDir' in dir(mod)
True
>>> import_by_name('libbe.highly_unlikely')
Traceback (most recent call last):
...
ImportError: No module named highly_unlikely
"""
module = __import__(modname)
components = modname.split('.')
for comp in components[1:]:
module = getattr(module, comp)
return module
def modnames(prefix):
"""
>>> 'list' in [n for n in modnames('libbe.command')]
True
>>> 'plugin' in [n for n in modnames('libbe.util')]
True
"""
components = prefix.split('.')
modfiles = os.listdir(os.path.join(_PLUGIN_PATH, *components))
modfiles.sort()
for modfile in modfiles:
if modfile.startswith('.'):
continue # the occasional emacs temporary file
if modfile.endswith('.py') and modfile != '__init__.py':
yield modfile[:-3]
|