All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.slf4j.Logger;
import org.slf4j.LoggerFactory;
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.
 *
 * @deprecated use {@link org.apache.camel.component.ResourceEndpoint}. Will be removed in Camel 3.0.
 */
@Deprecated
public abstract class ResourceBasedEndpoint extends ProcessorEndpoint {
    protected final transient Logger log = LoggerFactory.getLogger(getClass());
    private String resourceUri;
    private ResourceLoader resourceLoader;
    private Resource resource;
    private boolean contentCache;
    private byte[] buffer;

    public ResourceBasedEndpoint() {
    }

    public ResourceBasedEndpoint(String endpointUri, Component component, String resourceUri, Processor processor) {
        super(endpointUri, component, processor);
        this.resourceUri = resourceUri;
        if (component instanceof ResourceBasedComponent) {
            this.resourceLoader = ((ResourceBasedComponent) component).getResourceLoader();
        }
    }

    protected ResourceBasedEndpoint(String endpointUri, Processor processor, String resourceUri) {
        super(endpointUri, processor);
        this.resourceUri = resourceUri;
    }

    public Resource getResource() {
        if (resource == null) {
            log.debug("Loading resource: {} using: {}", resourceUri, 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(); } // try to get the resource input stream InputStream is = null; if (contentCache) { synchronized (resource) { if (buffer == null) { log.debug("Reading resource: {} into the content cache", resourceUri); is = getResourceAsInputStreamWithoutCache(); buffer = IOConverter.toBytes(is); } } log.debug("Using resource: {} from the content cache", resourceUri); return new ByteArrayInputStream(buffer); } return getResourceAsInputStreamWithoutCache(); } protected InputStream getResourceAsInputStreamWithoutCache() throws IOException { InputStream result; try { result = resource.getInputStream(); } catch (IOException exception) { // Using the camelContext classResolver to load the resource as a fall back result = getCamelContext().getClassResolver().loadResourceAsStream(resourceUri); if (result == null) { log.warn("Cannot get the resource: " + resourceUri + "from the camelContext ClassResolver"); throw exception; } } return result; } public boolean isContentCache() { return contentCache; } /** * Sets whether to use resource content cache or not - default is false. * * @see #getResourceAsInputStream() */ public void setContentCache(boolean contentCache) { this.contentCache = contentCache; } public ResourceLoader getResourceLoader() { if (resourceLoader == null) { resourceLoader = new CamelResourceLoader(getCamelContext()); } 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