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

http://ambienttalk.googlecode.com/ · Java · 141 lines · 54 code · 18 blank · 69 comment · 0 complexity · 868d5162d1e968e7abfc4bc3c5b3e945 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * NATClosureMethod.java created on 16-nov-2006 at 9:12:46
  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.exceptions.InterpreterException;
  30. import edu.vub.at.exceptions.XTypeMismatch;
  31. import edu.vub.at.objects.ATClosure;
  32. import edu.vub.at.objects.ATContext;
  33. import edu.vub.at.objects.ATMethod;
  34. import edu.vub.at.objects.ATObject;
  35. import edu.vub.at.objects.ATTable;
  36. import edu.vub.at.objects.coercion.NativeTypeTags;
  37. import edu.vub.at.objects.grammar.ATBegin;
  38. import edu.vub.at.objects.grammar.ATDefExternalMethod;
  39. import edu.vub.at.objects.grammar.ATSymbol;
  40. /**
  41. * A 'closure method' is literally a function that sits in between of a full closure and a method.
  42. * It is a method that captures only its lexical scope of definition, but not the value of 'self'
  43. * and 'super' which are active at that time. When invoked, the method is evaluated in its lexical
  44. * scope, but with the values of 'self' and 'super' equal to those given to it at method invocation time.
  45. *
  46. * Closure methods are used to implement 'externally added' methods to objects. In such cases,
  47. * the external methods can only access their own surrounding lexical scope (and not that of the actual
  48. * object to which they are added), but their values for 'self' and 'super' will act as if the method
  49. * was actually defined within the object itself.
  50. *
  51. * See the description of the {@link ATDefExternalMethod} interface for more information.
  52. *
  53. * @author tvcutsem
  54. */
  55. public class NATClosureMethod extends NATByRef implements ATMethod {
  56. private final ATObject lexicalScope_;
  57. private final ATMethod method_;
  58. /** construct a new closure method */
  59. public NATClosureMethod(ATObject scope, ATMethod method) throws InterpreterException {
  60. lexicalScope_ = scope;
  61. method_ = method;
  62. }
  63. /**
  64. * A closure method application acts exactly like a regular direct method application, except that
  65. * the given lexical scope is disregarded and replaced by the lexical scope encapsulated by the
  66. * closure method. The bindings for 'self' and 'super' remain intact.
  67. *
  68. * Closure methods are a result of external method definitions.
  69. *
  70. * @param arguments the evaluated actual arguments
  71. * @param ctx the context whose 'self' binding will be used during the execution of the method.
  72. * The lexical scope, however, will be replaced by the closure method's own lexical scope. A call frame will
  73. * be inserted into this lexical scope before executing the method body.
  74. * To ensure that 'super' points to the parent of the actual 'self' and not the parent of the object
  75. * performing the external method definition, a 'super' field is added to the call frame shadowing
  76. * the defining object's 'super' field.
  77. * @return the value of evaluating the function body
  78. */
  79. public ATObject base_apply(ATTable arguments, ATContext ctx) throws InterpreterException {
  80. // should be: method_.base_apply(arguments, ctx.base_withLexicalEnvironment(lexicalScope_),
  81. // but this version is more efficient, as we immediately create the right context, rather than
  82. // creating a temporary context which will in turn be modified by method_.base_apply
  83. // hostObject = the object to which the external method was added (actually the object in which
  84. // the external method was now found)
  85. ATObject hostObject = ctx.base_lexicalScope();
  86. ATObject hostParent = hostObject.base_super();
  87. NATCallframe externalFrame = new NATCallframe(lexicalScope_);
  88. // super = the parent of the object to which this method was added
  89. externalFrame.meta_defineField(NATObject._SUPER_NAME_, hostParent);
  90. return method_.base_applyInScope(arguments, ctx.base_withLexicalEnvironment(externalFrame));
  91. }
  92. public ATObject base_applyInScope(ATTable arguments, ATContext ctx) throws InterpreterException {
  93. return method_.base_applyInScope(arguments, ctx);
  94. }
  95. public ATBegin base_bodyExpression() throws InterpreterException {
  96. return method_.base_bodyExpression();
  97. }
  98. public ATSymbol base_name() throws InterpreterException {
  99. return method_.base_name();
  100. }
  101. public ATTable base_parameters() throws InterpreterException {
  102. return method_.base_parameters();
  103. }
  104. public ATTable base_annotations() throws InterpreterException {
  105. return method_.base_annotations();
  106. }
  107. /**
  108. * When wrapping a closure method, return a closure that is bound to my own lexical scope.
  109. * The lexical scope passed to wrap is ignored.
  110. */
  111. public ATClosure base_wrap(ATObject lexicalScope, ATObject dynamicReceiver) throws InterpreterException {
  112. return method_.base_wrap(lexicalScope_, dynamicReceiver);
  113. }
  114. public NATText meta_print() throws InterpreterException {
  115. return NATText.atValue("<closure:"+method_.base_name()+">");
  116. }
  117. public ATMethod asMethod() throws XTypeMismatch {
  118. return this;
  119. }
  120. public ATTable meta_typeTags() throws InterpreterException {
  121. return NATTable.of(NativeTypeTags._METHOD_);
  122. }
  123. }