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

org.wildfly.swarm.internal.FileSystemLayout Maven / Gradle / Ivy

/*
 * Copyright 2015-2017 Red Hat, Inc, and individual contributors.
 *
 * 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.wildfly.swarm.internal;

import java.lang.reflect.Constructor;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Optional;
import java.util.UUID;

import org.jboss.logging.Logger;

/**
 * Build tool filesystem abstraction for use in IDE:run cases.
 *
 * @author Heiko Braun
 * @since 02/08/16
 */
public abstract class FileSystemLayout {

    /**
     * System property for overriding the layout class that should be initialized.
     */
    public static final String CUSTOM_LAYOUT_CLASS = "thorntail.filesystem.layout.class";

    public static final String MAVEN_CMD_LINE_ARGS = "MAVEN_CMD_LINE_ARGS";

    public abstract String determinePackagingType();

    public abstract Path resolveBuildClassesDir();

    public abstract Path resolveBuildResourcesDir();

    public abstract Path resolveSrcWebAppDir();

    public static String archiveNameForClassesDir(Path path) {

        if (path.endsWith(TARGET_CLASSES)) {
            // Maven
            return path.subpath(path.getNameCount() - 3, path.getNameCount() - 2).toString() + JAR;
        } else if (path.endsWith(BUILD_CLASSES_MAIN) || path.endsWith(BUILD_RESOURCES_MAIN)) {
            // Gradle + Gradle 4+
            return path.subpath(path.getNameCount() - 4, path.getNameCount() - 3).toString() + JAR;
        } else {
            return UUID.randomUUID().toString() + JAR;
        }
    }


    /**
     * Derived form 'user.dir'
     *
     * @return a FileSystemLayout instance
     */
    public static FileSystemLayout create() {

        String userDir = System.getProperty(USER_DIR);
        if (null == userDir) {
            throw SwarmMessages.MESSAGES.systemPropertyNotFound(USER_DIR);
        }

        return create(userDir);
    }

    /**
     * Derived from explicit path
     *
     * @param root the fs entry point
     * @return a FileSystemLayout instance
     */
    public static FileSystemLayout create(String root) {

        // THORN-2178: Check if a System property has been set to a specific implementation class.
        String implClassName = System.getProperty(CUSTOM_LAYOUT_CLASS);
        if (implClassName != null) {
            implClassName = implClassName.trim();
            if (!implClassName.isEmpty()) {
                FileSystemLayout layout = null;
                // Attempt to load the specified class implementation.
                ClassLoader loader = Thread.currentThread().getContextClassLoader();
                try {
                    Class clazz = loader.loadClass(implClassName);
                    // Check if clazz is an implementation of FileSystemLayout or not.
                    if (FileSystemLayout.class.isAssignableFrom(clazz)) {
                        Class implClazz = clazz.asSubclass(FileSystemLayout.class);
                        // Check if we have an appropriate constructor or not.
                        Constructor ctor = implClazz.getDeclaredConstructor(String.class);
                        layout = ctor.newInstance(root);
                    } else {
                        String msg = String.format("%s does not subclass %s", implClassName, FileSystemLayout.class.getName());
                        LOG.warn(SwarmMessages.MESSAGES.invalidFileSystemLayoutProvided(msg));
                    }
                } catch (ReflectiveOperationException e) {
                    Throwable cause = e.getCause();
                    String msg = String.format("Unable to instantiate layout class (%s) due to: %s", implClassName,
                                               cause != null ? cause.getMessage() : e.getMessage());
                    LOG.warn(SwarmMessages.MESSAGES.invalidFileSystemLayoutProvided(msg));
                    LOG.debug(SwarmMessages.MESSAGES.invalidFileSystemLayoutProvided(msg), e);
                    throw SwarmMessages.MESSAGES.cannotIdentifyFileSystemLayout(msg);
                }

                if (layout != null) {
                    return layout;
                }
            } else {
                LOG.warn(SwarmMessages.MESSAGES.invalidFileSystemLayoutProvided("Implementation class name is empty."));
            }
        }

        String mavenBuildFile = resolveMavenBuildFileName();

        if (Files.exists(Paths.get(root, mavenBuildFile))) {
            return new MavenFileSystemLayout(root);
        } else if (Files.exists(Paths.get(root, BUILD_GRADLE))) {
            return new GradleFileSystemLayout(root);
        }

        throw SwarmMessages.MESSAGES.cannotIdentifyFileSystemLayout(root);
    }

    public static String resolveMavenBuildFileName() {
        String cmdLine = System.getenv(MAVEN_CMD_LINE_ARGS);
        String buildFileName = POM_XML;

        if (cmdLine != null) {
            MavenArgsParser args = MavenArgsParser.parse(cmdLine);
            Optional f_arg = args.get(MavenArgsParser.ARG.F);
            if (f_arg.isPresent()) {
                buildFileName = f_arg.get();
            }
        }
        return buildFileName;
    }

    /**
     * Constructs a new instance of {@code FileSystemLayout} which is rooted at the given path.
     *
     * @param path the root path for the layout.
     */
    protected FileSystemLayout(String path) {
        this.rootPath = Paths.get(path);
    }

    public abstract Path getRootPath();

    private static final String POM_XML = "pom.xml";

    private static final String BUILD_GRADLE = "build.gradle";

    private static final String USER_DIR = "user.dir";

    private static final String JAR = ".jar";

    private static final String TARGET_CLASSES = "target/classes";

    private static final String BUILD_CLASSES_MAIN = "build/classes/main";

    private static final String BUILD_CLASSES_JAVA_MAIN = "build/classes/java/main";

    private static final String BUILD_RESOURCES_MAIN = "build/resources/main";

    private static final Logger LOG = Logger.getLogger("org.wildfly.swarm");

    protected static final String TYPE_JAR = "jar";

    protected static final String TYPE_WAR = "war";

    protected final Path rootPath;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy