/interpreter/tags/at2dist030708/src/edu/vub/at/objects/natives/grammar/AGClosureLiteral.java

http://ambienttalk.googlecode.com/ · Java · 108 lines · 48 code · 11 blank · 49 comment · 2 complexity · 75ca53195f326d996d6fb8cb0d4d26c1 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGClosureLiteral.java created on 26-jul-2006 at 16:59:04
  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.grammar.ATBegin;
  35. import edu.vub.at.objects.grammar.ATClosureLiteral;
  36. import edu.vub.at.objects.mirrors.NativeClosure;
  37. import edu.vub.at.objects.natives.NATClosure;
  38. import edu.vub.at.objects.natives.NATMethod;
  39. import edu.vub.at.objects.natives.NATTable;
  40. import edu.vub.at.objects.natives.NATText;
  41. /**
  42. * The native implementation of a literal closure AG element.
  43. *
  44. * @author tvc
  45. */
  46. public final class AGClosureLiteral extends AGExpression implements ATClosureLiteral {
  47. protected final ATTable arguments_;
  48. protected final ATBegin body_;
  49. private NATMethod preprocessedMethod_;
  50. public AGClosureLiteral(ATTable args, ATBegin body) throws InterpreterException {
  51. arguments_ = args;
  52. body_ = body;
  53. }
  54. public ATTable base_arguments() { return arguments_; }
  55. public ATBegin base_bodyExpression() { return body_; }
  56. /**
  57. * To evaluate a closure literal, construct a closure pairing the literal's arguments and body with the
  58. * current evaluation context.
  59. *
  60. * AGCLOLIT(arg,bdy).eval(ctx) = AGCLO(AGMTH("lambda",arg,bdy), ctx)
  61. *
  62. * @return a native closure closing over the current evaluation context.
  63. */
  64. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  65. // the method is not yet created in the constructor because this gives problems
  66. // with quoted parameters: a quoted parameter would result in an illegal parameter
  67. // exception while actually the block was defined in the context of a quotation,
  68. // so at runtime the block would have never been evaluated (but quoted instead)
  69. if (preprocessedMethod_ == null) {
  70. preprocessedMethod_ = new NATMethod(Evaluator._LAMBDA_, arguments_, body_, NATTable.EMPTY);
  71. }
  72. return new NATClosure(preprocessedMethod_, ctx);
  73. }
  74. /**
  75. * Quoting a closure literal results in a new quoted closure literal.
  76. *
  77. * AGCLOLIT(arg,bdy).quote(ctx) = AGCLOLIT(arg.quote(ctx), bdy.quote(ctx))
  78. */
  79. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  80. return new AGClosureLiteral(arguments_.meta_quote(ctx).asTable(),
  81. body_.meta_quote(ctx).asBegin());
  82. }
  83. public NATText meta_print() throws InterpreterException {
  84. return arguments_.base_isEmpty().base_ifTrue_ifFalse_(
  85. new NativeClosure(this) {
  86. public ATObject base_apply(ATTable args) throws InterpreterException {
  87. return NATText.atValue("{ "+ body_.meta_print().javaValue + " }");
  88. }
  89. },
  90. new NativeClosure(this) {
  91. public ATObject base_apply(ATTable args) throws InterpreterException {
  92. return NATText.atValue(Evaluator.printElements(arguments_.asNativeTable(), "{ |", ", ", " | ").javaValue +
  93. body_.meta_print().javaValue+"}");
  94. }
  95. }).asNativeText();
  96. }
  97. }