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

org.gradle.internal.snapshot.EmptyChildMap Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2020 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.internal.snapshot;

import java.util.Collections;
import java.util.List;
import java.util.function.BiConsumer;

public class EmptyChildMap implements ChildMap {
    private static final EmptyChildMap INSTANCE = new EmptyChildMap<>();

    @SuppressWarnings("unchecked")
    public static  EmptyChildMap getInstance() {
        return (EmptyChildMap) INSTANCE;
    }

    private EmptyChildMap() {
    }

    @Override
    public  R withNode(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, NodeHandler handler) {
        return handler.handleUnrelatedToAnyChild();
    }

    @Override
    public  ChildMap invalidate(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, InvalidationHandler handler) {
        handler.handleUnrelatedToAnyChild();
        return getInstance();
    }

    @Override
    public ChildMap store(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, StoreHandler storeHandler) {
        return new SingletonChildMap<>(targetPath.getAsString(), storeHandler.createChild());
    }

    @Override
    public void visitChildren(BiConsumer visitor) {
    }

    @Override
    public boolean isEmpty() {
        return true;
    }

    @Override
    public List values() {
        return Collections.emptyList();
    }

    @Override
    public List> entries() {
        return Collections.emptyList();
    }

    @Override
    public String toString() {
        return "";
    }
}