com.mongodb.MapReduceIterableImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
The newest version!
/*
* Copyright 2015 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;
import com.mongodb.client.MapReduceIterable;
import com.mongodb.client.MongoCursor;
import com.mongodb.client.MongoIterable;
import com.mongodb.client.model.FindOptions;
import com.mongodb.client.model.MapReduceAction;
import com.mongodb.operation.MapReduceToCollectionOperation;
import com.mongodb.operation.MapReduceWithInlineResultsOperation;
import com.mongodb.operation.OperationExecutor;
import org.bson.BsonDocument;
import org.bson.BsonJavaScript;
import org.bson.codecs.configuration.CodecRegistry;
import org.bson.conversions.Bson;
import java.util.Collection;
import java.util.concurrent.TimeUnit;
import static com.mongodb.ReadPreference.primary;
import static com.mongodb.assertions.Assertions.notNull;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
class MapReduceIterableImpl implements MapReduceIterable {
private final MongoNamespace namespace;
private final Class documentClass;
private final Class resultClass;
private final ReadPreference readPreference;
private final CodecRegistry codecRegistry;
private final OperationExecutor executor;
private final String mapFunction;
private final String reduceFunction;
private boolean inline = true;
private String collectionName;
private String finalizeFunction;
private Bson scope;
private Bson filter;
private Bson sort;
private int limit;
private boolean jsMode;
private boolean verbose = true;
private long maxTimeMS;
private MapReduceAction action = MapReduceAction.REPLACE;
private String databaseName;
private boolean sharded;
private boolean nonAtomic;
private int batchSize;
MapReduceIterableImpl(final MongoNamespace namespace, final Class documentClass, final Class resultClass,
final CodecRegistry codecRegistry, final ReadPreference readPreference, final OperationExecutor executor,
final String mapFunction, final String reduceFunction) {
this.namespace = notNull("namespace", namespace);
this.documentClass = notNull("documentClass", documentClass);
this.resultClass = notNull("resultClass", resultClass);
this.codecRegistry = notNull("codecRegistry", codecRegistry);
this.readPreference = notNull("readPreference", readPreference);
this.executor = notNull("executor", executor);
this.mapFunction = notNull("mapFunction", mapFunction);
this.reduceFunction = notNull("reduceFunction", reduceFunction);
}
@Override
public MapReduceIterable collectionName(final String collectionName) {
this.collectionName = notNull("collectionName", collectionName);
this.inline = false;
return this;
}
@Override
public MapReduceIterable finalizeFunction(final String finalizeFunction) {
this.finalizeFunction = finalizeFunction;
return this;
}
@Override
public MapReduceIterable scope(final Bson scope) {
this.scope = scope;
return this;
}
@Override
public MapReduceIterable sort(final Bson sort) {
this.sort = sort;
return this;
}
@Override
public MapReduceIterable filter(final Bson filter) {
this.filter = filter;
return this;
}
@Override
public MapReduceIterable limit(final int limit) {
this.limit = limit;
return this;
}
@Override
public MapReduceIterable jsMode(final boolean jsMode) {
this.jsMode = jsMode;
return this;
}
@Override
public MapReduceIterable verbose(final boolean verbose) {
this.verbose = verbose;
return this;
}
@Override
public MapReduceIterable maxTime(final long maxTime, final TimeUnit timeUnit) {
notNull("timeUnit", timeUnit);
this.maxTimeMS = TimeUnit.MILLISECONDS.convert(maxTime, timeUnit);
return this;
}
@Override
public MapReduceIterable action(final MapReduceAction action) {
this.action = action;
return this;
}
@Override
public MapReduceIterable databaseName(final String databaseName) {
this.databaseName = databaseName;
return this;
}
@Override
public MapReduceIterable sharded(final boolean sharded) {
this.sharded = sharded;
return this;
}
@Override
public MapReduceIterable nonAtomic(final boolean nonAtomic) {
this.nonAtomic = nonAtomic;
return this;
}
@Override
public MapReduceIterable batchSize(final int batchSize) {
this.batchSize = batchSize;
return this;
}
@Override
public MongoCursor iterator() {
return execute().iterator();
}
@Override
public TResult first() {
return execute().first();
}
@Override
public MongoIterable map(final Function mapper) {
return new MappingIterable(this, mapper);
}
@Override
public void forEach(final Block super TResult> block) {
execute().forEach(block);
}
@Override
public > A into(final A target) {
return execute().into(target);
}
MongoIterable execute() {
if (inline) {
MapReduceWithInlineResultsOperation operation =
new MapReduceWithInlineResultsOperation(namespace,
new BsonJavaScript(mapFunction),
new BsonJavaScript(reduceFunction),
codecRegistry.get(resultClass))
.filter(toBsonDocument(filter))
.limit(limit)
.maxTime(maxTimeMS, MILLISECONDS)
.jsMode(jsMode)
.scope(toBsonDocument(scope))
.sort(toBsonDocument(sort))
.verbose(verbose);
if (finalizeFunction != null) {
operation.finalizeFunction(new BsonJavaScript(finalizeFunction));
}
return new OperationIterable(operation, readPreference, executor);
} else {
MapReduceToCollectionOperation operation =
new MapReduceToCollectionOperation(namespace, new BsonJavaScript(mapFunction), new BsonJavaScript(reduceFunction),
collectionName)
.filter(toBsonDocument(filter))
.limit(limit)
.maxTime(maxTimeMS, MILLISECONDS)
.jsMode(jsMode)
.scope(toBsonDocument(scope))
.sort(toBsonDocument(sort))
.verbose(verbose)
.action(action.getValue())
.nonAtomic(nonAtomic)
.sharded(sharded)
.databaseName(databaseName);
if (finalizeFunction != null) {
operation.finalizeFunction(new BsonJavaScript(finalizeFunction));
}
executor.execute(operation);
String dbName = databaseName != null ? databaseName : namespace.getDatabaseName();
return new FindIterableImpl(new MongoNamespace(dbName, collectionName), documentClass, resultClass,
codecRegistry, primary(), executor, new BsonDocument(),
new FindOptions()).batchSize(batchSize);
}
}
private BsonDocument toBsonDocument(final Bson document) {
return document == null ? null : document.toBsonDocument(documentClass, codecRegistry);
}
}