/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ReactiveAggregationOperationSupport.java

http://github.com/SpringSource/spring-data-mongodb · Java · 129 lines · 58 code · 27 blank · 44 comment · 4 complexity · d5b7ceef1467472e50f51ece3e37a970 MD5 · raw file

  1. /*
  2. * Copyright 2017-2021 the original author or authors.
  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. * https://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 org.springframework.data.mongodb.core;
  17. import reactor.core.publisher.Flux;
  18. import org.springframework.data.mongodb.core.aggregation.Aggregation;
  19. import org.springframework.data.mongodb.core.aggregation.TypedAggregation;
  20. import org.springframework.util.Assert;
  21. import org.springframework.util.StringUtils;
  22. /**
  23. * Implementation of {@link ReactiveAggregationOperation} operating directly on {@link ReactiveMongoTemplate}.
  24. *
  25. * @author Mark Paluch
  26. * @autor Christoph Strobl
  27. * @since 2.0
  28. */
  29. class ReactiveAggregationOperationSupport implements ReactiveAggregationOperation {
  30. private final ReactiveMongoTemplate template;
  31. /**
  32. * Create new instance of {@link ReactiveAggregationOperationSupport}.
  33. *
  34. * @param template must not be {@literal null}.
  35. * @throws IllegalArgumentException if template is {@literal null}.
  36. */
  37. ReactiveAggregationOperationSupport(ReactiveMongoTemplate template) {
  38. Assert.notNull(template, "Template must not be null!");
  39. this.template = template;
  40. }
  41. /*
  42. * (non-Javadoc)
  43. * @see org.springframework.data.mongodb.core.ReactiveAggregationOperation#aggregateAndReturn(java.lang.Class)
  44. */
  45. @Override
  46. public <T> ReactiveAggregation<T> aggregateAndReturn(Class<T> domainType) {
  47. Assert.notNull(domainType, "DomainType must not be null!");
  48. return new ReactiveAggregationSupport<>(template, domainType, null, null);
  49. }
  50. static class ReactiveAggregationSupport<T>
  51. implements AggregationOperationWithAggregation<T>, ReactiveAggregation<T>, TerminatingAggregationOperation<T> {
  52. private final ReactiveMongoTemplate template;
  53. private final Class<T> domainType;
  54. private final Aggregation aggregation;
  55. private final String collection;
  56. ReactiveAggregationSupport(ReactiveMongoTemplate template, Class<T> domainType, Aggregation aggregation,
  57. String collection) {
  58. this.template = template;
  59. this.domainType = domainType;
  60. this.aggregation = aggregation;
  61. this.collection = collection;
  62. }
  63. /*
  64. * (non-Javadoc)
  65. * @see org.springframework.data.mongodb.core.ReactiveAggregationOperation.AggregationOperationWithCollection#inCollection(java.lang.String)
  66. */
  67. @Override
  68. public AggregationOperationWithAggregation<T> inCollection(String collection) {
  69. Assert.hasText(collection, "Collection must not be null nor empty!");
  70. return new ReactiveAggregationSupport<>(template, domainType, aggregation, collection);
  71. }
  72. /*
  73. * (non-Javadoc)
  74. * @see org.springframework.data.mongodb.core.ReactiveAggregationOperation.AggregationOperationWithAggregation#by(org.springframework.data.mongodb.core.Aggregation)
  75. */
  76. @Override
  77. public TerminatingAggregationOperation<T> by(Aggregation aggregation) {
  78. Assert.notNull(aggregation, "Aggregation must not be null!");
  79. return new ReactiveAggregationSupport<>(template, domainType, aggregation, collection);
  80. }
  81. /*
  82. * (non-Javadoc)
  83. * @see org.springframework.data.mongodb.core.ReactiveAggregationOperation.TerminatingAggregationOperation#all()
  84. */
  85. @Override
  86. public Flux<T> all() {
  87. return template.aggregate(aggregation, getCollectionName(aggregation), domainType);
  88. }
  89. private String getCollectionName(Aggregation aggregation) {
  90. if (StringUtils.hasText(collection)) {
  91. return collection;
  92. }
  93. if (aggregation instanceof TypedAggregation) {
  94. TypedAggregation<?> typedAggregation = (TypedAggregation<?>) aggregation;
  95. if (typedAggregation.getInputType() != null) {
  96. return template.getCollectionName(typedAggregation.getInputType());
  97. }
  98. }
  99. return template.getCollectionName(domainType);
  100. }
  101. }
  102. }