util/misc.py
author Laurent Bessard
Wed, 06 Feb 2013 01:18:56 +0100
changeset 925 5f9dd88a605b
parent 815 e4f24593a758
child 1388 67c9a9482d24
permissions -rw-r--r--
Added support for drag'n drop variable from one graph to another with visible graph
"""
Misc definitions
"""

import os,sys

# helper func to check path write permission
def CheckPathPerm(path):
    if path is None or not os.path.isdir(path):
        return False
    for root, dirs, files in os.walk(path):
         for name in files:
             if os.access(root, os.W_OK) is not True or os.access(os.path.join(root, name), os.W_OK) is not True:
                 return False
    return True

def GetClassImporter(classpath):
    if type(classpath)==str:
        def fac():
            mod=__import__(classpath.rsplit('.',1)[0])
            return reduce(getattr, classpath.split('.')[1:], mod)
        return fac
    else:
        return classpath