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

org.eclipse.aether.collection.CollectResult Maven / Gradle / Ivy

There is a newer version: 3.0.0-alpha-3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.eclipse.aether.collection;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.eclipse.aether.RepositorySystem;
import org.eclipse.aether.graph.DependencyCycle;
import org.eclipse.aether.graph.DependencyNode;

import static java.util.Objects.requireNonNull;

/**
 * The result of a dependency collection request.
 *
 * @see RepositorySystem#collectDependencies(org.eclipse.aether.RepositorySystemSession, CollectRequest)
 */
public final class CollectResult {

    private final CollectRequest request;

    private List exceptions;

    private List cycles;

    private DependencyNode root;

    /**
     * Creates a new result for the specified request.
     *
     * @param request The resolution request, must not be {@code null}.
     */
    public CollectResult(CollectRequest request) {
        this.request = requireNonNull(request, "dependency collection request cannot be null");
        exceptions = Collections.emptyList();
        cycles = Collections.emptyList();
    }

    /**
     * Gets the collection request that was made.
     *
     * @return The collection request, never {@code null}.
     */
    public CollectRequest getRequest() {
        return request;
    }

    /**
     * Gets the exceptions that occurred while building the dependency graph.
     *
     * @return The exceptions that occurred, never {@code null}.
     */
    public List getExceptions() {
        return exceptions;
    }

    /**
     * Records the specified exception while building the dependency graph.
     *
     * @param exception The exception to record, may be {@code null}.
     * @return This result for chaining, never {@code null}.
     */
    public CollectResult addException(Exception exception) {
        if (exception != null) {
            if (exceptions.isEmpty()) {
                exceptions = new ArrayList<>();
            }
            exceptions.add(exception);
        }
        return this;
    }

    /**
     * Gets the dependency cycles that were encountered while building the dependency graph.
     *
     * @return The dependency cycles in the (raw) graph, never {@code null}.
     */
    public List getCycles() {
        return cycles;
    }

    /**
     * Records the specified dependency cycle.
     *
     * @param cycle The dependency cycle to record, may be {@code null}.
     * @return This result for chaining, never {@code null}.
     */
    public CollectResult addCycle(DependencyCycle cycle) {
        if (cycle != null) {
            if (cycles.isEmpty()) {
                cycles = new ArrayList<>();
            }
            cycles.add(cycle);
        }
        return this;
    }

    /**
     * Gets the root node of the dependency graph.
     *
     * @return The root node of the dependency graph or {@code null} if none.
     */
    public DependencyNode getRoot() {
        return root;
    }

    /**
     * Sets the root node of the dependency graph.
     *
     * @param root The root node of the dependency graph, may be {@code null}.
     * @return This result for chaining, never {@code null}.
     */
    public CollectResult setRoot(DependencyNode root) {
        this.root = root;
        return this;
    }

    @Override
    public String toString() {
        return String.valueOf(getRoot());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy