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

http://ambienttalk.googlecode.com/ · Java · 123 lines · 59 code · 15 blank · 49 comment · 0 complexity · 3a09db856ec64875243199b370aa6955 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGMessageSend.java created on 26-jul-2006 at 16:03:06
  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.eval.InvocationStack;
  30. import edu.vub.at.exceptions.InterpreterException;
  31. import edu.vub.at.objects.ATContext;
  32. import edu.vub.at.objects.ATMessage;
  33. import edu.vub.at.objects.ATObject;
  34. import edu.vub.at.objects.ATTable;
  35. import edu.vub.at.objects.grammar.ATExpression;
  36. import edu.vub.at.objects.grammar.ATMessageSend;
  37. import edu.vub.at.objects.natives.NATText;
  38. import edu.vub.at.parser.SourceLocation;
  39. import edu.vub.util.TempFieldGenerator;
  40. import java.util.Set;
  41. /**
  42. * @author tvc
  43. *
  44. * The native implementation of a synchronous message send AG element.
  45. */
  46. public final class AGMessageSend extends AGExpression implements ATMessageSend {
  47. private final ATExpression rcvExp_;
  48. private final ATExpression message_;
  49. public AGMessageSend(ATExpression rcv, ATExpression msg) {
  50. rcvExp_ = rcv;
  51. message_ = msg;
  52. }
  53. public ATExpression base_receiverExpression() { return rcvExp_; }
  54. public ATExpression base_messageExpression() { return message_; }
  55. /**
  56. * To evaluate a message send, evaluate the receiver expression into an object.
  57. * Next, evaluate the message expression into a first-class message (asynchronous message or method invocation).
  58. * The evaluation of the message send is delegated to the first-class message itself.
  59. *
  60. * AGMSGSEND(rcv,msg).eval(ctx) = msg.eval(ctx).meta_sendTo(rcv.eval(ctx), ctx.self)
  61. *
  62. * @return the value of the invoked method or NIL in the case of an asynchronous message send.
  63. */
  64. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  65. ATMessage msg = message_.meta_eval(ctx).asMessage();
  66. ATObject rcvr = rcvExp_.meta_eval(ctx);
  67. ATObject result = null;
  68. InvocationStack stack = InvocationStack.getInvocationStack();
  69. ATTable args = msg.base_arguments();
  70. try {
  71. stack.methodInvoked(this, rcvr, args);
  72. result = msg.base_sendTo(rcvr, ctx.base_receiver());
  73. } finally {
  74. stack.methodReturned(result);
  75. }
  76. return result;
  77. }
  78. /**
  79. * Quoting a message send returns a new quoted message send.
  80. *
  81. * AGMSGSEND(rcv,msg).quote(ctx) = AGMSGSEND(rcv.quote(ctx), msg.quote(ctx))
  82. */
  83. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  84. return new AGMessageSend(rcvExp_.meta_quote(ctx).asExpression(),
  85. message_.meta_quote(ctx).asExpression());
  86. }
  87. public NATText meta_print() throws InterpreterException {
  88. return NATText.atValue(rcvExp_.meta_print().javaValue +
  89. ((message_.isMessageCreation()) ? "" : "<+") + message_.meta_print().javaValue);
  90. }
  91. public NATText impl_asUnquotedCode(TempFieldGenerator objectMap) throws InterpreterException {
  92. return NATText.atValue(rcvExp_.impl_asUnquotedCode(objectMap).javaValue +
  93. ((message_.isMessageCreation()) ? "" : "<+") + message_.impl_asUnquotedCode(objectMap).javaValue);
  94. }
  95. /**
  96. * FV(objExp <+ msgExp) = FV(objExp) U FV(msgExp)
  97. */
  98. public Set impl_freeVariables() throws InterpreterException {
  99. Set fvObjExp = rcvExp_.impl_freeVariables();
  100. fvObjExp.addAll(message_.impl_freeVariables());
  101. return fvObjExp;
  102. }
  103. public Set impl_quotedFreeVariables() throws InterpreterException {
  104. Set qfv = rcvExp_.impl_quotedFreeVariables();
  105. qfv.addAll(message_.impl_quotedFreeVariables());
  106. return qfv;
  107. }
  108. }