org.apache.camel.component.ResourceBasedEndpoint 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.component;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import org.apache.camel.Component;
import org.apache.camel.Processor;
import org.apache.camel.converter.IOConverter;
import org.apache.camel.impl.ProcessorEndpoint;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.core.io.DefaultResourceLoader;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
/**
* A useful base class for endpoints which depend on a resource
* such as things like Velocity or XQuery based components.
*
* @version $Revision: 743658 $
*/
public abstract class ResourceBasedEndpoint extends ProcessorEndpoint {
protected final transient Log log = LogFactory.getLog(getClass());
private String resourceUri;
private ResourceLoader resourceLoader = new DefaultResourceLoader();
private Resource resource;
private boolean contentCache;
private byte[] buffer;
protected ResourceBasedEndpoint() {
}
public ResourceBasedEndpoint(String endpointUri, Component component, String resourceUri, Processor processor) {
super(endpointUri, component, processor);
this.resourceUri = resourceUri;
}
protected ResourceBasedEndpoint(String endpointUri, Processor processor, String resourceUri) {
super(endpointUri, processor);
this.resourceUri = resourceUri;
}
public Resource getResource() {
if (resource == null) {
if (log.isDebugEnabled()) {
log.debug("Loading resource: " + resourceUri + " using: " + getResourceLoader());
}
resource = getResourceLoader().getResource(resourceUri);
if (resource == null) {
throw new IllegalArgumentException("Could not find resource for URI: " + resourceUri + " using: " + getResourceLoader());
}
}
return resource;
}
/**
* Gets the resource as an input stream considering the cache flag as well.
*
* If cache is enabled then the resource content is cached in an internal buffer and this content is
* returned to avoid loading the resource over and over again.
*
* @return the input stream
* @throws IOException is thrown if error loading the content of the resource to the local cache buffer
*/
public InputStream getResourceAsInputStream() throws IOException {
if (resource == null) {
// get the resource if not already done
resource = getResource();
}
if (contentCache) {
synchronized (resource) {
if (buffer == null) {
if (log.isDebugEnabled()) {
log.debug("Reading resource: " + resourceUri + " into the content cache");
}
buffer = IOConverter.toBytes(resource.getInputStream());
}
}
if (log.isDebugEnabled()) {
log.debug("Using resource: " + resourceUri + " from the content cache");
}
return new ByteArrayInputStream(buffer);
}
return resource.getInputStream();
}
public boolean isContentCache() {
return contentCache;
}
/**
* Sets wether to use resource content cache or not - default is false.
*
* @see #getResourceAsInputStream()
*/
public void setContentCache(boolean contentCache) {
this.contentCache = contentCache;
}
public ResourceLoader getResourceLoader() {
return resourceLoader;
}
public void setResourceLoader(ResourceLoader resourceLoader) {
this.resourceLoader = resourceLoader;
}
public String getResourceUri() {
return resourceUri;
}
public void setResourceUri(String resourceUri) {
this.resourceUri = resourceUri;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy