com.mongodb.FindIterableImpl Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2014 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.FindIterable;
import com.mongodb.client.model.Collation;
import com.mongodb.client.model.FindOptions;
import com.mongodb.operation.BatchCursor;
import com.mongodb.operation.FindOperation;
import com.mongodb.operation.ReadOperation;
import com.mongodb.session.ClientSession;
import org.bson.codecs.configuration.CodecRegistry;
import org.bson.conversions.Bson;
import java.util.concurrent.TimeUnit;
import static com.mongodb.assertions.Assertions.notNull;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
@SuppressWarnings("deprecation")
final class FindIterableImpl extends MongoIterableImpl implements FindIterable {
private final MongoNamespace namespace;
private final Class documentClass;
private final Class resultClass;
private final CodecRegistry codecRegistry;
private final FindOptions findOptions;
private Bson filter;
FindIterableImpl(final ClientSession clientSession, final MongoNamespace namespace, final Class documentClass,
final Class resultClass, final CodecRegistry codecRegistry, final ReadPreference readPreference,
final ReadConcern readConcern, final OperationExecutor executor, final Bson filter, final FindOptions findOptions) {
super(clientSession, executor, readConcern, readPreference);
this.namespace = notNull("namespace", namespace);
this.documentClass = notNull("documentClass", documentClass);
this.resultClass = notNull("resultClass", resultClass);
this.codecRegistry = notNull("codecRegistry", codecRegistry);
this.filter = notNull("filter", filter);
this.findOptions = notNull("findOptions", findOptions);
}
@Override
public FindIterable filter(final Bson filter) {
this.filter = filter;
return this;
}
@Override
public FindIterable limit(final int limit) {
findOptions.limit(limit);
return this;
}
@Override
public FindIterable skip(final int skip) {
findOptions.skip(skip);
return this;
}
@Override
public FindIterable maxTime(final long maxTime, final TimeUnit timeUnit) {
notNull("timeUnit", timeUnit);
findOptions.maxTime(maxTime, timeUnit);
return this;
}
@Override
public FindIterable maxAwaitTime(final long maxAwaitTime, final TimeUnit timeUnit) {
notNull("timeUnit", timeUnit);
findOptions.maxAwaitTime(maxAwaitTime, timeUnit);
return this;
}
@Override
public FindIterable batchSize(final int batchSize) {
findOptions.batchSize(batchSize);
return this;
}
@Override
public FindIterable collation(final Collation collation) {
findOptions.collation(collation);
return this;
}
@Override
public FindIterable modifiers(final Bson modifiers) {
findOptions.modifiers(modifiers);
return this;
}
@Override
public FindIterable projection(final Bson projection) {
findOptions.projection(projection);
return this;
}
@Override
public FindIterable sort(final Bson sort) {
findOptions.sort(sort);
return this;
}
@Override
public FindIterable noCursorTimeout(final boolean noCursorTimeout) {
findOptions.noCursorTimeout(noCursorTimeout);
return this;
}
@Override
public FindIterable oplogReplay(final boolean oplogReplay) {
findOptions.oplogReplay(oplogReplay);
return this;
}
@Override
public FindIterable partial(final boolean partial) {
findOptions.partial(partial);
return this;
}
@Override
public FindIterable cursorType(final CursorType cursorType) {
findOptions.cursorType(cursorType);
return this;
}
@Override
public FindIterable comment(final String comment) {
findOptions.comment(comment);
return this;
}
@Override
public FindIterable hint(final Bson hint) {
findOptions.hint(hint);
return this;
}
@Override
public FindIterable max(final Bson max) {
findOptions.max(max);
return this;
}
@Override
public FindIterable min(final Bson min) {
findOptions.min(min);
return this;
}
@Override
public FindIterable maxScan(final long maxScan) {
findOptions.maxScan(maxScan);
return this;
}
@Override
public FindIterable returnKey(final boolean returnKey) {
findOptions.returnKey(returnKey);
return this;
}
@Override
public FindIterable showRecordId(final boolean showRecordId) {
findOptions.showRecordId(showRecordId);
return this;
}
@Override
public FindIterable snapshot(final boolean snapshot) {
findOptions.snapshot(snapshot);
return this;
}
@Override
public TResult first() {
FindOperation findFirstOperation = createQueryOperation().batchSize(0).limit(-1);
BatchCursor batchCursor = getExecutor().execute(findFirstOperation, getReadPreference(), getClientSession());
try {
return batchCursor.hasNext() ? batchCursor.next().iterator().next() : null;
} finally {
batchCursor.close();
}
}
protected ReadOperation> asReadOperation() {
return createQueryOperation();
}
private FindOperation createQueryOperation() {
return new FindOperation(namespace, codecRegistry.get(resultClass))
.filter(filter.toBsonDocument(documentClass, codecRegistry))
.batchSize(findOptions.getBatchSize())
.skip(findOptions.getSkip())
.limit(findOptions.getLimit())
.maxTime(findOptions.getMaxTime(MILLISECONDS), MILLISECONDS)
.maxAwaitTime(findOptions.getMaxAwaitTime(MILLISECONDS), MILLISECONDS)
.modifiers(toBsonDocumentOrNull(findOptions.getModifiers(), documentClass, codecRegistry))
.projection(toBsonDocumentOrNull(findOptions.getProjection(), documentClass, codecRegistry))
.sort(toBsonDocumentOrNull(findOptions.getSort(), documentClass, codecRegistry))
.cursorType(findOptions.getCursorType())
.noCursorTimeout(findOptions.isNoCursorTimeout())
.oplogReplay(findOptions.isOplogReplay())
.partial(findOptions.isPartial())
.slaveOk(getReadPreference().isSlaveOk())
.readConcern(getReadConcern())
.collation(findOptions.getCollation())
.comment(findOptions.getComment())
.hint(toBsonDocumentOrNull(findOptions.getHint(), documentClass, codecRegistry))
.min(toBsonDocumentOrNull(findOptions.getMin(), documentClass, codecRegistry))
.max(toBsonDocumentOrNull(findOptions.getMax(), documentClass, codecRegistry))
.maxScan(findOptions.getMaxScan())
.returnKey(findOptions.isReturnKey())
.showRecordId(findOptions.isShowRecordId())
.snapshot(findOptions.isSnapshot());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy