Package org.codehaus.groovy.vmplugin
Interface VMPlugin
public interface VMPlugin
Interface to access VM version based actions.
This interface is for internal use only!
-
Method Summary
Modifier and TypeMethodDescriptionbooleancheckAccessible(Class<?> callerClass, Class<?> declaringClass, int memberModifiers, boolean allowIllegalAccess) check whether the member can be accessed or notbooleancheckCanSetAccessible(AccessibleObject accessibleObject, Class<?> callerClass) Check whether invokingAccessibleObject.setAccessible(boolean)on the accessible object will be completed successfullyvoidCopies runtime annotation metadata into the supplied annotation node.default voidconfigureAnnotationNodeFromDefinition(AnnotationNode definition, AnnotationNode node) Copies values from an annotation definition onto another annotation node.voidconfigureClassNode(CompileUnit unit, ClassNode node) Configures the supplied class node from its runtime type information.getDefaultImportClasses(String[] packageNames) Returns the default import classes: class name -> the relevant package namesgetInvokeSpecialHandle(Method m, Object receiver) Returns a handle with bound receiver to invokeSpecial the given method.static StringDeprecated.Class[]Returns plugin-specific default Groovy methods.Class[]Returns plugin-specific static Groovy methods.getRecordComponentNames(Class<?> maybeRecord) Returns the list of record component names or the empty list if the class is not a record or running on a pre16 JDK.intGives the version the plugin is made forvoidInvalidates cached call sites maintained by the plugin.invokeHandle(Object handle, Object[] args) Invokes a handle produced by #getInvokeSpecialdHandlevoidAdds VM-specific metadata to the given class node.transformMetaMethod(MetaClass metaClass, MetaMethod metaMethod) transform meta method.transformMetaMethod(MetaClass metaClass, MetaMethod metaMethod, Class<?> caller) transform meta methodbooleanSet theaccessibleflag for this reflected object totrueif possible.
-
Method Details
-
getPluginDefaultGroovyMethods
Class[] getPluginDefaultGroovyMethods()Returns plugin-specific default Groovy methods.- Returns:
- the default Groovy method classes contributed by this plugin
-
getPluginStaticGroovyMethods
Class[] getPluginStaticGroovyMethods()Returns plugin-specific static Groovy methods.- Returns:
- the static Groovy method classes contributed by this plugin
-
setAdditionalClassInformation
Adds VM-specific metadata to the given class node.- Parameters:
node- the class node to enrich
-
configureClassNode
Configures the supplied class node from its runtime type information.- Parameters:
unit- the compile unit that owns the class nodenode- the class node to configure
-
configureAnnotation
Copies runtime annotation metadata into the supplied annotation node.- Parameters:
node- the annotation node to configure
-
configureAnnotationNodeFromDefinition
Copies values from an annotation definition onto another annotation node.- Parameters:
definition- the source annotation definitionnode- the annotation node to update
-
invalidateCallSites
void invalidateCallSites()Invalidates cached call sites maintained by the plugin. -
getInvokeSpecialHandle
Returns a handle with bound receiver to invokeSpecial the given method. This method will require at least Java 7, but since the source has to compile on older Java versions as well it is not marked to return a MethodHandle and uses Object instead- Returns:
- null in case of jdk<7, otherwise a handle that takes the method call arguments for the invokespecial call
-
invokeHandle
Invokes a handle produced by #getInvokeSpecialdHandle- Parameters:
handle- the handleargs- arguments for the method call, can be empty but not null- Returns:
- the result of the method call
- Throws:
Throwable
-
getVersion
int getVersion()Gives the version the plugin is made for- Returns:
- 7 for jdk7, 8 for jdk8, 9 for jdk9 or higher
-
getJavaVersion
Deprecated.Returns java version, e.g. 1.8, 9, 11, 17- Returns:
- java version
- Since:
- 4.0.0
-
checkCanSetAccessible
Check whether invokingAccessibleObject.setAccessible(boolean)on the accessible object will be completed successfully- Parameters:
accessibleObject- the accessible object to checkcallerClass- the callerClass to invokesetAccessible- Returns:
- the check result
-
checkAccessible
boolean checkAccessible(Class<?> callerClass, Class<?> declaringClass, int memberModifiers, boolean allowIllegalAccess) check whether the member can be accessed or not- Parameters:
callerClass- callerClass the callerClass to invokesetAccessibledeclaringClass- the type of member ownermemberModifiers- modifiers of memberallowIllegalAccess- whether to allow illegal access- Returns:
- the result of checking
-
trySetAccessible
Set theaccessibleflag for this reflected object totrueif possible.- Parameters:
ao- the accessible object- Returns:
trueif theaccessibleflag is set totrue;falseif access cannot be enabled.- Throws:
SecurityException- if the request is denied by the security manager (legacy comment)
-
transformMetaMethod
transform meta method- Parameters:
metaClass- metaclassmetaMethod- the original meta methodcaller- caller class, whose method sets accessible for methods- Returns:
- the transformed meta method
-
transformMetaMethod
transform meta method.- Parameters:
metaClass- metaclassmetaMethod- the original meta method- Returns:
- the transformed meta method
-
getDefaultImportClasses
Returns the default import classes: class name -> the relevant package names- Parameters:
packageNames- the default import package names, e.g. java.lang.- Returns:
- the default import classes
- Since:
- 3.0.2
-
getRecordComponentNames
Returns the list of record component names or the empty list if the class is not a record or running on a pre16 JDK.- Parameters:
maybeRecord- the class in question- Returns:
- the default list of names
- Since:
- 4.0.15
-