org.apache.camel.support.jsse.JsseParameters Maven / Gradle / Ivy
/*
* 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.support.jsse;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import org.apache.camel.CamelContext;
import org.apache.camel.CamelContextAware;
import org.apache.camel.RuntimeCamelException;
import org.apache.camel.spi.ClassResolver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Base class that provides optional integration with core Camel capabilities.
*/
public class JsseParameters implements CamelContextAware {
private static final Logger LOG = LoggerFactory.getLogger(JsseParameters.class);
private CamelContext context;
/**
* @see #setCamelContext(CamelContext)
*/
@Override
public CamelContext getCamelContext() {
return context;
}
/**
* Sets the optional {@link CamelContext} used for integration with core capabilities such as Camel Property
* Placeholders and {@link ClassResolver}.
*
* @param context the context to use
*/
@Override
public void setCamelContext(CamelContext context) {
this.context = context;
}
/**
* Parses the value using the Camel Property Placeholder capabilities if a context is provided. Otherwise returns
* {@code value} as is.
*
* @param value the string to replace property tokens in
* @return the value
*
* @throws RuntimeCamelException if property placeholders were used and there was an error resolving them
*
* @see #setCamelContext(CamelContext)
*/
protected String parsePropertyValue(String value) throws RuntimeCamelException {
if (this.getCamelContext() != null) {
try {
return this.getCamelContext().resolvePropertyPlaceholders(value);
} catch (Exception e) {
throw new RuntimeCamelException("Error parsing property value: " + value, e);
}
} else {
return value;
}
}
/**
* Parses the values using the Camel Property Placeholder capabilities if a context is provided. Otherwise returns
* {@code values} as is.
*
* @param values the list of strings to replace property tokens in
* @return the list of strings
*
* @throws RuntimeCamelException if property placeholders were used and there was an error resolving them
*
* @see #parsePropertyValue(String)
*/
protected List parsePropertyValues(List values) throws RuntimeCamelException {
if (this.getCamelContext() == null) {
return values;
} else {
List parsedValues = new ArrayList<>(values.size());
for (String value : values) {
parsedValues.add(this.parsePropertyValue(value));
}
return parsedValues;
}
}
/**
* Attempts to loads a resource using a number of different approaches. The loading of the resource, is attempted by
* treating the resource as a file path, a class path resource, a URL, and using the Camel Context's
* {@link ClassResolver} if a context is available in that order. An exception is thrown if the resource cannot be
* resolved to readable input stream using any of the above methods.
*
* @param resource the resource location
* @return the input stream for the resource
*
* @throws IOException if the resource cannot be resolved using any of the above methods
*
* @see #setCamelContext(CamelContext)
*/
protected InputStream resolveResource(String resource) throws IOException {
InputStream is = null;
// attempt as plain file first
try {
LOG.trace("Trying to open resource [{}] as a file.", resource);
is = new FileInputStream(resource);
LOG.debug("Opened resource [{}] as a file.", resource);
} catch (FileNotFoundException e) {
LOG.trace("Could not open resource [{}] as a file.", resource, e);
}
// then prefer to use ClassResolver from CamelContext if possible
if (is == null && this.context != null) {
LOG.trace("Trying to open resource using the CamelContext ClassResolver [{}].", context.getClassResolver());
try {
is = context.getClassResolver().loadResourceAsStream(resource);
if (is == null) {
LOG.trace("Could not to open resource [{}] using the CamelContext ClassResolver [{}].",
resource, context.getClassResolver());
} else {
LOG.debug("Opened resource [{}] using the CamelContext ClassResolver [{}].",
resource, this.getClass().getClassLoader());
}
} catch (Throwable e) {
LOG.trace("Could not open resource [{}] using the CamelContext ClassResolver.", resource, e);
}
}
if (is == null && Thread.currentThread().getContextClassLoader() != null) {
LOG.trace("Trying to open resource [{}] as a class path resource with the TCCL [{}].",
resource, Thread.currentThread().getContextClassLoader());
is = Thread.currentThread().getContextClassLoader().getResourceAsStream(resource);
if (is == null) {
LOG.trace("Could not open resource [{}] as a class path resource using the TCCL [{}].",
resource, Thread.currentThread().getContextClassLoader());
} else {
LOG.debug("Opened resource [{}] as a class path resource with the TCCL [{}].",
resource, Thread.currentThread().getContextClassLoader());
}
}
if (is == null) {
LOG.trace("Trying to open resource [{}] as a class path resource using the classloader [{}].",
resource, this.getClass().getClassLoader());
is = this.getClass().getResourceAsStream(resource);
if (is == null) {
LOG.trace("Could not open resource [{}] as a class path resource using the classloader [{}].",
resource, this.getClass().getClassLoader());
} else {
LOG.debug("Opened resource [{}] as a class path resource with the classloader [{}].",
resource, this.getClass().getClassLoader());
}
}
if (is == null) {
try {
LOG.trace("Trying to open resource [{}] as a URL.", resource);
is = new URL(resource).openStream();
LOG.debug("Opened resource [{}] as a URL.", resource);
} catch (IOException e) {
LOG.trace("Could not open resource [{}] as a URL.", resource, e);
}
}
if (is == null) {
throw new IOException("Could not open " + resource + " as a file, class path resource, or URL.");
}
return is;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy