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

http://ambienttalk.googlecode.com/ · Java · 94 lines · 33 code · 12 blank · 49 comment · 0 complexity · 2e8c114b581ec1d34c61a16d591b6ea2 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGApplication.java created on 10-jul-2007 at 10:13:31
  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.exceptions.InterpreterException;
  30. import edu.vub.at.objects.ATContext;
  31. import edu.vub.at.objects.ATObject;
  32. import edu.vub.at.objects.grammar.ATLookup;
  33. import edu.vub.at.objects.grammar.ATSymbol;
  34. import edu.vub.at.objects.natives.NATText;
  35. import java.util.HashSet;
  36. import java.util.Set;
  37. /**
  38. * The native implementation of a lexical lookup AG element.
  39. * Example: <tt>&foo</tt>
  40. *
  41. * @author smostinc
  42. */
  43. public final class AGLookup extends AGExpression implements ATLookup {
  44. private final ATSymbol selector_;
  45. /** construct a new lookup AG element */
  46. public AGLookup(ATSymbol fun) {
  47. selector_ = fun;
  48. }
  49. public ATSymbol base_selector() { return selector_; }
  50. /**
  51. * To evaluate a lexical lookup, the function name is sought for in the lexical scope.
  52. *
  53. * AGLKU(nam).eval(ctx) = ctx.lex.lookup(nam)
  54. *
  55. * @return a closure containing the requested function.
  56. */
  57. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  58. return ctx.base_lexicalScope().impl_lookup(selector_);
  59. }
  60. /**
  61. * Quoting a lookup results in a new quoted lookup.
  62. *
  63. * AGAPL(sel,arg).quote(ctx) = AGAPL(sel.quote(ctx), arg.quote(ctx))
  64. */
  65. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  66. return new AGLookup(selector_.meta_quote(ctx).asSymbol());
  67. }
  68. public NATText meta_print() throws InterpreterException {
  69. return NATText.atValue("&" + selector_.meta_print().javaValue);
  70. }
  71. /**
  72. * FV(&nam) = { nam }
  73. */
  74. public Set impl_freeVariables() throws InterpreterException {
  75. HashSet singleton = new HashSet();
  76. singleton.add(selector_);
  77. return singleton;
  78. }
  79. public Set impl_quotedFreeVariables() throws InterpreterException {
  80. return selector_.impl_quotedFreeVariables();
  81. }
  82. }