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

http://github.com/SpringSource/spring-data-mongodb · Java · 94 lines · 44 code · 12 blank · 38 comment · 1 complexity · da98ca24be573ebbcf95e7bac49db395 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.HashSet;
  19. import java.util.Set;
  20. import org.springframework.expression.spel.ExpressionState;
  21. import org.springframework.expression.spel.ast.BooleanLiteral;
  22. import org.springframework.expression.spel.ast.FloatLiteral;
  23. import org.springframework.expression.spel.ast.IntLiteral;
  24. import org.springframework.expression.spel.ast.Literal;
  25. import org.springframework.expression.spel.ast.LongLiteral;
  26. import org.springframework.expression.spel.ast.NullLiteral;
  27. import org.springframework.expression.spel.ast.RealLiteral;
  28. import org.springframework.expression.spel.ast.StringLiteral;
  29. import org.springframework.lang.Nullable;
  30. /**
  31. * A node representing a literal in an expression.
  32. *
  33. * @author Oliver Gierke
  34. * @author Christoph Strobl
  35. * @author Mark Paluch
  36. */
  37. public class LiteralNode extends ExpressionNode {
  38. private static final Set<Class<?>> SUPPORTED_LITERAL_TYPES;
  39. private final Literal literal;
  40. static {
  41. Set<Class<?>> supportedTypes = new HashSet<Class<?>>(7, 1);
  42. supportedTypes.add(BooleanLiteral.class);
  43. supportedTypes.add(FloatLiteral.class);
  44. supportedTypes.add(IntLiteral.class);
  45. supportedTypes.add(LongLiteral.class);
  46. supportedTypes.add(NullLiteral.class);
  47. supportedTypes.add(RealLiteral.class);
  48. supportedTypes.add(StringLiteral.class);
  49. SUPPORTED_LITERAL_TYPES = Collections.unmodifiableSet(supportedTypes);
  50. }
  51. /**
  52. * Creates a new {@link LiteralNode} from the given {@link Literal} and {@link ExpressionState}.
  53. *
  54. * @param node must not be {@literal null}.
  55. * @param state must not be {@literal null}.
  56. */
  57. LiteralNode(Literal node, ExpressionState state) {
  58. super(node, state);
  59. this.literal = node;
  60. }
  61. /**
  62. * Returns whether the given {@link ExpressionNode} is a unary minus.
  63. *
  64. * @param parent
  65. * @return
  66. */
  67. public boolean isUnaryMinus(@Nullable ExpressionNode parent) {
  68. if (!(parent instanceof OperatorNode)) {
  69. return false;
  70. }
  71. OperatorNode operator = (OperatorNode) parent;
  72. return operator.isUnaryMinus();
  73. }
  74. /*
  75. * (non-Javadoc)
  76. * @see org.springframework.data.mongodb.core.spel.ExpressionNode#isLiteral()
  77. */
  78. @Override
  79. public boolean isLiteral() {
  80. return SUPPORTED_LITERAL_TYPES.contains(literal.getClass());
  81. }
  82. }