Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
*
* 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;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import org.jetbrains.annotations.Nullable;
import java.util.Map;
import java.util.function.Function;
import com.mongodb.*;
import com.mysema.commons.lang.CloseableIterator;
import com.querydsl.core.*;
import com.querydsl.core.support.QueryMixin;
import com.querydsl.core.types.*;
import com.querydsl.core.types.dsl.CollectionPathBase;
/**
* {@code AbstractMongodbQuery} provides a base class for general Querydsl query implementation with a
* pluggable DBObject to Bean transformation
*
* @author laimw
*
* @param result type
* @param concrete subtype
*/
public abstract class AbstractMongodbQuery> implements SimpleQuery, Fetchable {
@SuppressWarnings("serial")
private static class NoResults extends RuntimeException { }
private final MongodbSerializer serializer;
private final QueryMixin queryMixin;
private final DBCollection collection;
private final Function transformer;
private ReadPreference readPreference;
/**
* Create a new MongodbQuery instance
*
* @param collection collection
* @param transformer result transformer
* @param serializer serializer
*/
@SuppressWarnings("unchecked")
public AbstractMongodbQuery(DBCollection collection, Function transformer, MongodbSerializer serializer) {
@SuppressWarnings("unchecked") // Q is this plus subclass
Q query = (Q) this;
this.queryMixin = new QueryMixin(query, new DefaultQueryMetadata(), false);
this.transformer = transformer;
this.collection = collection;
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);
}
protected abstract DBCollection getCollection(Class> type);
@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