ExportedOperationImpl.java
/*
* Copyright (c) 2001-2017, Zoltan Farkas All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Additionally licensed with:
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.spf4j.jmx;
import java.io.InvalidObjectException;
import java.io.NotSerializableException;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.Arrays;
import javax.annotation.Nullable;
import javax.management.MBeanParameterInfo;
import javax.management.ReflectionException;
import javax.management.openmbean.OpenDataException;
import javax.management.openmbean.OpenMBeanParameterInfoSupport;
import javax.management.openmbean.OpenType;
/**
*
* @author zoly
*/
final class ExportedOperationImpl implements ExportedOperation {
private final String name;
private final String description;
private final Method method;
private final Object object;
private final MBeanParameterInfo[] paramInfos;
private final JMXBeanMapping[] argConverters;
private final JMXBeanMapping resultConverter;
ExportedOperationImpl(final String name, final String description,
final Method method, final Object object, final boolean mapOpenType) {
this.name = name;
this.description = description;
this.method = method;
this.object = object;
Type[] parameterTypes = method.getGenericParameterTypes();
Type returnType = method.getGenericReturnType();
if (mapOpenType) {
try {
resultConverter = GlobalMXBeanMapperSupplier.getOpenTypeMapping(returnType);
} catch (NotSerializableException ex) {
throw new UnsupportedOperationException("Cannot export " + method + " returned type not serializable", ex);
}
} else {
resultConverter = null;
}
Annotation[][] parameterAnnotations = method.getParameterAnnotations();
argConverters = new JMXBeanMapping[parameterTypes.length];
paramInfos = new MBeanParameterInfo[parameterTypes.length];
for (int i = 0; i < paramInfos.length; i++) {
Annotation[] annotations = parameterAnnotations[i];
String pname = "";
String pdesc = "";
boolean mapParamOpenType = mapOpenType;
for (Annotation annot : annotations) {
if (annot.annotationType() == JmxExport.class) {
JmxExport eAnn = (JmxExport) annot;
pname = eAnn.value();
pdesc = eAnn.description();
mapParamOpenType = eAnn.mapOpenType();
break;
}
}
if ("".equals(pname)) {
pname = "param_" + i;
}
if (pdesc.isEmpty()) {
pdesc = pname;
}
Type parameterType = parameterTypes[i];
JMXBeanMapping paramOTM;
if (mapParamOpenType) {
try {
paramOTM = GlobalMXBeanMapperSupplier.getOpenTypeMapping(parameterType);
} catch (NotSerializableException ex) {
throw new UnsupportedOperationException("Cannot export " + method + " arg " + i + " not serializable", ex);
}
} else {
paramOTM = null;
}
if (paramOTM != null) {
paramInfos[i] = new OpenMBeanParameterInfoSupport(pname, pdesc, paramOTM.getOpenType());
argConverters[i] = paramOTM;
} else {
paramInfos[i] = new MBeanParameterInfo(pname, parameterType.getTypeName(), pdesc);
argConverters[i] = null;
}
}
}
@Override
public String getName() {
return name;
}
@Override
public String getDescription() {
return description;
}
@Override
public Object invoke(final Object[] parameters)
throws ReflectionException, OpenDataException, InvalidObjectException {
try {
for (int i = 0; i < parameters.length; i++) {
JMXBeanMapping argConverter = argConverters[i];
if (argConverter != null) {
parameters[i] = argConverter.fromOpenValue(parameters[i]);
}
}
Object rVal = method.invoke(object, parameters);
if (resultConverter != null) {
return resultConverter.toOpenValue(rVal);
} else {
return rVal;
}
} catch (IllegalAccessException ex) {
throw new ReflectionException(ex, "Failure invoking " + method + " with " + Arrays.toString(parameters));
} catch (InvocationTargetException ex) {
Throwable cause = ex.getCause();
if (cause instanceof Exception) {
throw new ReflectionException((Exception) cause, "Failure invoking "
+ method + " with " + Arrays.toString(parameters));
} else {
throw new ReflectionException(new RuntimeException(ex),
"Failure invoking " + method + " with " + Arrays.toString(parameters));
}
}
}
@Override
public MBeanParameterInfo[] getParameterInfos() {
return paramInfos;
}
@Override
public Class<?> getReturnType() {
return method.getReturnType();
}
@Override
public String toString() {
return "ExportedOperationImpl{" + "name=" + name + ", description=" + description
+ ", method=" + method + ", object=" + object + ", paramInfos=" + Arrays.toString(paramInfos) + '}';
}
@Override
@Nullable
public OpenType<?> getReturnOpenType() {
return (resultConverter != null) ? resultConverter.getOpenType() : null;
}
}