jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/MethodUtil.java
author aefimov
Thu, 16 Feb 2017 13:14:39 +0300
changeset 43852 93a527059d8a
parent 25871 b80b84e87032
permissions -rw-r--r--
8174735: Update JAX-WS RI integration to latest version Reviewed-by: alanb, mchung, lancea Contributed-by: roman.grigoriadi@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20987
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     1
/*
43852
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
     2
 * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
20987
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     4
 *
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    10
 *
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    15
 * accompanied this code).
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    16
 *
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    20
 *
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    23
 * questions.
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    24
 */
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    25
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    26
package com.sun.xml.internal.ws.api.server;
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    27
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    28
import java.lang.reflect.InvocationTargetException;
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    29
import java.lang.reflect.Method;
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    30
import java.util.logging.Level;
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    31
import java.util.logging.Logger;
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    32
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    33
/**
43852
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    34
 * Utility class to invoke com.sun.xml.internal.ws.util.MethodUtil.invoke() if available. If not (other then Oracle JDK) fallbacks
20987
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    35
 * to java.lang,reflect.Method.invoke()
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    36
 *
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    37
 * Be careful, copy of this class exists in several packages, iny modification must be done to other copies too!
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    38
 */
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    39
class MethodUtil {
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    40
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    41
    private static final Logger LOGGER = Logger.getLogger(MethodUtil.class.getName());
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    42
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    43
    static Object invoke(Object target, Method method, Object[] args) throws IllegalAccessException, InvocationTargetException {
43852
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    44
        // com.sun.xml.internal.ws.util.MethodUtil.invoke(method, owner, args)
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    45
        if (LOGGER.isLoggable(Level.FINE)) {
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    46
            LOGGER.log(Level.FINE, "Invoking method using com.sun.xml.internal.ws.util.MethodUtil");
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    47
        }
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    48
        try {
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    49
            return com.sun.xml.internal.ws.util.MethodUtil.invoke(method, target, args);
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    50
        } catch (InvocationTargetException ite) {
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    51
            // unwrap invocation exception added by reflection code ...
93a527059d8a 8174735: Update JAX-WS RI integration to latest version
aefimov
parents: 25871
diff changeset
    52
            throw unwrapException(ite);
20987
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    53
        }
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    54
    }
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    55
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    56
    private static InvocationTargetException unwrapException(InvocationTargetException ite) {
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    57
        Throwable targetException = ite.getTargetException();
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    58
        if (targetException != null && targetException instanceof InvocationTargetException) {
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    59
            if (LOGGER.isLoggable(Level.FINE)) {
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    60
                LOGGER.log(Level.FINE, "Unwrapping invocation target exception");
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    61
            }
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    62
            return (InvocationTargetException) targetException;
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    63
        } else {
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    64
            return ite;
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    65
        }
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    66
    }
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    67
590251854a8d 8017505: Better Client Service
mkos
parents:
diff changeset
    68
}