/driver-async/src/main/com/mongodb/async/client/ListCollectionsIterableImpl.java

http://github.com/mongodb/mongo-java-driver · Java · 126 lines · 91 code · 20 blank · 15 comment · 1 complexity · 989b02c6aa1fd5d4b4c561c9f337eac2 MD5 · raw file

  1. /*
  2. * Copyright 2015 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.async.client;
  17. import com.mongodb.Block;
  18. import com.mongodb.Function;
  19. import com.mongodb.ReadPreference;
  20. import com.mongodb.async.AsyncBatchCursor;
  21. import com.mongodb.async.SingleResultCallback;
  22. import com.mongodb.operation.AsyncOperationExecutor;
  23. import com.mongodb.operation.ListCollectionsOperation;
  24. import org.bson.BsonDocument;
  25. import org.bson.codecs.configuration.CodecRegistry;
  26. import org.bson.conversions.Bson;
  27. import java.util.Collection;
  28. import java.util.concurrent.TimeUnit;
  29. import static com.mongodb.assertions.Assertions.notNull;
  30. import static java.util.concurrent.TimeUnit.MILLISECONDS;
  31. final class ListCollectionsIterableImpl<TResult> implements ListCollectionsIterable<TResult> {
  32. private final String databaseName;
  33. private final Class<TResult> resultClass;
  34. private final ReadPreference readPreference;
  35. private final CodecRegistry codecRegistry;
  36. private final AsyncOperationExecutor executor;
  37. private Bson filter;
  38. private int batchSize;
  39. private long maxTimeMS;
  40. ListCollectionsIterableImpl(final String databaseName, final Class<TResult> resultClass, final CodecRegistry codecRegistry,
  41. final ReadPreference readPreference, final AsyncOperationExecutor executor) {
  42. this.databaseName = notNull("databaseName", databaseName);
  43. this.resultClass = notNull("resultClass", resultClass);
  44. this.codecRegistry = notNull("codecRegistry", codecRegistry);
  45. this.readPreference = notNull("readPreference", readPreference);
  46. this.executor = notNull("executor", executor);
  47. }
  48. @Override
  49. public ListCollectionsIterable<TResult> filter(final Bson filter) {
  50. notNull("filter", filter);
  51. this.filter = filter;
  52. return this;
  53. }
  54. @Override
  55. public ListCollectionsIterable<TResult> maxTime(final long maxTime, final TimeUnit timeUnit) {
  56. notNull("timeUnit", timeUnit);
  57. this.maxTimeMS = MILLISECONDS.convert(maxTime, timeUnit);
  58. return this;
  59. }
  60. @Override
  61. public ListCollectionsIterable<TResult> batchSize(final int batchSize) {
  62. this.batchSize = batchSize;
  63. return this;
  64. }
  65. @Override
  66. public void first(final SingleResultCallback<TResult> callback) {
  67. notNull("callback", callback);
  68. execute(createListCollectionsOperation().batchSize(-1)).first(callback);
  69. }
  70. @Override
  71. public void forEach(final Block<? super TResult> block, final SingleResultCallback<Void> callback) {
  72. notNull("block", block);
  73. notNull("callback", callback);
  74. execute().forEach(block, callback);
  75. }
  76. @Override
  77. public <A extends Collection<? super TResult>> void into(final A target, final SingleResultCallback<A> callback) {
  78. notNull("target", target);
  79. notNull("callback", callback);
  80. execute().into(target, callback);
  81. }
  82. @Override
  83. public <U> MongoIterable<U> map(final Function<TResult, U> mapper) {
  84. return new MappingIterable<TResult, U>(this, mapper);
  85. }
  86. @Override
  87. public void batchCursor(final SingleResultCallback<AsyncBatchCursor<TResult>> callback) {
  88. notNull("callback", callback);
  89. execute().batchCursor(callback);
  90. }
  91. private MongoIterable<TResult> execute() {
  92. return execute(createListCollectionsOperation());
  93. }
  94. private MongoIterable<TResult> execute(final ListCollectionsOperation<TResult> operation) {
  95. return new OperationIterable<TResult>(operation, readPreference, executor);
  96. }
  97. private ListCollectionsOperation<TResult> createListCollectionsOperation() {
  98. return new ListCollectionsOperation<TResult>(databaseName, codecRegistry.get(resultClass))
  99. .filter(toBsonDocument(filter))
  100. .batchSize(batchSize)
  101. .maxTime(maxTimeMS, MILLISECONDS);
  102. }
  103. private BsonDocument toBsonDocument(final Bson document) {
  104. return document == null ? null : document.toBsonDocument(BsonDocument.class, codecRegistry);
  105. }
  106. }