/interpreter/tags/at2-build190607/src/edu/vub/at/objects/natives/grammar/AGDefFunction.java

http://ambienttalk.googlecode.com/ · Java · 134 lines · 62 code · 14 blank · 58 comment · 4 complexity · 0b56de332e0f5a336cf3efaa872d74d0 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGDefFunction.java created on 26-jul-2006 at 15:44:08
  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.objects.ATContext;
  32. import edu.vub.at.objects.ATObject;
  33. import edu.vub.at.objects.ATTable;
  34. import edu.vub.at.objects.coercion.NativeTypeTags;
  35. import edu.vub.at.objects.grammar.ATBegin;
  36. import edu.vub.at.objects.grammar.ATDefMethod;
  37. import edu.vub.at.objects.grammar.ATSymbol;
  38. import edu.vub.at.objects.natives.NATClosure;
  39. import edu.vub.at.objects.natives.NATMethod;
  40. import edu.vub.at.objects.natives.NATTable;
  41. import edu.vub.at.objects.natives.NATText;
  42. /**
  43. * The native implementation of a function definition abstract grammar element.
  44. * This AG element covers both method and closure definition.
  45. *
  46. * @author tvc
  47. */
  48. public final class AGDefFunction extends NATAbstractGrammar implements ATDefMethod {
  49. private final ATSymbol selectorExp_;
  50. private final ATTable argumentExps_;
  51. private final ATBegin bodyStmts_;
  52. private NATMethod preprocessedMethod_;
  53. public AGDefFunction(ATSymbol sel, ATTable args, ATBegin bdy) throws InterpreterException {
  54. selectorExp_ = sel;
  55. argumentExps_ = args;
  56. bodyStmts_ = bdy;
  57. }
  58. public ATSymbol base_getSelector() {
  59. return selectorExp_;
  60. }
  61. public ATTable base_getArguments() {
  62. return argumentExps_;
  63. }
  64. public ATBegin base_getBodyExpression() {
  65. return bodyStmts_;
  66. }
  67. /**
  68. * Defines a new function (method or closure) in the current scope.
  69. * If a function definition is executed in the context of an object,
  70. * a new method is created. If, however, the function definition
  71. * is executed in the context of a call frame (i.e. its definition
  72. * is nested within a method/function) then a closure is created instead.
  73. *
  74. * The return value of a function definition is always a closure encapsulating the function.
  75. *
  76. * AGDEFFUN(nam,par,bdy).eval(ctx) =
  77. * if ctx.scope.isCallFrame
  78. * ctx.scope.defineField(nam, AGCLO(AGMTH(nam,par,bdy), ctx))
  79. * else
  80. * ctx.scope.addMethod(nam, AGMTH(nam,par,bdy))
  81. *
  82. */
  83. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  84. // the method is not yet created in the constructor because this gives problems
  85. // with quoted parameters: a quoted parameter would result in an illegal parameter
  86. // exception while actually the function was defined in the context of a quotation,
  87. // so at runtime the function definition would have never been evaluated (but quoted instead)
  88. if (preprocessedMethod_ == null) {
  89. preprocessedMethod_ = new NATMethod(selectorExp_, argumentExps_, bodyStmts_);
  90. }
  91. ATObject current = ctx.base_getLexicalScope();
  92. if (current.isCallFrame()) {
  93. NATClosure clo = new NATClosure(preprocessedMethod_, ctx);
  94. current.meta_defineField(selectorExp_, clo);
  95. return clo;
  96. } else {
  97. current.meta_addMethod(preprocessedMethod_);
  98. return current.meta_select(current, selectorExp_);
  99. }
  100. }
  101. /**
  102. * Quoting a function definition results in a new quoted function definition.
  103. *
  104. * AGDEFFUN(nam,par,bdy).quote(ctx) = AGDEFFUN(nam.quote(ctx), par.quote(ctx), bdy.quote(ctx))
  105. */
  106. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  107. return new AGDefFunction(selectorExp_.meta_quote(ctx).asSymbol(),
  108. argumentExps_.meta_quote(ctx).asTable(),
  109. bodyStmts_.meta_quote(ctx).asBegin());
  110. }
  111. public NATText meta_print() throws InterpreterException {
  112. return NATText.atValue("def " +
  113. selectorExp_.meta_print().javaValue +
  114. Evaluator.printAsList(argumentExps_).javaValue +
  115. " { " + bodyStmts_.meta_print().javaValue + " }");
  116. }
  117. public ATTable meta_getTypeTags() throws InterpreterException {
  118. return NATTable.of(NativeTypeTags._METHOD_DEFINITION_);
  119. }
  120. }