Mercurial > moin > 1.9
view MoinMoin/util/pysupport.py @ 4363:817d99d715fe
remove direct usage of deprecated sha module - use hashlib, if possible
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Fri, 03 Oct 2008 22:33:35 +0200 |
parents | 8fea1d0ca8ac |
children |
line wrap: on
line source
# -*- coding: iso-8859-1 -*- """ MoinMoin - Supporting function for Python magic @copyright: 2002 Juergen Hermann <jh@web.de> @license: GNU GPL, see COPYING for details. """ ############################################################################# ### Module import / Plugins ############################################################################# def isImportable(module): """ Check whether a certain module is available. """ try: __import__(module) return 1 except ImportError: return 0 def getPluginModules(packagedir): """ Return a list of plugin modules for a given plugin package dir, omitting any that start with an underscore. """ import os, re pyre = re.compile(r"^([^_].*)\.py$") dirlist = os.listdir(packagedir) matches = [pyre.match(fn) for fn in dirlist] modules = [match.group(1) for match in matches if match] modules.sort() return modules def getPackageModules(packagefile): """ Return a list of modules for a package, omitting any modules starting with an underscore. """ import os, re packagedir = os.path.dirname(packagefile) in_plugin_dir = lambda dir, ops=os.path.split: ops(ops(dir)[0])[1] == "plugin" moinmodule = __import__('MoinMoin') # Is it in a .zip file? if not in_plugin_dir(packagedir) and hasattr(moinmodule, '__loader__'): pyre = re.compile(r"^([^_].*)\.py(?:c|o)$") zipfiles = moinmodule.__loader__._files dirlist = [entry[0].replace(r'/', '\\').split('\\')[-1] for entry in zipfiles.values() if packagedir in entry[0]] else: pyre = re.compile(r"^([^_].*)\.py$") dirlist = os.listdir(packagedir) matches = [pyre.match(fn) for fn in dirlist] modules = [match.group(1) for match in matches if match] modules.sort() return modules def importName(modulename, name): """ Import name dynamically from module Used to do dynamic import of modules and names that you know their names only in runtime. Any error raised here must be handled by the caller. @param modulename: full qualified mudule name, e.g. x.y.z @param name: name to import from modulename @rtype: any object @return: name from module """ module = __import__(modulename, globals(), {}, [name]) return getattr(module, name) def makeThreadSafe(function, lock=None): """ Call with a function you want to make thread safe Call without lock to make the function thread safe using one lock per function. Call with existing lock object if you want to make several functions use same lock, e.g. all functions that change same data structure. @param function: function to make thread safe @param lock: threading.Lock instance or None @rtype: function @return: function decorated with locking """ if lock is None: import threading lock = threading.Lock() def decorated(*args, **kw): lock.acquire() try: return function(*args, **kw) finally: lock.release() return decorated