org.glassfish.pfl.tf.spi.EnhancedClassDataReflectiveImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.glassfish.pfl.tf.spi;
import org.glassfish.pfl.tf.spi.annotation.MethodMonitorGroup;
import org.glassfish.pfl.tf.spi.annotation.InfoMethod;
import org.glassfish.pfl.tf.spi.annotation.Description;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.glassfish.pfl.objectweb.asm.Type;
public class EnhancedClassDataReflectiveImpl extends EnhancedClassDataBase {
private final Class> currentClass ;
private boolean isMMAnnotation( Annotation an ) {
return an.annotationType().isAnnotationPresent(
MethodMonitorGroup.class ) ;
}
// Get Set for MM annotations present on class
private void processClassAnnotations() {
// XXX Need to consider inherited annotations as well.
final Annotation[] classAnnotations =
currentClass.getAnnotations() ;
if (classAnnotations != null) {
for (Annotation an : classAnnotations) {
final String aname = Type.getInternalName( an.annotationType() ) ;
if (isMMAnnotation(an)) {
annoNamesForClass.add( aname ) ;
}
}
List acnames = new ArrayList( annoNamesForClass ) ;
Collections.sort( acnames ) ;
int ctr=0 ;
for (String aname : acnames ) {
annoToHolderName.put( aname, "__$mm$__" + ctr ) ;
ctr++ ;
}
if (util.getDebug()) {
util.msg( "Enhancing class " + currentClass.getName() ) ;
util.msg( "\tannoNamesForClass = " + annoNamesForClass ) ;
util.msg( "\tannoToHolderName = " + annoToHolderName ) ;
}
}
}
// Scan methods:
// - Build List to map names of MM annotated methods to ints
// validate: such methods must have exactly 1 MM annotation that
// is in annoNamesForClass, or must be @InfoMethod annotated.
// Note: this must check for a @TracingName annotation.
// - In parallel with names of methods, construct descriptions and
// TimingPointTypes arrays.
// - Build Set of all InfoMethod annotated methods.
// validate: such methods must be private, return void, and have
// an empty body. May NOT have MM annotation.
private void scanMethods() {
final Method[] methods = currentClass.getDeclaredMethods() ;
Map mmnToDescriptions =
new HashMap() ;
Map mmnToTPT =
new HashMap() ;
Map mmnToTPN =
new HashMap() ;
Map mmnToAnnotationName =
new HashMap() ;
for (Method mn : methods) {
final String mname = mn.getName() ;
final String mdesc = util.getFullMethodDescriptor( mn ) ;
String monitoredMethodMMAnno = null ;
String shortClassName = className ;
int index = shortClassName.lastIndexOf( '/' ) ;
if (index >= 0) {
shortClassName = className.substring( index + 1 ) ;
}
String description = "Timer for method " + mname
+ " in class " + shortClassName ; // default
TimingPointType tpt = TimingPointType.BOTH ; // default for non-InfoMethod
String tpName = mname ; // default for non-InfoMethod
boolean hasMethodInfoAnno = false ;
final Annotation[] annotations = mn.getDeclaredAnnotations() ;
if (annotations != null) {
for (Annotation an : annotations) {
final String aname = Type.getInternalName(
an.annotationType() ) ;
if (aname.equals( DESCRIPTION_NAME )) {
Description desc = (Description)an ;
if (desc.value().length() > 0) {
description = desc.value() ;
}
} else if (aname.equals( INFO_METHOD_NAME)) {
// set the correct default for InfoMethod!
tpt = TimingPointType.NONE ;
// Check for private method!
if (!util.hasAccess( mn.getModifiers(),
Modifier.PRIVATE )) {
util.error( "Method " + mdesc
+ " for Class " + currentClass.getName()
+ " is a non-private @InfoMethod,"
+ " which is not allowed" ) ;
}
hasMethodInfoAnno = true ;
InfoMethod im = (InfoMethod)an ;
tpt = im.tpType() ;
if (tpt != TimingPointType.NONE) {
String tpn = im.tpName() ;
if (tpn.length() == 0) {
util.error( "Method " + mdesc
+ " for Class " + currentClass.getName()
+ " is an info method with timing point type "
+ tpt + " but no tpName was specified" ) ;
} else {
tpName = tpn ;
}
}
} else if (annoNamesForClass.contains( aname)) {
if (monitoredMethodMMAnno == null) {
monitoredMethodMMAnno = aname ;
} else {
util.error( "Method " + mdesc
+ " for Class " + currentClass.getName()
+ "has multiple MM annotations" ) ;
}
} else if (isMMAnnotation( an )) {
util.error( "Method " + mdesc
+ " for Class " + currentClass.getName()
+ " has an MM annotation " + an + " which "
+ "is not present on its class" ) ;
}
}
if (hasMethodInfoAnno && monitoredMethodMMAnno != null) {
util.error( "Method " + mdesc
+ " for Class " + currentClass.getName()
+ " has both @InfoMethod annotation and"
+ " a MM annotation" ) ;
}
// This check is not really essential, but it simplifies
// passing information to later phases for code generation
// if we can assume that all @InfoMethod annotated methods
// are non-static. (Simply because we only need to look for
// INVOKESPECIAL).
final boolean isStatic = util.hasAccess( mn.getModifiers(),
Modifier.STATIC ) ;
if (hasMethodInfoAnno && isStatic) {
util.error( "Method " + mdesc
+ " for Class " + currentClass.getName()
+ " is a static method, but must not be" ) ;
}
// TF Annotations are not permitted on constructors
if (mname.equals( "" )) {
if (hasMethodInfoAnno) {
util.error( "Constructors must not have an "
+ "@InfoMethod annotations") ;
} else if (monitoredMethodMMAnno != null) {
util.error( "Constructors must not have an "
+ "MM annotation") ;
}
}
// This will be a null value for InfoMethods, which is what
// we want.
mmnToAnnotationName.put(mname, monitoredMethodMMAnno ) ;
// We could have a method at this point that is annotated with
// something OTHER than tracing annotations. Do not add
// such methods to the ECD.
if (hasMethodInfoAnno || (monitoredMethodMMAnno != null)) {
// Both infoMethods and MM annotated methods go into
// methodNames
methodNames.add( mname ) ;
mmnToDescriptions.put( mname, description ) ;
mmnToTPT.put( mname, tpt ) ;
mmnToTPN.put( mname, tpName ) ;
if (hasMethodInfoAnno) {
infoMethodDescs.add( mdesc ) ;
} else {
mmMethodDescs.add( mdesc ) ;
methodToAnno.put( mdesc, monitoredMethodMMAnno ) ;
}
}
}
}
Collections.sort( methodNames ) ;
for (String str : methodNames ) {
methodDescriptions.add( mmnToDescriptions.get( str ) ) ;
methodTPTs.add( mmnToTPT.get( str ) ) ;
methodTPNames.add( mmnToTPN.get( str ) ) ;
methodAnnoList.add( mmnToAnnotationName.get( str ) ) ;
}
if (util.getDebug()) {
util.msg( "\tinfoMethodSignature = " + infoMethodDescs ) ;
util.msg( "\tmmMethodSignature = " + mmMethodDescs ) ;
util.msg( "\tmethodNames = " + methodNames ) ;
util.msg( "\tmethodToAnno = " + methodToAnno ) ;
util.msg( "\tmethodDescriptions = " + methodDescriptions ) ;
util.msg( "\tmethodTPTs = " + methodTPTs ) ;
util.msg( "\tmethodTPTs = " + methodTPNames ) ;
}
}
public EnhancedClassDataReflectiveImpl( Util util,
Class> cn ) {
super( util, null ) ;
currentClass = cn ;
// Compute data here: only look at data available to
// java reflection, so that a runtime version of
// EnhancedClassData using reflection can be created.
className = cn.getName() ;
processClassAnnotations() ;
scanMethods();
}
}