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

liquibase.resource.ClassLoaderResourceAccessor Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.resource;

import liquibase.logging.LogFactory;
import liquibase.util.FileUtil;
import liquibase.util.StringUtils;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.*;
import java.util.*;

/**
 * An implementation of {@link liquibase.resource.ResourceAccessor} that wraps a class loader.
 */
public class ClassLoaderResourceAccessor extends AbstractResourceAccessor {

    private ClassLoader classLoader;
    public ClassLoaderResourceAccessor() {
        this.classLoader = getClass().getClassLoader();
        init(); //init needs to be called after classloader is set
    }

    public ClassLoaderResourceAccessor(ClassLoader classLoader) {
        this.classLoader = classLoader;
        init(); //init needs to be called after classloader is set
    }

    @Override
    public Set getResourcesAsStream(String path) throws IOException {
        Enumeration resources = classLoader.getResources(path);
        if (resources == null || !resources.hasMoreElements()) {
            return null;
        }
        Set seenUrls = new HashSet();
        Set returnSet = new HashSet();
        while (resources.hasMoreElements()) {
            URL url = resources.nextElement();
            if (seenUrls.contains(url.toExternalForm())) {
                continue;
            }
            seenUrls.add(url.toExternalForm());
            LogFactory.getInstance().getLog().debug("Opening "+url.toExternalForm()+" as "+path);

            URLConnection connection = url.openConnection();
            connection.setUseCaches(false);
            InputStream resourceAsStream = connection.getInputStream();
            if (resourceAsStream != null) {
                returnSet.add(resourceAsStream);
            }
        }

        return returnSet;
    }

    @Override
    public Set list(String relativeTo, String path, boolean includeFiles, boolean includeDirectories, boolean recursive) throws IOException {
        path = convertToPath(relativeTo, path);

        Enumeration fileUrls = classLoader.getResources(path);

        Set returnSet = new HashSet();

        if (!fileUrls.hasMoreElements() && (path.startsWith("jar:") || path.startsWith("file:"))) {
            fileUrls = new Vector(Arrays.asList(new URL(path))).elements();
        }

        while (fileUrls.hasMoreElements()) {
            URL fileUrl = fileUrls.nextElement();
            if (!fileUrl.toExternalForm().startsWith("file:")) {
                if (fileUrl.toExternalForm().startsWith("jar:file:")
                        || fileUrl.toExternalForm().startsWith("wsjar:file:")
                        || fileUrl.toExternalForm().startsWith("zip:")) {

                    String file = fileUrl.getFile();
                    String[] zipAndFile = file.split("!");
                    String splitPath = zipAndFile[0];
                    if (splitPath.matches("file:\\/[A-Za-z]:\\/.*")) {
                        splitPath = splitPath.replaceFirst("file:\\/", "");
                    } else {
                        splitPath = splitPath.replaceFirst("file:", "");
                    }
                    splitPath = URLDecoder.decode(splitPath, "UTF-8");
                    File zipfile = new File(splitPath);


                    File zipFileDir = FileUtil.unzip(zipfile);
                    if (path.startsWith("classpath:")) {
                        path = path.replaceFirst("classpath:", "");
                    }
                    if (path.startsWith("classpath*:")) {
                        path = path.replaceFirst("classpath\\*:", "");
                    }
                    File dirInZip = new File(zipFileDir, zipAndFile[1]);
                    if (!dirInZip.exists()) {
                        dirInZip = new File(zipFileDir, path);
                    }
                    URI fileUri = dirInZip.toURI();
                    fileUrl = fileUri.toURL();
                }
            }

            try {
                File file = new File(fileUrl.toURI());
                if (file.exists()) {
                    getContents(file, recursive, includeFiles, includeDirectories, path, returnSet);
                }
            } catch (URISyntaxException e) {
                //not a local file
            } catch (IllegalArgumentException e) {
                //not a local file
            }

            Enumeration resources = classLoader.getResources(path);

            while (resources.hasMoreElements()) {
                String url = resources.nextElement().toExternalForm();
                url = url.replaceFirst("^\\Q" + path + "\\E", "");
                returnSet.add(url);
            }
        }

        if (returnSet.size() == 0) {
            return null;
        }
        return returnSet;
    }

    @Override
    public ClassLoader toClassLoader() {
        return classLoader;
    }

    @Override
    public String toString() {
        String description;
        if (classLoader instanceof URLClassLoader) {
            List urls = new ArrayList();
            for (URL url : ((URLClassLoader) classLoader).getURLs()) {
                urls.add(url.toExternalForm());
            }
            description = StringUtils.join(urls, ",");
        } else {
            description = classLoader.getClass().getName();
        }
        return getClass().getName()+"("+ description +")";

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy