|
| 1 | +/* |
| 2 | + * Copyright 2022 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package org.springframework.data.util; |
| 17 | + |
| 18 | +import java.util.Map; |
| 19 | +import java.util.WeakHashMap; |
| 20 | +import java.util.function.Function; |
| 21 | + |
| 22 | +import org.apache.commons.logging.Log; |
| 23 | +import org.apache.commons.logging.LogFactory; |
| 24 | +import org.springframework.aot.generate.GenerationContext; |
| 25 | +import org.springframework.aot.hint.MemberCategory; |
| 26 | +import org.springframework.aot.hint.TypeReference; |
| 27 | +import org.springframework.lang.Nullable; |
| 28 | +import org.springframework.util.ClassUtils; |
| 29 | + |
| 30 | +/** |
| 31 | + * @author Christoph Strobl |
| 32 | + * @since 4.1 |
| 33 | + */ |
| 34 | +public class QTypeContributor { |
| 35 | + |
| 36 | + private final static Log logger = LogFactory.getLog(QTypeContributor.class); |
| 37 | + private static Function<ClassLoader, Class<?>> entityPathType = cacheOf(QTypeContributor::getEntityPathType); |
| 38 | + |
| 39 | + public static void contributeEntityPath(Class<?> type, GenerationContext context, @Nullable ClassLoader classLoader) { |
| 40 | + |
| 41 | + Class<?> entityPathType = QTypeContributor.entityPathType.apply(classLoader); |
| 42 | + if (entityPathType == null) { |
| 43 | + return; |
| 44 | + } |
| 45 | + |
| 46 | + String queryClassName = getQueryClassName(type); |
| 47 | + if (ClassUtils.isPresent(queryClassName, classLoader)) { |
| 48 | + try { |
| 49 | + if (ClassUtils.isAssignable(entityPathType, ClassUtils.forName(queryClassName, classLoader))) { |
| 50 | + |
| 51 | + logger.debug("Registering Q type %s for %s."); |
| 52 | + context.getRuntimeHints().reflection().registerType(TypeReference.of(queryClassName), |
| 53 | + MemberCategory.INVOKE_PUBLIC_METHODS, MemberCategory.INVOKE_DECLARED_CONSTRUCTORS, |
| 54 | + MemberCategory.INTROSPECT_DECLARED_METHODS, MemberCategory.DECLARED_FIELDS); |
| 55 | + } else { |
| 56 | + logger.debug("Skipping Q type %s. Not an EntityPath."); |
| 57 | + } |
| 58 | + } catch (ClassNotFoundException e) { |
| 59 | + throw new IllegalStateException("%s could not be loaded".formatted(queryClassName), e); |
| 60 | + } |
| 61 | + } |
| 62 | + } |
| 63 | + |
| 64 | + @Nullable |
| 65 | + private static Class<?> getEntityPathType(ClassLoader classLoader) { |
| 66 | + |
| 67 | + if (!ClassUtils.isPresent("com.querydsl.core.types.EntityPath", classLoader)) { |
| 68 | + return null; |
| 69 | + } |
| 70 | + |
| 71 | + try { |
| 72 | + return ClassUtils.forName("com.querydsl.core.types.EntityPath", classLoader); |
| 73 | + } catch (ClassNotFoundException e) { |
| 74 | + throw new RuntimeException(e); |
| 75 | + } |
| 76 | + } |
| 77 | + |
| 78 | + private static Function<ClassLoader, Class<?>> cacheOf(Function<ClassLoader, Class<?>> inFunction) { |
| 79 | + Map<ClassLoader, Class<?>> cache = new WeakHashMap<>(); |
| 80 | + return in -> cache.computeIfAbsent(in, inFunction::apply); |
| 81 | + } |
| 82 | + |
| 83 | + /** |
| 84 | + * Returns the name of the query class for the given domain class. |
| 85 | + * |
| 86 | + * @param domainClass |
| 87 | + * @return |
| 88 | + */ |
| 89 | + private static String getQueryClassName(Class<?> domainClass) { |
| 90 | + |
| 91 | + String simpleClassName = ClassUtils.getShortName(domainClass); |
| 92 | + String pkgName = domainClass.getPackage().getName(); |
| 93 | + |
| 94 | + return String.format("%s.Q%s%s", pkgName, getClassBase(simpleClassName), domainClass.getSimpleName()); |
| 95 | + } |
| 96 | + |
| 97 | + /** |
| 98 | + * Analyzes the short class name and potentially returns the outer class. |
| 99 | + * |
| 100 | + * @param shortName |
| 101 | + * @return |
| 102 | + */ |
| 103 | + private static String getClassBase(String shortName) { |
| 104 | + |
| 105 | + String[] parts = shortName.split("\\."); |
| 106 | + |
| 107 | + return parts.length < 2 ? "" : parts[0] + "_"; |
| 108 | + } |
| 109 | +} |
0 commit comments