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

org.wildfly.swarm.plugin.FractionMetadata Maven / Gradle / Ivy

/**
 * Copyright 2015-2016 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.plugin;

import java.io.File;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.TreeSet;
import java.util.stream.Collectors;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * @author Bob McWhirter
 * @author Ken Finnigan
 */
public class FractionMetadata extends DependencyMetadata {

    public FractionMetadata(FractionMetadata metadata) {
        super(metadata.getGroupId(), metadata.getArtifactId(), metadata.getVersion(), metadata.getClassifier(), metadata.getPackaging(),
              metadata.getScope());
        this.name = metadata.name;
        this.description = metadata.description;
        this.tags = metadata.tags;
        this.internal = metadata.internal;
        this.bootstrap = metadata.bootstrap;
        this.moduleConf = metadata.moduleConf;
        this.hasJavaCode = metadata.hasJavaCode;
        this.javaFraction = metadata.javaFraction;
        this.baseModulePath = metadata.baseModulePath;
        this.stabilityIndex = metadata.stabilityIndex;
    }

    public FractionMetadata(String groupId, String artifactId, String version) {
        this(groupId, artifactId, version, null);
    }

    public FractionMetadata(String groupId, String artifactId, String version, String scope) {
        super(groupId, artifactId, version, null, "jar", scope);
    }

    @JsonIgnore
    public boolean isFraction() {
        if (!this.tags.isEmpty()
                || hasModuleConf()
                || isInternal()
                || isBootstrap()
                || this.stabilityIndex != null
                || hasJavaFraction()) {
            return true;
        }

        return false;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return this.description;
    }

    @JsonIgnore
    public List getTags() {
        return tags;
    }

    @JsonProperty("tags")
    public String getTagsString() {
        if (this.tags.isEmpty()) {
            return "";
        }

        return String.join(",", this.tags);
    }

    public void setTags(List tags) {
        this.tags = tags;
    }

    public boolean isInternal() {
        return internal != null && internal;
    }

    public void setInternal(boolean internal) {
        this.internal = internal;
    }

    @JsonIgnore
    public boolean isBootstrap() {
        return bootstrap != null;
    }

    public void setBootstrap(String bootstrap) {
        this.bootstrap = bootstrap;
    }

    @JsonIgnore
    public String getBootstrap() {
        return this.bootstrap;
    }

    @JsonIgnore
    public boolean hasModuleConf() {
        return this.moduleConf != null;
    }

    public void setModuleConf(Path moduleConf) {
        this.moduleConf = moduleConf;
    }

    @JsonIgnore
    public Path getModuleConf() {
        return this.moduleConf;
    }

    public void setHasJavaCode(boolean hasJavaCode) {
        this.hasJavaCode = hasJavaCode;
    }

    @JsonIgnore
    public boolean hasJavaCode() {
        return this.hasJavaCode;
    }

    public void setJavaFraction(Path javaFraction) {
        if (javaFraction != null) {
            this.javaFraction = javaFraction;
            setHasJavaCode(true);
        }
    }

    @JsonIgnore
    public Path getJavaFraction() {
        return this.javaFraction;
    }

    @JsonIgnore
    public boolean hasJavaFraction() {
        return this.javaFraction != null;
    }

    public void setBaseModulePath(Path baseModulePath) {
        this.baseModulePath = baseModulePath;
    }

    @JsonIgnore
    public Path getBaseModulePath() {
        return this.baseModulePath;
    }

    @JsonIgnore
    public String getModule() {
        if (this.bootstrap != null) {
            if (this.bootstrap.equals("false")) {
                return null;
            }
            return this.bootstrap;
        }
        return this.baseModulePath.toString().replace(File.separatorChar, '.');
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public void setStabilityIndex(StabilityLevel stabilityIndex) {
        this.stabilityIndex = stabilityIndex;
    }

    @JsonIgnore
    public StabilityLevel getStabilityIndex() {
        if (this.stabilityIndex == null) {
            return StabilityLevel.UNSTABLE;
        }
        return this.stabilityIndex;
    }

    @JsonProperty("stabilityIndex")
    public int jsonStabilityIndex() {
        return getStabilityIndex().ordinal();
    }

    @JsonProperty("stabilityDescription")
    public String jsonStabilityDescription() {
        return getStabilityIndex().toString().toLowerCase();
    }

    public void addDependency(DependencyMetadata dependency) {
        this.dependencies.add(dependency);
    }

    @JsonIgnore
    public Set getDependencies() {
        return this.dependencies;
    }

    public void addTransitiveDependency(DependencyMetadata dependency) {
        this.transitiveDependencies.add(dependency);
    }

    public void addTransitiveDependencies(Collection dependencies) {
        this.transitiveDependencies.addAll(dependencies);
    }

    @JsonIgnore
    public Set getTransitiveDependencies() {
        return this.transitiveDependencies;
    }

    public Set getFractionDependencies() {
        return this.dependencies
                .stream()
                .map(FractionRegistry.INSTANCE::of)
                .filter(Objects::nonNull)
                .collect(Collectors.toSet());
    }

    public void addDetectorClass(Path relativePath, Path detectorClassPath) {
        this.detectorClasses.put(relativePath, detectorClassPath);
    }

    @JsonIgnore
    public Map getDetectorClasses() {
        return this.detectorClasses;
    }

    public String toString() {
        return getGroupId() + ":" + getArtifactId() + ":" + this.getVersion();
    }

    @JsonIgnore
    public String getFractionListString() {
        return getGroupId() + ":" + getArtifactId() + ":" + this.getVersion() + (hasDefaultScope() ? "" : (":" + this.getScope()));
    }

    @JsonIgnore
    public String getDependenciesString() {
        return String.join(", ", getFractionDependencies().stream().map(e -> e.toString())
                .collect(Collectors.toList()));
    }

    private String name;

    private String description;

    private List tags = new ArrayList<>();

    private Boolean internal;

    private String bootstrap;

    private Path moduleConf;

    private Path baseModulePath;

    private Path javaFraction;

    private boolean hasJavaCode;

    private final Set dependencies = new TreeSet<>();

    private final Set transitiveDependencies = new TreeSet<>();

    private final Map detectorClasses = new HashMap<>();

    // 2 = Unstable
    private StabilityLevel stabilityIndex = null;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy