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

http://ambienttalk.googlecode.com/ · Java · 196 lines · 110 code · 26 blank · 60 comment · 7 complexity · 953015c236434a752048389be5416439 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGDefExternalMethod.java created on 15-nov-2006 at 19:33:18
  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.Evaluator;
  30. import edu.vub.at.exceptions.InterpreterException;
  31. import edu.vub.at.exceptions.XIllegalOperation;
  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.ATTypeTag;
  37. import edu.vub.at.objects.coercion.NativeTypeTags;
  38. import edu.vub.at.objects.grammar.ATBegin;
  39. import edu.vub.at.objects.grammar.ATDefExternalMethod;
  40. import edu.vub.at.objects.grammar.ATDefinition;
  41. import edu.vub.at.objects.grammar.ATExpression;
  42. import edu.vub.at.objects.grammar.ATSymbol;
  43. import edu.vub.at.objects.natives.NATClosureMethod;
  44. import edu.vub.at.objects.natives.NATMethod;
  45. import edu.vub.at.objects.natives.NATTable;
  46. import edu.vub.at.objects.natives.NATText;
  47. import java.util.HashSet;
  48. import java.util.Set;
  49. /**
  50. * The native implementation of an external method definition abstract grammar element.
  51. *
  52. * @author tvcutsem
  53. */
  54. public final class AGDefExternalMethod extends AGDefinition implements ATDefExternalMethod {
  55. private final ATSymbol rcvNam_;
  56. private final ATSymbol selectorExp_;
  57. private final ATTable argumentExps_;
  58. private final ATBegin bodyStmts_;
  59. private final ATExpression annotationExps_;
  60. private ATMethod preprocessedMethod_;
  61. public AGDefExternalMethod(ATSymbol rcv, ATSymbol sel, ATTable args, ATBegin bdy, ATExpression ann)
  62. throws InterpreterException {
  63. rcvNam_ = rcv;
  64. selectorExp_ = sel;
  65. argumentExps_ = args;
  66. bodyStmts_ = bdy;
  67. annotationExps_ = ann;
  68. }
  69. public ATSymbol base_receiver() {
  70. return rcvNam_;
  71. }
  72. public ATSymbol base_selector() {
  73. return selectorExp_;
  74. }
  75. public ATTable base_arguments() {
  76. return argumentExps_;
  77. }
  78. public ATBegin base_bodyExpression() {
  79. return bodyStmts_;
  80. }
  81. public ATExpression base_annotationExpression() {
  82. return annotationExps_;
  83. }
  84. /**
  85. * Evaluates the receiver symbol to an object to which a new 'closure method' will be added.
  86. * Such a closure captures the current lexical scope, but not the values for 'self' and 'super'.
  87. *
  88. * The return value of an external method definition is always the external method itself.
  89. *
  90. * AGDEFEXTMTH(rcv,nam,par,bdy).eval(ctx) =
  91. * rcv.eval(ctx).defineField(nam, NATCLOMTH(ctx.cur,nam,par,bdy))
  92. *
  93. * @throws XIllegalOperation if the receiver is an instance of a native
  94. * type (whose method dictionaries are sealed) or if the receiver is an isolate.
  95. */
  96. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  97. // the method is not yet created in the constructor because this gives problems
  98. // with quoted parameters: a quoted parameter would result in an illegal parameter
  99. // exception while actually the external method was defined in the context of a quotation,
  100. // so at runtime the external definition would have never been evaluated (but quoted instead)
  101. if (preprocessedMethod_ == null) {
  102. ATObject oneOrMoreAnnotation = annotationExps_.meta_eval(ctx);
  103. ATTable annotationTable;
  104. if(oneOrMoreAnnotation.isTable()) {
  105. annotationTable = oneOrMoreAnnotation.asTable();
  106. } else {
  107. annotationTable = NATTable.of(oneOrMoreAnnotation);
  108. }
  109. preprocessedMethod_ = new NATMethod(selectorExp_, argumentExps_, bodyStmts_, annotationTable);
  110. ATObject[] annotations = annotationTable.asNativeTable().elements_;
  111. for (int i = 0; i < annotations.length; i++) {
  112. ATTypeTag theAnnotation = annotations[i].asTypeTag();
  113. preprocessedMethod_ = theAnnotation.base_annotateMethod(preprocessedMethod_);
  114. }
  115. }
  116. ATObject receiver = rcvNam_.meta_eval(ctx);
  117. if (receiver.meta_isTaggedAs(NativeTypeTags._ISOLATE_).asNativeBoolean().javaValue) {
  118. throw new XIllegalOperation("Cannot define external methods on isolates");
  119. } else {
  120. NATClosureMethod extMethod = new NATClosureMethod(ctx.base_lexicalScope(),
  121. preprocessedMethod_);
  122. receiver.meta_addMethod(extMethod);
  123. return extMethod;
  124. }
  125. }
  126. /**
  127. * Quoting an external method definition results in a new quoted external method definition.
  128. *
  129. * AGDEFEXTMTH(rcv,nam,par,bdy).quote(ctx) = AGDEFEXTMTH(rcv.quote(ctx),nam.quote(ctx), par.quote(ctx), bdy.quote(ctx))
  130. */
  131. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  132. return new AGDefExternalMethod(rcvNam_.meta_quote(ctx).asSymbol(),
  133. selectorExp_.meta_quote(ctx).asSymbol(),
  134. argumentExps_.meta_quote(ctx).asTable(),
  135. bodyStmts_.meta_quote(ctx).asBegin(),
  136. annotationExps_.meta_quote(ctx).asExpression());
  137. }
  138. public NATText meta_print() throws InterpreterException {
  139. return NATText.atValue("def " +
  140. rcvNam_.meta_print().javaValue + "." +
  141. selectorExp_.meta_print().javaValue +
  142. Evaluator.printAsList(argumentExps_).javaValue +
  143. " { " + bodyStmts_.meta_print().javaValue + " }");
  144. }
  145. /**
  146. * IV(def o.m(args) @ anns { body }) = { }
  147. */
  148. public Set impl_introducedVariables() throws InterpreterException {
  149. return new HashSet();
  150. }
  151. /**
  152. * FV(def o.m(args) @ anns { body }) =
  153. * { o } U FV(anns) U FV(optionalArgExps) U (FV(body) \ { args })
  154. */
  155. public Set impl_freeVariables() throws InterpreterException {
  156. Set fvBody = bodyStmts_.impl_freeVariables();
  157. Evaluator.processFreeVariables(fvBody, argumentExps_);
  158. fvBody.add(rcvNam_);
  159. fvBody.addAll(annotationExps_.impl_freeVariables());
  160. return fvBody;
  161. }
  162. public Set impl_quotedFreeVariables() throws InterpreterException {
  163. Set qfv = argumentExps_.impl_quotedFreeVariables();
  164. qfv.addAll(bodyStmts_.impl_quotedFreeVariables());
  165. qfv.addAll(annotationExps_.impl_quotedFreeVariables());
  166. qfv.addAll(rcvNam_.impl_quotedFreeVariables());
  167. qfv.addAll(selectorExp_.impl_quotedFreeVariables());
  168. return qfv;
  169. }
  170. }