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

org.springframework.aot.nativex.NativeConfigurationWriter 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.nativex;

import java.util.function.Consumer;

import org.springframework.aot.hint.ProxyHints;
import org.springframework.aot.hint.ReflectionHints;
import org.springframework.aot.hint.ResourceHints;
import org.springframework.aot.hint.RuntimeHints;
import org.springframework.aot.hint.SerializationHints;

/**
 * Write {@link RuntimeHints} as GraalVM native configuration.
 *
 * @author Sebastien Deleuze
 * @author Stephane Nicoll
 * @author Janne Valkealahti
 * @since 6.0
 * @see Native Image Build Configuration
 */
public abstract class NativeConfigurationWriter {

	/**
	 * Write the GraalVM native configuration from the provided hints.
	 * @param hints the hints to handle
	 */
	public void write(RuntimeHints hints) {
		if (hints.serialization().javaSerializationHints().findAny().isPresent()) {
			writeSerializationHints(hints.serialization());
		}
		if (hints.proxies().jdkProxyHints().findAny().isPresent()) {
			writeProxyHints(hints.proxies());
		}
		if (hints.reflection().typeHints().findAny().isPresent()) {
			writeReflectionHints(hints.reflection());
		}
		if (hints.resources().resourcePatternHints().findAny().isPresent() ||
				hints.resources().resourceBundleHints().findAny().isPresent()) {
			writeResourceHints(hints.resources());
		}
		if (hints.jni().typeHints().findAny().isPresent()) {
			writeJniHints(hints.jni());
		}
	}

	/**
	 * Write the specified GraalVM native configuration file, using the
	 * provided {@link BasicJsonWriter}.
	 * @param fileName the name of the file
	 * @param writer a consumer for the writer to use
	 */
	protected abstract void writeTo(String fileName, Consumer writer);

	private void writeSerializationHints(SerializationHints hints) {
		writeTo("serialization-config.json", writer ->
				SerializationHintsWriter.INSTANCE.write(writer, hints));
	}

	private void writeProxyHints(ProxyHints hints) {
		writeTo("proxy-config.json", writer ->
				ProxyHintsWriter.INSTANCE.write(writer, hints));
	}

	private void writeReflectionHints(ReflectionHints hints) {
		writeTo("reflect-config.json", writer ->
				ReflectionHintsWriter.INSTANCE.write(writer, hints));
	}

	private void writeResourceHints(ResourceHints hints) {
		writeTo("resource-config.json", writer ->
				ResourceHintsWriter.INSTANCE.write(writer, hints));
	}

	private void writeJniHints(ReflectionHints hints) {
		writeTo("jni-config.json", writer ->
				ReflectionHintsWriter.INSTANCE.write(writer, hints));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy