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

com.ocadotechnology.indexedcache.PredicateValue Maven / Gradle / Ivy

There is a newer version: 16.6.21
Show newest version
/*
 * Copyright © 2017-2023 Ocado (Ocava)
 *
 * 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 com.ocadotechnology.indexedcache;

import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.function.Predicate;

import javax.annotation.CheckForNull;

import com.ocadotechnology.id.Identified;

public final class PredicateValue, R, T> extends AbstractIndex {
    private final Predicate predicate;
    private final Function extract;
    private final BiFunction leftAccumulate;
    private final BiFunction leftDecumulate;
    private T current;

    PredicateValue(Predicate predicate, Function extract, BiFunction leftAccumulate, BiFunction leftDecumulate, T initial) {
        this(null, predicate, extract, leftAccumulate, leftDecumulate, initial);
    }

    PredicateValue(@CheckForNull String name, Predicate predicate, Function extract, BiFunction leftAccumulate, BiFunction leftDecumulate, T initial) {
        super(name);
        this.predicate = predicate;
        this.extract = extract;
        this.leftAccumulate = leftAccumulate;
        this.leftDecumulate = leftDecumulate;
        this.current = initial;
    }

    public T getValue() {
        return current;
    }

    @Override
    protected void add(C object) {
        if (predicate.test(object)) {
            current = leftAccumulate.apply(current, extract.apply(object));
        }
    }

    @Override
    protected void remove(C object) {
        if (predicate.test(object)) {
            current = leftDecumulate.apply(current, extract.apply(object));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy