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

org.jfrog.build.context.BuildContext Maven / Gradle / Ivy

There is a newer version: 2.41.23
Show newest version
package org.jfrog.build.context;

import org.jfrog.build.extractor.ci.Dependency;
import org.jfrog.build.extractor.ci.Module;
import org.jfrog.build.extractor.clientConfiguration.ArtifactoryClientConfiguration;
import org.jfrog.build.extractor.clientConfiguration.deploy.DeployDetails;

import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;


/**
 * Context container for Ivy builds, holds a set of {@link DeployDetails} for artifact to deploy after the build is
 * complete, as well as a final build-info object.
 *
 * @author Tomer Cohen
 */
public class BuildContext {

    private final Set deployDetails;
    private final List modules;
    private final List dependencies;
    private final ArtifactoryClientConfiguration clientConf;
    private long buildStartTime;

    public BuildContext(ArtifactoryClientConfiguration clientConf) {
        this.clientConf = clientConf;
        //Sort the deploy details by file name to ensure consistent publish order
        deployDetails = new TreeSet(new Comparator() {
            public int compare(DeployDetails details, DeployDetails otherDetails) {
                return details.getFile().compareTo(otherDetails.getFile());
            }
        });
        modules = new ArrayList();
        dependencies = new ArrayList();
        buildStartTime = System.currentTimeMillis();
    }

    public void addDeployDetailsForModule(DeployDetails deployDetails) {
        this.deployDetails.add(deployDetails);
    }

    public void addModule(Module module) {
        this.modules.add(module);
    }

    public List getModules() {
        return modules;
    }

    public Set getDeployDetails() {
        return deployDetails;
    }

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

    public List getDependencies() {
        return dependencies;
    }

    public ArtifactoryClientConfiguration getClientConf() {
        return clientConf;
    }

    public long getBuildStartTime() {
        return buildStartTime;
    }

    public void setBuildStartTime(long buildStartTime) {
        this.buildStartTime = buildStartTime;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy