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

org.gradle.api.internal.catalog.DefaultVersionCatalog Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2021 the original author or authors.
 *
 * 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.gradle.api.internal.catalog;

import java.io.Serializable;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

import static org.gradle.api.internal.catalog.AliasNormalizer.normalize;

public class DefaultVersionCatalog implements Serializable {
    private final String name;
    private final String description;
    private final Map libraries;
    private final Map bundles;
    private final Map versions;
    private final Map plugins;

    private final int hashCode;

    public DefaultVersionCatalog(String name,
                                 String description,
                                 Map libraries,
                                 Map bundles,
                                 Map versions,
                                 Map plugins) {
        this.name = name;
        this.description = description;
        this.libraries = libraries;
        this.bundles = bundles;
        this.versions = versions;
        this.plugins = plugins;
        this.hashCode = doComputeHashCode();
    }

    public String getName() {
        return name;
    }

    // Intentionally not part of state
    public String getDescription() {
        return description;
    }

    public List getLibraryAliases() {
        return libraries.keySet()
            .stream()
            .sorted()
            .collect(Collectors.toList());
    }

    public List getBundleAliases() {
        return bundles.keySet()
            .stream()
            .sorted()
            .collect(Collectors.toList());
    }

    public DependencyModel getDependencyData(String alias) {
        return libraries.get(normalize(alias));
    }

    public List getVersionAliases() {
        return versions.keySet()
            .stream()
            .sorted()
            .collect(Collectors.toList());
    }

    public List getPluginAliases() {
        return plugins.keySet()
            .stream()
            .sorted()
            .collect(Collectors.toList());
    }

    public BundleModel getBundle(String name) {
        return bundles.get(normalize(name));
    }

    public VersionModel getVersion(String name) {
        return versions.get(normalize(name));
    }

    public PluginModel getPlugin(String name) {
        return plugins.get(normalize(name));
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        DefaultVersionCatalog that = (DefaultVersionCatalog) o;

        if (!libraries.equals(that.libraries)) {
            return false;
        }
        if (!bundles.equals(that.bundles)) {
            return false;
        }
        if (!versions.equals(that.versions)) {
            return false;
        }
        return plugins.equals(that.plugins);
    }

    @Override
    public int hashCode() {
        return hashCode;
    }

    private int doComputeHashCode() {
        int result = libraries.hashCode();
        result = 31 * result + bundles.hashCode();
        result = 31 * result + versions.hashCode();
        result = 31 * result + plugins.hashCode();
        return result;
    }

    public boolean isNotEmpty() {
        return !(libraries.isEmpty() && bundles.isEmpty() && versions.isEmpty() && plugins.isEmpty());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy