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

org.gradle.api.internal.changedetection.rules.InputPropertiesTaskStateChanges Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2016 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.changedetection.rules;

import com.google.common.collect.ImmutableSortedMap;
import org.gradle.api.GradleException;
import org.gradle.api.Nullable;
import org.gradle.api.internal.TaskInternal;
import org.gradle.api.internal.changedetection.state.TaskExecution;
import org.gradle.api.internal.changedetection.state.ValueSnapshot;
import org.gradle.api.internal.changedetection.state.ValueSnapshotter;

import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

class InputPropertiesTaskStateChanges extends SimpleTaskStateChanges {
    private final TaskInternal task;
    private final Set removed;
    private final Set changed;
    private final Set added;

    public InputPropertiesTaskStateChanges(@Nullable TaskExecution previousExecution, TaskExecution currentExecution, TaskInternal task, ValueSnapshotter valueSnapshotter) {
        ImmutableSortedMap previousInputProperties = previousExecution == null ? ImmutableSortedMap.of() : previousExecution.getInputProperties();
        ImmutableSortedMap.Builder builder = ImmutableSortedMap.naturalOrder();
        removed = new HashSet(previousInputProperties.keySet());
        changed = new HashSet();
        added = new HashSet();
        for (Map.Entry entry : task.getInputs().getProperties().entrySet()) {
            String propertyName = entry.getKey();
            Object value = entry.getValue();
            try {
                removed.remove(propertyName);
                ValueSnapshot previousSnapshot = previousInputProperties.get(propertyName);
                if (previousSnapshot == null) {
                    added.add(propertyName);
                    builder.put(propertyName, valueSnapshotter.snapshot(value));
                } else {
                    ValueSnapshot newSnapshot = valueSnapshotter.snapshot(value, previousSnapshot);
                    if (newSnapshot == previousSnapshot) {
                        builder.put(propertyName, previousSnapshot);
                    } else {
                        changed.add(propertyName);
                        builder.put(propertyName, valueSnapshotter.snapshot(value));
                    }
                }
            } catch (Exception e) {
                throw new GradleException(String.format("Unable to store input properties for %s. Property '%s' with value '%s' cannot be serialized.", task, propertyName, value), e);
            }
        }

        currentExecution.setInputProperties(builder.build());
        this.task = task;
    }

    @Override
    protected void addAllChanges(final List changes) {
        for (String propertyName : changed) {
            changes.add(new DescriptiveChange("Value of input property '%s' has changed for %s", propertyName, task));
        }
        for (String propertyName : added) {
            changes.add(new DescriptiveChange("Input property '%s' has been added for %s", propertyName, task));
        }
        for (String propertyName : removed) {
            changes.add(new DescriptiveChange("Input property '%s' has been removed for %s", propertyName, task));
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy