blob: 49f3b8f09973804c82a3212b2f171d85d320f675 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.dubbo.gateway.consumer.filter;
import org.apache.dubbo.common.beanutil.JavaBeanDescriptor;
import org.apache.dubbo.common.beanutil.JavaBeanSerializeUtil;
import org.apache.dubbo.common.constants.CommonConstants;
import org.apache.dubbo.common.extension.Activate;
import org.apache.dubbo.common.logger.Logger;
import org.apache.dubbo.common.logger.LoggerFactory;
import org.apache.dubbo.common.utils.ReflectUtils;
import org.apache.dubbo.rpc.Filter;
import org.apache.dubbo.rpc.Invocation;
import org.apache.dubbo.rpc.Invoker;
import org.apache.dubbo.rpc.Result;
import org.apache.dubbo.rpc.RpcContext;
import org.apache.dubbo.rpc.RpcException;
import org.apache.dubbo.rpc.RpcInvocation;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Stream;
import static org.apache.dubbo.gateway.common.OmnipotentCommonConstants.GATEWAY_MODE;
import static org.apache.dubbo.gateway.common.OmnipotentCommonConstants.ORIGIN_GENERIC_PARAMETER_TYPES;
import static org.apache.dubbo.gateway.common.OmnipotentCommonConstants.ORIGIN_PARAMETER_TYPES_DESC;
import static org.apache.dubbo.gateway.common.OmnipotentCommonConstants.SPECIFY_ADDRESS;
@Activate(group = CommonConstants.CONSUMER)
public class OmnSerFilter implements Filter, Filter.Listener {
private final static Logger logger = LoggerFactory.getLogger(OmnSerFilter.class);
public static final String name = "specifyAddress";
@Override
public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
Object address = invocation.get(SPECIFY_ADDRESS);
if (address != null) {
RpcContext.getClientAttachment().setAttachment(GATEWAY_MODE, "omn");
convertParameterTypeToJavaBeanDescriptor(invocation);
}
return invoker.invoke(invocation);
}
@Override
public void onResponse(Result appResponse, Invoker<?> invoker, Invocation inv) {
Object resData = appResponse.getValue();
if (resData == null) {
return;
}
if (ReflectUtils.isPrimitives(resData.getClass())) {
return;
}
generalizeJbdParameter(appResponse.getValue());
}
@Override
public void onError(Throwable t, Invoker<?> invoker, Invocation invocation) {
}
@SuppressWarnings({"unchecked", "rawtypes"})
private void generalizeJbdParameter(Object pojo) {
if (pojo instanceof Collection) {
Collection collection = (Collection) pojo;
List list = new ArrayList();
for (Object obj : collection) {
if (obj instanceof JavaBeanDescriptor) {
list.add(JavaBeanSerializeUtil.deserialize((JavaBeanDescriptor) obj));
} else {
list.add(obj);
}
}
collection.clear();
collection.addAll(list);
}
if (pojo instanceof Map) {
Map map = (Map) pojo;
Map newMap = new HashMap();
for (Object key : map.keySet()) {
Object value = map.get(key);
if (key instanceof JavaBeanDescriptor) {
key = JavaBeanSerializeUtil.deserialize((JavaBeanDescriptor) key);
}
if (value instanceof JavaBeanDescriptor) {
value = JavaBeanSerializeUtil.deserialize((JavaBeanDescriptor) value);
}
newMap.put(key, value);
}
map.clear();
map.putAll(newMap);
}
// public field
for (Field field : pojo.getClass().getDeclaredFields()) {
try {
field.setAccessible(true);
Object fieldValue = field.get(pojo);
if (fieldValue instanceof JavaBeanDescriptor) {
field.set(pojo, JavaBeanSerializeUtil.deserialize((JavaBeanDescriptor) fieldValue));
}
} catch (Exception e) {
throw new RuntimeException(e.getMessage(), e);
}
}
}
public static void convertParameterTypeToJavaBeanDescriptor(Invocation invocation) {
if (!(invocation instanceof RpcInvocation)) {
logger.warn("Non-RpcInvocation type, gateway mode does not take effect, type:" + invocation.getClass().getName());
return;
}
Class<?>[] parameterTypes = invocation.getParameterTypes();
boolean reqFirst = Arrays.stream(parameterTypes).noneMatch(param -> param == JavaBeanDescriptor.class);
if (reqFirst) {
invocation.setObjectAttachment(ORIGIN_GENERIC_PARAMETER_TYPES, getDesc(parameterTypes));
invocation.setObjectAttachment(ORIGIN_PARAMETER_TYPES_DESC, ((RpcInvocation) invocation).getParameterTypesDesc());
Arrays.fill(parameterTypes, JavaBeanDescriptor.class);
Object[] arguments = invocation.getArguments();
for (int i = 0; i < arguments.length; i++) {
JavaBeanDescriptor jbdArg = JavaBeanSerializeUtil.serialize(arguments[i]);
arguments[i] = jbdArg;
}
((RpcInvocation) invocation).setParameterTypesDesc(ReflectUtils.getDesc(parameterTypes));
((RpcInvocation) invocation).setCompatibleParamSignatures(Stream.of(parameterTypes).map(Class::getName).toArray(String[]::new));
}
}
private static String[] getDesc(Class<?>[] parameterTypes) {
return Arrays.stream(parameterTypes).map(Class::getName).toArray(String[]::new);
}
}