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

http://github.com/mongodb/mongo-java-driver · Java · 158 lines · 129 code · 14 blank · 15 comment · 24 complexity · 6031b0bef765206485d9508eea2a5967 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008-2014 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.AsyncReadOperation;
  24. import java.util.Collection;
  25. import java.util.List;
  26. import static org.bson.assertions.Assertions.notNull;
  27. class OperationIterable<T> implements MongoIterable<T> {
  28. private final AsyncReadOperation<? extends AsyncBatchCursor<T>> operation;
  29. private final ReadPreference readPreference;
  30. private final AsyncOperationExecutor executor;
  31. OperationIterable(final AsyncReadOperation<? extends AsyncBatchCursor<T>> operation, final ReadPreference readPreference,
  32. final AsyncOperationExecutor executor) {
  33. this.operation = notNull("operation", operation);
  34. this.readPreference = notNull("readPreference", readPreference);
  35. this.executor = notNull("executor", executor);
  36. }
  37. @Override
  38. public void forEach(final Block<? super T> block, final SingleResultCallback<Void> callback) {
  39. notNull("block", block);
  40. notNull("callback", callback);
  41. batchCursor(new SingleResultCallback<AsyncBatchCursor<T>>() {
  42. @Override
  43. public void onResult(final AsyncBatchCursor<T> batchCursor, final Throwable t) {
  44. if (t != null) {
  45. callback.onResult(null, t);
  46. } else {
  47. loopCursor(batchCursor, block, callback);
  48. }
  49. }
  50. });
  51. }
  52. @Override
  53. public <A extends Collection<? super T>> void into(final A target, final SingleResultCallback<A> callback) {
  54. notNull("target", target);
  55. notNull("callback", callback);
  56. batchCursor(new SingleResultCallback<AsyncBatchCursor<T>>() {
  57. @Override
  58. public void onResult(final AsyncBatchCursor<T> batchCursor, final Throwable t) {
  59. if (t != null) {
  60. callback.onResult(null, t);
  61. } else {
  62. loopCursor(batchCursor, new Block<T>() {
  63. @Override
  64. public void apply(final T t) {
  65. target.add(t);
  66. }
  67. }, new SingleResultCallback<Void>() {
  68. @Override
  69. public void onResult(final Void result, final Throwable t) {
  70. if (t != null) {
  71. callback.onResult(null, t);
  72. } else {
  73. callback.onResult(target, null);
  74. }
  75. }
  76. });
  77. }
  78. }
  79. });
  80. }
  81. @Override
  82. public void first(final SingleResultCallback<T> callback) {
  83. notNull("callback", callback);
  84. batchCursor(new SingleResultCallback<AsyncBatchCursor<T>>() {
  85. @Override
  86. public void onResult(final AsyncBatchCursor<T> batchCursor, final Throwable t) {
  87. if (t != null) {
  88. callback.onResult(null, t);
  89. } else {
  90. batchCursor.setBatchSize(1);
  91. batchCursor.next(new SingleResultCallback<List<T>>() {
  92. @Override
  93. public void onResult(final List<T> results, final Throwable t) {
  94. batchCursor.close();
  95. if (t != null) {
  96. callback.onResult(null, t);
  97. } else if (results == null) {
  98. callback.onResult(null, null);
  99. } else {
  100. callback.onResult(results.get(0), null);
  101. }
  102. }
  103. });
  104. }
  105. }
  106. });
  107. }
  108. @Override
  109. public <U> MongoIterable<U> map(final Function<T, U> mapper) {
  110. return new MappingIterable<T, U>(this, mapper);
  111. }
  112. @Override
  113. public OperationIterable<T> batchSize(final int batchSize) {
  114. throw new UnsupportedOperationException();
  115. }
  116. @SuppressWarnings("unchecked")
  117. @Override
  118. public void batchCursor(final SingleResultCallback<AsyncBatchCursor<T>> callback) {
  119. notNull("callback", callback);
  120. executor.execute((AsyncReadOperation<AsyncBatchCursor<T>>) operation, readPreference, callback);
  121. }
  122. private void loopCursor(final AsyncBatchCursor<T> batchCursor, final Block<? super T> block,
  123. final SingleResultCallback<Void> callback) {
  124. batchCursor.next(new SingleResultCallback<List<T>>() {
  125. @Override
  126. public void onResult(final List<T> results, final Throwable t) {
  127. if (t != null || results == null) {
  128. batchCursor.close();
  129. callback.onResult(null, t);
  130. } else {
  131. try {
  132. for (T result : results) {
  133. block.apply(result);
  134. }
  135. loopCursor(batchCursor, block, callback);
  136. } catch (Throwable tr) {
  137. batchCursor.close();
  138. callback.onResult(null, tr);
  139. }
  140. }
  141. }
  142. });
  143. }
  144. }