Package com.tangosol.io.pof
Class PofIndexer
java.lang.Object
com.tangosol.io.pof.PofIndexer
This class is responsible for creating or reading POF index files.
- Since:
- Coherence 24.09
- Author:
- Gunnar Hillert 2024.03.04
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.PofIndexer
(com.tangosol.io.pof.generator.PortableTypeGenerator.Logger logger) Constructor with the ability to pass aPortableTypeGenerator.Logger
.PofIndexer
(ClassLoader classLoader) Constructor that allows to specify a customClassLoader
.PofIndexer
(ClassLoader classLoader, com.tangosol.io.pof.generator.PortableTypeGenerator.Logger logger) Constructor that allows to specify a customClassLoader
as well as aPortableTypeGenerator.Logger
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
createIndex
(File pofIndexFile) Creates an index file containing the discoveredPortableType
annotated classes.void
createIndexInDirectory
(File pofIndexFileDirectory) Creates a POF index file at the specified base directory.createJarURI
(File jarFile) Construct a Jar fileURI
.createJarURL
(File jarFile) Helper method to create a JAR fileURL
.Scans forPortableType
annotated classes.int
getPortableTypeIdForClassName
(String classname) Returns the id value of anPortableType
annotated class.ignoreClasspath
(boolean fIgnoreClasspath) Ignore the classpath when scanning for classes by setting this property to true. by default this property is false.Attempt to load all POF index files which will we will use to load classes that have the PortableType annotation.void
setIncludeFilterPatterns
(Set<String> m_includeFilterPatterns) Allows to set regular expressions for classes to be included.void
setIndexFileName
(String sIndexFileName) Specifies the POF index file and its path to use.void
setPackagesToScan
(Set<String> packagesToScan) Specifies the JAVA packages to scan forPortableType
annotations.withClasses
(List<Class> clazzes) withClassesFromDirectory
(Collection<File> directories) Add the directory on the file system to read the class files from.withClassesFromJarFile
(List<File> jarFiles) Add one or more JAR files on the file system to read the class files from.withIndexFileName
(String indexFileName) Specify the index file name and path.
-
Field Details
-
DEFAULT_INDEX_FILE_NAME
Default POF index file.- See Also:
-
-
Constructor Details
-
PofIndexer
public PofIndexer()Default constructor. -
PofIndexer
public PofIndexer(com.tangosol.io.pof.generator.PortableTypeGenerator.Logger logger) Constructor with the ability to pass aPortableTypeGenerator.Logger
.- Parameters:
logger
- thePortableTypeGenerator.Logger
to use
-
PofIndexer
Constructor that allows to specify a customClassLoader
.- Parameters:
classLoader
- the ClassLoader to set
-
PofIndexer
public PofIndexer(ClassLoader classLoader, com.tangosol.io.pof.generator.PortableTypeGenerator.Logger logger) Constructor that allows to specify a customClassLoader
as well as aPortableTypeGenerator.Logger
.- Parameters:
classLoader
- the ClassLoader to setlogger
- thePortableTypeGenerator.Logger
to use
-
-
Method Details
-
createIndexInDirectory
Creates a POF index file at the specified base directory. By default, the index will be created in the subdirectoryMETA-INF/pof.idx
.- Parameters:
pofIndexFileDirectory
- must be a directory
-
createIndex
Creates an index file containing the discoveredPortableType
annotated classes.- Parameters:
pofIndexFile
- the file that will contain the index of PortableType annotated classes
-
discoverPortableTypes
Scans forPortableType
annotated classes. The returnedMap
contains the class name as the key and the POF id as its value. Keep in mind that the POF id can currently only be returned for classes obtained via the classpath but not from actual class files or JAR files.- Returns:
- a Map containing the class name and the POF id if possible
-
getPortableTypeIdForClassName
Returns the id value of anPortableType
annotated class.- Parameters:
classname
- the class name with the PortableType annotation- Returns:
- returns the portable id
-
loadIndexes
Attempt to load all POF index files which will we will use to load classes that have the PortableType annotation.- Returns:
- a
Map
ofProperties
keyed byURL
or an emptyMap
if none found.
-
setIndexFileName
Specifies the POF index file and its path to use. If not set, it will default toDEFAULT_INDEX_FILE_NAME
.- Parameters:
sIndexFileName
- the POF index file.
-
setPackagesToScan
Specifies the JAVA packages to scan forPortableType
annotations. This option is only valid for scanning the classpath and thus ifignoreClasspath(boolean)
is not set to true.- Parameters:
packagesToScan
- the java package names to scan
-
setIncludeFilterPatterns
Allows to set regular expressions for classes to be included. E.g. if you want to have only classes included in the POF that end in Address, specify a regular expression string of {code .*Address$}.- Parameters:
m_includeFilterPatterns
- add a Set of regular expression strings
-
createJarURI
Construct a Jar fileURI
.- Parameters:
jarFile
- theFile
representing a Jar file- Returns:
- a URI in the Jar URI syntax
-
createJarURL
Helper method to create a JAR fileURL
. Will callcreateJarURI(File)
underneath. Will not throw any checked exceptions.- Parameters:
jarFile
- the JAR file for which to return the correspondingURL
- Returns:
- the URL that points to the provided JAR file
-
ignoreClasspath
Ignore the classpath when scanning for classes by setting this property to true. by default this property is false. This can be useful when indexing of actual class or Jar files.- Parameters:
fIgnoreClasspath
- if true, do not index classes on the classpath- Returns:
- this
PofIndexer
-
withClassesFromDirectory
Add the directory on the file system to read the class files from.- Parameters:
directories
- the directories on the file system to read the class files from- Returns:
- this
PofIndexer
-
withClassesFromJarFile
Add one or more JAR files on the file system to read the class files from.- Parameters:
jarFiles
- the List of JAR files on the file system to read the class files from- Returns:
- this
PofIndexer
-
withClasses
- Parameters:
clazzes
- the classes to import- Returns:
- this
PofIndexer
-
withIndexFileName
Specify the index file name and path. If not specified it will default toDEFAULT_INDEX_FILE_NAME
.- Parameters:
indexFileName
- the path and index file name- Returns:
- this
PofIndexer
-