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

http://github.com/SpringSource/spring-data-mongodb · Java · 89 lines · 33 code · 13 blank · 43 comment · 1 complexity · 2e8fe665fb5f9ddec2ad6a23d6c66e8a MD5 · raw file

  1. /*
  2. * Copyright 2013-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.aggregation;
  17. import org.bson.Document;
  18. import org.springframework.data.domain.Sort;
  19. import org.springframework.data.domain.Sort.Direction;
  20. import org.springframework.data.domain.Sort.Order;
  21. import org.springframework.data.mongodb.core.aggregation.ExposedFields.FieldReference;
  22. import org.springframework.util.Assert;
  23. /**
  24. * Encapsulates the aggregation framework {@code $sort}-operation.
  25. * <p>
  26. * We recommend to use the static factory method {@link Aggregation#sort(Direction, String...)} instead of creating
  27. * instances of this class directly.
  28. *
  29. * @author Thomas Darimont
  30. * @author Oliver Gierke
  31. * @author Christoph Strobl
  32. * @author Mark Paluch
  33. * @since 1.3
  34. * @see <a href="https://docs.mongodb.com/manual/reference/operator/aggregation/sort/">MongoDB Aggregation Framework:
  35. * $sort</a>
  36. */
  37. public class SortOperation implements AggregationOperation {
  38. private final Sort sort;
  39. /**
  40. * Creates a new {@link SortOperation} for the given {@link Sort} instance.
  41. *
  42. * @param sort must not be {@literal null}.
  43. */
  44. public SortOperation(Sort sort) {
  45. Assert.notNull(sort, "Sort must not be null!");
  46. this.sort = sort;
  47. }
  48. public SortOperation and(Direction direction, String... fields) {
  49. return and(Sort.by(direction, fields));
  50. }
  51. public SortOperation and(Sort sort) {
  52. return new SortOperation(this.sort.and(sort));
  53. }
  54. /*
  55. * (non-Javadoc)
  56. * @see org.springframework.data.mongodb.core.aggregation.AggregationOperation#toDocument(org.springframework.data.mongodb.core.aggregation.AggregationOperationContext)
  57. */
  58. @Override
  59. public Document toDocument(AggregationOperationContext context) {
  60. Document object = new Document();
  61. for (Order order : sort) {
  62. // Check reference
  63. FieldReference reference = context.getReference(order.getProperty());
  64. object.put(reference.getRaw(), order.isAscending() ? 1 : -1);
  65. }
  66. return new Document(getOperator(), object);
  67. }
  68. /*
  69. * (non-Javadoc)
  70. * @see org.springframework.data.mongodb.core.aggregation.AggregationOperation#getOperator()
  71. */
  72. @Override
  73. public String getOperator() {
  74. return "$sort";
  75. }
  76. }