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

http://ambienttalk.googlecode.com/ · Java · 100 lines · 39 code · 14 blank · 47 comment · 0 complexity · e2bd01aaa8d90e61f44b4df7b23176cd 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 java.util.HashSet;
  37. import java.util.Set;
  38. /**
  39. * The native implementation of a selection AG element <tt>o.&m</tt>.
  40. * @author tvcutsem
  41. */
  42. public final class AGSelection extends AGExpression implements ATSelection {
  43. private final ATExpression rcvExp_;
  44. private final ATSymbol selector_;
  45. public AGSelection(ATExpression rcv, ATSymbol sel) {
  46. rcvExp_ = rcv;
  47. selector_ = sel;
  48. }
  49. public ATExpression base_receiverExpression() { return rcvExp_; }
  50. public ATSymbol base_selector() { return selector_; }
  51. /**
  52. * To evaluate a selection, evaluate the receiver expression to an object and select
  53. * the slot with the given name from that object.
  54. *
  55. * AGSEL(rcv,sel).eval(ctx) = rcv.eval(ctx).meta_select(sel)
  56. *
  57. * @return the value of the selected slot.
  58. */
  59. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  60. ATObject receiver = rcvExp_.meta_eval(ctx);
  61. return receiver.meta_select(receiver, selector_);
  62. }
  63. /**
  64. * Quoting a selection results in a new quoted selection.
  65. *
  66. * AGSEL(rcv,sel).quote(ctx) = AGSEL(rcv.quote(ctx), sel.quote(ctx))
  67. */
  68. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  69. return new AGSelection(rcvExp_.meta_quote(ctx).asExpression(),
  70. selector_.meta_quote(ctx).asSymbol());
  71. }
  72. public NATText meta_print() throws InterpreterException {
  73. return NATText.atValue(rcvExp_.meta_print().javaValue + ".&" + selector_.meta_print().javaValue);
  74. }
  75. /**
  76. * FV(rcvExp.&selector) = FV(rcvExp)
  77. */
  78. public Set impl_freeVariables() throws InterpreterException {
  79. return rcvExp_.impl_freeVariables();
  80. }
  81. public Set impl_quotedFreeVariables() throws InterpreterException {
  82. Set qfv = rcvExp_.impl_quotedFreeVariables();
  83. qfv.addAll(selector_.impl_quotedFreeVariables());
  84. return qfv;
  85. }
  86. }