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 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
# !/usr/bin/env python3
# Copyright 2015 Brockmann Consult GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__author__ = "Norman Fomferra, Brockmann Consult GmbH"
__copyright__ = "Copyright 2015 Brockmann Consult GmbH"
__license__ = "Apache 2.0"
__version__ = "0.8.0"
import sys
import os
import os.path
import platform
import subprocess
import shutil
import glob
#import ez_setup
#ez_setup.use_setuptools()
from setuptools import setup
from setuptools.extension import Extension
from distutils import log
base_dir = os.path.dirname(os.path.abspath(__file__))
src_main_c_dir = os.path.join(base_dir, 'src', 'main', 'c')
src_test_py_dir = os.path.join(base_dir, 'src', 'test', 'python')
import jpyutil
print('Using ' + jpyutil.__file__)
do_maven = False
if '--maven' in sys.argv:
do_maven = True
sys.argv.remove('--maven')
else:
print('Note that you can use non-standard global option [--maven] '
'to force a Java Maven build for the jpy Java API')
sources = [
os.path.join(src_main_c_dir, 'jpy_module.c'),
os.path.join(src_main_c_dir, 'jpy_diag.c'),
os.path.join(src_main_c_dir, 'jpy_conv.c'),
os.path.join(src_main_c_dir, 'jpy_compat.c'),
os.path.join(src_main_c_dir, 'jpy_jtype.c'),
os.path.join(src_main_c_dir, 'jpy_jarray.c'),
os.path.join(src_main_c_dir, 'jpy_jobj.c'),
os.path.join(src_main_c_dir, 'jpy_jmethod.c'),
os.path.join(src_main_c_dir, 'jpy_jfield.c'),
os.path.join(src_main_c_dir, 'jni/org_jpy_PyLib.c'),
]
headers = [
os.path.join(src_main_c_dir, 'jpy_module.h'),
os.path.join(src_main_c_dir, 'jpy_diag.h'),
os.path.join(src_main_c_dir, 'jpy_conv.h'),
os.path.join(src_main_c_dir, 'jpy_compat.h'),
os.path.join(src_main_c_dir, 'jpy_jtype.h'),
os.path.join(src_main_c_dir, 'jpy_jarray.h'),
os.path.join(src_main_c_dir, 'jpy_jobj.h'),
os.path.join(src_main_c_dir, 'jpy_jmethod.h'),
os.path.join(src_main_c_dir, 'jpy_jfield.h'),
os.path.join(src_main_c_dir, 'jni/org_jpy_PyLib.h'),
]
# Python unit tests that just use Java runtime classes (rt.jar)
python_java_rt_tests = [
os.path.join(src_test_py_dir, 'jpy_rt_test.py'),
os.path.join(src_test_py_dir, 'jpy_mt_test.py'),
os.path.join(src_test_py_dir, 'jpy_diag_test.py'),
# os.path.join(src_test_py_dir, 'jpy_perf_test.py'),
]
# Python unit tests that require jpy test fixture classes to be accessible
# via JRE system property '-Djava.class.path=target/test-classes'
python_java_jpy_tests = [
os.path.join(src_test_py_dir, 'jpy_array_test.py'),
os.path.join(src_test_py_dir, 'jpy_field_test.py'),
os.path.join(src_test_py_dir, 'jpy_retval_test.py'),
os.path.join(src_test_py_dir, 'jpy_exception_test.py'),
os.path.join(src_test_py_dir, 'jpy_overload_test.py'),
os.path.join(src_test_py_dir, 'jpy_typeconv_test.py'),
os.path.join(src_test_py_dir, 'jpy_typeres_test.py'),
os.path.join(src_test_py_dir, 'jpy_modretparam_test.py'),
os.path.join(src_test_py_dir, 'jpy_gettype_test.py'),
]
# e.g. jdk_home_dir = '/home/marta/jdk1.7.0_15'
jdk_home_dir = jpyutil.find_jdk_home_dir()
if jdk_home_dir is None:
log.error('Error: environment variable "JAVA_HOME" must be set to a JDK (>= v1.7) installation directory')
exit(1)
log.info('Building a %s-bit library for a %s system with JDK at %s' % (
'64' if jpyutil.PYTHON_64BIT else '32', platform.system(), jdk_home_dir))
jvm_dll_file = jpyutil.find_jvm_dll_file(jdk_home_dir)
if not jvm_dll_file:
log.error('Error: Cannot find any JVM shared library')
exit(1)
lib_dir = os.path.join(base_dir, 'lib')
jpy_jar_file = os.path.join(lib_dir, 'jpy.jar')
if do_maven:
#
# Java packaging with Maven
#
if not os.getenv('JAVA_HOME'):
# make sure Maven uses the same JDK which we have used to compile and link the C-code
os.environ['JAVA_HOME'] = jdk_home_dir
mvn_goal = 'package'
log.info("Executing Maven goal '" + mvn_goal + "'")
code = subprocess.call(['mvn', 'clean', mvn_goal, '-DskipTests'], shell=platform.system() == 'Windows')
if code:
exit(code)
#
# Copy JAR results to lib/*.jar
#
if not os.path.exists(lib_dir):
os.mkdir(lib_dir)
target_dir = os.path.join(base_dir, 'target')
jar_files = glob.glob(os.path.join(target_dir, '*.jar'))
jar_files = [f for f in jar_files if not (f.endswith('-sources.jar') or f.endswith('-javadoc.jar'))]
if not jar_files:
log.error('Maven did not generate any JAR artifacts')
exit(1)
for jar_file in jar_files:
log.info("Copying " + jar_file + " -> " + lib_dir + "")
shutil.copy(jar_file, lib_dir)
#
# Prepare setup arguments and call setup
#
jvm_dll_dir = os.path.dirname(jvm_dll_file)
include_dirs = [src_main_c_dir, os.path.join(jdk_home_dir, 'include')]
library_dirs = [jvm_dll_dir]
libraries = [jpyutil.JVM_LIB_NAME]
define_macros = []
extra_link_args = []
extra_compile_args = []
if platform.system() == 'Windows':
define_macros += [('WIN32', '1')]
include_dirs += [os.path.join(jdk_home_dir, 'include', 'win32')]
library_dirs += [os.path.join(jdk_home_dir, 'lib')]
elif platform.system() == 'Linux':
include_dirs += [os.path.join(jdk_home_dir, 'include', 'linux')]
libraries += ['dl']
extra_link_args += ['-Xlinker', '-rpath', jvm_dll_dir]
elif platform.system() == 'Darwin':
include_dirs += [os.path.join(jdk_home_dir, 'include', 'darwin')]
library_dirs += [os.path.join(sys.exec_prefix, 'lib')]
extra_link_args += ['-Xlinker', '-rpath', jvm_dll_dir]
with open('README.rst') as file:
long_description = file.read()
with open('CHANGES.txt') as file:
changelog = file.read()
dist = setup(name='jpy',
description='Bi-directional Python-Java bridge',
long_description=long_description + '\n\n' + changelog,
version=__version__,
platforms='Windows, Linux, Darwin',
author=__author__,
author_email='norman.fomferra@brockmann-consult.de',
maintainer='Brockmann Consult GmbH',
maintainer_email='norman.fomferra@brockmann-consult.de',
license=__license__,
url='https://github.com/bcdev/jpy',
download_url='https://pypi.python.org/pypi/jpy/' + __version__,
py_modules=['jpyutil'],
package_data={'': [jpy_jar_file]},
ext_modules=[Extension('jpy',
sources=sources,
depends=headers,
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=libraries,
extra_link_args=extra_link_args,
extra_compile_args=extra_compile_args,
define_macros=define_macros),
Extension('jdl',
sources=[os.path.join(src_main_c_dir, 'jni/org_jpy_DL.c')],
depends=[os.path.join(src_main_c_dir, 'jni/org_jpy_DL.h')],
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=libraries,
extra_link_args=extra_link_args,
extra_compile_args=extra_compile_args,
define_macros=define_macros),
],
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: Apache 2 License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)
#import pprint
#pprint.pprint(dist)
#pprint.pprint(dist.__dict__)
#pprint.pprint(dist.commands)
#pprint.pprint(dist.command_obj)
#pprint.pprint(dist.command_obj['build'].__dict__)
#pprint.pprint(dist.command_obj['install'].__dict__)
#pprint.pprint(dist.command_obj['install_lib'].__dict__)
#pprint.pprint(dist.command_obj['bdist_egg'].__dict__)
#pprint.pprint(dist.command_obj['egg_info'].__dict__)
#
# Continue with custom setup if 'build' step is included in commands
#
if dist.commands and len(dist.commands) > 0 \
and dist.command_obj and len(dist.command_obj) > 0 \
and 'clean' not in dist.command_obj \
and 'build' in dist.command_obj:
#
# Get build directory (whose content we'll zip and in which we test)
#
build_dir = dist.command_obj['build'].build_lib
if not os.path.exists(build_dir):
log.error("Missing build directory '" + build_dir + "'")
exit(1)
#
# Get install directory
#
install_dir = None
if 'install' in dist.command_obj:
install_dir = dist.command_obj['install'].install_lib
if not os.path.exists(install_dir):
log.warn("Missing install directory '" + install_dir + "'")
install_dir = None
#
# Get egg (archive/directory) name
#
egg_name = None
if 'bdist_egg' in dist.command_obj:
egg_output = dist.command_obj['bdist_egg'].egg_output
if egg_output:
egg_name = os.path.basename(dist.command_obj['bdist_egg'].egg_output)
#
# Write jpy configuration files to target directories
#
def _write_jpy_config(target_dir, jvm_dll_file, jdk_home_dir):
log.info('Writing jpy configuration to ' + target_dir)
return subprocess.call([sys.executable,
os.path.join(target_dir, 'jpyutil.py'),
'--jvm_dll', jvm_dll_file,
'--java_home', jdk_home_dir,
'--log_level', 'DEBUG',
'--req_java',
'--req_py'])
code = _write_jpy_config(build_dir, jvm_dll_file, jdk_home_dir)
if code != 0:
exit(code)
if install_dir and install_dir != build_dir:
if egg_name:
egg_dir = os.path.join(install_dir, egg_name)
if os.path.exists(os.path.join(egg_dir, 'jpyutil.py')):
code = _write_jpy_config(egg_dir, jvm_dll_file, jdk_home_dir)
if code != 0:
exit(code)
else:
if os.path.exists(os.path.join(install_dir, 'jpyutil.py')):
code = _write_jpy_config(install_dir, jvm_dll_file, jdk_home_dir)
if code != 0:
exit(code)
#
# Ensure that the build directory is on Python's 'sys.path' when invoking
# Python via subprocess.call([sys.executable, ...]) from this script.
#
class EnvVar:
def __init__(self, name):
self.name = name
self.changed = False
self.saved_value = self.get_value()
def __del__(self):
self.restore()
def get_value(self):
return os.environ.get(self.name)
def set_value(self, value):
self._set_value(value)
self.changed = True
def _set_value(self, value):
log.info("setting environment variable '" + self.name + "' to " + repr(value))
if value:
os.environ[self.name] = value
else:
os.environ.pop(self.name)
def prepend_path(self, path):
old_value = self.get_value()
new_value = os.pathsep.join([path, old_value]) if old_value else path
self.set_value(new_value)
def restore(self):
if self.changed:
self._set_value(self.saved_value)
self.changed = False
pp = EnvVar('PYTHONPATH')
#
# Python unit tests with Java runtime classes
#
log.info('Executing Python unit tests (against Java runtime classes)...')
pp.prepend_path(build_dir)
fails = jpyutil._execute_python_scripts(python_java_rt_tests)
pp.restore()
if fails > 0:
log.error(str(fails) + ' Python unit test(s) failed. Installation is likely broken.')
exit(1)
if do_maven:
#
# Python unit tests with jpy test classes built by Maven
#
log.info('Executing Python unit tests (against jpy test classes)...')
pp.prepend_path(build_dir)
fails = jpyutil._execute_python_scripts(python_java_jpy_tests)
pp.restore()
if fails > 0:
log.error(str(fails) + ' Python unit test(s) failed. Installation is likely broken.')
exit(1)
#
# Java install or test with Maven. Goal 'package' has already been achieved.
#
if 'install' in dist.commands:
mvn_goal = 'install'
else:
mvn_goal = 'test'
mvn_args = '-DargLine=-Xmx512m -Djpy.config=' + os.path.join(build_dir,
'jpyconfig.properties') + ' -Djpy.debug=true'
log.info("Executing Maven goal " + repr(mvn_goal) + " with arg line " + repr(mvn_args))
code = subprocess.call(['mvn', mvn_goal, mvn_args], shell=platform.system() == 'Windows')
if code:
exit(code)
if install_dir:
log.info("")
log.info("jpy has been successfully installed into '" + install_dir + "'.")
log.info("To configure jpy with respect to given JDK/JRE please use the jpyutil tool/module.")
|