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

http://github.com/SpringSource/spring-data-mongodb · Java · 101 lines · 17 code · 11 blank · 73 comment · 0 complexity · a566d254a40a04fdc22d5867c4d9423e 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. /**
  20. * {@link ReactiveAggregationOperation} allows creation and execution of reactive MongoDB aggregation operations in a
  21. * fluent API style. <br />
  22. * The starting {@literal domainType} is used for mapping the {@link Aggregation} provided via {@code by} into the
  23. * MongoDB specific representation, as well as mapping back the resulting {@link org.bson.Document}. An alternative
  24. * input type for mapping the {@link Aggregation} can be provided by using
  25. * {@link org.springframework.data.mongodb.core.aggregation.TypedAggregation}.
  26. *
  27. * <pre>
  28. * <code>
  29. * aggregateAndReturn(Jedi.class)
  30. * .by(newAggregation(Human.class, project("These are not the droids you are looking for")))
  31. * .all();
  32. * </code>
  33. * </pre>
  34. *
  35. * @author Mark Paluch
  36. * @author Christoph Strobl
  37. * @since 2.0
  38. */
  39. public interface ReactiveAggregationOperation {
  40. /**
  41. * Start creating an aggregation operation that returns results mapped to the given domain type. <br />
  42. * Use {@link org.springframework.data.mongodb.core.aggregation.TypedAggregation} to specify a potentially different
  43. * input type for he aggregation.
  44. *
  45. * @param domainType must not be {@literal null}.
  46. * @return new instance of {@link ReactiveAggregation}. Never {@literal null}.
  47. * @throws IllegalArgumentException if domainType is {@literal null}.
  48. */
  49. <T> ReactiveAggregation<T> aggregateAndReturn(Class<T> domainType);
  50. /**
  51. * Collection override (optional).
  52. */
  53. interface AggregationOperationWithCollection<T> {
  54. /**
  55. * Explicitly set the name of the collection to perform the query on. <br />
  56. * Skip this step to use the default collection derived from the domain type.
  57. *
  58. * @param collection must not be {@literal null} nor {@literal empty}.
  59. * @return new instance of {@link AggregationOperationWithAggregation}. Never {@literal null}.
  60. * @throws IllegalArgumentException if collection is {@literal null} or empty.
  61. */
  62. AggregationOperationWithAggregation<T> inCollection(String collection);
  63. }
  64. /**
  65. * Trigger execution by calling one of the terminating methods.
  66. */
  67. interface TerminatingAggregationOperation<T> {
  68. /**
  69. * Apply pipeline operations as specified and stream all matching elements. <br />
  70. *
  71. * @return a {@link Flux} streaming all matching elements. Never {@literal null}.
  72. */
  73. Flux<T> all();
  74. }
  75. /**
  76. * Define the aggregation with pipeline stages.
  77. */
  78. interface AggregationOperationWithAggregation<T> {
  79. /**
  80. * Set the aggregation to be used.
  81. *
  82. * @param aggregation must not be {@literal null}.
  83. * @return new instance of {@link TerminatingAggregationOperation}. Never {@literal null}.
  84. * @throws IllegalArgumentException if aggregation is {@literal null}.
  85. */
  86. TerminatingAggregationOperation<T> by(Aggregation aggregation);
  87. }
  88. interface ReactiveAggregation<T>
  89. extends AggregationOperationWithCollection<T>, AggregationOperationWithAggregation<T> {}
  90. }