Package org.apache.tomcat.util.compat
Class Jre19Compat
java.lang.Object
org.apache.tomcat.util.compat.JreCompat
org.apache.tomcat.util.compat.Jre19Compat
- Direct Known Subclasses:
Jre21Compat
-
Field Summary
Fields inherited from class org.apache.tomcat.util.compat.JreCompat
getApplicationProtocolMethod, setApplicationProtocolsMethod
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addBootModulePath
(Deque<URL> classPathUrlsToProcess) Obtains the URLs for all the JARs on the module path when the JVM starts and adds them to the provided Deque.boolean
canAccess
(Object base, AccessibleObject accessibleObject) Is the accessibleObject accessible (as a result of appropriate module exports) on the provided instance?void
Disables caching for JAR URL connections.getExecutor
(Thread thread) Obtains the executor, if any, used to create the provided thread.getModuleName
(Class<?> type) What is the module of the given class?Return Unix domain socket address for given path.boolean
isExported
(Class<?> type) Is the given class in an exported package?boolean
Test if the provided exception is an instance of java.lang.reflect.InaccessibleObjectException.boolean
jarFileIsMultiRelease
(JarFile jarFile) Is this JarFile a multi-release JAR file.Creates a new JarFile instance.int
Create server socket channel using the Unix domain socket ProtocolFamily.Create socket channel using the Unix domain socket ProtocolFamily.Methods inherited from class org.apache.tomcat.util.compat.JreCompat
callAs, createVirtualThreadBuilder, getApplicationProtocol, getInstance, isAlpnSupported, isGraalAvailable, isJre11Available, isJre16Available, isJre19Available, isJre21Available, isJre22Available, isJre9Available, jarFileNewInstance, setApplicationProtocols, threadBuilderStart
-
Constructor Details
-
Jre19Compat
public Jre19Compat()
-
-
Method Details
-
getExecutor
public Object getExecutor(Thread thread) throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException Description copied from class:JreCompat
Obtains the executor, if any, used to create the provided thread.- Overrides:
getExecutor
in classJreCompat
- Parameters:
thread
- The thread to examine- Returns:
- The executor, if any, that created the provided thread
- Throws:
NoSuchFieldException
- If a field used via reflection to obtain the executor cannot be foundSecurityException
- If a security exception occurs while trying to identify the executorIllegalArgumentException
- If the instance object does not match the class of the field when obtaining a field value via reflectionIllegalAccessException
- If a field is not accessible due to access restrictions
-
getUnixDomainSocketAddress
Description copied from class:JreCompat
Return Unix domain socket address for given path.- Overrides:
getUnixDomainSocketAddress
in classJreCompat
- Parameters:
path
- The path- Returns:
- the socket address
-
openUnixDomainServerSocketChannel
Description copied from class:JreCompat
Create server socket channel using the Unix domain socket ProtocolFamily.- Overrides:
openUnixDomainServerSocketChannel
in classJreCompat
- Returns:
- the server socket channel
-
openUnixDomainSocketChannel
Description copied from class:JreCompat
Create socket channel using the Unix domain socket ProtocolFamily.- Overrides:
openUnixDomainSocketChannel
in classJreCompat
- Returns:
- the socket channel
-
isInstanceOfInaccessibleObjectException
Description copied from class:JreCompat
Test if the provided exception is an instance of java.lang.reflect.InaccessibleObjectException.- Overrides:
isInstanceOfInaccessibleObjectException
in classJreCompat
- Parameters:
t
- The exception to test- Returns:
true
if the exception is an instance of InaccessibleObjectException, otherwisefalse
-
disableCachingForJarUrlConnections
Description copied from class:JreCompat
Disables caching for JAR URL connections. For Java 8 and earlier, this also disables caching for ALL URL connections.- Overrides:
disableCachingForJarUrlConnections
in classJreCompat
- Throws:
IOException
- If a dummy JAR URLConnection can not be created
-
addBootModulePath
Description copied from class:JreCompat
Obtains the URLs for all the JARs on the module path when the JVM starts and adds them to the provided Deque.- Overrides:
addBootModulePath
in classJreCompat
- Parameters:
classPathUrlsToProcess
- The Deque to which the modules should be added
-
jarFileNewInstance
Description copied from class:JreCompat
Creates a new JarFile instance. When running on Java 9 and later, the JarFile will be multi-release JAR aware.- Overrides:
jarFileNewInstance
in classJreCompat
- Parameters:
f
- The JAR file to open- Returns:
- A JarFile instance based on the provided file
- Throws:
IOException
- If an I/O error occurs creating the JarFile instance
-
jarFileIsMultiRelease
Description copied from class:JreCompat
Is this JarFile a multi-release JAR file.- Overrides:
jarFileIsMultiRelease
in classJreCompat
- Parameters:
jarFile
- The JarFile to test- Returns:
true
If it is a multi-release JAR file and is configured to behave as such.
-
jarFileRuntimeMajorVersion
public int jarFileRuntimeMajorVersion()- Overrides:
jarFileRuntimeMajorVersion
in classJreCompat
-
canAccess
Description copied from class:JreCompat
Is the accessibleObject accessible (as a result of appropriate module exports) on the provided instance? -
isExported
Description copied from class:JreCompat
Is the given class in an exported package?- Overrides:
isExported
in classJreCompat
- Parameters:
type
- The class to test- Returns:
- Always
true
for Java 8.true
if the enclosing package is exported for Java 9+
-
getModuleName
Description copied from class:JreCompat
What is the module of the given class?- Overrides:
getModuleName
in classJreCompat
- Parameters:
type
- The class to test- Returns:
- Always
true
for Java 8.true
if the enclosing package is exported for Java 9+
-