mirror of https://github.com/VLSIDA/OpenRAM.git
Add meta path finder for custom modules
This commit is contained in:
parent
85db2043b2
commit
86372bbeb7
48
__init__.py
48
__init__.py
|
|
@ -7,19 +7,17 @@
|
|||
#
|
||||
import os
|
||||
|
||||
# Attempt to add the source code to the PYTHONPATH here before running globals.init_openram().
|
||||
|
||||
# Attempt to add the source code to the PYTHONPATH here before running globals.init_openram()
|
||||
try:
|
||||
OPENRAM_HOME = os.path.abspath(os.environ.get("OPENRAM_HOME"))
|
||||
except:
|
||||
OPENRAM_HOME = os.path.dirname(os.path.abspath(__file__)) + "/compiler"
|
||||
|
||||
if not os.path.isdir(OPENRAM_HOME):
|
||||
assert False
|
||||
|
||||
# Make sure that OPENRAM_HOME is an environment variable just in case
|
||||
if "OPENRAM_HOME" not in os.environ.keys():
|
||||
os.environ["OPENRAM_HOME"] = OPENRAM_HOME
|
||||
|
||||
# Prepend $OPENRAM_HOME to __path__ so that openram will use those modules
|
||||
__path__.insert(0, OPENRAM_HOME)
|
||||
|
||||
|
|
@ -29,7 +27,6 @@ if os.path.exists(OPENRAM_HOME + "/install_conda.sh"):
|
|||
CONDA_HOME = OPENRAM_HOME + "/miniconda"
|
||||
elif os.path.exists(OPENRAM_HOME + "/../install_conda.sh"):
|
||||
CONDA_HOME = os.path.abspath(OPENRAM_HOME + "/../miniconda")
|
||||
|
||||
# Add CONDA_HOME to environment variables
|
||||
try:
|
||||
os.environ["CONDA_HOME"] = CONDA_HOME
|
||||
|
|
@ -41,9 +38,46 @@ except:
|
|||
# Import everything in globals.py
|
||||
from .globals import *
|
||||
# Import classes in the "openram" namespace
|
||||
# sram_config should be imported before sram
|
||||
from .sram_config import *
|
||||
from .sram import *
|
||||
|
||||
from .rom_config import *
|
||||
from .rom import *
|
||||
|
||||
|
||||
# Add a meta path finder for custom modules
|
||||
from importlib.abc import MetaPathFinder
|
||||
class custom_module_finder(MetaPathFinder):
|
||||
"""
|
||||
This class is a 'hook' in Python's import system. If it encounters a module
|
||||
that can be customized, it checks if there is a custom module specified in
|
||||
the configuration file. If there is a custom module, it is imported instead
|
||||
of the default one.
|
||||
"""
|
||||
def find_spec(self, fullname, path, target=None):
|
||||
# Get package and module names
|
||||
package_name = fullname.split(".")[0]
|
||||
module_name = fullname.split(".")[-1]
|
||||
# Skip if the package is not openram
|
||||
if package_name != "openram":
|
||||
return None
|
||||
# Check if this module can be custom
|
||||
from openram import OPTS
|
||||
if module_name in OPTS.__dict__.keys():
|
||||
# Get custom name from OPTS
|
||||
custom_name = OPTS.__dict__[module_name]
|
||||
# Skip if the module is default, it will be handled by Python
|
||||
if custom_name == module_name:
|
||||
return None
|
||||
import sys
|
||||
from importlib.util import spec_from_file_location
|
||||
# Try to find the module in sys.path
|
||||
for path in sys.path:
|
||||
for file in os.listdir(path):
|
||||
# If there is a script matching the custom module name,
|
||||
# import it with the default module name
|
||||
if file == (custom_name + ".py"):
|
||||
return spec_from_file_location(module_name, "{0}/{1}.py".format(path, custom_name))
|
||||
return None
|
||||
# Python calls meta path finders and asks them to handle the module import if
|
||||
# they can
|
||||
sys.meta_path.insert(0, custom_module_finder())
|
||||
|
|
|
|||
Loading…
Reference in New Issue