Search in sources :

Example 1 with StubModule

use of org.webpieces.templatingdev.api.StubModule in project webpieces by deanhiller.

the class TestSimpleTemplate method setup.

@Before
public void setup() {
    Injector injector = Guice.createInjector(new DevTemplateModule(new TemplateCompileConfig(false)), new StubModule());
    svc = injector.getInstance(DevTemplateService.class);
}
Also used : DevTemplateService(org.webpieces.templatingdev.impl.DevTemplateService) DevTemplateModule(org.webpieces.templatingdev.api.DevTemplateModule) StubModule(org.webpieces.templatingdev.api.StubModule) Injector(com.google.inject.Injector) TemplateCompileConfig(org.webpieces.templatingdev.api.TemplateCompileConfig) Before(org.junit.Before)

Example 2 with StubModule

use of org.webpieces.templatingdev.api.StubModule in project webpieces by deanhiller.

the class TemplateCompilerTask method compileImpl.

public void compileImpl(TemplateCompileOptions options) throws IOException {
    File buildDir = getProject().getBuildDir();
    //need to make customizable...
    File groovySrcGen = new File(buildDir, "groovysrc");
    System.out.println("groovy src directory=" + groovySrcGen);
    Charset encoding = Charset.forName(options.getEncoding());
    TemplateCompileConfig config = new TemplateCompileConfig(false);
    config.setFileEncoding(encoding);
    config.setPluginClient(true);
    config.setGroovySrcWriteDirectory(groovySrcGen);
    System.out.println("custom tags=" + options.getCustomTags());
    config.setCustomTagsFromPlugin(options.getCustomTags());
    LogLevel logLevel = getProject().getGradle().getStartParameter().getLogLevel();
    File destinationDir = getDestinationDir();
    System.out.println("destDir=" + destinationDir);
    File routeIdFile = new File(destinationDir, ProdTemplateModule.ROUTE_META_FILE);
    if (routeIdFile.exists())
        routeIdFile.delete();
    routeIdFile.createNewFile();
    System.out.println("routeId.txt file=" + routeIdFile.getAbsolutePath());
    FileCollection srcCollection = getSource();
    Set<File> files = srcCollection.getFiles();
    File firstFile = files.iterator().next();
    File baseDir = findBase(firstFile);
    try (FileOutputStream routeOut = new FileOutputStream(routeIdFile);
        OutputStreamWriter write = new OutputStreamWriter(routeOut, encoding.name());
        BufferedWriter bufWrite = new BufferedWriter(write)) {
        Injector injector = Guice.createInjector(new StubModule(), new DevTemplateModule(config, new PluginCompileCallback(destinationDir, bufWrite)));
        HtmlToJavaClassCompiler compiler = injector.getInstance(HtmlToJavaClassCompiler.class);
        GroovyClassLoader cl = new GroovyClassLoader();
        for (File f : files) {
            System.out.println("file=" + f);
            String fullName = findFullName(baseDir, f);
            System.out.println("name=" + fullName);
            String source = readSource(f);
            compiler.compile(cl, fullName, source);
        }
    }
    setDidWork(true);
}
Also used : Charset(java.nio.charset.Charset) HtmlToJavaClassCompiler(org.webpieces.templatingdev.impl.HtmlToJavaClassCompiler) FileCollection(org.gradle.api.file.FileCollection) LogLevel(org.gradle.api.logging.LogLevel) BufferedWriter(java.io.BufferedWriter) GroovyClassLoader(groovy.lang.GroovyClassLoader) StubModule(org.webpieces.templatingdev.api.StubModule) DevTemplateModule(org.webpieces.templatingdev.api.DevTemplateModule) Injector(com.google.inject.Injector) FileOutputStream(java.io.FileOutputStream) TemplateCompileConfig(org.webpieces.templatingdev.api.TemplateCompileConfig) OutputStreamWriter(java.io.OutputStreamWriter) File(java.io.File)

Aggregations

Injector (com.google.inject.Injector)2 DevTemplateModule (org.webpieces.templatingdev.api.DevTemplateModule)2 StubModule (org.webpieces.templatingdev.api.StubModule)2 TemplateCompileConfig (org.webpieces.templatingdev.api.TemplateCompileConfig)2 GroovyClassLoader (groovy.lang.GroovyClassLoader)1 BufferedWriter (java.io.BufferedWriter)1 File (java.io.File)1 FileOutputStream (java.io.FileOutputStream)1 OutputStreamWriter (java.io.OutputStreamWriter)1 Charset (java.nio.charset.Charset)1 FileCollection (org.gradle.api.file.FileCollection)1 LogLevel (org.gradle.api.logging.LogLevel)1 Before (org.junit.Before)1 DevTemplateService (org.webpieces.templatingdev.impl.DevTemplateService)1 HtmlToJavaClassCompiler (org.webpieces.templatingdev.impl.HtmlToJavaClassCompiler)1