/src/main/org/mongodb/mql/JJTMQLState.java

http://github.com/geir/mongo-java-driver · Java · 140 lines · 81 code · 18 blank · 41 comment · 6 complexity · d472c209e9f41c99c3f6329c2e768361 MD5 · raw file

  1. /**
  2. * See the NOTICE.txt file distributed with this work for
  3. * information regarding copyright ownership.
  4. *
  5. * The authors license this file to you under the
  6. * Apache License, Version 2.0 (the "License"); you may not use
  7. * this file except in compliance with the License. You may
  8. * obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.mongodb.mql;
  20. public class JJTMQLState {
  21. private java.util.List nodes;
  22. private java.util.List marks;
  23. private int sp; // number of nodes on stack
  24. private int mk; // current mark
  25. private boolean node_created;
  26. public JJTMQLState() {
  27. nodes = new java.util.ArrayList();
  28. marks = new java.util.ArrayList();
  29. sp = 0;
  30. mk = 0;
  31. }
  32. /* Determines whether the current node was actually closed and
  33. pushed. This should only be called in the final user action of a
  34. node scope. */
  35. public boolean nodeCreated() {
  36. return node_created;
  37. }
  38. /* Call this to reinitialize the node stack. It is called
  39. automatically by the parser's ReInit() method. */
  40. public void reset() {
  41. nodes.clear();
  42. marks.clear();
  43. sp = 0;
  44. mk = 0;
  45. }
  46. /* Returns the root node of the AST. It only makes sense to call
  47. this after a successful parse. */
  48. public Node rootNode() {
  49. return (Node) nodes.get(0);
  50. }
  51. /* Pushes a node on to the stack. */
  52. public void pushNode(Node n) {
  53. nodes.add(n);
  54. ++sp;
  55. }
  56. /* Returns the node on the top of the stack, and remove it from the
  57. stack. */
  58. public Node popNode() {
  59. if (--sp < mk) {
  60. mk = ((Integer) marks.remove(marks.size() - 1)).intValue();
  61. }
  62. return (Node) nodes.remove(nodes.size() - 1);
  63. }
  64. /* Returns the node currently on the top of the stack. */
  65. public Node peekNode() {
  66. return (Node) nodes.get(nodes.size() - 1);
  67. }
  68. /* Returns the number of children on the stack in the current node
  69. scope. */
  70. public int nodeArity() {
  71. return sp - mk;
  72. }
  73. public void clearNodeScope(Node n) {
  74. while (sp > mk) {
  75. popNode();
  76. }
  77. mk = ((Integer) marks.remove(marks.size() - 1)).intValue();
  78. }
  79. public void openNodeScope(Node n) {
  80. marks.add(new Integer(mk));
  81. mk = sp;
  82. n.jjtOpen();
  83. }
  84. /* A definite node is constructed from a specified number of
  85. children. That number of nodes are popped from the stack and
  86. made the children of the definite node. Then the definite node
  87. is pushed on to the stack. */
  88. public void closeNodeScope(Node n, int num) {
  89. mk = ((Integer) marks.remove(marks.size() - 1)).intValue();
  90. while (num-- > 0) {
  91. Node c = popNode();
  92. c.jjtSetParent(n);
  93. n.jjtAddChild(c, num);
  94. }
  95. n.jjtClose();
  96. pushNode(n);
  97. node_created = true;
  98. }
  99. /* A conditional node is constructed if its condition is true. All
  100. the nodes that have been pushed since the node was opened are
  101. made children of the conditional node, which is then pushed
  102. on to the stack. If the condition is false the node is not
  103. constructed and they are left on the stack. */
  104. public void closeNodeScope(Node n, boolean condition) {
  105. if (condition) {
  106. int a = nodeArity();
  107. mk = ((Integer) marks.remove(marks.size() - 1)).intValue();
  108. while (a-- > 0) {
  109. Node c = popNode();
  110. c.jjtSetParent(n);
  111. n.jjtAddChild(c, a);
  112. }
  113. n.jjtClose();
  114. pushNode(n);
  115. node_created = true;
  116. } else {
  117. mk = ((Integer) marks.remove(marks.size() - 1)).intValue();
  118. node_created = false;
  119. }
  120. }
  121. }
  122. /* JavaCC - OriginalChecksum=bd41e031be991badd02f7b7471d5d3d4 (do not edit this line) */