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

org.gradle.caching.internal.tasks.BuildCacheKeyInputs Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2017 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.caching.internal.tasks;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSortedMap;
import com.google.common.collect.ImmutableSortedSet;
import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
import org.gradle.internal.hash.HashCode;
import org.gradle.internal.snapshot.impl.ImplementationSnapshot;

import javax.annotation.Nullable;
import java.util.List;

/**
 * Records the inputs which constitute the {@link TaskOutputCachingBuildCacheKey}.
 */
public class BuildCacheKeyInputs {

    private final ImplementationSnapshot taskImplementation;
    private final List actionImplementations;
    private final ImmutableSortedMap inputValueHashes;
    private final ImmutableSortedMap inputFiles;
    private final ImmutableSortedMap nonCacheableInputProperties;
    private final ImmutableSortedSet outputPropertyNames;

    public BuildCacheKeyInputs(
        @Nullable ImplementationSnapshot taskImplementation,
        @Nullable ImmutableList actionImplementations,
        @Nullable ImmutableSortedMap inputValueHashes,
        @Nullable ImmutableSortedMap inputFiles,
        @Nullable ImmutableSortedMap nonCacheableInputProperties,
        @Nullable ImmutableSortedSet outputPropertyNames
    ) {
        this.taskImplementation = taskImplementation;
        this.actionImplementations = actionImplementations;
        this.inputValueHashes = inputValueHashes;
        this.inputFiles = inputFiles;
        this.nonCacheableInputProperties = nonCacheableInputProperties;
        this.outputPropertyNames = outputPropertyNames;
    }

    @Nullable
    public ImplementationSnapshot getTaskImplementation() {
        return taskImplementation;
    }

    @Nullable
    public List getActionImplementations() {
        return actionImplementations;
    }

    @Nullable
    public ImmutableSortedMap getInputValueHashes() {
        return inputValueHashes;
    }

    @Nullable
    public ImmutableSortedMap getInputFiles() {
        return inputFiles;
    }

    @Nullable
    public ImmutableSortedMap getNonCacheableInputProperties() {
        return nonCacheableInputProperties;
    }

    @Nullable
    public ImmutableSortedSet getOutputPropertyNames() {
        return outputPropertyNames;
    }

    @Override
    public String toString() {
        return "BuildCacheKeyInputs{"
            + "taskImplementation=" + taskImplementation
            + ", actionImplementations=" + actionImplementations
            + ", inputValueHashes=" + inputValueHashes
            + ", inputFiles=" + inputFiles
            + ", nonCacheableInputProperties=" + nonCacheableInputProperties
            + ", outputPropertyNames=" + outputPropertyNames
            + '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy