com.bagri.server.hazelcast.predicate.QueryPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagri-server-hazelcast Show documentation
Show all versions of bagri-server-hazelcast Show documentation
Bagri DB Cache: Hazelcast implementation
The newest version!
package com.bagri.server.hazelcast.predicate;
import static com.bagri.server.hazelcast.serialize.SystemSerializationFactory.cli_QueryPredicate;
import static com.bagri.server.hazelcast.serialize.SystemSerializationFactory.cli_factory_id;
import java.io.IOException;
import java.util.Map.Entry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.bagri.core.DataKey;
import com.bagri.core.model.Elements;
import com.bagri.core.query.PathExpression;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import com.hazelcast.query.Predicate;
public class QueryPredicate implements Predicate, IdentifiedDataSerializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private static final transient Logger logger = LoggerFactory.getLogger(QueryPredicate.class);
private PathExpression pex;
private Object value;
public QueryPredicate() {
// for de-serialization
}
public QueryPredicate(PathExpression pex, Object value) {
this.pex = pex;
this.value = value;
}
@Override
public int getFactoryId() {
return cli_factory_id;
}
@Override
public int getId() {
return cli_QueryPredicate;
}
@Override
public boolean apply(Entry xdmEntry) {
//logger.trace("apply.enter");
boolean result = xdmEntry.getValue().apply(pex, value);
//logger.trace("apply.exit; returning {}", result);
return result;
}
@Override
public void readData(ObjectDataInput in) throws IOException {
pex = in.readObject();
value = in.readObject();
//logger.trace("readData.exit");
}
@Override
public void writeData(ObjectDataOutput out) throws IOException {
out.writeObject(pex);
out.writeObject(value);
//logger.trace("writeData.exit");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy