/driver-reactive-streams/src/main/com/mongodb/reactivestreams/client/internal/ListCollectionsPublisherImpl.java

http://github.com/mongodb/mongo-java-driver · Java · 66 lines · 40 code · 11 blank · 15 comment · 0 complexity · 0bca87a574149dd5438aa5b20ca40645 MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.reactivestreams.client.internal;
  17. import com.mongodb.ReadConcern;
  18. import com.mongodb.internal.async.AsyncBatchCursor;
  19. import com.mongodb.internal.operation.AsyncReadOperation;
  20. import com.mongodb.lang.Nullable;
  21. import com.mongodb.reactivestreams.client.ClientSession;
  22. import com.mongodb.reactivestreams.client.ListCollectionsPublisher;
  23. import org.bson.conversions.Bson;
  24. import java.util.concurrent.TimeUnit;
  25. import static com.mongodb.assertions.Assertions.notNull;
  26. import static java.util.concurrent.TimeUnit.MILLISECONDS;
  27. final class ListCollectionsPublisherImpl<T> extends BatchCursorPublisher<T> implements ListCollectionsPublisher<T> {
  28. private final boolean collectionNamesOnly;
  29. private Bson filter;
  30. private long maxTimeMS;
  31. ListCollectionsPublisherImpl(
  32. @Nullable final ClientSession clientSession,
  33. final MongoOperationPublisher<T> mongoOperationPublisher,
  34. final boolean collectionNamesOnly) {
  35. super(clientSession, mongoOperationPublisher.withReadConcern(ReadConcern.DEFAULT));
  36. this.collectionNamesOnly = collectionNamesOnly;
  37. }
  38. public ListCollectionsPublisherImpl<T> maxTime(final long maxTime, final TimeUnit timeUnit) {
  39. notNull("timeUnit", timeUnit);
  40. this.maxTimeMS = MILLISECONDS.convert(maxTime, timeUnit);
  41. return this;
  42. }
  43. public ListCollectionsPublisherImpl<T> batchSize(final int batchSize) {
  44. super.batchSize(batchSize);
  45. return this;
  46. }
  47. public ListCollectionsPublisherImpl<T> filter(@Nullable final Bson filter) {
  48. this.filter = filter;
  49. return this;
  50. }
  51. AsyncReadOperation<AsyncBatchCursor<T>> asAsyncReadOperation(final int initialBatchSize) {
  52. return getOperations().listCollections(getNamespace().getDatabaseName(), getDocumentClass(), filter, collectionNamesOnly,
  53. initialBatchSize, maxTimeMS);
  54. }
  55. }