blob: 263a385162e37cb0fe1d5d2baa635c5ee0fe6263 [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.js.quarkus.deployment;
import java.time.Duration;
import java.time.Instant;
import java.time.temporal.Temporal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
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.Exchange;
import org.apache.camel.NamedNode;
import org.apache.camel.builder.DataFormatClause;
import org.apache.camel.builder.ExpressionClause;
import org.apache.camel.k.loader.js.dsl.Components;
import org.apache.camel.k.loader.js.dsl.IntegrationConfiguration;
import org.apache.camel.k.loader.js.dsl.ProcessorSupport;
import org.apache.camel.model.Block;
import org.apache.camel.model.FromDefinition;
import org.apache.camel.model.NoOutputDefinition;
import org.apache.camel.model.OptionalIdentifiedDefinition;
import org.apache.camel.model.ProcessDefinition;
import org.apache.camel.model.ProcessorDefinition;
import org.apache.camel.model.RouteDefinition;
import org.apache.camel.model.ToDefinition;
import org.apache.camel.model.dataformat.JsonLibrary;
import org.apache.camel.model.language.ExpressionDefinition;
import org.apache.camel.model.rest.RestSecurityDefinition;
import org.apache.camel.model.transformer.TransformerDefinition;
import org.apache.camel.model.validator.ValidatorDefinition;
import org.apache.camel.spi.ExchangeFormatter;
import org.apache.camel.spi.NamespaceAware;
import org.jboss.jandex.ClassInfo;
import org.jboss.jandex.DotName;
import org.jboss.jandex.IndexView;
public class JavaScriptProcessor {
private static final List<Class<?>> JAVA_CLASSES = Arrays.asList(
Character.class,
Byte.class,
CharSequence.class, String.class,
Number.class,
Integer.class,
Long.class,
Float.class,
Double.class,
// Time
Date.class,
Temporal.class,
Instant.class,
Duration.class,
// Containers
Map.class, HashMap.class, TreeMap.class,
List.class, ArrayList.class, LinkedList.class,
Set.class, HashSet.class, TreeSet.class
);
private static final List<Class<?>> CAMEL_REFLECTIVE_CLASSES = Arrays.asList(
ExchangeFormatter.class,
RouteDefinition.class,
ProcessorDefinition.class,
DataFormatClause.class,
FromDefinition.class,
ToDefinition.class,
ExpressionDefinition.class,
ProcessDefinition.class,
ExpressionDefinition.class,
ExpressionClause.class,
Exchange.class,
JsonLibrary.class,
NamedNode.class,
OptionalIdentifiedDefinition.class,
NamespaceAware.class,
Block.class,
RestSecurityDefinition.class,
ValidatorDefinition.class,
TransformerDefinition.class,
NoOutputDefinition.class
);
@BuildStep
void registerReflectiveClasses(
BuildProducer<ReflectiveClassBuildItem> reflectiveClass,
CombinedIndexBuildItem combinedIndexBuildItem) {
IndexView view = combinedIndexBuildItem.getIndex();
for (Class<?> type: CAMEL_REFLECTIVE_CLASSES) {
DotName name = DotName.createSimple(type.getName());
if (type.isInterface()) {
for (ClassInfo info: view.getAllKnownImplementors(name)) {
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, info.name().toString()));
}
} else {
for (ClassInfo info: view.getAllKnownSubclasses(name)) {
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, info.name().toString()));
}
}
reflectiveClass.produce(new ReflectiveClassBuildItem(true, type.isEnum(), type));
}
for (Class<?> type: JAVA_CLASSES) {
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, type));
}
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, Components.class));
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, IntegrationConfiguration.class));
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, ProcessorSupport.class));
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, "org.apache.camel.converter.jaxp.XmlConverter"));
}
}