PageRenderTime 147ms CodeModel.GetById 28ms RepoModel.GetById 0ms app.codeStats 1ms

/jEdit/tags/jedit-4-1-pre5/bsh/BSHForStatement.java

#
Java | 152 lines | 68 code | 23 blank | 61 comment | 12 complexity | 45ff1c90141df4057f124256d38b6a3a MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*****************************************************************************
  2. * *
  3. * This file is part of the BeanShell Java Scripting distribution. *
  4. * Documentation and updates may be found at http://www.beanshell.org/ *
  5. * *
  6. * Sun Public License Notice: *
  7. * *
  8. * The contents of this file are subject to the Sun Public License Version *
  9. * 1.0 (the "License"); you may not use this file except in compliance with *
  10. * the License. A copy of the License is available at http://www.sun.com *
  11. * *
  12. * The Original Code is BeanShell. The Initial Developer of the Original *
  13. * Code is Pat Niemeyer. Portions created by Pat Niemeyer are Copyright *
  14. * (C) 2000. All Rights Reserved. *
  15. * *
  16. * GNU Public License Notice: *
  17. * *
  18. * Alternatively, the contents of this file may be used under the terms of *
  19. * the GNU Lesser General Public License (the "LGPL"), in which case the *
  20. * provisions of LGPL are applicable instead of those above. If you wish to *
  21. * allow use of your version of this file only under the terms of the LGPL *
  22. * and not to allow others to use your version of this file under the SPL, *
  23. * indicate your decision by deleting the provisions above and replace *
  24. * them with the notice and other provisions required by the LGPL. If you *
  25. * do not delete the provisions above, a recipient may use your version of *
  26. * this file under either the SPL or the LGPL. *
  27. * *
  28. * Patrick Niemeyer (pat@pat.net) *
  29. * Author of Learning Java, O'Reilly & Associates *
  30. * http://www.pat.net/~pat/ *
  31. * *
  32. *****************************************************************************/
  33. package bsh;
  34. /**
  35. Implementation of the for(;;) statement.
  36. */
  37. class BSHForStatement extends SimpleNode implements ParserConstants
  38. {
  39. public boolean hasForInit;
  40. public boolean hasExpression;
  41. public boolean hasForUpdate;
  42. private SimpleNode forInit;
  43. private SimpleNode expression;
  44. private SimpleNode forUpdate;
  45. private SimpleNode statement;
  46. private boolean parsed;
  47. BSHForStatement(int id) { super(id); }
  48. public Object eval(CallStack callstack , Interpreter interpreter)
  49. throws EvalError
  50. {
  51. int i = 0;
  52. if(hasForInit)
  53. forInit = ((SimpleNode)jjtGetChild(i++));
  54. if(hasExpression)
  55. expression = ((SimpleNode)jjtGetChild(i++));
  56. if(hasForUpdate)
  57. forUpdate = ((SimpleNode)jjtGetChild(i++));
  58. if(i < jjtGetNumChildren()) // should normally be
  59. statement = ((SimpleNode)jjtGetChild(i));
  60. NameSpace enclosingNameSpace= callstack.top();
  61. BlockNameSpace forNameSpace = new BlockNameSpace( enclosingNameSpace );
  62. /*
  63. Note: some interesting things are going on here.
  64. 1) We swap instead of push... The primary mode of operation
  65. acts like we are in the enclosing namespace... (super must be
  66. preserved, etc.)
  67. 2) We do *not* call the body block eval with the namespace
  68. override. Instead we allow it to create a second subordinate
  69. BlockNameSpace child of the forNameSpace. Variable propogation
  70. still works through the chain, but the block's child cleans the
  71. state between iteration.
  72. (which is correct Java behavior... see forscope4.bsh)
  73. */
  74. // put forNameSpace it on the top of the stack
  75. // Note: it's important that there is only one exit point from this
  76. // method so that we can swap back the namespace.
  77. callstack.swap( forNameSpace );
  78. // If we wanted untyped variables in the for-init to be local, instead
  79. // of having side effects in the parent context of the for-loop we
  80. // could setInitMode() here to capture them and make them local.
  81. ///forNameSpace.setInitMode(true);
  82. // Do the for init
  83. if ( hasForInit )
  84. forInit.eval( callstack, interpreter );
  85. // If we had turned on init mode to capture untyped for-init vars
  86. // and make them local to the for-loop scope we would turn it off here
  87. //forNameSpace.setInitMode(false);
  88. Object returnControl = Primitive.VOID;
  89. while(true)
  90. {
  91. if ( hasExpression )
  92. {
  93. boolean cond = BSHIfStatement.evaluateCondition(
  94. expression, callstack, interpreter );
  95. if ( !cond )
  96. break;
  97. }
  98. boolean breakout = false; // switch eats a multi-level break here?
  99. if ( statement != null ) // not empty statement
  100. {
  101. // do *not* invoke special override for block... (see above)
  102. Object ret = statement.eval( callstack, interpreter );
  103. if (ret instanceof ReturnControl)
  104. {
  105. switch(((ReturnControl)ret).kind)
  106. {
  107. case RETURN:
  108. returnControl = ret;
  109. breakout = true;
  110. break;
  111. case CONTINUE:
  112. break;
  113. case BREAK:
  114. breakout = true;
  115. break;
  116. }
  117. }
  118. }
  119. if ( breakout )
  120. break;
  121. if ( hasForUpdate )
  122. forUpdate.eval( callstack, interpreter );
  123. }
  124. callstack.swap( enclosingNameSpace ); // put it back
  125. return returnControl;
  126. }
  127. }