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

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