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

io.virtdata.libbasics.shared.stateful.UnsetOrLoad Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
package io.virtdata.libbasics.shared.stateful;

import io.virtdata.annotations.Categories;
import io.virtdata.annotations.Category;
import io.virtdata.annotations.ThreadSafeMapper;
import io.virtdata.api.VALUE;
import io.virtdata.libbasics.shared.from_long.to_double.HashedDoubleRange;

import java.util.function.LongFunction;

/**
 * Reads a long variable from the input, hashes and scales it
 * to the unit interval 0.0d - 1.0d, then uses the result to determine whether
 * to return UNSET.value or a loaded value.
 */
@ThreadSafeMapper
@Categories({Category.state,Category.nulls})
public class UnsetOrLoad implements LongFunction {

    private final String varname;
    private double ratio;
    private final HashedDoubleRange rangefunc = new HashedDoubleRange(0.0D,1.0D);
    private final Load load;

    public UnsetOrLoad(double ratio, String varname) {
        if (ratio<0.0D || ratio>1.0D) {
            throw new RuntimeException("The " + UnsetOrLoad.class.getSimpleName() + " function requires a ratio between 0.0D and 1.0D");
        }
        this.ratio = ratio;
        load = new Load(varname);
        this.varname = varname;
    }

    @Override
    public Object apply(long basis) {
        double v = rangefunc.applyAsDouble(basis);
        if (v <= ratio) {
            return VALUE.unset;
        }
        return load.apply(basis); // basis doesn't matter here
    }
}