OrderUtils caches order values (for AnnotationAwareOrderComparator)

Issue: SPR-17064
This commit is contained in:
Juergen Hoeller 2018-07-19 11:58:42 +02:00
parent 1f5d0faf1f
commit d0bbbf4cae
2 changed files with 46 additions and 14 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2017 the original author or authors. * Copyright 2002-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -17,9 +17,11 @@
package org.springframework.core.annotation; package org.springframework.core.annotation;
import java.lang.annotation.Annotation; import java.lang.annotation.Annotation;
import java.util.Map;
import org.springframework.lang.Nullable; import org.springframework.lang.Nullable;
import org.springframework.util.ClassUtils; import org.springframework.util.ClassUtils;
import org.springframework.util.ConcurrentReferenceHashMap;
/** /**
* General utility for determining the order of an object based on its type declaration. * General utility for determining the order of an object based on its type declaration.
@ -34,6 +36,10 @@ import org.springframework.util.ClassUtils;
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public abstract class OrderUtils { public abstract class OrderUtils {
/** Cache marker for a non-annotated Class. */
private static final Object NOT_ANNOTATED = new Object();
@Nullable @Nullable
private static Class<? extends Annotation> priorityAnnotationType; private static Class<? extends Annotation> priorityAnnotationType;
@ -49,6 +55,13 @@ public abstract class OrderUtils {
} }
/** Cache for @Order value (or NOT_ANNOTATED marker) per Class. */
private static final Map<Class<?>, Object> orderCache = new ConcurrentReferenceHashMap<>(64);
/** Cache for @Priority value (or NOT_ANNOTATED marker) per Class. */
private static final Map<Class<?>, Object> priorityCache = new ConcurrentReferenceHashMap<>();
/** /**
* Return the order on the specified {@code type}, or the specified * Return the order on the specified {@code type}, or the specified
* default value if none can be found. * default value if none can be found.
@ -86,15 +99,20 @@ public abstract class OrderUtils {
*/ */
@Nullable @Nullable
public static Integer getOrder(Class<?> type) { public static Integer getOrder(Class<?> type) {
Object cached = orderCache.get(type);
if (cached != null) {
return (cached instanceof Integer ? (Integer) cached : null);
}
Order order = AnnotationUtils.findAnnotation(type, Order.class); Order order = AnnotationUtils.findAnnotation(type, Order.class);
Integer result;
if (order != null) { if (order != null) {
return order.value(); result = order.value();
} }
Integer priorityOrder = getPriority(type); else {
if (priorityOrder != null) { result = getPriority(type);
return priorityOrder;
} }
return null; orderCache.put(type, (result != null ? result : NOT_ANNOTATED));
return result;
} }
/** /**
@ -105,13 +123,20 @@ public abstract class OrderUtils {
*/ */
@Nullable @Nullable
public static Integer getPriority(Class<?> type) { public static Integer getPriority(Class<?> type) {
if (priorityAnnotationType != null) { if (priorityAnnotationType == null) {
Annotation priority = AnnotationUtils.findAnnotation(type, priorityAnnotationType);
if (priority != null) {
return (Integer) AnnotationUtils.getValue(priority);
}
}
return null; return null;
} }
Object cached = priorityCache.get(type);
if (cached != null) {
return (cached instanceof Integer ? (Integer) cached : null);
}
Annotation priority = AnnotationUtils.findAnnotation(type, priorityAnnotationType);
Integer result = null;
if (priority != null) {
result = (Integer) AnnotationUtils.getValue(priority);
}
priorityCache.put(type, (result != null ? result : NOT_ANNOTATED));
return result;
}
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2017 the original author or authors. * Copyright 2002-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -23,41 +23,48 @@ import org.junit.Test;
import static org.junit.Assert.*; import static org.junit.Assert.*;
/** /**
*
* @author Stephane Nicoll * @author Stephane Nicoll
* @author Juergen Hoeller
*/ */
public class OrderUtilsTests { public class OrderUtilsTests {
@Test @Test
public void getSimpleOrder() { public void getSimpleOrder() {
assertEquals(Integer.valueOf(50), OrderUtils.getOrder(SimpleOrder.class, null)); assertEquals(Integer.valueOf(50), OrderUtils.getOrder(SimpleOrder.class, null));
assertEquals(Integer.valueOf(50), OrderUtils.getOrder(SimpleOrder.class, null));
} }
@Test @Test
public void getPriorityOrder() { public void getPriorityOrder() {
assertEquals(Integer.valueOf(55), OrderUtils.getOrder(SimplePriority.class, null)); assertEquals(Integer.valueOf(55), OrderUtils.getOrder(SimplePriority.class, null));
assertEquals(Integer.valueOf(55), OrderUtils.getOrder(SimplePriority.class, null));
} }
@Test @Test
public void getOrderWithBoth() { public void getOrderWithBoth() {
assertEquals(Integer.valueOf(50), OrderUtils.getOrder(OrderAndPriority.class, null)); assertEquals(Integer.valueOf(50), OrderUtils.getOrder(OrderAndPriority.class, null));
assertEquals(Integer.valueOf(50), OrderUtils.getOrder(OrderAndPriority.class, null));
} }
@Test @Test
public void getDefaultOrder() { public void getDefaultOrder() {
assertEquals(33, OrderUtils.getOrder(NoOrder.class, 33)); assertEquals(33, OrderUtils.getOrder(NoOrder.class, 33));
assertEquals(33, OrderUtils.getOrder(NoOrder.class, 33));
} }
@Test @Test
public void getPriorityValueNoAnnotation() { public void getPriorityValueNoAnnotation() {
assertNull(OrderUtils.getPriority(SimpleOrder.class)); assertNull(OrderUtils.getPriority(SimpleOrder.class));
assertNull(OrderUtils.getPriority(SimpleOrder.class));
} }
@Test @Test
public void getPriorityValue() { public void getPriorityValue() {
assertEquals(Integer.valueOf(55), OrderUtils.getPriority(OrderAndPriority.class)); assertEquals(Integer.valueOf(55), OrderUtils.getPriority(OrderAndPriority.class));
assertEquals(Integer.valueOf(55), OrderUtils.getPriority(OrderAndPriority.class));
} }
@Order(50) @Order(50)
private static class SimpleOrder {} private static class SimpleOrder {}