All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.aot.hint.annotation.ReflectiveRuntimeHintsRegistrar Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2022 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
 *
 *      https://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.aot.hint.annotation;

import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Constructor;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.Consumer;

import org.springframework.aot.hint.ReflectionHints;
import org.springframework.aot.hint.RuntimeHints;
import org.springframework.core.annotation.MergedAnnotations;
import org.springframework.util.ClassUtils;
import org.springframework.util.ReflectionUtils;

import static org.springframework.core.annotation.MergedAnnotations.SearchStrategy.TYPE_HIERARCHY;

/**
 * Process {@link Reflective @Reflective} annotated elements.
 *
 * @author Stephane Nicoll
 * @author Andy Wilkinson
 * @since 6.0
 */
public class ReflectiveRuntimeHintsRegistrar {

	private final Map, ReflectiveProcessor> processors = new HashMap<>();


	/**
	 * Register the relevant runtime hints for elements that are annotated with
	 * {@link Reflective}.
	 * @param runtimeHints the runtime hints instance to use
	 * @param types the types to process
	 */
	public void registerRuntimeHints(RuntimeHints runtimeHints, Class... types) {
		Set entries = new HashSet<>();
		for (Class type : types) {
			processType(entries, type);
			for (Class implementedInterface : ClassUtils.getAllInterfacesForClass(type)) {
				processType(entries, implementedInterface);
			}
		}
		entries.forEach(entry -> {
			AnnotatedElement element = entry.element();
			entry.processor().registerReflectionHints(runtimeHints.reflection(), element);
		});
	}

	private void processType(Set entries, Class typeToProcess) {
		if (isReflective(typeToProcess)) {
			entries.add(createEntry(typeToProcess));
		}
		doWithReflectiveConstructors(typeToProcess, constructor ->
				entries.add(createEntry(constructor)));
		ReflectionUtils.doWithFields(typeToProcess, field ->
				entries.add(createEntry(field)), this::isReflective);
		ReflectionUtils.doWithMethods(typeToProcess, method ->
				entries.add(createEntry(method)), this::isReflective);
	}

	private void doWithReflectiveConstructors(Class typeToProcess, Consumer> consumer) {
		for (Constructor constructor : typeToProcess.getDeclaredConstructors()) {
			if (isReflective(constructor)) {
				consumer.accept(constructor);
			}
		}
	}

	private boolean isReflective(AnnotatedElement element) {
		return MergedAnnotations.from(element, TYPE_HIERARCHY).isPresent(Reflective.class);
	}

	@SuppressWarnings("unchecked")
	private Entry createEntry(AnnotatedElement element) {
		List processors = MergedAnnotations.from(element, TYPE_HIERARCHY)
				.stream(Reflective.class)
				.map(annotation -> annotation.getClassArray("value"))
				.flatMap(Arrays::stream)
				.distinct()
				.map(type -> (Class) type)
				.map(processorClass -> this.processors.computeIfAbsent(processorClass, this::instantiateClass))
				.toList();
		ReflectiveProcessor processorToUse = (processors.size() == 1 ? processors.get(0) :
				new DelegatingReflectiveProcessor(processors));
		return new Entry(element, processorToUse);
	}

	private ReflectiveProcessor instantiateClass(Class type) {
		try {
			Constructor constructor = type.getDeclaredConstructor();
			ReflectionUtils.makeAccessible(constructor);
			return constructor.newInstance();
		}
		catch (Exception ex) {
			throw new IllegalStateException("Failed to instantiate " + type, ex);
		}
	}

	private static class DelegatingReflectiveProcessor implements ReflectiveProcessor {

		private final Iterable processors;

		DelegatingReflectiveProcessor(Iterable processors) {
			this.processors = processors;
		}

		@Override
		public void registerReflectionHints(ReflectionHints hints, AnnotatedElement element) {
			this.processors.forEach(processor -> processor.registerReflectionHints(hints, element));
		}

	}

	private record Entry(AnnotatedElement element, ReflectiveProcessor processor) {}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy