/interpreter/tags/at2dist220411/src/edu/vub/at/objects/natives/grammar/AGAssignTable.java

http://ambienttalk.googlecode.com/ · Java · 128 lines · 62 code · 16 blank · 50 comment · 0 complexity · d810333ee55562fba446b6a0326eebe5 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGAssignTable.java created on 26-jul-2006 at 15:57:37
  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.exceptions.InterpreterException;
  30. import edu.vub.at.objects.ATContext;
  31. import edu.vub.at.objects.ATObject;
  32. import edu.vub.at.objects.grammar.ATAssignTable;
  33. import edu.vub.at.objects.grammar.ATExpression;
  34. import edu.vub.at.objects.natives.NATMethodInvocation;
  35. import edu.vub.at.objects.natives.NATTable;
  36. import edu.vub.at.objects.natives.NATText;
  37. import edu.vub.util.TempFieldGenerator;
  38. import java.util.HashMap;
  39. import java.util.Set;
  40. /**
  41. * The native implementation of a table assignment AG element.
  42. *
  43. * @author tvc
  44. */
  45. public final class AGAssignTable extends NATAbstractGrammar implements ATAssignTable {
  46. private final ATExpression tblExp_;
  47. private final ATExpression idxExp_;
  48. private final ATExpression valExp_;
  49. public AGAssignTable(ATExpression tbl, ATExpression idx, ATExpression val) {
  50. tblExp_ = tbl;
  51. idxExp_ = idx;
  52. valExp_ = val;
  53. }
  54. public ATExpression base_tableExpression() { return tblExp_; }
  55. public ATExpression base_indexExpression() { return idxExp_; }
  56. public ATExpression base_valueExpression() { return valExp_; }
  57. /**
  58. * To evaluate a table assignment, evaluate its table expression to a valid ATTable.
  59. * Next, evaluate its index expression into a valid number.
  60. * Finally, evaluate its value expression and assign the result to the proper index slot of the table.
  61. *
  62. * AGASSTABLE(tbl,idx,val).eval(ctx) =
  63. * tbl.eval(ctx).atPut(idx.eval(ctx), val.eval(ctx))
  64. *
  65. * @return the value stored in the table
  66. */
  67. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  68. ATObject col = tblExp_.meta_eval(ctx);
  69. ATObject idx = idxExp_.meta_eval(ctx);
  70. ATObject val = valExp_.meta_eval(ctx);
  71. return col.meta_invoke(col,
  72. new NATMethodInvocation(
  73. AGSymbol.jAlloc("atPut"),
  74. NATTable.of(idx, val),
  75. NATTable.EMPTY));
  76. }
  77. /**
  78. * Quoting a table assignment results in a new quoted table assignment.
  79. *
  80. * AGASSTABLE(tbl,idx,val).quote(ctx) = AGASSTABLE(tbl.quote(ctx),idx.quote(ctx),val.quote(ctx))
  81. */
  82. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  83. return new AGAssignTable(tblExp_.meta_quote(ctx).asExpression(),
  84. idxExp_.meta_quote(ctx).asExpression(),
  85. valExp_.meta_quote(ctx).asExpression());
  86. }
  87. public NATText meta_print() throws InterpreterException {
  88. return NATText.atValue(tblExp_.meta_print().javaValue + "[" +
  89. idxExp_.meta_print().javaValue + "] := " +
  90. valExp_.meta_print().javaValue);
  91. }
  92. public NATText impl_asUnquotedCode(TempFieldGenerator objectMap) throws InterpreterException {
  93. return NATText.atValue(tblExp_.impl_asUnquotedCode(objectMap).javaValue + "[" +
  94. idxExp_.impl_asUnquotedCode(objectMap).javaValue + "] := " +
  95. valExp_.impl_asUnquotedCode(objectMap).javaValue);
  96. }
  97. /**
  98. * FV(tblExp[idxExp] := valExp) = FV(tblExp) U FV(idxExp) U FV(valExp)
  99. */
  100. public Set impl_freeVariables() throws InterpreterException {
  101. Set fvTblExp = tblExp_.impl_freeVariables();
  102. fvTblExp.addAll(idxExp_.impl_freeVariables());
  103. fvTblExp.addAll(valExp_.impl_freeVariables());
  104. return fvTblExp;
  105. }
  106. public Set impl_quotedFreeVariables() throws InterpreterException {
  107. Set qfv = tblExp_.impl_quotedFreeVariables();
  108. qfv.addAll(idxExp_.impl_quotedFreeVariables());
  109. qfv.addAll(valExp_.impl_quotedFreeVariables());
  110. return qfv;
  111. }
  112. }