hy/hy/importer.py

79 lines
1.9 KiB
Python
Raw Normal View History

2013-03-04 01:40:46 +01:00
#
from hy.lex import tokenize
from hy.compiler import hy_compile
2013-03-05 04:35:07 +01:00
2013-03-04 01:40:46 +01:00
import imp
2013-03-05 04:35:07 +01:00
import sys
import os
2013-03-04 01:40:46 +01:00
def import_file_to_module(name, fpath):
ast = hy_compile(tokenize(open(fpath, 'r').read()))
mod = imp.new_module(name)
mod.__file__ = fpath
eval(compile(ast, fpath, "exec"), mod.__dict__)
return mod
2013-03-05 04:35:07 +01:00
class HyFinder(object):
def is_package(self, fullname):
dirpath = "/".join(fullname.split("."))
for pth in sys.path:
pth = os.path.abspath(pth)
composed_path = "%s/%s/__init__.hy" % (pth, dirpath)
if os.path.exists(composed_path):
return True
return False
def find_on_path(self, fullname):
fls = ["%s/__init__.hy", "%s.hy"]
dirpath = "/".join(fullname.split("."))
for pth in sys.path:
pth = os.path.abspath(pth)
for fp in fls:
composed_path = fp % ("%s/%s" % (pth, dirpath))
if os.path.exists(composed_path):
return composed_path
class MetaLoader(HyFinder):
def load_module(self, fullname):
if fullname in sys.modules:
return sys.modules[fullname]
pth = self.find_on_path(fullname)
if pth is None:
return
sys.modules[fullname] = None
mod = import_file_to_module(fullname, pth)
ispkg = self.is_package(fullname)
mod.__file__ = pth
mod.__loader__ = self
mod.__name__ = fullname
if ispkg:
mod.__path__ = []
mod.__package__ = fullname
else:
mod.__package__ = fullname.rpartition('.')[0]
sys.modules[fullname] = mod
return mod
class MetaImporter(HyFinder):
def find_module(self, fullname, path=None):
pth = self.find_on_path(fullname)
if pth is None:
return
return MetaLoader()
sys.meta_path.append(MetaImporter())
sys.path.insert(0, "")