blob: 492357c194da0101659b2da68bc9e69d77a1d3e8 [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.quarkus.component.aws.sqs.deployment;
import java.util.Collection;
import java.util.stream.Collectors;
import org.apache.camel.component.aws.sqs.SqsConfiguration;
import org.apache.commons.logging.impl.Jdk14Logger;
import org.apache.commons.logging.impl.LogFactoryImpl;
import org.jboss.jandex.ClassInfo;
import org.jboss.jandex.DotName;
import org.jboss.jandex.IndexView;
import com.amazonaws.auth.AWS4Signer;
import com.amazonaws.partitions.model.CredentialScope;
import com.amazonaws.partitions.model.Endpoint;
import com.amazonaws.partitions.model.Partition;
import com.amazonaws.partitions.model.Partitions;
import com.amazonaws.partitions.model.Region;
import com.amazonaws.partitions.model.Service;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonSerializer;
import io.quarkus.deployment.annotations.BuildProducer;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.ApplicationArchivesBuildItem;
import io.quarkus.deployment.builditem.CombinedIndexBuildItem;
import io.quarkus.deployment.builditem.FeatureBuildItem;
import io.quarkus.deployment.builditem.substrate.ReflectiveClassBuildItem;
import io.quarkus.deployment.builditem.substrate.ReflectiveMethodBuildItem;
import io.quarkus.deployment.builditem.substrate.ServiceProviderBuildItem;
import io.quarkus.deployment.builditem.substrate.SubstrateProxyDefinitionBuildItem;
import io.quarkus.deployment.builditem.substrate.SubstrateResourceBuildItem;
import io.quarkus.deployment.builditem.substrate.SubstrateResourceBundleBuildItem;
class CamelAwsSQSProcessor {
public static final String AWS_SQS_APPLICATION_ARCHIVE_MARKERS = "com/amazonaws";
private static final String FEATURE = "camel-aws-sqs";
@BuildStep
FeatureBuildItem feature() {
return new FeatureBuildItem(FEATURE);
}
@BuildStep
SubstrateProxyDefinitionBuildItem httpProxies() {
return new SubstrateProxyDefinitionBuildItem("org.apache.http.conn.HttpClientConnectionManager",
"org.apache.http.pool.ConnPoolControl", "com.amazonaws.http.conn.Wrapped");
}
@BuildStep(applicationArchiveMarkers = { AWS_SQS_APPLICATION_ARCHIVE_MARKERS })
void process(CombinedIndexBuildItem combinedIndexBuildItem,
BuildProducer<ReflectiveClassBuildItem> reflectiveClass,
BuildProducer<ReflectiveMethodBuildItem> reflectiveMethod,
BuildProducer<SubstrateResourceBuildItem> resource,
BuildProducer<SubstrateResourceBundleBuildItem> resourceBundle,
BuildProducer<ServiceProviderBuildItem> serviceProvider,
ApplicationArchivesBuildItem applicationArchivesBuildItem) {
IndexView view = combinedIndexBuildItem.getIndex();
resource.produce(new SubstrateResourceBuildItem("com/amazonaws/partitions/endpoints.json"));
for (String s : getImplementations(view, JsonDeserializer.class)) {
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, s));
}
for (String s : getImplementations(view, JsonSerializer.class)) {
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false, s));
}
reflectiveClass.produce(new ReflectiveClassBuildItem(true, false,
Partitions.class.getCanonicalName(),
Partition.class.getCanonicalName(),
Endpoint.class.getCanonicalName(),
Region.class.getCanonicalName(),
Service.class.getCanonicalName(),
CredentialScope.class.getCanonicalName(),
LogFactoryImpl.class.getCanonicalName(),
Jdk14Logger.class.getCanonicalName(),
AWS4Signer.class.getCanonicalName(),
SqsConfiguration.class.getCanonicalName(),
"com.sun.org.apache.xerces.internal.parsers.SAXParser",
"com.sun.xml.internal.stream.XMLInputFactoryImpl",
"org.apache.camel.converter.jaxp.XmlConverter"));
}
protected Collection<String> getImplementations(IndexView view, Class<?> type) {
return view.getAllKnownImplementors(DotName.createSimple(type.getName())).stream()
.map(ClassInfo::toString)
.collect(Collectors.toList());
}
}