jdk/src/share/classes/java/lang/invoke/LambdaMetafactory.java
author darcy
Thu, 27 Jun 2013 19:02:02 -0700
changeset 18569 0e46c17766b7
parent 18284 e281a0a2583e
child 18716 9723e722b955
permissions -rw-r--r--
8019357: Fix doclint warnings in java.lang.invoke Reviewed-by: jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     1
/*
16036
a30224365db2 8009102: Several docs warnings in Project Lambda APIs
darcy
parents: 16001
diff changeset
     2
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     4
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    10
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    15
 * accompanied this code).
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    16
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    20
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    23
 * questions.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    24
 */
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    25
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    26
package java.lang.invoke;
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    27
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    28
/**
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    29
 * <p>Bootstrap methods for converting lambda expressions and method references to functional interface objects.</p>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    30
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    31
 * <p>For every lambda expressions or method reference in the source code, there is a target type which is a
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    32
 * functional interface. Evaluating a lambda expression produces an object of its target type. The mechanism for
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    33
 * evaluating lambda expressions is to invoke an invokedynamic call site, which takes arguments describing the sole
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    34
 * method of the functional interface and the implementation method, and returns an object (the lambda object) that
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    35
 * implements the target type. Methods of the lambda object invoke the implementation method. For method
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    36
 * references, the implementation method is simply the referenced method; for lambda expressions, the
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    37
 * implementation method is produced by the compiler based on the body of the lambda expression. The methods in
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    38
 * this file are the bootstrap methods for those invokedynamic call sites, called lambda factories, and the
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    39
 * bootstrap methods responsible for linking the lambda factories are called lambda meta-factories.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    40
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    41
 * <p>The bootstrap methods in this class take the information about the functional interface, the implementation
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    42
 * method, and the static types of the captured lambda arguments, and link a call site which, when invoked,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    43
 * produces the lambda object.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    44
 *
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
    45
 * <p>When parameterized types are used, the instantiated type of the functional interface method may be different
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
    46
 * from that in the functional interface. For example, consider
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    47
 * <code>interface I&lt;T&gt; { int m(T x); }</code> if this functional interface type is used in a lambda
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    48
 * <code>I&lt;Byte&gt; v = ...</code>, we need both the actual functional interface method which has the signature
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    49
 * <code>(Object)int</code> and the erased instantiated type of the functional interface method (or simply
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
    50
 * <I>instantiated method type</I>), which has signature
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    51
 * <code>(Byte)int</code>.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    52
 *
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    53
 * <p>While functional interfaces only have a single abstract method from the language perspective (concrete
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    54
 * methods in Object are and default methods may be present), at the bytecode level they may actually have multiple
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    55
 * methods because of the need for bridge methods. Invoking any of these methods on the lambda object will result
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
    56
 * in invoking the implementation method.
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    57
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    58
 * <p>The argument list of the implementation method and the argument list of the functional interface method(s)
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    59
 * may differ in several ways.  The implementation methods may have additional arguments to accommodate arguments
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    60
 * captured by the lambda expression; there may also be differences resulting from permitted adaptations of
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    61
 * arguments, such as casting, boxing, unboxing, and primitive widening. They may also differ because of var-args,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    62
 * but this is expected to be handled by the compiler.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    63
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    64
 * <p>Invokedynamic call sites have two argument lists: a static argument list and a dynamic argument list.  The
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    65
 * static argument list lives in the constant pool; the dynamic argument list lives on the operand stack at
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    66
 * invocation time.  The bootstrap method has access to the entire static argument list (which in this case,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    67
 * contains method handles describing the implementation method and the canonical functional interface method),
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    68
 * as well as a method signature describing the number and static types (but not the values) of the dynamic
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    69
 * arguments, and the static return type of the invokedynamic site.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    70
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    71
 * <p>The implementation method is described with a method handle. In theory, any method handle could be used.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    72
 * Currently supported are method handles representing invocation of virtual, interface, constructor and static
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    73
 * methods.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    74
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    75
 * <p>Assume:
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    76
 * <ul>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    77
 *      <li>the functional interface method has N arguments, of types (U1, U2, ... Un) and return type Ru</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    78
 *      <li>then the instantiated method type also has N arguments, of types (T1, T2, ... Tn) and return type Rt</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    79
 *      <li>the implementation method has M arguments, of types (A1..Am) and return type Ra,</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    80
 *      <li>the dynamic argument list has K arguments of types (D1..Dk), and the invokedynamic return site has
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    81
 *          type Rd</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    82
 *      <li>the functional interface type is F</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    83
 * </ul>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    84
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    85
 * <p>The following signature invariants must hold:
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    86
 * <ul>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    87
 *     <li>Rd is a subtype of F</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    88
 *     <li>For i=1..N, Ti is a subtype of Ui</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    89
 *     <li>Either Rt and Ru are primitive and are the same type, or both are reference types and
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    90
 *         Rt is a subtype of Ru</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    91
 *     <li>If the implementation method is a static method:
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    92
 *     <ul>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    93
 *         <li>K + N = M</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    94
 *         <li>For i=1..K, Di = Ai</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    95
 *         <li>For i=1..N, Ti is adaptable to Aj, where j=i+k</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    96
 *     </ul></li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    97
 *     <li>If the implementation method is an instance method:
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    98
 *     <ul>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
    99
 *         <li>K + N = M + 1</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   100
 *         <li>D1 must be a subtype of the enclosing class for the implementation method</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   101
 *         <li>For i=2..K, Di = Aj, where j=i-1</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   102
 *         <li>For i=1..N, Ti is adaptable to Aj, where j=i+k-1</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   103
 *     </ul></li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   104
 *     <li>The return type Rt is void, or the return type Ra is not void and is adaptable to Rt</li>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   105
 * </ul>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   106
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   107
 * <p>Note that the potentially parameterized implementation return type provides the value for the SAM. Whereas
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   108
 * the completely known instantiated return type is adapted to the implementation arguments. Because the
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   109
 * instantiated type of the implementation method is not available, the adaptability of return types cannot be
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   110
 * checked as precisely at link-time as the arguments can be checked. Thus a loose version of link-time checking is
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   111
 * done on return type, while a strict version is applied to arguments.
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   112
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   113
 * <p>A type Q is considered adaptable to S as follows:
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18284
diff changeset
   114
 * <table summary="adaptable types">
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   115
 *     <tr><th>Q</th><th>S</th><th>Link-time checks</th><th>Capture-time checks</th></tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   116
 *     <tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   117
 *         <td>Primitive</td><td>Primitive</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   118
 *         <td>Q can be converted to S via a primitive widening conversion</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   119
 *         <td>None</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   120
 *     </tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   121
 *     <tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   122
 *         <td>Primitive</td><td>Reference</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   123
 *         <td>S is a supertype of the Wrapper(Q)</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   124
 *         <td>Cast from Wrapper(Q) to S</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   125
 *     </tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   126
 *     <tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   127
 *         <td>Reference</td><td>Primitive</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   128
 *         <td>strict: Q is a primitive wrapper and Primitive(Q) can be widened to S
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   129
 *         <br>loose: If Q is a primitive wrapper, check that Primitive(Q) can be widened to S</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   130
 *         <td>If Q is not a primitive wrapper, cast Q to the base Wrapper(S); for example Number for numeric types</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   131
 *     </tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   132
 *     <tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   133
 *         <td>Reference</td><td>Reference</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   134
 *         <td>strict: S is a supertype of Q
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   135
 *         <br>loose: none</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   136
 *         <td>Cast from Q to S</td>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   137
 *     </tr>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   138
 * </table>
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   139
 *
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   140
 * The default bootstrap ({@link #metaFactory}) represents the common cases and uses an optimized protocol.
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   141
 * Alternate bootstraps (e.g., {@link #altMetaFactory}) exist to support uncommon cases such as serialization
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   142
 * or additional marker superinterfaces.
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   143
 *
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   144
 */
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   145
public class LambdaMetafactory {
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   146
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   147
    /** Flag for alternate metafactories indicating the lambda object is must to be serializable */
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   148
    public static final int FLAG_SERIALIZABLE = 1 << 0;
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   149
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   150
    /**
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   151
     * Flag for alternate metafactories indicating the lambda object implements other marker interfaces
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   152
     * besides Serializable
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   153
     */
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   154
    public static final int FLAG_MARKERS = 1 << 1;
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   155
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   156
    private static final Class<?>[] EMPTY_CLASS_ARRAY = new Class<?>[0];
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   157
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18284
diff changeset
   158
    /**
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   159
     * Standard meta-factory for conversion of lambda expressions or method references to functional interfaces.
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   160
     *
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   161
     * @param caller Stacked automatically by VM; represents a lookup context with the accessibility privileges
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   162
     *               of the caller.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   163
     * @param invokedName Stacked automatically by VM; the name of the invoked method as it appears at the call site.
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   164
     *                    Currently unused.
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   165
     * @param invokedType Stacked automatically by VM; the signature of the invoked method, which includes the
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   166
     *                    expected static type of the returned lambda object, and the static types of the captured
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   167
     *                    arguments for the lambda.  In the event that the implementation method is an instance method,
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   168
     *                    the first argument in the invocation signature will correspond to the receiver.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   169
     * @param samMethod The primary method in the functional interface to which the lambda or method reference is
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   170
     *                  being converted, represented as a method handle.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   171
     * @param implMethod The implementation method which should be called (with suitable adaptation of argument
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   172
     *                   types, return types, and adjustment for captured arguments) when methods of the resulting
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   173
     *                   functional interface instance are invoked.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   174
     * @param instantiatedMethodType The signature of the primary functional interface method after type variables
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   175
     *                               are substituted with their instantiation from the capture site
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   176
     * @return a CallSite, which, when invoked, will return an instance of the functional interface
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18284
diff changeset
   177
     * @throws ReflectiveOperationException if the caller is not able to reconstruct one of the method handles
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   178
     * @throws LambdaConversionException If any of the meta-factory protocol invariants are violated
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   179
     */
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   180
    public static CallSite metaFactory(MethodHandles.Lookup caller,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   181
                                       String invokedName,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   182
                                       MethodType invokedType,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   183
                                       MethodHandle samMethod,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   184
                                       MethodHandle implMethod,
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   185
                                       MethodType instantiatedMethodType)
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   186
                   throws ReflectiveOperationException, LambdaConversionException {
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   187
        AbstractValidatingLambdaMetafactory mf;
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   188
        mf = new InnerClassLambdaMetafactory(caller, invokedType, samMethod, implMethod, instantiatedMethodType,
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   189
                0, EMPTY_CLASS_ARRAY);
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   190
        mf.validateMetafactoryArgs();
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   191
        return mf.buildCallSite();
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   192
    }
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   193
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   194
    /**
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   195
     * Alternate meta-factory for conversion of lambda expressions or method references to functional interfaces,
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   196
     * which supports serialization and other uncommon options.
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   197
     *
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   198
     * The declared argument list for this method is:
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   199
     *
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   200
     *  CallSite altMetaFactory(MethodHandles.Lookup caller,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   201
     *                          String invokedName,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   202
     *                          MethodType invokedType,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   203
     *                          Object... args)
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   204
     *
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   205
     * but it behaves as if the argument list is:
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   206
     *
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   207
     *  CallSite altMetaFactory(MethodHandles.Lookup caller,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   208
     *                          String invokedName,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   209
     *                          MethodType invokedType,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   210
     *                          MethodHandle samMethod
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   211
     *                          MethodHandle implMethod,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   212
     *                          MethodType instantiatedMethodType,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   213
     *                          int flags,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   214
     *                          int markerInterfaceCount, // IF flags has MARKERS set
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   215
     *                          Class... markerInterfaces // IF flags has MARKERS set
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   216
     *                          )
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   217
     *
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   218
     *
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   219
     * @param caller Stacked automatically by VM; represents a lookup context with the accessibility privileges
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   220
     *               of the caller.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   221
     * @param invokedName Stacked automatically by VM; the name of the invoked method as it appears at the call site.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   222
     *                    Currently unused.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   223
     * @param invokedType Stacked automatically by VM; the signature of the invoked method, which includes thefu
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   224
     *                    expected static type of the returned lambda object, and the static types of the captured
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   225
     *                    arguments for the lambda.  In the event that the implementation method is an instance method,
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   226
     *                    the first argument in the invocation signature will correspond to the receiver.
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   227
     * @param  args       argument to pass, flags, marker interface count, and marker interfaces as described above
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   228
     * @return a CallSite, which, when invoked, will return an instance of the functional interface
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18284
diff changeset
   229
     * @throws ReflectiveOperationException if the caller is not able to reconstruct one of the method handles
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   230
     * @throws LambdaConversionException If any of the meta-factory protocol invariants are violated
16001
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   231
     */
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   232
    public static CallSite altMetaFactory(MethodHandles.Lookup caller,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   233
                                          String invokedName,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   234
                                          MethodType invokedType,
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   235
                                          Object... args)
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   236
            throws ReflectiveOperationException, LambdaConversionException {
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   237
        MethodHandle samMethod = (MethodHandle)args[0];
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   238
        MethodHandle implMethod = (MethodHandle)args[1];
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   239
        MethodType instantiatedMethodType = (MethodType)args[2];
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   240
        int flags = (Integer) args[3];
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   241
        Class<?>[] markerInterfaces;
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   242
        int argIndex = 4;
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   243
        if ((flags & FLAG_MARKERS) != 0) {
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   244
            int markerCount = (Integer) args[argIndex++];
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   245
            markerInterfaces = new Class<?>[markerCount];
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   246
            System.arraycopy(args, argIndex, markerInterfaces, 0, markerCount);
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   247
            argIndex += markerCount;
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   248
        }
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   249
        else
fd4c8d3becf8 8004970: Implement serialization in the lambda metafactory
rfield
parents: 14323
diff changeset
   250
            markerInterfaces = EMPTY_CLASS_ARRAY;
18284
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   251
        AbstractValidatingLambdaMetafactory mf;
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   252
        mf = new InnerClassLambdaMetafactory(caller, invokedType, samMethod, implMethod, instantiatedMethodType,
e281a0a2583e 8017044: anti-delta fix for 8015402
chegar
parents: 18182
diff changeset
   253
                                             flags, markerInterfaces);
14323
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   254
        mf.validateMetafactoryArgs();
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   255
        return mf.buildCallSite();
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   256
    }
5acca3d1f124 8000806: Implement runtime lambda metafactory
rfield
parents:
diff changeset
   257
}