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

io.ultreia.java4all.bean.AbstractJavaBeanPredicate Maven / Gradle / Ivy

package io.ultreia.java4all.bean;

/*-
 * #%L
 * Java Beans extends by Ultreia.io
 * %%
 * Copyright (C) 2018 Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import io.ultreia.java4all.bean.definition.JavaBeanDefinition;
import io.ultreia.java4all.bean.definition.JavaBeanDefinitionStore;
import io.ultreia.java4all.util.Predicates;

import java.util.LinkedList;
import java.util.List;
import java.util.function.Function;
import java.util.function.Predicate;

/**
 * Created by tchemit on 11/01/2018.
 *
 * @author Tony Chemit - [email protected]
 */
public class AbstractJavaBeanPredicate> implements JavaBeanPredicate {

    private final List> predicates;
    private final JavaBeanDefinition javaBeanDefinition;
    private Predicate cachedPredicate;

    public AbstractJavaBeanPredicate(JavaBeanDefinition javaBeanDefinition) {
        this.javaBeanDefinition = javaBeanDefinition;
        this.predicates = new LinkedList<>();
    }

    protected AbstractJavaBeanPredicate(Class javaBeanDefinitionType) {
        this(JavaBeanDefinitionStore.definition(javaBeanDefinitionType));
    }

    @Override
    public final boolean test(O o) {
        return predicate().test(o);
    }

    @Override
    public final void addPredicate(Predicate predicate) {
        cachedPredicate = null;
        predicates.add(predicate);
    }

    @Override
    public final Predicate predicate() {
        return cachedPredicate == null ? cachedPredicate = Predicates.predicate(predicates) : cachedPredicate;
    }

    protected  ObjectQuery where(String propertyName) {
        return new ObjectQuery<>(p(), this.getter(propertyName));
    }

    protected > SimpleComparableQuery whereComparable(String propertyName) {
        return new SimpleComparableQuery<>(p(), this.getter(propertyName));
    }

    protected > PrimitiveObjectQuery wherePrimitive(String propertyName) {
        return new PrimitiveObjectQuery<>(p(), this.getter(propertyName));
    }

    protected ObjectBooleanQuery whereBoolean(String propertyName) {
        return new ObjectBooleanQuery<>(p(), getter(propertyName));
    }

    protected PrimitiveBooleanQuery wherePrimitiveBoolean(String propertyName) {
        return new PrimitiveBooleanQuery<>(p(), getter(propertyName));
    }

    protected StringQuery whereString(String propertyName) {
        return new StringQuery<>(p(), getter(propertyName));
    }

    protected final  Function getter(String propertyName) {
        return javaBeanDefinition.readProperty(propertyName).getter();
    }

    @SuppressWarnings("unchecked")
    protected final P p() {
        return (P) this;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy