/interpreter/tags/at2dist041108/src/edu/vub/at/objects/natives/grammar/AGMultiAssignment.java

http://ambienttalk.googlecode.com/ · Java · 121 lines · 53 code · 16 blank · 52 comment · 6 complexity · 0c77da763fbf8b0add8442c290e5bfc4 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGMultiAssignment.java created on 18-aug-2006 at 9:31:38
  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.PartialBinder;
  30. import edu.vub.at.exceptions.InterpreterException;
  31. import edu.vub.at.objects.ATContext;
  32. import edu.vub.at.objects.ATObject;
  33. import edu.vub.at.objects.ATTable;
  34. import edu.vub.at.objects.grammar.ATExpression;
  35. import edu.vub.at.objects.grammar.ATMultiAssignment;
  36. import edu.vub.at.objects.natives.NATText;
  37. import java.util.HashSet;
  38. import java.util.Set;
  39. /**
  40. * @author tvc
  41. *
  42. * The native implementation of a multiple assignment AG element.
  43. */
  44. public final class AGMultiAssignment extends NATAbstractGrammar implements ATMultiAssignment {
  45. private final ATTable parameters_;
  46. private final ATExpression valueExp_;
  47. private final PartialBinder binderPartialFunction_;
  48. public AGMultiAssignment(ATTable par, ATExpression val) throws InterpreterException {
  49. parameters_ = par;
  50. valueExp_ = val;
  51. binderPartialFunction_ = PartialBinder.calculateResidual("multi-assignment", par);
  52. }
  53. public ATTable base_parameters() { return parameters_; }
  54. public ATExpression base_valueExpression() { return valueExp_; }
  55. /**
  56. * To evaluate a multiple assignment, evaluate the right hand side to a table
  57. * and assign the parameters on the left hand side to the 'arguments' of the right hand side,
  58. * almost as if they were bound during a function call (the parameters are assigned instead of defined).
  59. *
  60. * AGMULTIASS(par,val).eval(ctx) = assign(ctx.scope, par, val.eval(ctx))
  61. *
  62. * @return the evaluated arguments table
  63. */
  64. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  65. ATTable args = valueExp_.meta_eval(ctx).asTable();
  66. PartialBinder.assignArgsToParams(binderPartialFunction_, ctx, args);
  67. return args;
  68. }
  69. /**
  70. * AGMULTIASS(par,val).quote(ctx) = AGMULTIASS(par.quote(ctx), val.quote(ctx))
  71. */
  72. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  73. return new AGMultiAssignment(parameters_.meta_quote(ctx).asTable(), valueExp_.meta_quote(ctx).asExpression());
  74. }
  75. public NATText meta_print() throws InterpreterException {
  76. return NATText.atValue(parameters_.meta_print().javaValue + " := " + valueExp_.meta_print().javaValue);
  77. }
  78. /**
  79. * FV([var1, var2 := exp1, @ rest] := exp2) =
  80. * { var1, var2, rest } U FV(exp1) U FV(exp2)
  81. */
  82. public Set impl_freeVariables() throws InterpreterException {
  83. Set fvValExp = valueExp_.impl_freeVariables();
  84. ATObject[] params = parameters_.asNativeTable().elements_;
  85. for (int i = 0; i < params.length; i++) {
  86. if (params[i].isSymbol()) {
  87. // Mandatory arguments, e.g. x
  88. fvValExp.add(params[i].asSymbol());
  89. } else if (params[i].isVariableAssignment()) {
  90. // Optional args or rest args
  91. // Note: for optional args, both assigned var and free vars
  92. // of the initialization expression are considered free vars
  93. fvValExp.addAll(params[i].asExpression().impl_freeVariables());
  94. } else if (params[i].isSplice()) {
  95. fvValExp.add(params[i].asSplice().base_expression().asSymbol());
  96. }
  97. }
  98. return fvValExp;
  99. }
  100. public Set impl_quotedFreeVariables() throws InterpreterException {
  101. Set qfv = parameters_.impl_quotedFreeVariables();
  102. qfv.addAll(valueExp_.impl_quotedFreeVariables());
  103. return qfv;
  104. }
  105. }