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

http://ambienttalk.googlecode.com/ · Java · 100 lines · 49 code · 9 blank · 42 comment · 0 complexity · cfbaf04836e352391e8de69fc718f355 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * NATFieldSelection.java created on 31-jul-2006 at 12:40:42
  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;
  29. import java.util.LinkedList;
  30. import java.util.Vector;
  31. import edu.vub.at.exceptions.InterpreterException;
  32. import edu.vub.at.objects.ATFieldSelection;
  33. import edu.vub.at.objects.ATMessage;
  34. import edu.vub.at.objects.ATObject;
  35. import edu.vub.at.objects.ATTable;
  36. import edu.vub.at.objects.ATTypeTag;
  37. import edu.vub.at.objects.coercion.NativeTypeTags;
  38. import edu.vub.at.objects.grammar.ATSymbol;
  39. /**
  40. * Instances of this class represent first-class field selections.
  41. * They encapsulate a selector and may be turned into an actual field access by invoking meta_sendTo.
  42. * This method provides the invocation with a receiver to apply itself to.
  43. *
  44. * @author tvcutsem
  45. */
  46. public final class NATFieldSelection extends NATMessage implements ATFieldSelection {
  47. public NATFieldSelection(ATSymbol sel, ATTable annotations) throws InterpreterException {
  48. super(sel, NATTable.EMPTY, annotations, NativeTypeTags._FIELDSEL_);
  49. }
  50. /**
  51. * Copy constructor.
  52. */
  53. private NATFieldSelection(FieldMap map,
  54. Vector state,
  55. LinkedList originalCustomFields,
  56. MethodDictionary methodDict,
  57. ATObject dynamicParent,
  58. ATObject lexicalParent,
  59. byte flags,
  60. ATTypeTag[] types) throws InterpreterException {
  61. super(map, state, originalCustomFields, methodDict, dynamicParent, lexicalParent, flags, types);
  62. }
  63. /**
  64. * To evaluate a field selection, invoke a field accessor method on the receiver.
  65. *
  66. * @return the return value of the invoked method.
  67. */
  68. public ATObject prim_sendTo(ATMessage self, ATObject receiver, ATObject sender) throws InterpreterException {
  69. return receiver.meta_invokeField(receiver, self.base_selector());
  70. }
  71. public NATText meta_print() throws InterpreterException {
  72. return NATText.atValue("<field selection:"+base_selector().toString()+">");
  73. }
  74. protected NATObject createClone(FieldMap map,
  75. Vector state,
  76. LinkedList originalCustomFields,
  77. MethodDictionary methodDict,
  78. ATObject dynamicParent,
  79. ATObject lexicalParent,
  80. byte flags,
  81. ATTypeTag[] types) throws InterpreterException {
  82. return new NATFieldSelection(map,
  83. state,
  84. originalCustomFields,
  85. methodDict,
  86. dynamicParent,
  87. lexicalParent,
  88. flags,
  89. types);
  90. }
  91. }