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

org.raml.v2.api.loader.CacheResourceLoader Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 (c) MuleSoft, Inc.
 *
 * Licensed 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.raml.v2.api.loader;

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.util.HashMap;
import java.util.Map;

import org.apache.commons.io.IOUtils;
import org.raml.v2.internal.utils.Pair;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class CacheResourceLoader implements ResourceLoaderExtended
{

    private final Logger logger = LoggerFactory.getLogger(getClass());
    private final Map> resources = new HashMap<>();
    private ResourceLoader resourceLoader;

    public CacheResourceLoader(ResourceLoader resourceLoader)
    {
        this.resourceLoader = resourceLoader;
    }

    @Override
    public InputStream fetchResource(String resourceName)
    {
        return fetchResource(resourceName, null);
    }

    @Override
    public InputStream fetchResource(String resourceName, ResourceUriCallback callback)
    {
        try
        {
            if (resources.containsKey(resourceName))
            {
                final byte[] resourceByteArray = resources.get(resourceName).getLeft();
                final URI uriCallback = resources.get(resourceName).getRight();
                if (uriCallback != null && callback != null)
                {
                    callback.onResourceFound(uriCallback);
                }
                return toInputStreamOrNull(resourceByteArray);
            }

            InputStream resource;
            URI uriCallback = null;
            if (resourceLoader instanceof ResourceLoaderExtended)
            {
                resource = ((ResourceLoaderExtended) resourceLoader).fetchResource(resourceName, callback);
                uriCallback = ((ResourceLoaderExtended) resourceLoader).getUriCallBackParam();
            }
            else
            {
                resource = resourceLoader.fetchResource(resourceName);
            }

            // we want to cache results even if they are null
            final byte[] resourceByteArray = resource == null ? null : IOUtils.toByteArray(resource);
            resources.put(resourceName, Pair.of(resourceByteArray, uriCallback));

            return toInputStreamOrNull(resourceByteArray);

        }
        catch (final IOException e)
        {
            return resourceLoader.fetchResource(resourceName);
        }
    }

    private ByteArrayInputStream toInputStreamOrNull(final byte[] resourceByteArray)
    {
        return resourceByteArray == null ? null : new ByteArrayInputStream(resourceByteArray);
    }

    @Override
    public URI getUriCallBackParam()
    {
        if (resourceLoader != null && resourceLoader instanceof ResourceLoaderExtended)
        {
            return ((ResourceLoaderExtended) resourceLoader).getUriCallBackParam();
        }
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy