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

http://ambienttalk.googlecode.com/ · Java · 129 lines · 72 code · 12 blank · 45 comment · 2 complexity · fcb111120631cad12f49d5a78abe080d MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * NATDelegation.java created on 29-jan-2007 at 16:24:59
  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 edu.vub.at.eval.Evaluator;
  30. import edu.vub.at.exceptions.InterpreterException;
  31. import edu.vub.at.objects.ATMessage;
  32. import edu.vub.at.objects.ATMethodInvocation;
  33. import edu.vub.at.objects.ATObject;
  34. import edu.vub.at.objects.ATTypeTag;
  35. import edu.vub.at.objects.ATTable;
  36. import edu.vub.at.objects.coercion.NativeTypeTags;
  37. import edu.vub.at.objects.grammar.ATSymbol;
  38. import edu.vub.at.objects.natives.grammar.AGSymbol;
  39. import edu.vub.util.TempFieldGenerator;
  40. import java.util.LinkedList;
  41. import java.util.Set;
  42. import java.util.Vector;
  43. /**
  44. * Instances of the class NATMethodInvocation represent first-class method invocations.
  45. * They encapsulate a selector and arguments and may be turned into an actual invocation by invoking meta_sendTo.
  46. * This method provides the invocation with a receiver to apply itself to.
  47. *
  48. * @author tvcutsem
  49. */
  50. public final class NATDelegation extends NATMessage implements ATMethodInvocation {
  51. private final static AGSymbol _DELEGATOR_ = AGSymbol.jAlloc("delegator");
  52. public NATDelegation(ATObject delegator, ATSymbol sel, ATTable arg, ATTable annotations) throws InterpreterException {
  53. super(sel, arg, annotations, NativeTypeTags._DELEGATION_);
  54. super.meta_defineField(_DELEGATOR_, delegator);
  55. }
  56. /**
  57. * Copy constructor.
  58. */
  59. private NATDelegation(FieldMap map,
  60. Vector state,
  61. LinkedList originalCustomFields,
  62. MethodDictionary methodDict,
  63. ATObject dynamicParent,
  64. ATObject lexicalParent,
  65. byte flags,
  66. ATTypeTag[] types,
  67. Set freeVars) throws InterpreterException {
  68. super(map, state, originalCustomFields, methodDict, dynamicParent, lexicalParent, flags, types, freeVars);
  69. }
  70. public ATMethodInvocation asMethodInvocation() { return this; }
  71. /**
  72. * To evaluate a delegating message send, invoke the method corresponding to the encapsulated
  73. * selector with the encapsulated arguments. During execution of the method, 'self' should be
  74. * bound to the object that initiated the delegating method invocation.
  75. *
  76. * @return the return value of the invoked method.
  77. */
  78. public ATObject prim_sendTo(ATMessage self, ATObject receiver, ATObject sender) throws InterpreterException {
  79. return receiver.meta_invoke(super.meta_invokeField(self, _DELEGATOR_), self.asMethodInvocation());
  80. }
  81. public NATText meta_print() throws InterpreterException {
  82. return NATText.atValue("<delegation:"+base_selector()+Evaluator.printAsList(base_arguments()).javaValue+">");
  83. }
  84. public NATText impl_asCode(TempFieldGenerator objectMap) throws InterpreterException {
  85. if (objectMap.contains(this)) {
  86. return objectMap.getName(this);
  87. }
  88. //StringBuffer codeString = new StringBuffer("^" + base_selector().meta_print().javaValue + Evaluator.printAsList(base_arguments()).javaValue);
  89. StringBuffer codeString = new StringBuffer("^" + base_selector().meta_print().javaValue + Evaluator.codeAsList(objectMap, base_arguments()).javaValue);
  90. NATTable annotations = NATTable.atValue(this.typeTags_);
  91. if(annotations.base_length().asNativeNumber().javaValue > 0) {
  92. codeString.append("@"+annotations.impl_asCode(objectMap).javaValue);
  93. }
  94. NATText code = NATText.atValue(codeString.toString());
  95. NATText name = objectMap.put(this, code);
  96. return name;
  97. }
  98. protected NATObject createClone(FieldMap map,
  99. Vector state,
  100. LinkedList originalCustomFields,
  101. MethodDictionary methodDict,
  102. ATObject dynamicParent,
  103. ATObject lexicalParent,
  104. byte flags,
  105. ATTypeTag[] types,
  106. Set freeVars) throws InterpreterException {
  107. return new NATDelegation(map,
  108. state,
  109. originalCustomFields,
  110. methodDict,
  111. dynamicParent,
  112. lexicalParent,
  113. flags,
  114. types,
  115. freeVars);
  116. }
  117. }