com.querydsl.mongodb.document.AbstractMongodbQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querydsl-mongodb Show documentation
Show all versions of querydsl-mongodb Show documentation
Mongodb support for Querydsl
/*
* Copyright 2020 the original author or authors.
*
* 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.querydsl.mongodb.document;
import com.mongodb.ReadPreference;
import com.querydsl.core.DefaultQueryMetadata;
import com.querydsl.core.JoinExpression;
import com.querydsl.core.QueryMetadata;
import com.querydsl.core.QueryModifiers;
import com.querydsl.core.SimpleQuery;
import com.querydsl.core.support.QueryMixin;
import com.querydsl.core.types.Expression;
import com.querydsl.core.types.ExpressionUtils;
import com.querydsl.core.types.FactoryExpression;
import com.querydsl.core.types.Operation;
import com.querydsl.core.types.OrderSpecifier;
import com.querydsl.core.types.ParamExpression;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.Predicate;
import com.querydsl.core.types.dsl.CollectionPathBase;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.bson.Document;
import org.jetbrains.annotations.Nullable;
/**
* {@code AbstractMongodbQuery} provides a base class for general Querydsl query implementation.
*
* @author Mark Paluch
* @param concrete subtype
*/
public abstract class AbstractMongodbQuery>
implements SimpleQuery {
@SuppressWarnings("serial")
static class NoResults extends RuntimeException {}
private final MongodbDocumentSerializer serializer;
private final QueryMixin queryMixin;
private ReadPreference readPreference;
/**
* Create a new MongodbQuery instance
*
* @param serializer serializer
*/
@SuppressWarnings("unchecked")
public AbstractMongodbQuery(MongodbDocumentSerializer serializer) {
@SuppressWarnings("unchecked") // Q is this plus subclass
Q query = (Q) this;
this.queryMixin = new QueryMixin(query, new DefaultQueryMetadata(), false);
this.serializer = serializer;
}
/**
* Define a join
*
* @param ref reference
* @param target join target
* @return join builder
*/
public JoinBuilder join(Path ref, Path target) {
return new JoinBuilder(queryMixin, ref, target);
}
/**
* Define a join
*
* @param ref reference
* @param target join target
* @return join builder
*/
public JoinBuilder join(CollectionPathBase, T, ?> ref, Path target) {
return new JoinBuilder(queryMixin, ref, target);
}
/**
* Define a constraint for an embedded object
*
* @param collection collection
* @param target target
* @return builder
*/
public AnyEmbeddedBuilder anyEmbedded(
Path extends Collection> collection, Path target) {
return new AnyEmbeddedBuilder(queryMixin, collection);
}
@Nullable
protected Predicate createFilter(QueryMetadata metadata) {
Predicate filter;
if (!metadata.getJoins().isEmpty()) {
filter = ExpressionUtils.allOf(metadata.getWhere(), createJoinFilter(metadata));
} else {
filter = metadata.getWhere();
}
return filter;
}
@SuppressWarnings("unchecked")
@Nullable
protected Predicate createJoinFilter(QueryMetadata metadata) {
Map, Predicate> predicates = new HashMap<>();
List joins = metadata.getJoins();
for (int i = joins.size() - 1; i >= 0; i--) {
JoinExpression join = joins.get(i);
Path> source = (Path) ((Operation>) join.getTarget()).getArg(0);
Path> target = (Path) ((Operation>) join.getTarget()).getArg(1);
final Predicate extraFilters = predicates.get(target.getRoot());
Predicate filter = ExpressionUtils.allOf(join.getCondition(), extraFilters);
List extends Object> ids = getIds(target.getType(), filter);
if (ids.isEmpty()) {
throw new NoResults();
}
Path> path = ExpressionUtils.path(String.class, source, "$id");
predicates.merge(
source.getRoot(), ExpressionUtils.in((Path