/interpreter/tags/at2dist091109/src/edu/vub/at/objects/natives/grammar/AGBegin.java

http://ambienttalk.googlecode.com/ · Java · 132 lines · 64 code · 15 blank · 53 comment · 6 complexity · f7f9c833fc4a00211f1034a74ce138a4 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGBegin.java created on 26-jul-2006 at 12:26:48
  4. * (c) Programming Technology Lab, 2006 - 2007
  5. * Authors: Tom Van Cutsem & Stijn Mostinckx
  6. *
  7. * Permission is hereby granted, free of charge, to any person
  8. * obtaining a copy of this software and associated documentation
  9. * files (the "Software"), to deal in the Software without
  10. * restriction, including without limitation the rights to use,
  11. * copy, modify, merge, publish, distribute, sublicense, and/or
  12. * sell copies of the Software, and to permit persons to whom the
  13. * Software is furnished to do so, subject to the following
  14. * conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be
  17. * included in all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  21. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  23. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  24. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  25. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. package edu.vub.at.objects.natives.grammar;
  29. import edu.vub.at.eval.Evaluator;
  30. import edu.vub.at.exceptions.InterpreterException;
  31. import edu.vub.at.exceptions.XTypeMismatch;
  32. import edu.vub.at.objects.ATAbstractGrammar;
  33. import edu.vub.at.objects.ATContext;
  34. import edu.vub.at.objects.ATObject;
  35. import edu.vub.at.objects.ATTable;
  36. import edu.vub.at.objects.grammar.ATBegin;
  37. import edu.vub.at.objects.grammar.ATStatement;
  38. import edu.vub.at.objects.mirrors.NativeClosure;
  39. import edu.vub.at.objects.natives.NATNumber;
  40. import edu.vub.at.objects.natives.NATText;
  41. import java.util.HashSet;
  42. import java.util.Set;
  43. /**
  44. * AGBegin represents the abstract grammar element of a list of statements.
  45. * Examples:
  46. * <tt>a ; b ; c</tt>
  47. *
  48. * @author tvcutsem
  49. */
  50. public final class AGBegin extends NATAbstractGrammar implements ATBegin {
  51. private final ATTable statements_;
  52. // contains a cached version of the expression's free variables
  53. private Set freeVars_;
  54. public AGBegin(ATTable statements) {
  55. statements_ = statements;
  56. }
  57. /**
  58. * AGBEGIN encapsulates a sequence of statements and evaluates each of these statements in turn.
  59. * The return value is the value of the last statement.
  60. *
  61. * AGBEGIN([statement | statements]).eval(ctx) = statement.eval(ctx) ; BEGIN(statements).eval(ctx)
  62. * AGBEGIN([statement]).eval(ctx) = statement.eval(ctx)
  63. *
  64. * Note that this implementation of begin is *not* tail-recursive.
  65. * Tail-recursion is made impossible because Java will not allow a return
  66. * to the caller until the last expression is also evaluated. Tail-recursion optimalisation
  67. * requires a minimal form of explicit continuations.
  68. */
  69. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  70. NATNumber siz = statements_.base_length().asNativeNumber();
  71. int lastIdx = siz.javaValue;
  72. if (lastIdx == 0) {
  73. return Evaluator.getNil();
  74. }
  75. for (int i = 1; i < lastIdx; i++) {
  76. statements_.base_at(NATNumber.atValue(i)).meta_eval(ctx);
  77. }
  78. return statements_.base_at(NATNumber.atValue(lastIdx)).meta_eval(ctx);
  79. }
  80. /**
  81. * AGBEGIN(statements*).quote(ctx) = AGBEGIN((statements*).quote(ctx))
  82. */
  83. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  84. return new AGBegin(statements_.meta_quote(ctx).asTable());
  85. }
  86. public ATTable base_statements() { return statements_; }
  87. public NATText meta_print() throws InterpreterException {
  88. return Evaluator.printAsStatements(statements_);
  89. }
  90. public ATBegin asBegin() throws XTypeMismatch {
  91. return this;
  92. }
  93. /**
  94. * FV({ stmt1; stmt2; ... }) = FV(stmt1) U FV(stmt2) U ... \ (IV(stmt1) U IV(stmt2) U ...) }
  95. */
  96. public Set impl_freeVariables() throws InterpreterException {
  97. if (freeVars_ == null) {
  98. freeVars_ = new HashSet();
  99. final Set boundVars = new HashSet();
  100. statements_.base_each_(new NativeClosure(this) {
  101. public ATObject base_apply(ATTable args) throws InterpreterException {
  102. ATAbstractGrammar stmt = this.get(args, 1).asAbstractGrammar();
  103. freeVars_.addAll(stmt.impl_freeVariables());
  104. if (stmt.isDefinition()) {
  105. boundVars.addAll(stmt.asDefinition().impl_introducedVariables());
  106. }
  107. return stmt;
  108. }
  109. });
  110. freeVars_.removeAll(boundVars);
  111. }
  112. return freeVars_;
  113. }
  114. public Set impl_quotedFreeVariables() throws InterpreterException {
  115. return statements_.impl_quotedFreeVariables();
  116. }
  117. }