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

http://github.com/SpringSource/spring-data-mongodb · Java · 161 lines · 77 code · 22 blank · 62 comment · 4 complexity · 639ede4d563cd12eddae94b6014a3513 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.spel;
  17. import java.util.Collections;
  18. import java.util.HashMap;
  19. import java.util.HashSet;
  20. import java.util.Map;
  21. import java.util.Set;
  22. import org.springframework.expression.spel.ExpressionState;
  23. import org.springframework.expression.spel.ast.*;
  24. /**
  25. * An {@link ExpressionNode} representing an operator.
  26. *
  27. * @author Oliver Gierke
  28. * @author Thomas Darimont
  29. * @author Christoph Strobl
  30. * @author Mark Paluch
  31. */
  32. public class OperatorNode extends ExpressionNode {
  33. private static final Map<String, String> OPERATORS;
  34. private static final Set<Class> SUPPORTED_MATH_OPERATORS;
  35. static {
  36. Map<String, String> map = new HashMap<String, String>(14, 1);
  37. map.put("+", "$add");
  38. map.put("-", "$subtract");
  39. map.put("*", "$multiply");
  40. map.put("/", "$divide");
  41. map.put("%", "$mod");
  42. map.put("^", "$pow");
  43. map.put("==", "$eq");
  44. map.put("!=", "$ne");
  45. map.put(">", "$gt");
  46. map.put(">=", "$gte");
  47. map.put("<", "$lt");
  48. map.put("<=", "$lte");
  49. map.put("and", "$and");
  50. map.put("or", "$or");
  51. OPERATORS = Collections.unmodifiableMap(map);
  52. Set<Class> set = new HashSet<Class>(12, 1);
  53. set.add(OpMinus.class);
  54. set.add(OpPlus.class);
  55. set.add(OpMultiply.class);
  56. set.add(OpDivide.class);
  57. set.add(OpModulus.class);
  58. set.add(OperatorPower.class);
  59. set.add(OpNE.class);
  60. set.add(OpEQ.class);
  61. set.add(OpGT.class);
  62. set.add(OpGE.class);
  63. set.add(OpLT.class);
  64. set.add(OpLE.class);
  65. SUPPORTED_MATH_OPERATORS = Collections.unmodifiableSet(set);
  66. }
  67. private final Operator operator;
  68. /**
  69. * Creates a new {@link OperatorNode} from the given {@link Operator} and {@link ExpressionState}.
  70. *
  71. * @param node must not be {@literal null}.
  72. * @param state must not be {@literal null}.
  73. */
  74. OperatorNode(Operator node, ExpressionState state) {
  75. super(node, state);
  76. this.operator = node;
  77. }
  78. /*
  79. * (non-Javadoc)
  80. * @see org.springframework.data.mongodb.core.spel.ExpressionNode#isMathematicalOperation()
  81. */
  82. @Override
  83. public boolean isMathematicalOperation() {
  84. return SUPPORTED_MATH_OPERATORS.contains(operator.getClass());
  85. }
  86. /*
  87. * (non-Javadoc)
  88. * @see org.springframework.data.mongodb.core.spel.ExpressionNode#isConjunctionOperator()
  89. */
  90. @Override
  91. public boolean isLogicalOperator() {
  92. return operator instanceof OpOr || operator instanceof OpAnd;
  93. }
  94. /**
  95. * Returns whether the operator is unary.
  96. *
  97. * @return
  98. */
  99. public boolean isUnaryOperator() {
  100. return operator.getChildCount() == 1;
  101. }
  102. /**
  103. * Returns the Mongo expression of the operator.
  104. *
  105. * @return
  106. */
  107. public String getMongoOperator() {
  108. if (!OPERATORS.containsKey(operator.getOperatorName())) {
  109. throw new IllegalArgumentException(String.format(
  110. "Unknown operator name. Cannot translate %s into its MongoDB aggregation function representation.",
  111. operator.getOperatorName()));
  112. }
  113. return OPERATORS.get(operator.getOperatorName());
  114. }
  115. /**
  116. * Returns whether the operator is a unary minus, e.g. -1.
  117. *
  118. * @return
  119. */
  120. public boolean isUnaryMinus() {
  121. return isUnaryOperator() && operator instanceof OpMinus;
  122. }
  123. /**
  124. * Returns the left operand as {@link ExpressionNode}.
  125. *
  126. * @return
  127. */
  128. public ExpressionNode getLeft() {
  129. return from(operator.getLeftOperand());
  130. }
  131. /**
  132. * Returns the right operand as {@link ExpressionNode}.
  133. *
  134. * @return
  135. */
  136. public ExpressionNode getRight() {
  137. return from(operator.getRightOperand());
  138. }
  139. }