/interpreter/tags/reactive-pattern-matching/src/edu/vub/at/objects/natives/grammar/AGImport.java

http://ambienttalk.googlecode.com/ · Java · 156 lines · 78 code · 18 blank · 60 comment · 13 complexity · daaf5c005d7b7147adaebeffe00f6997 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.grammar.ATExpression;
  36. import edu.vub.at.objects.grammar.ATImport;
  37. import edu.vub.at.objects.natives.NATTable;
  38. import edu.vub.at.objects.natives.NATText;
  39. import java.util.HashSet;
  40. import java.util.Hashtable;
  41. /**
  42. * The public interface to a native import AST component, which is of the form:
  43. * 'import <expression> (alias (symbol := symbol)+ )? (exclude symbol (, symbol)* )?'
  44. *
  45. * @see edu.vub.at.objects.grammar.ATImport
  46. *
  47. * @author tvcutsem
  48. */
  49. public class AGImport extends NATAbstractGrammar implements ATImport {
  50. private final ATExpression importedObjectExp_;
  51. private final ATExpression aliasDeclarations_;
  52. private final ATExpression excludesDeclarations_;
  53. /**
  54. * For efficiency purposes, the table form of the alias mapping is preprocessed
  55. * into a hashtable format.
  56. */
  57. private Hashtable aliasedSymbols_; // maps ATSymbols to ATSymbols
  58. /**
  59. * For efficiency purposes, the table form of the excluded symbols is preprocessed
  60. * into a hashset format.
  61. */
  62. private HashSet excludedSymbols_; // contains ATSymbols
  63. /** create a new import statement. The alias and excludes declaration tables may still contain quoted expressions */
  64. public AGImport(ATExpression importedObjectExp, ATExpression aliasDeclarations, ATExpression excludesDeclarations) {
  65. importedObjectExp_ = importedObjectExp;
  66. aliasDeclarations_ = aliasDeclarations;
  67. excludesDeclarations_ = excludesDeclarations;
  68. // cannot already preprocess the import statement here, as it may contain
  69. // unquotes which need to be evaluated to symbols first
  70. }
  71. public ATExpression base_aliasedSymbols() throws InterpreterException {
  72. return aliasDeclarations_;
  73. }
  74. public ATExpression 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. if (aliasedSymbols_ == null) {
  87. aliasedSymbols_ = Import.preprocessAliases(aliasDeclarations_.asTable());
  88. excludedSymbols_ = Import.preprocessExcludes(excludesDeclarations_.asTable());
  89. }
  90. return Import.performImport(importedObjectExp_.meta_eval(ctx), ctx, aliasedSymbols_, excludedSymbols_);
  91. }
  92. /**
  93. * Quoting an import statement results in a new quoted import statement.
  94. *
  95. * AGIMPORT(exp,aliases,excludes).quote(ctx) = AGIMPORT(exp.quote(ctx), aliases.quote(ctx), excludes.quote(ctx))
  96. */
  97. public ATObject meta_quote(ATContext ctx) throws InterpreterException {
  98. return new AGImport(importedObjectExp_.meta_quote(ctx).asExpression(),
  99. aliasDeclarations_.meta_quote(ctx).asExpression(),
  100. excludesDeclarations_.meta_quote(ctx).asExpression());
  101. }
  102. public NATText meta_print() throws InterpreterException {
  103. StringBuffer expression = new StringBuffer("import " + importedObjectExp_.meta_print().javaValue);
  104. if (aliasDeclarations_ != NATTable.EMPTY) {
  105. expression.append(" alias ");
  106. if (aliasDeclarations_.isTable()) {
  107. ATObject[] aliases = aliasDeclarations_.asNativeTable().elements_;
  108. // append first alias
  109. printAliasBinding(expression, aliases[0].asNativeTable());
  110. for (int i = 1; i < aliases.length; i++) {
  111. // append rest of the aliases
  112. expression.append(",");
  113. printAliasBinding(expression, aliases[i].asNativeTable());
  114. }
  115. } else {
  116. // list of aliases is a quatation
  117. expression.append(aliasDeclarations_.meta_print().javaValue);
  118. }
  119. }
  120. if (excludesDeclarations_ != NATTable.EMPTY) {
  121. expression.append(" exclude ");
  122. if (excludesDeclarations_.isTable()) {
  123. expression.append(Evaluator.printElements(excludesDeclarations_.asNativeTable().elements_, "", ",", "").javaValue);
  124. } else {
  125. // list of excluded symbols is a quotation
  126. expression.append(excludesDeclarations_.meta_print().javaValue);
  127. }
  128. }
  129. return NATText.atValue(expression.toString());
  130. }
  131. private void printAliasBinding(StringBuffer buff, NATTable aliasBinding) throws InterpreterException {
  132. ATObject[] binding = aliasBinding.elements_;
  133. if (binding.length != 2) {
  134. throw new XIllegalArgument("Alias binding of import statement is not a table of size two: " + aliasBinding.meta_print().javaValue);
  135. }
  136. buff.append(binding[0].meta_print().javaValue).append(" := ").append(binding[1].meta_print().javaValue);
  137. }
  138. }