/src/org/plovr/SoyFile.java

https://code.google.com/p/plovr/ · Java · 114 lines · 87 code · 18 blank · 9 comment · 3 complexity · e320d7c25eb112ca561cd8e0ee4e68a2 MD5 · raw file

  1. package org.plovr;
  2. import java.io.File;
  3. import java.io.IOException;
  4. import java.util.List;
  5. import java.util.Map;
  6. import java.util.logging.Logger;
  7. import org.plovr.io.Files;
  8. import com.google.common.collect.Lists;
  9. import com.google.common.collect.Maps;
  10. import com.google.inject.Guice;
  11. import com.google.inject.Injector;
  12. import com.google.inject.Module;
  13. import com.google.template.soy.SoyFileSet;
  14. import com.google.template.soy.SoyModule;
  15. import com.google.template.soy.base.SoySyntaxException;
  16. import com.google.template.soy.jssrc.SoyJsSrcOptions;
  17. import com.google.template.soy.jssrc.SoyJsSrcOptions.CodeStyle;
  18. import com.google.template.soy.msgs.SoyMsgBundle;
  19. import com.google.template.soy.shared.SoyGeneralOptions.CssHandlingScheme;
  20. /**
  21. * {@link JsSourceFile} represents a Soy file.
  22. *
  23. * @author bolinfest@gmail.com (Michael Bolin)
  24. */
  25. public class SoyFile extends LocalFileJsInput {
  26. private static final Logger logger = Logger.getLogger("org.plovr.SoyFile");
  27. private static final Map<SoyFileOptions, SoyJsSrcOptions> jsSrcOptionsMap =
  28. Maps.newHashMap();
  29. private final Injector injector;
  30. private final SoyJsSrcOptions jsSrcOptions;
  31. SoyFile(String name, File source, SoyFileOptions soyFileOptions) {
  32. super(name, source);
  33. this.injector = createInjector(soyFileOptions.pluginModuleNames);
  34. this.jsSrcOptions = get(soyFileOptions);
  35. }
  36. private static SoyJsSrcOptions get(SoyFileOptions options) {
  37. SoyJsSrcOptions value = jsSrcOptionsMap.get(options);
  38. if (value == null) {
  39. value = new SoyJsSrcOptions();
  40. value.setShouldGenerateJsdoc(true);
  41. value.setShouldProvideRequireSoyNamespaces(options.useClosureLibrary);
  42. value.setShouldDeclareTopLevelNamespaces(options.useClosureLibrary);
  43. value.setIsUsingIjData(options.isUsingInjectedData);
  44. // TODO(mbolin): Make this configurable, though for now, prefer CONCAT
  45. // because the return type in STRINGBUILDER mode is {string|undefined}
  46. // whereas in CONCAT mode, it is simply {string}, which is much simplier
  47. // to deal with in the context of the Closure Compiler's type system.
  48. value.setCodeStyle(CodeStyle.CONCAT);
  49. jsSrcOptionsMap.put(options, value);
  50. }
  51. return value;
  52. }
  53. @Override
  54. public String getCode() {
  55. SoyFileSet.Builder builder = injector.getInstance(SoyFileSet.Builder.class);
  56. builder.add(getSource());
  57. builder.setCssHandlingScheme(CssHandlingScheme.BACKEND_SPECIFIC);
  58. SoyFileSet fileSet = builder.build();
  59. final SoyMsgBundle msgBundle = null;
  60. try {
  61. String code = fileSet.compileToJsSrc(jsSrcOptions, msgBundle).get(0);
  62. logger.fine(code);
  63. return code;
  64. } catch (SoySyntaxException e) {
  65. throw new PlovrSoySyntaxException(e, this);
  66. }
  67. }
  68. @Override
  69. public boolean isSoyFile() {
  70. return true;
  71. }
  72. @Override
  73. public String getTemplateCode() {
  74. try {
  75. return Files.toString(getSource());
  76. } catch (IOException e) {
  77. throw new RuntimeException(e);
  78. }
  79. }
  80. public static Injector createInjector(List<String> pluginModuleNames) {
  81. List<Module> guiceModules = Lists.newArrayList();
  82. guiceModules.add(new SoyModule());
  83. for (String name : pluginModuleNames) {
  84. try {
  85. guiceModules.add((Module) Class.forName(name).newInstance());
  86. } catch (ClassNotFoundException e) {
  87. throw new RuntimeException("Cannot find plugin module \"" + name + "\".", e);
  88. } catch (IllegalAccessException e) {
  89. throw new RuntimeException("Cannot access plugin module \"" + name + "\".", e);
  90. } catch (InstantiationException e) {
  91. throw new RuntimeException("Cannot instantiate plugin module \"" + name + "\".", e);
  92. }
  93. }
  94. return Guice.createInjector(guiceModules);
  95. }
  96. }