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

http://ambienttalk.googlecode.com/ · Java · 105 lines · 43 code · 15 blank · 47 comment · 0 complexity · 4e5d0c1e44eb386084c3d909236074af MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGSelection.java created on 26-jul-2006 at 16:16:07
  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.ATExpression;
  33. import edu.vub.at.objects.grammar.ATSelection;
  34. import edu.vub.at.objects.grammar.ATSymbol;
  35. import edu.vub.at.objects.natives.NATText;
  36. import edu.vub.util.TempFieldGenerator;
  37. import java.util.HashSet;
  38. import java.util.Set;
  39. /**
  40. * The native implementation of a selection AG element <tt>o.&m</tt>.
  41. * @author tvcutsem
  42. */
  43. public final class AGSelection extends AGExpression implements ATSelection {
  44. private final ATExpression rcvExp_;
  45. private final ATSymbol selector_;
  46. public AGSelection(ATExpression rcv, ATSymbol sel) {
  47. rcvExp_ = rcv;
  48. selector_ = sel;
  49. }
  50. public ATExpression base_receiverExpression() { return rcvExp_; }
  51. public ATSymbol base_selector() { return selector_; }
  52. /**
  53. * To evaluate a selection, evaluate the receiver expression to an object and select
  54. * the slot with the given name from that object.
  55. *
  56. * AGSEL(rcv,sel).eval(ctx) = rcv.eval(ctx).meta_select(sel)
  57. *
  58. * @return the value of the selected slot.
  59. */
  60. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  61. ATObject receiver = rcvExp_.meta_eval(ctx);
  62. return receiver.meta_select(receiver, selector_);
  63. }
  64. /**
  65. * Quoting a selection results in a new quoted selection.
  66. *
  67. * AGSEL(rcv,sel).quote(ctx) = AGSEL(rcv.quote(ctx), sel.quote(ctx))
  68. */
  69. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  70. return new AGSelection(rcvExp_.meta_quote(ctx).asExpression(),
  71. selector_.meta_quote(ctx).asSymbol());
  72. }
  73. public NATText meta_print() throws InterpreterException {
  74. return NATText.atValue(rcvExp_.meta_print().javaValue + ".&" + selector_.meta_print().javaValue);
  75. }
  76. public NATText impl_asUnquotedCode(TempFieldGenerator objectMap) throws InterpreterException {
  77. return NATText.atValue(rcvExp_.impl_asUnquotedCode(objectMap).javaValue + ".&" + selector_.impl_asUnquotedCode(objectMap).javaValue);
  78. }
  79. /**
  80. * FV(rcvExp.&selector) = FV(rcvExp)
  81. */
  82. public Set impl_freeVariables() throws InterpreterException {
  83. return rcvExp_.impl_freeVariables();
  84. }
  85. public Set impl_quotedFreeVariables() throws InterpreterException {
  86. Set qfv = rcvExp_.impl_quotedFreeVariables();
  87. qfv.addAll(selector_.impl_quotedFreeVariables());
  88. return qfv;
  89. }
  90. }