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

org.gradle.api.internal.changedetection.state.DefaultFileSystemMirror Maven / Gradle / Ivy

/*
 * 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.state;

import org.gradle.BuildAdapter;
import org.gradle.BuildResult;
import org.gradle.api.Nullable;
import org.gradle.api.internal.tasks.execution.TaskOutputsGenerationListener;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

public class DefaultFileSystemMirror extends BuildAdapter implements FileSystemMirror, TaskOutputsGenerationListener {
    // Map from interned absolute path for a file to known details for the file. Currently not shared with trees
    private final Map files = new ConcurrentHashMap();
    // Map from interned absolute path for a directory to known details for the directory.
    private final Map trees = new ConcurrentHashMap();

    @Nullable
    @Override
    public FileDetails getFile(String path) {
        return files.get(path);
    }

    @Override
    public void putFile(FileDetails file) {
        files.put(file.getPath(), file);
    }

    @Nullable
    @Override
    public DirectoryTreeDetails getDirectoryTree(String path) {
        return trees.get(path);
    }

    @Override
    public void putDirectory(DirectoryTreeDetails directory) {
        trees.put(directory.path, directory);
    }

    @Override
    public void beforeTaskOutputsGenerated() {
        // When the task outputs are generated, throw away all cached state. This is intentionally very simple, to be improved later
        throwAwayAllCachedState();
    }

    @Override
    public void buildFinished(BuildResult result) {
        // We throw away all cached state between builds
        throwAwayAllCachedState();
    }

    private void throwAwayAllCachedState() {
        files.clear();
        trees.clear();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy