Package org.bytedeco.javacpp.tools
Class Builder
- java.lang.Object
-
- org.bytedeco.javacpp.tools.Builder
-
public class Builder extends java.lang.ObjectThe Builder is responsible for coordinating efforts between the Parser, the Generator, and the native compiler. It contains the main() method, and basically takes care of the tasks one would expect from a command line build tool, but can also be used programmatically by setting its properties and calling build().
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.String[]buildCommandA system command forProcessBuilderto execute for the build, instead of JavaCPP itself.(package private) ClassScannerclassScanner(package private) booleancleanIf true, deletes all files fromoutputDirectorybefore writing anything in it.(package private) CommandExecutorcommandExecutorAn alternative CommandExecutor to use to execute commands.(package private) booleancompileIf true, compiles the generated source file to a shared library and deletes source.(package private) java.util.Collection<java.lang.String>compilerOptionsContains additional command line options from the user for the native compiler.(package private) java.io.FileconfigDirectoryThe name of the directory where to output config files for GraalVM native-image, if notnull.(package private) booleancopyLibsIf true, also copies to the output directory dependent shared libraries (link and preload).(package private) booleancopyResourcesIf true, also copies to the output directory resources listed in properties.(package private) booleandeleteJniFilesIf true, preserves the generated C++ JNI files after compilation.(package private) java.lang.StringencodingThe name of the character encoding used for input files as well as output files.(package private) java.util.Map<java.lang.String,java.lang.String>environmentVariablesUser specified environment variables to pass to the native compiler.(package private) booleangenerateIf true, attempts to generate C++ JNI files, but if false, only attempts to parse header files.(package private) booleanheaderIf true, also generates C++ header files containing declarations of callback functions.(package private) java.lang.StringjarPrefixThe name of the JAR file to create, if notnull.(package private) LoggerloggerLogger where to send debug, info, warning, and error messages.(package private) java.io.FileoutputDirectoryThe directory where the generated files and compiled shared libraries get written to.(package private) java.lang.StringoutputNameThe name of the output generated source file or shared library.(package private) java.util.PropertiespropertiesAccumulates the various properties loaded from resources, files, command line options, etc.(package private) java.io.FileworkingDirectoryUser specified working directory to execute build subprocesses under.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BuilderaddProperty(java.lang.String key, java.lang.String... values)Adds values to a given property key, seperating them with "platform.path.separator".java.io.File[]build()Starts the build process and returns an array ofFileproduced.BuilderbuildCommand(java.lang.String[] buildCommand)Sets thebuildCommandfield to the argument.BuilderclassesOrPackages(java.lang.String... classesOrPackages)Requests theclassScannerto add a class or all classes from a package.BuilderclassPaths(java.lang.String classPaths)Splits argument withFile.pathSeparatorand appends result to paths of theclassScanner.BuilderclassPaths(java.lang.String... classPaths)Appends argument to the paths of theclassScanner.Builderclean(boolean clean)Sets thecleanfield to the argument.(package private) voidcleanOutputDirectory()DeletesoutputDirectoryifcleanis true.BuildercommandExecutor(CommandExecutor commandExecutor)Sets thecommandExecutorfield to the argument.Buildercompile(boolean compile)Sets thecompilefield to the argument.(package private) intcompile(java.lang.String[] sourceFilenames, java.lang.String outputFilename, ClassProperties properties, java.io.File workingDirectory)Launches and waits for the native compiler to produce a native shared library.BuildercompilerOptions(java.lang.String... options)Appends arguments to thecompilerOptionsfield.BuilderconfigDirectory(java.io.File configDirectory)Sets theconfigDirectoryfield to the argument.BuilderconfigDirectory(java.lang.String configDirectory)Sets theconfigDirectoryfield to the argument.BuildercopyLibs(boolean copyLibs)Sets thecopyLibsfield to the argument.BuildercopyResources(boolean copyResources)Sets thecopyResourcesfield to the argument.(package private) voidcreateJar(java.io.File jarFile, java.lang.String[] classPath, java.io.File... files)Stores all the files in the given JAR file.BuilderdeleteJniFiles(boolean deleteJniFiles)Sets thedeleteJniFilesfield to the argument.Builderencoding(java.lang.String encoding)Sets theencodingfield to the argument.BuilderenvironmentVariables(java.util.Map<java.lang.String,java.lang.String> environmentVariables)Sets theenvironmentVariablesfield to the argument.Buildergenerate(boolean generate)Sets thegeneratefield to the argument.(package private) java.io.File[]generateAndCompile(java.lang.Class[] classes, java.lang.String outputName, boolean first, boolean last)Generates C++ source files for classes, and compiles everything in one shared library whencompile == true.(package private) java.io.FilegetOutputPath(java.lang.Class[] classes, java.lang.String[] sourcePrefixes)Creates and returns the directory where output files should be placed.java.util.PropertiesgetProperties()Returnsproperties.java.lang.StringgetProperty(java.lang.String key)Returnsproperties.getProperty(key).Builderheader(boolean header)Sets theheaderfield to the argument.(package private) voidincludeJavaPaths(ClassProperties properties, boolean header)Tries to find automatically include paths forjni.handjni_md.h, as well as the link and library paths for thejvmlibrary.BuilderjarPrefix(java.lang.String jarPrefix)Sets thejarPrefixfield to the argument.static voidmain(java.lang.String[] args)The terminal shell interface to the Builder.BuilderoutputDirectory(java.io.File outputDirectory)Sets theoutputDirectoryfield to the argument.BuilderoutputDirectory(java.lang.String outputDirectory)Sets theoutputDirectoryfield to the argument.BuilderoutputName(java.lang.String outputName)Sets theoutputNamefield to the argument.(package private) java.io.File[]parse(java.lang.String[] classPath, java.lang.Class cls)CallsParser.parse(File, String[], Class)after creating an instance of the Class.static voidprintHelp()Simply prints out to the display the command line usage.Builderproperties(java.lang.String platform)Sets thepropertiesfield to the ones loaded from resources for the specified platform.Builderproperties(java.util.Properties properties)Adds all the properties of the argument to thepropertiesfield.Builderproperty(java.lang.String keyValue)Sets a property of thepropertiesfield, in either "key=value" or "key:value" format.Builderproperty(java.lang.String key, java.lang.String value)Sets a key/value pair property of thepropertiesfield.BuilderpropertyFile(java.io.File propertyFile)Sets thepropertiesfield to the ones loaded from the specified file.BuilderpropertyFile(java.lang.String filename)Sets thepropertiesfield to the ones loaded from the specified file.BuilderworkingDirectory(java.io.File workingDirectory)Sets theworkingDirectoryfield to the argument.BuilderworkingDirectory(java.lang.String workingDirectory)Sets theworkingDirectoryfield to the argument.
-
-
-
Field Detail
-
logger
final Logger logger
Logger where to send debug, info, warning, and error messages.
-
encoding
java.lang.String encoding
The name of the character encoding used for input files as well as output files.
-
outputDirectory
java.io.File outputDirectory
The directory where the generated files and compiled shared libraries get written to. By default they are placed in the same directory as the.classfile.
-
outputName
java.lang.String outputName
The name of the output generated source file or shared library. This enables single- file output mode. By default, the top-level enclosing classes get one file each.
-
configDirectory
java.io.File configDirectory
The name of the directory where to output config files for GraalVM native-image, if notnull.
-
jarPrefix
java.lang.String jarPrefix
The name of the JAR file to create, if notnull.
-
clean
boolean clean
If true, deletes all files fromoutputDirectorybefore writing anything in it.
-
generate
boolean generate
If true, attempts to generate C++ JNI files, but if false, only attempts to parse header files.
-
compile
boolean compile
If true, compiles the generated source file to a shared library and deletes source.
-
deleteJniFiles
boolean deleteJniFiles
If true, preserves the generated C++ JNI files after compilation.
-
header
boolean header
If true, also generates C++ header files containing declarations of callback functions.
-
copyLibs
boolean copyLibs
If true, also copies to the output directory dependent shared libraries (link and preload).
-
copyResources
boolean copyResources
If true, also copies to the output directory resources listed in properties.
-
properties
java.util.Properties properties
Accumulates the various properties loaded from resources, files, command line options, etc.
-
classScanner
ClassScanner classScanner
-
buildCommand
java.lang.String[] buildCommand
A system command forProcessBuilderto execute for the build, instead of JavaCPP itself.
-
workingDirectory
java.io.File workingDirectory
User specified working directory to execute build subprocesses under.
-
environmentVariables
java.util.Map<java.lang.String,java.lang.String> environmentVariables
User specified environment variables to pass to the native compiler.
-
compilerOptions
java.util.Collection<java.lang.String> compilerOptions
Contains additional command line options from the user for the native compiler.
-
commandExecutor
CommandExecutor commandExecutor
An alternative CommandExecutor to use to execute commands.
-
-
Constructor Detail
-
Builder
public Builder()
Default constructor that simply initializes everything.
-
Builder
public Builder(Logger logger)
Constructor that simply initializes everything.- Parameters:
logger- where to send messages
-
-
Method Detail
-
cleanOutputDirectory
void cleanOutputDirectory() throws java.io.IOExceptionDeletesoutputDirectoryifcleanis true.- Throws:
java.io.IOException
-
parse
java.io.File[] parse(java.lang.String[] classPath, java.lang.Class cls) throws java.io.IOException, ParserExceptionCallsParser.parse(File, String[], Class)after creating an instance of the Class.- Parameters:
classPath- an array of paths to try to load header files fromcls- The class annotated withPropertiesand implementingInfoMapper- Returns:
- the target File produced
- Throws:
java.io.IOException- on Java target file writing errorParserException- on C/C++ header file parsing error
-
includeJavaPaths
void includeJavaPaths(ClassProperties properties, boolean header)
Tries to find automatically include paths forjni.handjni_md.h, as well as the link and library paths for thejvmlibrary.- Parameters:
properties- the Properties containing the paths to updateheader- to request support for exporting callbacks via generated header file
-
compile
int compile(java.lang.String[] sourceFilenames, java.lang.String outputFilename, ClassProperties properties, java.io.File workingDirectory) throws java.io.IOException, java.lang.InterruptedExceptionLaunches and waits for the native compiler to produce a native shared library.- Parameters:
sourceFilenames- the C++ source filenamesoutputFilename- the output filename of the shared libraryproperties- the Properties detailing the compiler options to use- Returns:
- the result of
Process.waitFor() - Throws:
java.io.IOExceptionjava.lang.InterruptedException
-
getOutputPath
java.io.File getOutputPath(java.lang.Class[] classes, java.lang.String[] sourcePrefixes) throws java.io.IOExceptionCreates and returns the directory where output files should be placed. UsesoutputDirectoryas is when available, but falls back on the longest common path to the classes as well as the platform specific library path when available, or the platform name itself and the user provided extension when not.- Parameters:
classes- from which to derive the output pathsourcePrefixes- returned, 2 strings without platform names, one from our class loader, the other from the common path of the classes- Returns:
- directory where binary files should be written to
- Throws:
java.io.IOException
-
generateAndCompile
java.io.File[] generateAndCompile(java.lang.Class[] classes, java.lang.String outputName, boolean first, boolean last) throws java.io.IOException, java.lang.InterruptedExceptionGenerates C++ source files for classes, and compiles everything in one shared library whencompile == true.- Parameters:
classes- the Class objects as input to GeneratoroutputName- the output name of the shared libraryfirst- of the batch, so generate jnijavacpp.cpplast- of the batch, so delete jnijavacpp.cpp- Returns:
- the actual File generated, either the compiled library or its source
- Throws:
java.io.IOExceptionjava.lang.InterruptedException
-
createJar
void createJar(java.io.File jarFile, java.lang.String[] classPath, java.io.File... files) throws java.io.IOExceptionStores all the files in the given JAR file. Also attempts to root the paths of the filenames to each element of a list of classpaths.- Parameters:
jarFile- the JAR file to createclassPath- an array of paths to try to use as root for classesfiles- a list of files to store in the JAR file- Throws:
java.io.IOException
-
classPaths
public Builder classPaths(java.lang.String classPaths)
Splits argument withFile.pathSeparatorand appends result to paths of theclassScanner.
-
classPaths
public Builder classPaths(java.lang.String... classPaths)
Appends argument to the paths of theclassScanner.
-
encoding
public Builder encoding(java.lang.String encoding)
Sets theencodingfield to the argument.
-
outputDirectory
public Builder outputDirectory(java.lang.String outputDirectory)
Sets theoutputDirectoryfield to the argument.
-
outputDirectory
public Builder outputDirectory(java.io.File outputDirectory)
Sets theoutputDirectoryfield to the argument.
-
deleteJniFiles
public Builder deleteJniFiles(boolean deleteJniFiles)
Sets thedeleteJniFilesfield to the argument.
-
copyResources
public Builder copyResources(boolean copyResources)
Sets thecopyResourcesfield to the argument.
-
outputName
public Builder outputName(java.lang.String outputName)
Sets theoutputNamefield to the argument.
-
configDirectory
public Builder configDirectory(java.lang.String configDirectory)
Sets theconfigDirectoryfield to the argument.
-
configDirectory
public Builder configDirectory(java.io.File configDirectory)
Sets theconfigDirectoryfield to the argument.
-
jarPrefix
public Builder jarPrefix(java.lang.String jarPrefix)
Sets thejarPrefixfield to the argument.
-
properties
public Builder properties(java.lang.String platform)
Sets thepropertiesfield to the ones loaded from resources for the specified platform.
-
properties
public Builder properties(java.util.Properties properties)
Adds all the properties of the argument to thepropertiesfield.
-
propertyFile
public Builder propertyFile(java.lang.String filename) throws java.io.IOException
Sets thepropertiesfield to the ones loaded from the specified file.- Throws:
java.io.IOException
-
propertyFile
public Builder propertyFile(java.io.File propertyFile) throws java.io.IOException
Sets thepropertiesfield to the ones loaded from the specified file.- Throws:
java.io.IOException
-
property
public Builder property(java.lang.String keyValue)
Sets a property of thepropertiesfield, in either "key=value" or "key:value" format.
-
property
public Builder property(java.lang.String key, java.lang.String value)
Sets a key/value pair property of thepropertiesfield.
-
getProperties
public java.util.Properties getProperties()
Returnsproperties.
-
getProperty
public java.lang.String getProperty(java.lang.String key)
Returnsproperties.getProperty(key).
-
addProperty
public Builder addProperty(java.lang.String key, java.lang.String... values)
Adds values to a given property key, seperating them with "platform.path.separator".
-
classesOrPackages
public Builder classesOrPackages(java.lang.String... classesOrPackages) throws java.io.IOException, java.lang.ClassNotFoundException, java.lang.NoClassDefFoundError
Requests theclassScannerto add a class or all classes from a package. Anullargument indicates the unnamed package.- Throws:
java.io.IOExceptionjava.lang.ClassNotFoundExceptionjava.lang.NoClassDefFoundError
-
buildCommand
public Builder buildCommand(java.lang.String[] buildCommand)
Sets thebuildCommandfield to the argument.
-
workingDirectory
public Builder workingDirectory(java.lang.String workingDirectory)
Sets theworkingDirectoryfield to the argument.
-
workingDirectory
public Builder workingDirectory(java.io.File workingDirectory)
Sets theworkingDirectoryfield to the argument.
-
environmentVariables
public Builder environmentVariables(java.util.Map<java.lang.String,java.lang.String> environmentVariables)
Sets theenvironmentVariablesfield to the argument.
-
compilerOptions
public Builder compilerOptions(java.lang.String... options)
Appends arguments to thecompilerOptionsfield.
-
commandExecutor
public Builder commandExecutor(CommandExecutor commandExecutor)
Sets thecommandExecutorfield to the argument.
-
build
public java.io.File[] build() throws java.io.IOException, java.lang.InterruptedException, ParserExceptionStarts the build process and returns an array ofFileproduced.- Returns:
- the array of File produced
- Throws:
java.io.IOExceptionjava.lang.InterruptedExceptionParserException
-
printHelp
public static void printHelp()
Simply prints out to the display the command line usage.
-
main
public static void main(java.lang.String[] args) throws java.lang.ExceptionThe terminal shell interface to the Builder.- Parameters:
args- an array of arguments as described byprintHelp()- Throws:
java.lang.Exception
-
-