Added PayloadTypeMatchingHandlerMethodResolver.

This commit is contained in:
Mark Fisher
2008-11-18 18:59:09 +00:00
parent 0859124aba
commit 38e3fae8c1
2 changed files with 283 additions and 0 deletions

View File

@@ -0,0 +1,135 @@
/*
* Copyright 2002-2008 the original author or authors.
*
* 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.springframework.integration.handler;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.springframework.integration.core.Message;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
/**
* An implementation of {@link HandlerMethodResolver} that matches the payload
* type of the Message against the expected type of its candidate methods.
*
* @author Mark Fisher
*/
public class PayloadTypeMatchingHandlerMethodResolver implements HandlerMethodResolver {
private final Map<Class<?>, Method> methodMap = new HashMap<Class<?>, Method>();
private volatile Method fallbackMethod;
public PayloadTypeMatchingHandlerMethodResolver(Method... candidates) {
Assert.notEmpty(candidates, "candidates must not be empty");
this.initMethodMap(candidates);
}
public Method resolveHandlerMethod(Message<?> message) {
Class<?> payloadType = message.getPayload().getClass();
Method method = this.methodMap.get(payloadType);
if (method == null) {
method = this.findClosestMatch(payloadType);
if (method == null) {
method = this.fallbackMethod;
}
}
return method;
}
private void initMethodMap(Method[] candidates) {
for (Method method : candidates) {
Class<?> expectedPayloadType = this.determineExpectedPayloadType(method);
if (expectedPayloadType == null) {
Assert.isTrue(fallbackMethod == null,
"At most one method can expect only Message headers rather than a payload, " +
"but found two: [" + method + "] and [" + this.fallbackMethod + "]");
this.fallbackMethod = method;
}
else {
Assert.isTrue(!this.methodMap.containsKey(expectedPayloadType),
"More than one method matches payload type [" + expectedPayloadType +
"]. Consider using annotations or providing a method name.");
this.methodMap.put(expectedPayloadType, method);
}
}
}
private Class<?> determineExpectedPayloadType(Method method) {
Class<?> expectedPayloadType = null;
Class<?>[] parameterTypes = method.getParameterTypes();
Annotation[][] parameterAnnotations = method.getParameterAnnotations();
for (int i = 0; i < parameterTypes.length; i++) {
if (!HandlerMethodUtils.containsHeaderAnnotation(parameterAnnotations[i])) {
Assert.isTrue(expectedPayloadType == null,
"Message-handling method must only have one parameter expecting a payload. Other " +
"parameters may be included but only if they have @Header or @Headers annotations.");
expectedPayloadType = parameterTypes[i];
}
}
return expectedPayloadType;
}
private Method findClosestMatch(Class<?> payloadType) {
Set<Class<?>> expectedTypes = this.methodMap.keySet();
int minTypeDiffWeight = Integer.MAX_VALUE;
Method matchingMethod = null;
for (Class<?> expectedType : expectedTypes) {
int typeDiffWeight = getTypeDifferenceWeight(expectedType, payloadType);
if (typeDiffWeight < minTypeDiffWeight) {
minTypeDiffWeight = typeDiffWeight;
matchingMethod = this.methodMap.get(expectedType);
}
}
if (matchingMethod != null) {
this.methodMap.put(payloadType, matchingMethod);
}
return matchingMethod;
}
private int getTypeDifferenceWeight(Class<?> expectedType, Class<?> payloadType) {
int result = 0;
if (!ClassUtils.isAssignable(expectedType, payloadType)) {
return Integer.MAX_VALUE;
}
Class<?> superClass = payloadType.getSuperclass();
while (superClass != null) {
if (expectedType.equals(superClass)) {
result = result + 2;
superClass = null;
}
else if (ClassUtils.isAssignable(expectedType, superClass)) {
result = result + 2;
superClass = superClass.getSuperclass();
}
else {
superClass = null;
}
}
if (expectedType.isInterface()) {
result = result + 1;
}
return result;
}
}

View File

@@ -0,0 +1,148 @@
/*
* Copyright 2002-2008 the original author or authors.
*
* 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.springframework.integration.handler;
import static org.junit.Assert.assertEquals;
import java.lang.reflect.Method;
import java.util.Date;
import org.junit.Before;
import org.junit.Test;
import org.springframework.integration.annotation.Header;
import org.springframework.integration.message.GenericMessage;
import org.springframework.integration.message.StringMessage;
/**
* @author Mark Fisher
*/
public class PayloadTypeMatchingHandlerMethodResolverTests {
private PayloadTypeMatchingHandlerMethodResolver resolver;
@Before
public void initResolver() {
Method[] candidates = HandlerMethodUtils.getCandidateHandlerMethods(new TestService());
resolver = new PayloadTypeMatchingHandlerMethodResolver(candidates);
}
@Test
public void stringPayload() throws Exception {
Class<?>[] types = new Class<?>[] { String.class };
Method expected = TestService.class.getMethod("stringPayload", types);
Method resolved = resolver.resolveHandlerMethod(new StringMessage("foo"));
assertEquals(expected, resolved);
}
@Test
public void exactMatch() throws Exception {
Class<?>[] types = new Class<?>[] { TestFooImpl1.class };
Method expected = TestService.class.getMethod("fooImpl1Payload", types);
Method resolved = resolver.resolveHandlerMethod(new GenericMessage<TestFoo>(new TestFooImpl1()));
assertEquals(expected, resolved);
}
@Test
public void interfaceMatch() throws Exception {
Class<?>[] types = new Class<?>[] { TestFoo.class };
Method expected = TestService.class.getMethod("fooInterfacePayload", types);
Method resolved = resolver.resolveHandlerMethod(new GenericMessage<TestFoo>(new TestFooImpl2()));
assertEquals(expected, resolved);
}
@Test
public void superclassMatch() throws Exception {
Class<?>[] types = new Class<?>[] { TestFooImpl1.class };
Method expected = TestService.class.getMethod("fooImpl1Payload", types);
Method resolved = resolver.resolveHandlerMethod(new GenericMessage<TestFoo>(new TestFooImpl1Subclass()));
assertEquals(expected, resolved);
}
@Test
public void interfaceOfSuperclassMatch() throws Exception {
Class<?>[] types = new Class<?>[] { TestFoo.class };
Method expected = TestService.class.getMethod("fooInterfacePayload", types);
Method resolved = resolver.resolveHandlerMethod(new GenericMessage<TestFoo>(new TestFooImpl2Subclass()));
assertEquals(expected, resolved);
}
@Test
public void numberSuperclassMatch() throws Exception {
Class<?>[] types = new Class<?>[] { Number.class };
Method expected = TestService.class.getMethod("numberPayload", types);
Method resolved = resolver.resolveHandlerMethod(new GenericMessage<Long>(new Long(99)));
assertEquals(expected, resolved);
}
@Test
public void payloadAndHeaderMethod() throws Exception {
Class<?>[] types = new Class<?>[] { Integer.class, String.class };
Method expected = TestService.class.getMethod("integerPayloadAndHeader", types);
Method resolved = resolver.resolveHandlerMethod(new GenericMessage<Integer>(new Integer(123)));
assertEquals(expected, resolved);
}
@Test
public void fallbackToHeaderOnlyMethod() throws Exception {
Class<?>[] types = new Class<?>[] { String.class };
Method expected = TestService.class.getMethod("headerOnlyMethod", types);
Method resolved = resolver.resolveHandlerMethod(new GenericMessage<Date>(new Date()));
assertEquals(expected, resolved);
}
public static class TestService {
public void stringPayload(String s) {
}
public void fooInterfacePayload(TestFoo foo) {
}
public void fooImpl1Payload(TestFooImpl1 foo) {
}
public void numberPayload(Number n) {
}
public void headerOnlyMethod(@Header("testHeader") String s) {
}
public void integerPayloadAndHeader(Integer n, @Header("testHeader") String s2) {
}
}
public interface TestFoo {
}
public class TestFooImpl1 implements TestFoo {
}
public class TestFooImpl2 implements TestFoo {
}
public class TestFooImpl1Subclass extends TestFooImpl1 {
}
public class TestFooImpl2Subclass extends TestFooImpl2 {
}
}