Browse Source

more stable import of information from storm via cmake, more flags

refactoring
Sebastian Junges 8 years ago
parent
commit
f9c008c965
  1. 2
      CMakeLists.txt
  2. 26
      cmake/CMakeLists.txt
  3. 6
      cmake/config.py.in
  4. 57
      setup.py

2
CMakeLists.txt

@ -52,3 +52,5 @@ stormpy_module(utility)
if(HAVE_STORM_DFT)
stormpy_module(dft "${STORMPY_LIB_DIR}/dft" storm-dft "${storm-dft_INCLUDE_DIR}")
endif()

26
cmake/CMakeLists.txt

@ -11,5 +11,27 @@ else()
set(HAVE_STORM_DFT FALSE)
endif()
message(STATUS "STORM-DIR: ${storm_DIR}")
message(STATUS "HAVE-STORM-DFT: ${HAVE_STORM_DFT}")
# Set configuration
set(STORM_DIR ${storm_DIR})
if(HAVE_STORM_DFT)
set(HAVE_STORM_DFT_BOOL "True")
else()
set(HAVE_STORM_DFT_BOOL "False")
endif()
if(STORM_USE_CLN_EA)
set(STORM_CLN_EA_BOOL "True")
else()
set(STORM_CLN_EA_BOOL "False")
endif()
if(STORM_USE_CLN_RF)
set(STORM_CLN_RF_BOOL "True")
else()
set(STORM_CLN_RF_BOOL "False")
endif()
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.py.in ${CMAKE_CURRENT_BINARY_DIR}/generated/config.py @ONLY)

6
cmake/config.py.in

@ -0,0 +1,6 @@
# Auto-generated by Cmake.
STORM_DIR = "@STORM_DIR@"
STORM_CLN_EA = @STORM_CLN_EA_BOOL@
STORM_CLN_RF = @STORM_CLN_RF_BOOL@
HAVE_STORM_DFT = @HAVE_STORM_DFT_BOOL@

57
setup.py

@ -3,6 +3,7 @@ import os
import sys
import subprocess
import re
import datetime
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
@ -12,6 +13,9 @@ if sys.version_info[0] == 2:
sys.exit('Sorry, Python 2.x is not supported')
import importlib.util
class CMakeExtension(Extension):
def __init__(self, name, sourcedir='', subdir=''):
Extension.__init__(self, name, sources=[])
@ -19,12 +23,18 @@ class CMakeExtension(Extension):
self.subdir = subdir
class CMakeBuild(build_ext):
user_options = build_ext.user_options + [
('storm-dir=', None, 'Path to storm root (binary) location')
]
def extdir(self, extname):
return os.path.abspath(os.path.dirname(self.get_ext_fullpath(extname)))
def run(self):
self.conf = None
try:
_ = subprocess.check_output(['cmake', '--version'])
except OSError:
@ -40,26 +50,31 @@ class CMakeBuild(build_ext):
if self.storm_dir is not None:
cmake_args = ['-Dstorm_DIR=' + self.storm_dir]
output = subprocess.check_output(['cmake', os.path.abspath("cmake")] + cmake_args, cwd=build_temp_version)
output = output.decode('ascii')
match = re.search(r"STORM-DIR: (.*)", output)
assert(match)
storm_dir = match.group(1)
match = re.search(r"HAVE-STORM-DFT: (.*)", output)
assert(match)
self.have_storm_dft = True if match.group(1) == "TRUE" else False
# Set variable in _config.py
with open(os.path.join("lib", "stormpy", "dft", "_config.py"), "w") as f:
f.write("# Generated from setup.py\n")
f.write("has_storm_dft = {}".format(self.have_storm_dft))
spec = importlib.util.spec_from_file_location("genconfig", os.path.join(build_temp_version, 'generated/config.py'))
self.conf = importlib.util.module_from_spec(spec)
spec.loader.exec_module(self.conf)
print(self.conf.HAVE_STORM_DFT)
for ext in self.extensions:
if ext.name == "dft":
if self.have_storm_dft:
self.build_extension(ext)
else:
if ext.name == "info":
with open(os.path.join(self.extdir(ext.name), ext.subdir, "_config.py"), "w") as f:
f.write("# Generated from setup.py at {}\n".format(datetime.datetime.now()))
f.write("storm_cln_ea = {}\n".format(self.conf.STORM_CLN_EA))
f.write("storm_cln_rf = {}".format(self.conf.STORM_CLN_RF))
elif ext.name == "dft":
with open(os.path.join(self.extdir(ext.name), ext.subdir, "_config.py"), "w") as f:
f.write("# Generated from setup.py at {}\n".format(datetime.datetime.now()))
f.write("has_storm_dft = {}".format(self.conf.HAVE_STORM_DFT))
if not self.conf.HAVE_STORM_DFT:
print("WARNING: storm-dft not found. No support for DFTs will be built.")
else:
self.build_extension(ext)
continue
self.build_extension(ext)
def initialize_options(self):
@ -72,7 +87,7 @@ class CMakeBuild(build_ext):
build_ext.finalize_options(self)
def build_extension(self, ext):
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
extdir = self.extdir(ext.name)
print(extdir)
cmake_args = ['-DSTORMPY_LIB_DIR=' + extdir,
'-DPYTHON_EXECUTABLE=' + sys.executable]
@ -82,9 +97,9 @@ class CMakeBuild(build_ext):
cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
build_args += ['--', '-j{}'.format(os.cpu_count() if os.cpu_count() is not None else 2)]
if self.storm_dir is not None:
cmake_args += ['-Dstorm_DIR=' + self.storm_dir]
if self.have_storm_dft:
if self.conf.STORM_DIR is not None:
cmake_args += ['-Dstorm_DIR=' + self.conf.STORM_DIR]
if self.conf.HAVE_STORM_DFT:
cmake_args += ['-DHAVE_STORM_DFT=ON']
env = os.environ.copy()

Loading…
Cancel
Save