blob: 267d15476ca68036bd7a114054e1a93c4d61f500 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.k.loader.yaml.quarkus.deployment;
import io.quarkus.deployment.annotations.BuildProducer;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.CombinedIndexBuildItem;
import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
import org.apache.camel.k.loader.yaml.model.Step;
import org.apache.camel.k.loader.yaml.parser.HasDataFormat;
import org.apache.camel.k.loader.yaml.parser.HasEndpointConsumer;
import org.apache.camel.k.loader.yaml.parser.HasEndpointProducer;
import org.apache.camel.k.loader.yaml.parser.HasExpression;
import org.apache.camel.k.loader.yaml.spi.StepParser;
import org.apache.camel.model.DataFormatDefinition;
import org.apache.camel.model.ProcessorDefinition;
import org.apache.camel.model.language.ExpressionDefinition;
import org.apache.camel.quarkus.core.deployment.spi.CamelServiceDestination;
import org.apache.camel.quarkus.core.deployment.spi.CamelServicePatternBuildItem;
import org.jboss.jandex.ClassInfo;
import org.jboss.jandex.DotName;
import org.jboss.jandex.IndexView;
import static org.apache.camel.k.core.quarkus.deployment.support.DeploymentSupport.getAllKnownImplementors;
import static org.apache.camel.k.core.quarkus.deployment.support.DeploymentSupport.getAllKnownSubclasses;
import static org.apache.camel.k.core.quarkus.deployment.support.DeploymentSupport.getAnnotated;
import static org.apache.camel.k.core.quarkus.deployment.support.DeploymentSupport.reflectiveClassBuildItem;
public class YamlLoaderProcessor {
public static final DotName YAML_STEP_PARSER_ANNOTATION = DotName.createSimple("org.apache.camel.k.annotation.yaml.YAMLStepParser");
public static final DotName YAML_STEP_DEFINITION_ANNOTATION = DotName.createSimple("org.apache.camel.k.annotation.yaml.YAMLNodeDefinition");
public static final DotName YAML_MIXIN_ANNOTATION = DotName.createSimple("org.apache.camel.k.annotation.yaml.YAMLMixIn");
@BuildStep
CamelServicePatternBuildItem servicePatterns() {
return new CamelServicePatternBuildItem(
CamelServiceDestination.DISCOVERY,
true,
StepParser.SERVICE_LOCATION + "/*");
}
@BuildStep
void registerReflectiveClasses(
BuildProducer<ReflectiveClassBuildItem> reflectiveClass,
CombinedIndexBuildItem combinedIndexBuildItem) {
IndexView view = combinedIndexBuildItem.getIndex();
for (ClassInfo ci : getAnnotated(view, YAML_STEP_PARSER_ANNOTATION)) {
reflectiveClass.produce(reflectiveClassBuildItem(true, true, ci));
}
for (ClassInfo ci : getAnnotated(view, YAML_STEP_DEFINITION_ANNOTATION)) {
reflectiveClass.produce(reflectiveClassBuildItem(true, true, ci));
}
for (ClassInfo ci : getAnnotated(view, YAML_MIXIN_ANNOTATION)) {
reflectiveClass.produce(reflectiveClassBuildItem(true, true, ci));
}
for (ClassInfo ci : getAllKnownImplementors(view, Step.Deserializer.class)) {
reflectiveClass.produce(reflectiveClassBuildItem(true, true, ci));
}
for (ClassInfo ci : getAllKnownSubclasses(view, ProcessorDefinition.class)) {
reflectiveClass.produce(reflectiveClassBuildItem(true, true, ci));
}
for (ClassInfo ci : getAllKnownSubclasses(view, ExpressionDefinition.class)) {
reflectiveClass.produce(reflectiveClassBuildItem(true, true, ci));
}
for (ClassInfo ci : getAllKnownSubclasses(view, DataFormatDefinition.class)) {
reflectiveClass.produce(reflectiveClassBuildItem(true, true, ci));
}
reflectiveClass.produce(new ReflectiveClassBuildItem(true, true, Step.Deserializer.class));
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, HasExpression.class));
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, HasDataFormat.class));
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, HasEndpointConsumer.class));
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, HasEndpointProducer.class));
}
}