1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
|
import os
import sys
from confpetsc import setup as _setup
from confpetsc import Extension
from confpetsc import config as _config
from confpetsc import build as _build
from confpetsc import build_src as _build_src
from confpetsc import build_ext as _build_ext
from confpetsc import install as _install
from confpetsc import log
from confpetsc import makefile
from confpetsc import strip_prefix
from confpetsc import split_quoted
from confpetsc import DistutilsError
from confpetsc import PetscConfig
# --------------------------------------------------------------------
class SlepcConfig(PetscConfig):
def __init__(self, slepc_dir, petsc_dir, petsc_arch, dest_dir=None):
PetscConfig.__init__(self, petsc_dir, petsc_arch, dest_dir='')
if dest_dir is None:
dest_dir = os.environ.get('DESTDIR')
if not slepc_dir:
raise DistutilsError("SLEPc not found")
if not os.path.isdir(slepc_dir):
raise DistutilsError("invalid SLEPC_DIR")
self.sversion = self._get_slepc_version(slepc_dir)
self._get_slepc_config(petsc_dir,slepc_dir)
self.SLEPC_DIR = self['SLEPC_DIR']
self.SLEPC_DESTDIR = dest_dir
self.SLEPC_LIB = self['SLEPC_LIB']
self.SLEPC_EXTERNAL_LIB_DIR = self['SLEPC_EXTERNAL_LIB_DIR']
def _get_slepc_version(self, slepc_dir):
import re
version_re = {
'major' : re.compile(r"#define\s+SLEPC_VERSION_MAJOR\s+(\d+)"),
'minor' : re.compile(r"#define\s+SLEPC_VERSION_MINOR\s+(\d+)"),
'micro' : re.compile(r"#define\s+SLEPC_VERSION_SUBMINOR\s+(\d+)"),
'release': re.compile(r"#define\s+SLEPC_VERSION_RELEASE\s+(-*\d+)"),
}
slepcversion_h = os.path.join(slepc_dir, 'include', 'slepcversion.h')
with open(slepcversion_h, 'rt') as f: data = f.read()
major = int(version_re['major'].search(data).groups()[0])
minor = int(version_re['minor'].search(data).groups()[0])
micro = int(version_re['micro'].search(data).groups()[0])
release = int(version_re['release'].search(data).groups()[0])
return (major, minor, micro), (release == 1)
def _get_slepc_config(self, petsc_dir, slepc_dir):
from os.path import join, isdir
PETSC_DIR = petsc_dir
SLEPC_DIR = slepc_dir
PETSC_ARCH = self.PETSC_ARCH
confdir = join('lib', 'slepc', 'conf')
if not (PETSC_ARCH and isdir(join(SLEPC_DIR, PETSC_ARCH))):
PETSC_ARCH = ''
variables = join(SLEPC_DIR, confdir, 'slepc_variables')
slepcvariables = join(SLEPC_DIR, PETSC_ARCH, confdir, 'slepcvariables')
with open(variables) as f:
contents = f.read()
with open(slepcvariables) as f:
contents += f.read()
try:
from cStringIO import StringIO
except ImportError:
from io import StringIO
confstr = 'PETSC_DIR = %s\n' % PETSC_DIR
confstr += 'PETSC_ARCH = %s\n' % PETSC_ARCH
confstr = 'SLEPC_DIR = %s\n' % SLEPC_DIR
confstr += contents
slepc_confdict = makefile(StringIO(confstr))
self.configdict['SLEPC_DIR'] = SLEPC_DIR
self.configdict['SLEPC_LIB'] = slepc_confdict['SLEPC_LIB']
dirlist = []
flags = split_quoted(slepc_confdict['SLEPC_EXTERNAL_LIB'])
for entry in [lib[2:] for lib in flags if lib.startswith('-L')]:
if entry not in dirlist:
dirlist.append(entry)
self.configdict['SLEPC_EXTERNAL_LIB_DIR'] = dirlist
def configure_extension(self, extension):
PetscConfig.configure_extension(self, extension)
SLEPC_DIR = self.SLEPC_DIR
PETSC_ARCH = self.PETSC_ARCH
SLEPC_DESTDIR = self.SLEPC_DESTDIR
# take into account the case of prefix PETSc with non-prefix SLEPc
SLEPC_ARCH_DIR = PETSC_ARCH or os.environ.get('PETSC_ARCH', '')
# includes and libraries
SLEPC_INCLUDE = [
os.path.join(SLEPC_DIR, SLEPC_ARCH_DIR, 'include'),
os.path.join(SLEPC_DIR, 'include'),
]
SLEPC_LIB_DIR = [
os.path.join(SLEPC_DIR, SLEPC_ARCH_DIR, 'lib'),
os.path.join(SLEPC_DIR, 'lib'),
] + self.SLEPC_EXTERNAL_LIB_DIR
slepc_cfg = { }
slepc_cfg['include_dirs'] = SLEPC_INCLUDE
slepc_cfg['library_dirs'] = SLEPC_LIB_DIR
slepc_cfg['libraries'] = [
lib[2:] for lib in split_quoted(self.SLEPC_LIB)
if lib.startswith('-l')
]
# runtime_library_dirs is not supported on Windows
if sys.platform != 'win32':
rpath = [strip_prefix(SLEPC_DESTDIR, d) for d in SLEPC_LIB_DIR]
if sys.modules.get('slepc') is not None:
if sys.platform == 'darwin':
rpath = ['@loader_path/../../slepc/lib']
else:
rpath = ['$ORIGIN/../../slepc/lib']
slepc_cfg['runtime_library_dirs'] = rpath
self._configure_ext(extension, slepc_cfg)
if self['BUILDSHAREDLIB'] == 'no':
from petsc4py.lib import ImportPETSc
PETSc = ImportPETSc(PETSC_ARCH)
extension.extra_objects.append(PETSc.__file__)
# extra configuration
cflags = []
extension.extra_compile_args.extend(cflags)
lflags = []
extension.extra_link_args.extend(lflags)
def log_info(self):
if not self.SLEPC_DIR: return
version = ".".join([str(i) for i in self.sversion[0]])
release = ("development", "release")[self.sversion[1]]
version_info = version + ' ' + release
log.info('SLEPC_DIR: %s' % self.SLEPC_DIR)
log.info('version: %s' % version_info)
PetscConfig.log_info(self)
# --------------------------------------------------------------------
cmd_slepc_opts = [
('slepc-dir=', None,
"define SLEPC_DIR, overriding environmental variable.")
]
class config(_config):
Configure = SlepcConfig
user_options = _config.user_options + cmd_slepc_opts
def initialize_options(self):
_config.initialize_options(self)
self.slepc_dir = None
def get_config_arch(self, arch):
return config.Configure(self.slepc_dir, self.petsc_dir, arch)
def run(self):
self.slepc_dir = config.get_slepc_dir(self.slepc_dir)
if self.slepc_dir is None: return
log.info('-' * 70)
log.info('SLEPC_DIR: %s' % self.slepc_dir)
_config.run(self)
#@staticmethod
def get_slepc_dir(slepc_dir):
if not slepc_dir: return None
slepc_dir = os.path.expandvars(slepc_dir)
if not slepc_dir or '$SLEPC_DIR' in slepc_dir:
try:
import slepc
slepc_dir = slepc.get_slepc_dir()
except ImportError:
log.warn("SLEPC_DIR not specified")
return None
slepc_dir = os.path.expanduser(slepc_dir)
slepc_dir = os.path.abspath(slepc_dir)
if not os.path.isdir(slepc_dir):
log.warn('invalid SLEPC_DIR: %s' % slepc_dir)
return None
return slepc_dir
get_slepc_dir = staticmethod(get_slepc_dir)
class build(_build):
user_options = _build.user_options + cmd_slepc_opts
def initialize_options(self):
_build.initialize_options(self)
self.slepc_dir = None
def finalize_options(self):
_build.finalize_options(self)
self.set_undefined_options('config',
('slepc_dir', 'slepc_dir'),)
self.slepc_dir = config.get_slepc_dir(self.slepc_dir)
class build_src(_build_src):
pass
class build_ext(_build_ext):
user_options = _build_ext.user_options + cmd_slepc_opts
def initialize_options(self):
_build_ext.initialize_options(self)
self.slepc_dir = None
def finalize_options(self):
_build_ext.finalize_options(self)
self.set_undefined_options('build',
('slepc_dir', 'slepc_dir'))
def get_config_arch(self, arch):
return config.Configure(self.slepc_dir, self.petsc_dir, arch)
def get_config_data(self, arch_list):
DESTDIR = None
for arch in arch_list:
conf = self.get_config_arch(arch)
DESTDIR = conf.SLEPC_DESTDIR # all archs will have same value
template = "\n".join([
"SLEPC_DIR = %(SLEPC_DIR)s",
"PETSC_DIR = %(PETSC_DIR)s",
"PETSC_ARCH = %(PETSC_ARCH)s",
]) + "\n"
variables = {
'SLEPC_DIR' : strip_prefix(DESTDIR, self.slepc_dir),
'PETSC_DIR' : self.petsc_dir,
'PETSC_ARCH' : os.path.pathsep.join(arch_list)
}
return template, variables
def get_source_files(self):
orig = log.set_threshold(log.WARN)
try:
return super().get_source_files()
finally:
log.set_threshold(orig)
class install(_install):
pass
cmdclass_list = [
config,
build,
build_src,
build_ext,
install,
]
# --------------------------------------------------------------------
def setup(**attrs):
cmdclass = attrs.setdefault('cmdclass', {})
for cmd in cmdclass_list:
cmdclass.setdefault(cmd.__name__, cmd)
return _setup(**attrs)
# --------------------------------------------------------------------
|