
org.jnosql.artemis.column.query.AbstractMapperQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-column Show documentation
Show all versions of artemis-column Show documentation
Eclipse JNoSQL Mapping, Artemis API, to column NoSQL databases
/*
* Copyright (c) 2017 Otávio Santana and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
*
* You may elect to redistribute this code under either of these licenses.
*
* Contributors:
*
* Otavio Santana
*/
package org.jnosql.artemis.column.query;
import org.jnosql.artemis.Converters;
import org.jnosql.artemis.column.util.ConverterUtil;
import org.jnosql.artemis.reflection.ClassRepresentation;
import org.jnosql.diana.api.column.Column;
import org.jnosql.diana.api.column.ColumnCondition;
import java.util.List;
import java.util.stream.StreamSupport;
import static java.util.Arrays.asList;
import static java.util.Objects.nonNull;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toList;
abstract class AbstractMapperQuery {
protected final String columnFamily;
protected boolean negate;
protected ColumnCondition condition;
protected boolean and;
protected String name;
protected final ClassRepresentation representation;
protected final Converters converters;
protected long start;
protected long limit;
AbstractMapperQuery(ClassRepresentation representation, Converters converters) {
this.representation = representation;
this.converters = converters;
this.columnFamily = representation.getName();
}
protected void appendCondition(ColumnCondition newCondition) {
if (negate) {
newCondition = newCondition.negate();
}
if (nonNull(condition)) {
if (and) {
this.condition = condition.and(newCondition);
} else {
this.condition = condition.or(newCondition);
}
} else {
this.condition = newCondition;
}
this.negate = false;
this.name = null;
}
protected void betweenImpl(Number valueA, Number valueB) {
requireNonNull(valueA, "valueA is required");
requireNonNull(valueB, "valueB is required");
ColumnCondition newCondition = ColumnCondition
.between(Column.of(representation.getColumnField(name), asList(getValue(valueA), getValue(valueB))));
appendCondition(newCondition);
}
protected void inImpl(Iterable values) {
requireNonNull(values, "values is required");
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy