All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mongodb.internal.operation.MapReduceWithInlineResultsOperation Maven / Gradle / Ivy

Go to download

The Java operations layer for the MongoDB Java Driver. Third parties can wrap this layer to provide custom higher-level APIs

The newest version!
/*
 * Copyright 2008-present MongoDB, Inc.
 *
 * 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.mongodb.internal.operation;

import com.mongodb.ExplainVerbosity;
import com.mongodb.MongoNamespace;
import com.mongodb.client.model.Collation;
import com.mongodb.internal.async.SingleResultCallback;
import com.mongodb.internal.binding.AsyncReadBinding;
import com.mongodb.internal.binding.ReadBinding;
import com.mongodb.lang.Nullable;
import org.bson.BsonDocument;
import org.bson.BsonInt32;
import org.bson.BsonJavaScript;
import org.bson.BsonString;
import org.bson.codecs.BsonDocumentCodec;
import org.bson.codecs.Decoder;

import static com.mongodb.assertions.Assertions.notNull;
import static com.mongodb.internal.async.ErrorHandlingResultCallback.errorHandlingCallback;
import static com.mongodb.internal.connection.CommandHelper.applyMaxTimeMS;
import static com.mongodb.internal.operation.AsyncOperationHelper.CommandReadTransformerAsync;
import static com.mongodb.internal.operation.AsyncOperationHelper.executeRetryableReadAsync;
import static com.mongodb.internal.operation.CommandOperationHelper.CommandCreator;
import static com.mongodb.internal.operation.DocumentHelper.putIfNotNull;
import static com.mongodb.internal.operation.DocumentHelper.putIfNotZero;
import static com.mongodb.internal.operation.DocumentHelper.putIfTrue;
import static com.mongodb.internal.operation.ExplainHelper.asExplainCommand;
import static com.mongodb.internal.operation.OperationHelper.LOGGER;
import static com.mongodb.internal.operation.OperationReadConcernHelper.appendReadConcernToCommand;
import static com.mongodb.internal.operation.SyncOperationHelper.CommandReadTransformer;
import static com.mongodb.internal.operation.SyncOperationHelper.executeRetryableRead;

/**
 * 

Operation that runs a Map Reduce against a MongoDB instance. This operation only supports "inline" results, i.e. the results will be * returned as a result of running this operation.

* *

To run a map reduce operation into a given collection, use {@code MapReduceToCollectionOperation}.

* *

This class is not part of the public API and may be removed or changed at any time

*/ public class MapReduceWithInlineResultsOperation implements AsyncReadOperation>, ReadOperation> { private final MongoNamespace namespace; private final BsonJavaScript mapFunction; private final BsonJavaScript reduceFunction; private final Decoder decoder; private BsonJavaScript finalizeFunction; private BsonDocument scope; private BsonDocument filter; private BsonDocument sort; private int limit; private boolean jsMode; private boolean verbose; private Collation collation; public MapReduceWithInlineResultsOperation(final MongoNamespace namespace, final BsonJavaScript mapFunction, final BsonJavaScript reduceFunction, final Decoder decoder) { this.namespace = notNull("namespace", namespace); this.mapFunction = notNull("mapFunction", mapFunction); this.reduceFunction = notNull("reduceFunction", reduceFunction); this.decoder = notNull("decoder", decoder); } public MongoNamespace getNamespace() { return namespace; } public Decoder getDecoder() { return decoder; } public BsonJavaScript getMapFunction() { return mapFunction; } public BsonJavaScript getReduceFunction() { return reduceFunction; } public BsonJavaScript getFinalizeFunction() { return finalizeFunction; } public MapReduceWithInlineResultsOperation finalizeFunction(final BsonJavaScript finalizeFunction) { this.finalizeFunction = finalizeFunction; return this; } public BsonDocument getScope() { return scope; } public MapReduceWithInlineResultsOperation scope(@Nullable final BsonDocument scope) { this.scope = scope; return this; } public BsonDocument getFilter() { return filter; } public MapReduceWithInlineResultsOperation filter(@Nullable final BsonDocument filter) { this.filter = filter; return this; } public BsonDocument getSort() { return sort; } public MapReduceWithInlineResultsOperation sort(@Nullable final BsonDocument sort) { this.sort = sort; return this; } public int getLimit() { return limit; } public MapReduceWithInlineResultsOperation limit(final int limit) { this.limit = limit; return this; } public boolean isJsMode() { return jsMode; } public MapReduceWithInlineResultsOperation jsMode(final boolean jsMode) { this.jsMode = jsMode; return this; } public boolean isVerbose() { return verbose; } public MapReduceWithInlineResultsOperation verbose(final boolean verbose) { this.verbose = verbose; return this; } public Collation getCollation() { return collation; } public MapReduceWithInlineResultsOperation collation(@Nullable final Collation collation) { this.collation = collation; return this; } @Override public MapReduceBatchCursor execute(final ReadBinding binding) { return executeRetryableRead(binding, namespace.getDatabaseName(), getCommandCreator(), CommandResultDocumentCodec.create(decoder, "results"), transformer(), false); } @Override public void executeAsync(final AsyncReadBinding binding, final SingleResultCallback> callback) { SingleResultCallback> errHandlingCallback = errorHandlingCallback(callback, LOGGER); executeRetryableReadAsync(binding, namespace.getDatabaseName(), getCommandCreator(), CommandResultDocumentCodec.create(decoder, "results"), asyncTransformer(), false, errHandlingCallback); } public ReadOperation asExplainableOperation(final ExplainVerbosity explainVerbosity) { return createExplainableOperation(explainVerbosity); } public AsyncReadOperation asExplainableOperationAsync(final ExplainVerbosity explainVerbosity) { return createExplainableOperation(explainVerbosity); } private CommandReadOperation createExplainableOperation(final ExplainVerbosity explainVerbosity) { return new CommandReadOperation<>(namespace.getDatabaseName(), (operationContext, serverDescription, connectionDescription) -> { BsonDocument command = getCommandCreator().create(operationContext, serverDescription, connectionDescription); applyMaxTimeMS(operationContext.getTimeoutContext(), command); return asExplainCommand(command, explainVerbosity); }, new BsonDocumentCodec()); } private CommandReadTransformer> transformer() { return (result, source, connection) -> new MapReduceInlineResultsCursor<>( new SingleBatchCursor<>(BsonDocumentWrapperHelper.toList(result, "results"), 0, connection.getDescription().getServerAddress()), MapReduceHelper.createStatistics(result)); } private CommandReadTransformerAsync> asyncTransformer() { return (result, source, connection) -> new MapReduceInlineResultsAsyncCursor<>( new AsyncSingleBatchCursor<>(BsonDocumentWrapperHelper.toList(result, "results"), 0), MapReduceHelper.createStatistics(result)); } private CommandCreator getCommandCreator() { return (operationContext, serverDescription, connectionDescription) -> { BsonDocument commandDocument = new BsonDocument("mapReduce", new BsonString(namespace.getCollectionName())) .append("map", getMapFunction()) .append("reduce", getReduceFunction()) .append("out", new BsonDocument("inline", new BsonInt32(1))); putIfNotNull(commandDocument, "query", getFilter()); putIfNotNull(commandDocument, "sort", getSort()); putIfNotNull(commandDocument, "finalize", getFinalizeFunction()); putIfNotNull(commandDocument, "scope", getScope()); putIfTrue(commandDocument, "verbose", isVerbose()); appendReadConcernToCommand(operationContext.getSessionContext(), connectionDescription.getMaxWireVersion(), commandDocument); putIfNotZero(commandDocument, "limit", getLimit()); putIfTrue(commandDocument, "jsMode", isJsMode()); if (collation != null) { commandDocument.put("collation", collation.asDocument()); } return commandDocument; }; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy