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

https://github.com/mongodb/mongo-java-driver · Java · 88 lines · 60 code · 13 blank · 15 comment · 7 complexity · bd57ece6ca2ad882f707a151262027c2 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.async.client;
  17. import com.mongodb.Function;
  18. import com.mongodb.async.AsyncBatchCursor;
  19. import com.mongodb.async.SingleResultCallback;
  20. import java.util.ArrayList;
  21. import java.util.List;
  22. class MappingAsyncBatchCursor<T, U> implements AsyncBatchCursor<U> {
  23. private final AsyncBatchCursor<T> batchCursor;
  24. private final Function<T, U> mapper;
  25. MappingAsyncBatchCursor(final AsyncBatchCursor<T> batchCursor, final Function<T, U> mapper) {
  26. this.batchCursor = batchCursor;
  27. this.mapper = mapper;
  28. }
  29. @Override
  30. public void next(final SingleResultCallback<List<U>> callback) {
  31. batchCursor.next(getMappingCallback(callback));
  32. }
  33. @Override
  34. public void tryNext(final SingleResultCallback<List<U>> callback) {
  35. batchCursor.tryNext(getMappingCallback(callback));
  36. }
  37. @Override
  38. public void setBatchSize(final int batchSize) {
  39. batchCursor.setBatchSize(batchSize);
  40. }
  41. @Override
  42. public int getBatchSize() {
  43. return batchCursor.getBatchSize();
  44. }
  45. @Override
  46. public boolean isClosed() {
  47. return batchCursor.isClosed();
  48. }
  49. @Override
  50. public void close() {
  51. batchCursor.close();
  52. }
  53. private SingleResultCallback<List<T>> getMappingCallback(final SingleResultCallback<List<U>> callback) {
  54. return new SingleResultCallback<List<T>>() {
  55. @Override
  56. public void onResult(final List<T> results, final Throwable t) {
  57. if (t != null) {
  58. callback.onResult(null, t);
  59. } else if (results != null) {
  60. try {
  61. List<U> mappedResults = new ArrayList<U>();
  62. for (T result : results) {
  63. mappedResults.add(mapper.apply(result));
  64. }
  65. callback.onResult(mappedResults, null);
  66. } catch (Throwable t1) {
  67. callback.onResult(null, t1);
  68. }
  69. } else {
  70. callback.onResult(null, null);
  71. }
  72. }
  73. };
  74. }
  75. }