1 /*
   2  * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.lang.reflect;
  27 
  28 import sun.reflect.MethodAccessor;
  29 import sun.reflect.Reflection;
  30 import sun.reflect.generics.repository.MethodRepository;
  31 import sun.reflect.generics.factory.CoreReflectionFactory;
  32 import sun.reflect.generics.factory.GenericsFactory;
  33 import sun.reflect.generics.scope.MethodScope;
  34 import sun.reflect.annotation.AnnotationType;
  35 import sun.reflect.annotation.AnnotationParser;
  36 import java.lang.annotation.Annotation;
  37 import java.lang.annotation.AnnotationFormatError;
  38 import java.nio.ByteBuffer;
  39 
  40 /**
  41  * A {@code Method} provides information about, and access to, a single method
  42  * on a class or interface.  The reflected method may be a class method
  43  * or an instance method (including an abstract method).
  44  *
  45  * <p>A {@code Method} permits widening conversions to occur when matching the
  46  * actual parameters to invoke with the underlying method's formal
  47  * parameters, but it throws an {@code IllegalArgumentException} if a
  48  * narrowing conversion would occur.
  49  *
  50  * @see Member
  51  * @see java.lang.Class
  52  * @see java.lang.Class#getMethods()
  53  * @see java.lang.Class#getMethod(String, Class[])
  54  * @see java.lang.Class#getDeclaredMethods()
  55  * @see java.lang.Class#getDeclaredMethod(String, Class[])
  56  *
  57  * @author Kenneth Russell
  58  * @author Nakul Saraiya
  59  */
  60 public final class Method extends Executable {
  61     private Class<?>            clazz;
  62     private int                 slot;
  63     // This is guaranteed to be interned by the VM in the 1.4
  64     // reflection implementation
  65     private String              name;
  66     private Class<?>            returnType;
  67     private Class<?>[]          parameterTypes;
  68     private Class<?>[]          exceptionTypes;
  69     private int                 modifiers;
  70     // Generics and annotations support
  71     private transient String              signature;
  72     // generic info repository; lazily initialized
  73     private transient MethodRepository genericInfo;
  74     private byte[]              annotations;
  75     private byte[]              parameterAnnotations;
  76     private byte[]              annotationDefault;
  77     private volatile MethodAccessor methodAccessor;
  78     // For sharing of MethodAccessors. This branching structure is
  79     // currently only two levels deep (i.e., one root Method and
  80     // potentially many Method objects pointing to it.)
  81     private Method              root;
  82     // This is set by the vm at Method creation
  83     private byte[]              typeAnnotations;
  84 
  85     // Generics infrastructure
  86     private String getGenericSignature() {return signature;}
  87 
  88     // Accessor for factory
  89     private GenericsFactory getFactory() {
  90         // create scope and factory
  91         return CoreReflectionFactory.make(this, MethodScope.make(this));
  92     }
  93 
  94     // Accessor for generic info repository
  95     @Override
  96     MethodRepository getGenericInfo() {
  97         // lazily initialize repository if necessary
  98         if (genericInfo == null) {
  99             // create and cache generic info repository
 100             genericInfo = MethodRepository.make(getGenericSignature(),
 101                                                 getFactory());
 102         }
 103         return genericInfo; //return cached repository
 104     }
 105 
 106     /**
 107      * Package-private constructor used by ReflectAccess to enable
 108      * instantiation of these objects in Java code from the java.lang
 109      * package via sun.reflect.LangReflectAccess.
 110      */
 111     Method(Class<?> declaringClass,
 112            String name,
 113            Class<?>[] parameterTypes,
 114            Class<?> returnType,
 115            Class<?>[] checkedExceptions,
 116            int modifiers,
 117            int slot,
 118            String signature,
 119            byte[] annotations,
 120            byte[] parameterAnnotations,
 121            byte[] annotationDefault) {
 122         this.clazz = declaringClass;
 123         this.name = name;
 124         this.parameterTypes = parameterTypes;
 125         this.returnType = returnType;
 126         this.exceptionTypes = checkedExceptions;
 127         this.modifiers = modifiers;
 128         this.slot = slot;
 129         this.signature = signature;
 130         this.annotations = annotations;
 131         this.parameterAnnotations = parameterAnnotations;
 132         this.annotationDefault = annotationDefault;
 133     }
 134 
 135     /**
 136      * Package-private routine (exposed to java.lang.Class via
 137      * ReflectAccess) which returns a copy of this Method. The copy's
 138      * "root" field points to this Method.
 139      */
 140     Method copy() {
 141         // This routine enables sharing of MethodAccessor objects
 142         // among Method objects which refer to the same underlying
 143         // method in the VM. (All of this contortion is only necessary
 144         // because of the "accessibility" bit in AccessibleObject,
 145         // which implicitly requires that new java.lang.reflect
 146         // objects be fabricated for each reflective call on Class
 147         // objects.)
 148         Method res = new Method(clazz, name, parameterTypes, returnType,
 149                                 exceptionTypes, modifiers, slot, signature,
 150                                 annotations, parameterAnnotations, annotationDefault);
 151         res.root = this;
 152         // Might as well eagerly propagate this if already present
 153         res.methodAccessor = methodAccessor;
 154 
 155         res.typeAnnotations = typeAnnotations;
 156         return res;
 157     }
 158 
 159     @Override
 160     boolean hasGenericInformation() {
 161         return (getGenericSignature() != null);
 162     }
 163 
 164     @Override
 165     byte[] getAnnotationBytes() {
 166         return annotations;
 167     }
 168     @Override
 169     byte[] getTypeAnnotationBytes() {
 170         return typeAnnotations;
 171     }
 172 
 173     /**
 174      * {@inheritDoc}
 175      */
 176     @Override
 177     public Class<?> getDeclaringClass() {
 178         return clazz;
 179     }
 180 
 181     /**
 182      * Returns the name of the method represented by this {@code Method}
 183      * object, as a {@code String}.
 184      */
 185     @Override
 186     public String getName() {
 187         return name;
 188     }
 189 
 190     /**
 191      * {@inheritDoc}
 192      */
 193     @Override
 194     public int getModifiers() {
 195         return modifiers;
 196     }
 197 
 198     /**
 199      * {@inheritDoc}
 200      * @throws GenericSignatureFormatError {@inheritDoc}
 201      * @since 1.5
 202      */
 203     @Override
 204     @SuppressWarnings({"rawtypes", "unchecked"})
 205     public TypeVariable<Method>[] getTypeParameters() {
 206         if (getGenericSignature() != null)
 207             return (TypeVariable<Method>[])getGenericInfo().getTypeParameters();
 208         else
 209             return (TypeVariable<Method>[])new TypeVariable[0];
 210     }
 211 
 212     /**
 213      * Returns a {@code Class} object that represents the formal return type
 214      * of the method represented by this {@code Method} object.
 215      *
 216      * @return the return type for the method this object represents
 217      */
 218     public Class<?> getReturnType() {
 219         return returnType;
 220     }
 221 
 222     /**
 223      * Returns a {@code Type} object that represents the formal return
 224      * type of the method represented by this {@code Method} object.
 225      *
 226      * <p>If the return type is a parameterized type,
 227      * the {@code Type} object returned must accurately reflect
 228      * the actual type parameters used in the source code.
 229      *
 230      * <p>If the return type is a type variable or a parameterized type, it
 231      * is created. Otherwise, it is resolved.
 232      *
 233      * @return  a {@code Type} object that represents the formal return
 234      *     type of the underlying  method
 235      * @throws GenericSignatureFormatError
 236      *     if the generic method signature does not conform to the format
 237      *     specified in
 238      *     <cite>The Java&trade; Virtual Machine Specification</cite>
 239      * @throws TypeNotPresentException if the underlying method's
 240      *     return type refers to a non-existent type declaration
 241      * @throws MalformedParameterizedTypeException if the
 242      *     underlying method's return typed refers to a parameterized
 243      *     type that cannot be instantiated for any reason
 244      * @since 1.5
 245      */
 246     public Type getGenericReturnType() {
 247       if (getGenericSignature() != null) {
 248         return getGenericInfo().getReturnType();
 249       } else { return getReturnType();}
 250     }
 251 
 252     /**
 253      * {@inheritDoc}
 254      */
 255     @Override
 256     public Class<?>[] getParameterTypes() {
 257         return parameterTypes.clone();
 258     }
 259 
 260     /**
 261      * {@inheritDoc}
 262      * @throws GenericSignatureFormatError {@inheritDoc}
 263      * @throws TypeNotPresentException {@inheritDoc}
 264      * @throws MalformedParameterizedTypeException {@inheritDoc}
 265      * @since 1.5
 266      */
 267     @Override
 268     public Type[] getGenericParameterTypes() {
 269         return super.getGenericParameterTypes();
 270     }
 271 
 272     /**
 273      * {@inheritDoc}
 274      */
 275     @Override
 276     public Class<?>[] getExceptionTypes() {
 277         return exceptionTypes.clone();
 278     }
 279 
 280     /**
 281      * {@inheritDoc}
 282      * @throws GenericSignatureFormatError {@inheritDoc}
 283      * @throws TypeNotPresentException {@inheritDoc}
 284      * @throws MalformedParameterizedTypeException {@inheritDoc}
 285      * @since 1.5
 286      */
 287     @Override
 288     public Type[] getGenericExceptionTypes() {
 289         return super.getGenericExceptionTypes();
 290     }
 291 
 292     /**
 293      * Compares this {@code Method} against the specified object.  Returns
 294      * true if the objects are the same.  Two {@code Methods} are the same if
 295      * they were declared by the same class and have the same name
 296      * and formal parameter types and return type.
 297      */
 298     public boolean equals(Object obj) {
 299         if (obj != null && obj instanceof Method) {
 300             Method other = (Method)obj;
 301             if ((getDeclaringClass() == other.getDeclaringClass())
 302                 && (getName() == other.getName())) {
 303                 if (!returnType.equals(other.getReturnType()))
 304                     return false;
 305                 return equalParamTypes(parameterTypes, other.parameterTypes);
 306             }
 307         }
 308         return false;
 309     }
 310 
 311     /**
 312      * Returns a hashcode for this {@code Method}.  The hashcode is computed
 313      * as the exclusive-or of the hashcodes for the underlying
 314      * method's declaring class name and the method's name.
 315      */
 316     public int hashCode() {
 317         return getDeclaringClass().getName().hashCode() ^ getName().hashCode();
 318     }
 319 
 320     /**
 321      * Returns a string describing this {@code Method}.  The string is
 322      * formatted as the method access modifiers, if any, followed by
 323      * the method return type, followed by a space, followed by the
 324      * class declaring the method, followed by a period, followed by
 325      * the method name, followed by a parenthesized, comma-separated
 326      * list of the method's formal parameter types. If the method
 327      * throws checked exceptions, the parameter list is followed by a
 328      * space, followed by the word throws followed by a
 329      * comma-separated list of the thrown exception types.
 330      * For example:
 331      * <pre>
 332      *    public boolean java.lang.Object.equals(java.lang.Object)
 333      * </pre>
 334      *
 335      * <p>The access modifiers are placed in canonical order as
 336      * specified by "The Java Language Specification".  This is
 337      * {@code public}, {@code protected} or {@code private} first,
 338      * and then other modifiers in the following order:
 339      * {@code abstract}, {@code static}, {@code final},
 340      * {@code synchronized}, {@code native}, {@code strictfp}.
 341      */
 342     public String toString() {
 343         return sharedToString(Modifier.methodModifiers(),
 344                               parameterTypes,
 345                               exceptionTypes);
 346     }
 347 
 348     @Override
 349     void specificToStringHeader(StringBuilder sb) {
 350         sb.append(Field.getTypeName(getReturnType())).append(' ');
 351         sb.append(Field.getTypeName(getDeclaringClass())).append('.');
 352         sb.append(getName());
 353     }
 354 
 355     /**
 356      * Returns a string describing this {@code Method}, including
 357      * type parameters.  The string is formatted as the method access
 358      * modifiers, if any, followed by an angle-bracketed
 359      * comma-separated list of the method's type parameters, if any,
 360      * followed by the method's generic return type, followed by a
 361      * space, followed by the class declaring the method, followed by
 362      * a period, followed by the method name, followed by a
 363      * parenthesized, comma-separated list of the method's generic
 364      * formal parameter types.
 365      *
 366      * If this method was declared to take a variable number of
 367      * arguments, instead of denoting the last parameter as
 368      * "<tt><i>Type</i>[]</tt>", it is denoted as
 369      * "<tt><i>Type</i>...</tt>".
 370      *
 371      * A space is used to separate access modifiers from one another
 372      * and from the type parameters or return type.  If there are no
 373      * type parameters, the type parameter list is elided; if the type
 374      * parameter list is present, a space separates the list from the
 375      * class name.  If the method is declared to throw exceptions, the
 376      * parameter list is followed by a space, followed by the word
 377      * throws followed by a comma-separated list of the generic thrown
 378      * exception types.  If there are no type parameters, the type
 379      * parameter list is elided.
 380      *
 381      * <p>The access modifiers are placed in canonical order as
 382      * specified by "The Java Language Specification".  This is
 383      * {@code public}, {@code protected} or {@code private} first,
 384      * and then other modifiers in the following order:
 385      * {@code abstract}, {@code static}, {@code final},
 386      * {@code synchronized}, {@code native}, {@code strictfp}.
 387      *
 388      * @return a string describing this {@code Method},
 389      * include type parameters
 390      *
 391      * @since 1.5
 392      */
 393     @Override
 394     public String toGenericString() {
 395         return sharedToGenericString(Modifier.methodModifiers());
 396     }
 397 
 398     @Override
 399     void specificToGenericStringHeader(StringBuilder sb) {
 400         Type genRetType = getGenericReturnType();
 401         sb.append( ((genRetType instanceof Class<?>)?
 402                     Field.getTypeName((Class<?>)genRetType):genRetType.toString()))
 403             .append(' ');
 404 
 405         sb.append(Field.getTypeName(getDeclaringClass())).append('.');
 406         sb.append(getName());
 407     }
 408 
 409     /**
 410      * Invokes the underlying method represented by this {@code Method}
 411      * object, on the specified object with the specified parameters.
 412      * Individual parameters are automatically unwrapped to match
 413      * primitive formal parameters, and both primitive and reference
 414      * parameters are subject to method invocation conversions as
 415      * necessary.
 416      *
 417      * <p>If the underlying method is static, then the specified {@code obj}
 418      * argument is ignored. It may be null.
 419      *
 420      * <p>If the number of formal parameters required by the underlying method is
 421      * 0, the supplied {@code args} array may be of length 0 or null.
 422      *
 423      * <p>If the underlying method is an instance method, it is invoked
 424      * using dynamic method lookup as documented in The Java Language
 425      * Specification, Second Edition, section 15.12.4.4; in particular,
 426      * overriding based on the runtime type of the target object will occur.
 427      *
 428      * <p>If the underlying method is static, the class that declared
 429      * the method is initialized if it has not already been initialized.
 430      *
 431      * <p>If the method completes normally, the value it returns is
 432      * returned to the caller of invoke; if the value has a primitive
 433      * type, it is first appropriately wrapped in an object. However,
 434      * if the value has the type of an array of a primitive type, the
 435      * elements of the array are <i>not</i> wrapped in objects; in
 436      * other words, an array of primitive type is returned.  If the
 437      * underlying method return type is void, the invocation returns
 438      * null.
 439      *
 440      * @param obj  the object the underlying method is invoked from
 441      * @param args the arguments used for the method call
 442      * @return the result of dispatching the method represented by
 443      * this object on {@code obj} with parameters
 444      * {@code args}
 445      *
 446      * @exception IllegalAccessException    if this {@code Method} object
 447      *              is enforcing Java language access control and the underlying
 448      *              method is inaccessible.
 449      * @exception IllegalArgumentException  if the method is an
 450      *              instance method and the specified object argument
 451      *              is not an instance of the class or interface
 452      *              declaring the underlying method (or of a subclass
 453      *              or implementor thereof); if the number of actual
 454      *              and formal parameters differ; if an unwrapping
 455      *              conversion for primitive arguments fails; or if,
 456      *              after possible unwrapping, a parameter value
 457      *              cannot be converted to the corresponding formal
 458      *              parameter type by a method invocation conversion.
 459      * @exception InvocationTargetException if the underlying method
 460      *              throws an exception.
 461      * @exception NullPointerException      if the specified object is null
 462      *              and the method is an instance method.
 463      * @exception ExceptionInInitializerError if the initialization
 464      * provoked by this method fails.
 465      */
 466     public Object invoke(Object obj, Object... args)
 467         throws IllegalAccessException, IllegalArgumentException,
 468            InvocationTargetException
 469     {
 470         if (!override) {
 471             if (!Reflection.quickCheckMemberAccess(clazz, modifiers)) {
 472                 Class<?> caller = Reflection.getCallerClass(1);
 473 
 474                 checkAccess(caller, clazz, obj, modifiers);
 475             }
 476         }
 477         MethodAccessor ma = methodAccessor;             // read volatile
 478         if (ma == null) {
 479             ma = acquireMethodAccessor();
 480         }
 481         return ma.invoke(obj, args);
 482     }
 483 
 484     /**
 485      * Returns {@code true} if this method is a bridge
 486      * method; returns {@code false} otherwise.
 487      *
 488      * @return true if and only if this method is a bridge
 489      * method as defined by the Java Language Specification.
 490      * @since 1.5
 491      */
 492     public boolean isBridge() {
 493         return (getModifiers() & Modifier.BRIDGE) != 0;
 494     }
 495 
 496     /**
 497      * {@inheritDoc}
 498      * @since 1.5
 499      */
 500     @Override
 501     public boolean isVarArgs() {
 502         return super.isVarArgs();
 503     }
 504 
 505     /**
 506      * {@inheritDoc}
 507      * @jls 13.1 The Form of a Binary
 508      * @since 1.5
 509      */
 510     @Override
 511     public boolean isSynthetic() {
 512         return super.isSynthetic();
 513     }
 514 
 515     /**
 516      * Returns {@code true} if this method is a default
 517      * method; returns {@code false} otherwise.
 518      *
 519      * A default method is a non-abstract method, that is, a method
 520      * with a body, declared in an interface type.
 521      *
 522      * @return true if and only if this method is a default
 523      * method as defined by the Java Language Specification.
 524      * @since 1.8
 525      */
 526     public boolean isDefault() {
 527         return (getModifiers() & Modifier.ABSTRACT) == 0 &&
 528             getDeclaringClass().isInterface();
 529     }
 530 
 531     // NOTE that there is no synchronization used here. It is correct
 532     // (though not efficient) to generate more than one MethodAccessor
 533     // for a given Method. However, avoiding synchronization will
 534     // probably make the implementation more scalable.
 535     private MethodAccessor acquireMethodAccessor() {
 536         // First check to see if one has been created yet, and take it
 537         // if so
 538         MethodAccessor tmp = null;
 539         if (root != null) tmp = root.getMethodAccessor();
 540         if (tmp != null) {
 541             methodAccessor = tmp;
 542         } else {
 543             // Otherwise fabricate one and propagate it up to the root
 544             tmp = reflectionFactory.newMethodAccessor(this);
 545             setMethodAccessor(tmp);
 546         }
 547 
 548         return tmp;
 549     }
 550 
 551     // Returns MethodAccessor for this Method object, not looking up
 552     // the chain to the root
 553     MethodAccessor getMethodAccessor() {
 554         return methodAccessor;
 555     }
 556 
 557     // Sets the MethodAccessor for this Method object and
 558     // (recursively) its root
 559     void setMethodAccessor(MethodAccessor accessor) {
 560         methodAccessor = accessor;
 561         // Propagate up
 562         if (root != null) {
 563             root.setMethodAccessor(accessor);
 564         }
 565     }
 566 
 567     /**
 568      * Returns the default value for the annotation member represented by
 569      * this {@code Method} instance.  If the member is of a primitive type,
 570      * an instance of the corresponding wrapper type is returned. Returns
 571      * null if no default is associated with the member, or if the method
 572      * instance does not represent a declared member of an annotation type.
 573      *
 574      * @return the default value for the annotation member represented
 575      *     by this {@code Method} instance.
 576      * @throws TypeNotPresentException if the annotation is of type
 577      *     {@link Class} and no definition can be found for the
 578      *     default class value.
 579      * @since  1.5
 580      */
 581     public Object getDefaultValue() {
 582         if  (annotationDefault == null)
 583             return null;
 584         Class<?> memberType = AnnotationType.invocationHandlerReturnType(
 585             getReturnType());
 586         Object result = AnnotationParser.parseMemberValue(
 587             memberType, ByteBuffer.wrap(annotationDefault),
 588             sun.misc.SharedSecrets.getJavaLangAccess().
 589                 getConstantPool(getDeclaringClass()),
 590             getDeclaringClass());
 591         if (result instanceof sun.reflect.annotation.ExceptionProxy)
 592             throw new AnnotationFormatError("Invalid default: " + this);
 593         return result;
 594     }
 595 
 596     /**
 597      * {@inheritDoc}
 598      * @throws NullPointerException  {@inheritDoc}
 599      * @since 1.5
 600      */
 601     public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
 602         return super.getAnnotation(annotationClass);
 603     }
 604 
 605     /**
 606      * {@inheritDoc}
 607      * @since 1.5
 608      */
 609     public Annotation[] getDeclaredAnnotations()  {
 610         return super.getDeclaredAnnotations();
 611     }
 612 
 613     /**
 614      * {@inheritDoc}
 615      * @since 1.5
 616      */
 617     @Override
 618     public Annotation[][] getParameterAnnotations() {
 619         return sharedGetParameterAnnotations(parameterTypes, parameterAnnotations);
 620     }
 621 
 622     @Override
 623     void handleParameterNumberMismatch(int resultLength, int numParameters) {
 624         throw new AnnotationFormatError("Parameter annotations don't match number of parameters");
 625     }
 626 
 627     public AnnotatedType getAnnotatedReturnType() {
 628         return getAnnotatedReturnType0(getGenericReturnType());
 629 }
 630 }