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

http://ambienttalk.googlecode.com/ · Java · 128 lines · 60 code · 15 blank · 53 comment · 6 complexity · 6acce14bbee1ad7b65fcfdf49c646050 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGMultiDefinition.java created on 18-aug-2006 at 10:13:58
  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.eval.PartialBinder;
  31. import edu.vub.at.exceptions.InterpreterException;
  32. import edu.vub.at.objects.ATContext;
  33. import edu.vub.at.objects.ATObject;
  34. import edu.vub.at.objects.ATTable;
  35. import edu.vub.at.objects.grammar.ATDefinition;
  36. import edu.vub.at.objects.grammar.ATExpression;
  37. import edu.vub.at.objects.grammar.ATMultiDefinition;
  38. import edu.vub.at.objects.natives.NATText;
  39. import java.util.HashSet;
  40. import java.util.Set;
  41. /**
  42. * @author tvc
  43. *
  44. * The native implementation of a multiple definition AG element.
  45. */
  46. public class AGMultiDefinition extends AGDefinition implements ATMultiDefinition {
  47. private final ATTable parameters_;
  48. private final ATExpression valueExp_;
  49. private final PartialBinder binderPartialFunction_;
  50. public AGMultiDefinition(ATTable par, ATExpression val) throws InterpreterException {
  51. parameters_ = par;
  52. valueExp_ = val;
  53. binderPartialFunction_ = PartialBinder.calculateResidual("multi-definition", par);
  54. }
  55. public ATTable base_parameters() { return parameters_; }
  56. public ATExpression base_valueExpression() { return valueExp_; }
  57. /**
  58. * To evaluate a multiple definition, evaluate the right hand side to a table
  59. * and bind the parameters on the left hand side to the 'arguments' of the right hand side,
  60. * exactly as if they were bound during a function call.
  61. *
  62. * AGMULTIDEF(par,val).eval(ctx) = bind(ctx.scope, par, val.eval(ctx))
  63. *
  64. * @return the evaluated arguments table
  65. */
  66. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  67. ATTable args = valueExp_.meta_eval(ctx).asTable();
  68. PartialBinder.defineParamsForArgs(binderPartialFunction_, ctx, args);
  69. return args;
  70. }
  71. /**
  72. * AGMULTIDEF(par,val).quote(ctx) = AGMULTIDEF(par.quote(ctx), val.quote(ctx))
  73. */
  74. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  75. return new AGMultiDefinition(parameters_.meta_quote(ctx).asTable(), valueExp_.meta_quote(ctx).asExpression());
  76. }
  77. public NATText meta_print() throws InterpreterException {
  78. return NATText.atValue("def " + parameters_.meta_print().javaValue + " := " + valueExp_.meta_print().javaValue);
  79. }
  80. /**
  81. * IV(def [v1, v2 := exp, @ rest] := exp) = { v1, v2, rest }
  82. */
  83. public Set impl_introducedVariables() throws InterpreterException {
  84. Set introducedVariables = new HashSet();
  85. ATObject[] params = parameters_.asNativeTable().elements_;
  86. for (int i = 0; i < params.length; i++) {
  87. if (params[i].isSymbol()) {
  88. // Mandatory arguments, e.g. x
  89. introducedVariables.add(params[i].asSymbol());
  90. } else if (params[i].isVariableAssignment()) {
  91. // Optional arguments, e.g. x := 5
  92. introducedVariables.add(params[i].asVariableAssignment().base_name());
  93. } else if (params[i].isSplice()) {
  94. // Rest arguments, e.g. @x
  95. introducedVariables.add(params[i].asSplice().base_expression().asSymbol());
  96. }
  97. }
  98. return introducedVariables;
  99. }
  100. /**
  101. * FV(def [v1, v2 := exp1, @ rest] := exp2) = FV(exp1) U (FV(exp2) \ { f1,f2 })
  102. */
  103. public Set impl_freeVariables() throws InterpreterException {
  104. Set fvValueExp = valueExp_.impl_freeVariables();
  105. Evaluator.processFreeVariables(fvValueExp, parameters_);
  106. return fvValueExp;
  107. }
  108. public Set impl_quotedFreeVariables() throws InterpreterException {
  109. Set qfv = parameters_.impl_quotedFreeVariables();
  110. qfv.addAll(valueExp_.impl_quotedFreeVariables());
  111. return qfv;
  112. }
  113. }