/interpreter/tags/at2-build270707/src/edu/vub/at/objects/natives/grammar/AGImport.java

http://ambienttalk.googlecode.com/ · Java · 142 lines · 69 code · 18 blank · 55 comment · 7 complexity · c2fda4e1a0c74d017c634c2f1321d981 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * AGImport.java created on 6-mrt-2007 at 21:34:54
  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.eval.Import;
  31. import edu.vub.at.exceptions.InterpreterException;
  32. import edu.vub.at.exceptions.XIllegalArgument;
  33. import edu.vub.at.objects.ATContext;
  34. import edu.vub.at.objects.ATObject;
  35. import edu.vub.at.objects.ATTable;
  36. import edu.vub.at.objects.grammar.ATExpression;
  37. import edu.vub.at.objects.grammar.ATImport;
  38. import edu.vub.at.objects.natives.NATTable;
  39. import edu.vub.at.objects.natives.NATText;
  40. import java.util.HashSet;
  41. import java.util.Hashtable;
  42. /**
  43. * The public interface to a native import AST component, which is of the form:
  44. * 'import <expression> (alias (symbol := symbol)+ )? (exclude symbol (, symbol)* )?'
  45. *
  46. * @see edu.vub.at.objects.grammar.ATImport
  47. *
  48. * @author tvcutsem
  49. */
  50. public class AGImport extends NATAbstractGrammar implements ATImport {
  51. private final ATExpression importedObjectExp_;
  52. private final ATTable aliasDeclarations_;
  53. private final ATTable excludesDeclarations_;
  54. /**
  55. * For efficiency purposes, the table form of the alias mapping is preprocessed
  56. * into a hashtable format.
  57. */
  58. private final Hashtable aliasedSymbols_; // maps ATSymbols to ATSymbols
  59. /**
  60. * For efficiency purposes, the table form of the excluded symbols is preprocessed
  61. * into a hashset format.
  62. */
  63. private final HashSet excludedSymbols_; // contains ATSymbols
  64. public AGImport(ATExpression importedObjectExp, ATTable aliasDeclarations, ATTable excludesDeclarations) throws InterpreterException {
  65. importedObjectExp_ = importedObjectExp;
  66. aliasDeclarations_ = aliasDeclarations;
  67. excludesDeclarations_ = excludesDeclarations;
  68. aliasedSymbols_ = Import.preprocessAliases(aliasDeclarations_);
  69. excludedSymbols_ = Import.preprocessExcludes(excludesDeclarations_);
  70. }
  71. public ATTable base_aliasedSymbols() throws InterpreterException {
  72. return aliasDeclarations_;
  73. }
  74. public ATTable base_excludedSymbols() throws InterpreterException {
  75. return excludesDeclarations_;
  76. }
  77. public ATExpression base_importedObjectExpression() throws InterpreterException {
  78. return importedObjectExp_;
  79. }
  80. /**
  81. * AGIMPORT(exp,aliases,excludes).eval(ctx) =
  82. * import(exp.eval(ctx), ctx, preprocess(aliases), preprocess(excludes)) ;
  83. * NIL
  84. */
  85. public ATObject meta_eval(ATContext ctx) throws InterpreterException {
  86. return Import.performImport(importedObjectExp_.meta_eval(ctx), ctx, aliasedSymbols_, excludedSymbols_);
  87. }
  88. /**
  89. * Quoting an import statement results in a new quoted import statement.
  90. *
  91. * AGIMPORT(exp,aliases,excludes).quote(ctx) = AGIMPORT(exp.quote(ctx), aliases.quote(ctx), excludes.quote(ctx))
  92. */
  93. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  94. return new AGImport(importedObjectExp_.meta_quote(ctx).asExpression(),
  95. aliasDeclarations_.meta_quote(ctx).asTable(),
  96. excludesDeclarations_.meta_quote(ctx).asTable());
  97. }
  98. public NATText meta_print() throws InterpreterException {
  99. StringBuffer expression = new StringBuffer("import " + importedObjectExp_.meta_print().javaValue);
  100. if (aliasDeclarations_ != NATTable.EMPTY) {
  101. expression.append(" alias ");
  102. ATObject[] aliases = aliasDeclarations_.asNativeTable().elements_;
  103. // append first alias
  104. printAliasBinding(expression, aliases[0].asNativeTable());
  105. for (int i = 1; i < aliases.length; i++) {
  106. // append rest of the aliases
  107. expression.append(",");
  108. printAliasBinding(expression, aliases[i].asNativeTable());
  109. }
  110. }
  111. if (excludesDeclarations_ != NATTable.EMPTY) {
  112. expression.append(" exclude ");
  113. expression.append(Evaluator.printElements(excludesDeclarations_.asNativeTable().elements_, "", ",", "").javaValue);
  114. }
  115. return NATText.atValue(expression.toString());
  116. }
  117. private void printAliasBinding(StringBuffer buff, NATTable aliasBinding) throws InterpreterException {
  118. ATObject[] binding = aliasBinding.elements_;
  119. if (binding.length != 2) {
  120. throw new XIllegalArgument("Alias binding of import statement is not a table of size two: " + aliasBinding.meta_print().javaValue);
  121. }
  122. buff.append(binding[0].meta_print().javaValue).append(" := ").append(binding[1].meta_print().javaValue);
  123. }
  124. }