42
42
from bzrlib import (
48
46
from bzrlib import plugins as _mod_plugins
51
from bzrlib.symbol_versioning import deprecated_function, one_three
49
from bzrlib.symbol_versioning import deprecated_function, zero_ninetyone
52
50
from bzrlib.trace import mutter, warning, log_exception_quietly
59
57
"""Get the DEFAULT_PLUGIN_PATH"""
60
58
global DEFAULT_PLUGIN_PATH
61
59
if DEFAULT_PLUGIN_PATH is None:
62
DEFAULT_PLUGIN_PATH = osutils.pathjoin(config.config_dir(), 'plugins')
60
path = [osutils.pathjoin(config.config_dir(), 'plugins')]
61
if getattr(sys, 'frozen', None): # bzr.exe
62
# We need to use relative path to system-wide plugin
63
# directory because bzrlib from standalone bzr.exe
64
# could be imported by another standalone program
65
# (e.g. bzr-config; or TortoiseBzr/Olive if/when they
66
# will become standalone exe). [bialix 20071123]
67
# __file__ typically is
68
# C:\Program Files\Bazaar\lib\library.zip\bzrlib\plugin.pyc
69
# then plugins directory is
70
# C:\Program Files\Bazaar\plugins
71
# so relative path is ../../../plugins
72
path.append(osutils.abspath(osutils.pathjoin(
73
osutils.dirname(__file__), '../../../plugins')))
74
DEFAULT_PLUGIN_PATH = os.pathsep.join(path)
63
75
return DEFAULT_PLUGIN_PATH
78
@deprecated_function(zero_ninetyone)
80
"""Return a dictionary of the plugins."""
81
return dict((name, plugin.module) for name, plugin in plugins().items())
66
84
def disable_plugins():
67
85
"""Disable loading plugins.
82
100
"""Set the path for plugins to be loaded from."""
83
101
path = os.environ.get('BZR_PLUGIN_PATH',
84
102
get_default_plugin_path()).split(os.pathsep)
85
bzr_exe = bool(getattr(sys, 'frozen', None))
86
if bzr_exe: # expand path for bzr.exe
87
# We need to use relative path to system-wide plugin
88
# directory because bzrlib from standalone bzr.exe
89
# could be imported by another standalone program
90
# (e.g. bzr-config; or TortoiseBzr/Olive if/when they
91
# will become standalone exe). [bialix 20071123]
92
# __file__ typically is
93
# C:\Program Files\Bazaar\lib\library.zip\bzrlib\plugin.pyc
94
# then plugins directory is
95
# C:\Program Files\Bazaar\plugins
96
# so relative path is ../../../plugins
97
path.append(osutils.abspath(osutils.pathjoin(
98
osutils.dirname(__file__), '../../../plugins')))
99
103
# Get rid of trailing slashes, since Python can't handle them when
100
104
# it tries to import modules.
101
105
path = map(_strip_trailing_sep, path)
102
if not bzr_exe: # don't look inside library.zip
103
# search the plugin path before the bzrlib installed dir
104
path.append(os.path.dirname(_mod_plugins.__file__))
105
# search the arch independent path if we can determine that and
106
# the plugin is found nowhere else
107
if sys.platform != 'win32':
109
from distutils.sysconfig import get_python_lib
111
# If distutuils is not available, we just won't add that path
114
archless_path = osutils.pathjoin(get_python_lib(), 'bzrlib',
116
if archless_path not in path:
117
path.append(archless_path)
106
# search the plugin path before the bzrlib installed dir
107
path.append(os.path.dirname(_mod_plugins.__file__))
118
108
_mod_plugins.__path__ = path
214
207
## import pdb; pdb.set_trace()
215
208
if re.search('\.|-| ', name):
216
209
sanitised_name = re.sub('[-. ]', '_', name)
217
if sanitised_name.startswith('bzr_'):
218
sanitised_name = sanitised_name[len('bzr_'):]
219
warning("Unable to load %r in %r as a plugin because the "
220
"file path isn't a valid module name; try renaming "
221
"it to %r." % (name, d, sanitised_name))
210
warning("Unable to load %r in %r as a plugin because file path"
211
" isn't a valid module name; try renaming it to %r."
212
% (name, d, sanitised_name))
223
214
warning('Unable to load plugin %r from %r' % (name, d))
224
215
log_exception_quietly()
225
if 'error' in debug.debug_flags:
226
trace.print_exception(sys.exc_info(), sys.stderr)
229
@deprecated_function(one_three)
230
218
def load_from_zip(zip_name):
231
219
"""Load all the plugins in a zip."""
232
220
valid_suffixes = ('.py', '.pyc', '.pyo') # only python modules/packages
235
224
index = zip_name.rindex('.zip')
236
225
except ValueError:
403
390
if getattr(self.module, '__path__', None) is not None:
404
391
return os.path.abspath(self.module.__path__[0])
405
392
elif getattr(self.module, '__file__', None) is not None:
406
path = os.path.abspath(self.module.__file__)
407
if path[-4:] in ('.pyc', '.pyo'):
408
pypath = path[:-4] + '.py'
409
if os.path.isfile(pypath):
393
return os.path.abspath(self.module.__file__)
413
395
return repr(self.module)
429
def load_plugin_tests(self, loader):
430
"""Return the adapted plugin's test suite.
432
:param loader: The custom loader that should be used to load additional
436
if getattr(self.module, 'load_tests', None) is not None:
437
return loader.loadTestsFromModule(self.module)
441
411
def version_info(self):
442
412
"""Return the plugin's version_tuple or None if unknown."""
443
413
version_info = getattr(self.module, 'version_info', None)
444
414
if version_info is not None and len(version_info) == 3:
445
415
version_info = tuple(version_info) + ('final', 0)
446
416
return version_info
448
418
def _get__version__(self):
449
419
version_info = self.version_info()
450
420
if version_info is None: