Swisspost 460d0e0780 sVote source code publication | 5 years ago | |
---|---|---|
.. | ||
scytl-math | 5 years ago | |
scytl-math-native | 5 years ago | |
.gitattributes | 5 years ago | |
.gitignore | 5 years ago | |
README.md | 5 years ago | |
THIRD-PARTY.txt | 5 years ago | |
pom.xml | 5 years ago |
Scytl Math Library provides some useful mathematical primitives for projects being developed in Scytl. It also provides native optimization for some important functions from the standard Java library.
The codebase of Scytl Math contains both Java and native code.
The Java code provides public API to be used in other projects. It also provides pure Java implementation for all API it defines.
The native code only provides optimization for some critical operations like BigInteger.modPow
. The native code is optional by design, it is not mandatory neither for building dependent projects nor in runtime. If the Java code cannot load the native code via standard JNI mechanism it uses pure Java implementation as a fallback.
It is very important to keep the native code optional. That is why Java and native code are developed in separate modules scytl-math
and scytl-math-native
. The first one is an ordinary jar
module and the second is a nar
module to be built with nar-maven-plugin
.
Currently Scytl Math can be build for 64bit Linux and Windows only. The following steps should be performed to prepare the build infrastructure
JAVA_HOME
environment property pointing to the root of JDK installation.$JAVA_HOME/bin
(%JAVA_HOME%\bin
on Windows) to PATH
if necessary.bin
subfolder of the Maven installation folder to PATH
.gcc
and make
are fresh and properly installed.C:\msys64
.C:\msys64\usr\bin
to PATH
.Windows: Open command prompt and install make
package with command
packman -S make
Windows: Download 64bit MinGW from https://sourceforge.net/projects/mingw-w64/.
Windows: Install 64bit MinGW into a folder without space, for example, C:\mingw-w64
. Warning! It is very important to choose x86_64 architecture during installation, by default the installer suggests i586.
Windows: Add C:\mingw-64\x86_64-x.x.x-posix-seh-rt_v4-rev0\mingw64\bin
to PATH
.
Windows: Check your environment using the commands
bash
java -v
javah -h
gcc -v
make -v
The default build is performed using Scytl's Maven repository and standard Maven commands like mvn clean package
or mavn clean install
. The native code will be built for the host machine only.
Custom build is used when the customer wants to use a special build of GMP library. It is possible to perform the build without Scytl's Maven repository but in such a case the following artifact must be copied to local or public Maven repository
com.scytl.gmp:scytl-gmp:x.x.x
com.github.maven-nar:nar-maven-plugin:3.5.1-scytl
To perform the custom build use a command of the following from
mvn clean package -P custom -Dgmp.include.dir=<folder with gmp.h> -Dgmp.lins.dir==<folder with libgmp.so or libgmp.dll>
The native code will be built for the host machine only.
To publish Scytl Math in public Maven repository do the follwing
maven-deploy
plugin.The following tools may be useful:
tools
folder of the project repository contains the definitions of code style and code format to be imported into IDE.-Dcom.scytl.math.jni.debug=true
allows to detect if there are problems with JNI.nm
and ldd
commands help to investigate problems with JNI.Dependency Walker
(http://www.dependencywalker.com/) utility helps to investigate problems with JNI.To use Scytl Math in other projects add to pom.xml
a dependency like the following
<dependency>
<groupId>com.scytl.math</groupId>
<artifactId>scytl-math</artifactId>
<version>${scytl.math.version}</version>
</dependency>
To deploy Scytl Math with a standalone application just make scytl-math-x.x.x.jar
a part of the application's classpath. If the application requires native optimization then do the following
nar
archive of Scytl GMP Library from Maven repository and extract the required binary. Otherwise download the source from https://gmplib.org and build it.nar
archive of Scytl Math from Maven repository and extract the required binary. Otherwise download the source from Git repository and perform a custom build against the custom build of GMP as described above.libscytl-math.so
(scytl-math.dll
on Windows) where Java can find and load it using standard JNI mechanism. Native library from nar
can have a slightly different name, rename it if necessary or create a symbolic link. Use environment properties LD_LIBRARY_PATH
or PATH
or Java system property -Djava.library.path
to specify where Java can find the Scytl Math native library.Normally managed applications should use a Scytl Math instance deployed as a shared library. However if native optimization is not required then it is possible to make scytl-math-x.x.x.jar
a part of the application's archive. To deploy Scytl Math to the application server treat the application server as a standalone application and apply the procedure described above.