/* * Copyright 2016 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 org.springframework.data.mongodb.repository.query; import lombok.NonNull; import lombok.RequiredArgsConstructor; import reactor.core.publisher.Flux; import java.util.Optional; import org.springframework.core.convert.converter.Converter; import org.springframework.data.convert.EntityInstantiators; import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Range; import org.springframework.data.geo.Distance; import org.springframework.data.geo.GeoResult; import org.springframework.data.geo.Point; import org.springframework.data.mongodb.core.ReactiveMongoOperations; import org.springframework.data.mongodb.core.query.NearQuery; import org.springframework.data.mongodb.core.query.Query; import org.springframework.data.repository.query.ResultProcessor; import org.springframework.data.repository.query.ReturnedType; import org.springframework.data.repository.util.ReactiveWrappers; import org.springframework.data.util.TypeInformation; import org.springframework.util.ClassUtils; import com.mongodb.client.result.DeleteResult; /** * Set of classes to contain query execution strategies. Depending (mostly) on the return type of a * {@link org.springframework.data.repository.query.QueryMethod} a {@link AbstractReactiveMongoQuery} can be executed in * various flavors. * * @author Mark Paluch * @since 2.0 */ interface ReactiveMongoQueryExecution { Object execute(Query query, Class<?> type, String collection); /** * {@link ReactiveMongoQueryExecution} for collection returning queries. * * @author Mark Paluch */ @RequiredArgsConstructor final class CollectionExecution implements ReactiveMongoQueryExecution { private final @NonNull ReactiveMongoOperations operations; private final Pageable pageable; @Override public Object execute(Query query, Class<?> type, String collection) { return operations.find(query.with(pageable), type, collection); } } /** * {@link ReactiveMongoQueryExecution} for collection returning queries using tailable cursors. * * @author Mark Paluch */ @RequiredArgsConstructor final class TailExecution implements ReactiveMongoQueryExecution { private final @NonNull ReactiveMongoOperations operations; private final Pageable pageable; @Override public Object execute(Query query, Class<?> type, String collection) { return operations.tail(query.with(pageable), type, collection); } } /** * {@link ReactiveMongoQueryExecution} to return a single entity. * * @author Mark Paluch */ @RequiredArgsConstructor final class SingleEntityExecution implements ReactiveMongoQueryExecution { private final ReactiveMongoOperations operations; private final boolean countProjection; @Override public Object execute(Query query, Class<?> type, String collection) { return countProjection ? operations.count(query, type, collection) : operations.findOne(query, type, collection); } } /** * {@link MongoQueryExecution} to execute geo-near queries. * * @author Mark Paluch */ @RequiredArgsConstructor class GeoNearExecution implements ReactiveMongoQueryExecution { private final ReactiveMongoOperations operations; private final MongoParameterAccessor accessor; private final TypeInformation<?> returnType; /* * (non-Javadoc) * @see org.springframework.data.mongodb.repository.query.AbstractMongoQuery.Execution#execute(org.springframework.data.mongodb.core.query.Query, java.lang.Class, java.lang.String) */ @Override public Object execute(Query query, Class<?> type, String collection) { Flux<GeoResult<Object>> results = doExecuteQuery(query, type, collection); return isStreamOfGeoResult() ? results : results.map(GeoResult::getContent); } @SuppressWarnings({ "unchecked", "rawtypes" }) protected Flux<GeoResult<Object>> doExecuteQuery(Query query, Class<?> type, String collection) { Point nearLocation = accessor.getGeoNearLocation(); NearQuery nearQuery = NearQuery.near(nearLocation); if (query != null) { nearQuery.query(query); } Range<Distance> distances = accessor.getDistanceRange(); distances.getUpperBound().getValue().ifPresent(it -> nearQuery.maxDistance(it).in(it.getMetric())); distances.getLowerBound().getValue().ifPresent(it -> nearQuery.minDistance(it).in(it.getMetric())); Pageable pageable = accessor.getPageable(); if (pageable != null) { nearQuery.with(pageable); } return (Flux) operations.geoNear(nearQuery, type, collection); } private boolean isStreamOfGeoResult() { if (!ReactiveWrappers.supports(returnType.getType())) { return false; } Optional<TypeInformation<?>> componentType = returnType.getComponentType(); return componentType.isPresent() && GeoResult.class.equals(componentType.get().getType()); } } /** * {@link ReactiveMongoQueryExecution} removing documents matching the query. * * @author Mark Paluch */ @RequiredArgsConstructor final class DeleteExecution implements ReactiveMongoQueryExecution { private final ReactiveMongoOperations operations; private final MongoQueryMethod method; /* * (non-Javadoc) * @see org.springframework.data.mongodb.repository.query.AbstractMongoQuery.Execution#execute(org.springframework.data.mongodb.core.query.Query, java.lang.Class, java.lang.String) */ @Override public Object execute(Query query, Class<?> type, String collection) { if (method.isCollectionQuery()) { return operations.findAllAndRemove(query, type, collection); } return operations.remove(query, type, collection).map(DeleteResult::getDeletedCount); } } /** * An {@link ReactiveMongoQueryExecution} that wraps the results of the given delegate with the given result * processing. */ @RequiredArgsConstructor final class ResultProcessingExecution implements ReactiveMongoQueryExecution { private final @NonNull ReactiveMongoQueryExecution delegate; private final @NonNull Converter<Object, Object> converter; @Override public Object execute(Query query, Class<?> type, String collection) { return converter.convert(delegate.execute(query, type, collection)); } } /** * A {@link Converter} to post-process all source objects using the given {@link ResultProcessor}. * * @author Mark Paluch */ @RequiredArgsConstructor final class ResultProcessingConverter implements Converter<Object, Object> { private final @NonNull ResultProcessor processor; private final @NonNull ReactiveMongoOperations operations; private final @NonNull EntityInstantiators instantiators; /* * (non-Javadoc) * @see org.springframework.core.convert.converter.Converter#convert(java.lang.Object) */ @Override public Object convert(Object source) { ReturnedType returnedType = processor.getReturnedType(); if (ClassUtils.isPrimitiveOrWrapper(returnedType.getReturnedType())) { return source; } Converter<Object, Object> converter = new DtoInstantiatingConverter(returnedType.getReturnedType(), operations.getConverter().getMappingContext(), instantiators); return processor.processResult(source, converter); } } }