From fb58f161a5036e3f1fdc040679b6ee9efe22ade2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 4 Apr 2019 15:57:07 +0200 Subject: Added hot reloading of rocker templates --- src/main/kotlin/App.kt | 8 +- src/main/resources/compiled-views/files.java | 133 -------------------- src/main/resources/compiled-views/fileview.java | 104 ---------------- .../resources/compiled-views/rocker-compiler.conf | 11 ++ src/main/resources/generated-views/files.java | 136 +++++++++++++++++++++ src/main/resources/generated-views/fileview.java | 107 ++++++++++++++++ src/main/resources/rocker-compiler.conf | 1 + src/main/resources/views/fileview.rocker.html | 2 - 8 files changed, 258 insertions(+), 244 deletions(-) delete mode 100644 src/main/resources/compiled-views/files.java delete mode 100644 src/main/resources/compiled-views/fileview.java create mode 100644 src/main/resources/compiled-views/rocker-compiler.conf create mode 100644 src/main/resources/generated-views/files.java create mode 100644 src/main/resources/generated-views/fileview.java create mode 120000 src/main/resources/rocker-compiler.conf (limited to 'src/main') diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index a9e2018..327dec4 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -1,6 +1,7 @@ package space.anity import com.fizzed.rocker.* +import com.fizzed.rocker.runtime.* import io.javalin.* import io.javalin.core.util.* import io.javalin.rendering.* @@ -14,6 +15,8 @@ val db = DatabaseController() fun main() { val app = Javalin.create().enableStaticFiles("../resources/").start(7000) + // Set up templating + RockerRuntime.getInstance().isReloading = true JavalinRenderer.register( FileRenderer { filepath, model -> Rocker.template(filepath).bind(model).render().toString() }, ".rocker.html" ) @@ -77,8 +80,3 @@ fun upload(ctx: Context) { throw BadRequestResponse("Error: Please enter a filename.") } } - - - - - diff --git a/src/main/resources/compiled-views/files.java b/src/main/resources/compiled-views/files.java deleted file mode 100644 index b37859f..0000000 --- a/src/main/resources/compiled-views/files.java +++ /dev/null @@ -1,133 +0,0 @@ - -import com.fizzed.rocker.RenderingException; -import com.fizzed.rocker.runtime.DefaultRockerTemplate; -import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader; - -import java.io.IOException; -import java.util.ArrayList; - -// import @ [1:1] - -/* - * Auto generated code to render template /files.rocker.html - * Do not edit this file. Changes will eventually be overwritten by Rocker parser! - */ -@SuppressWarnings("unused") -public class files extends com.fizzed.rocker.runtime.DefaultRockerModel { - - static public com.fizzed.rocker.ContentType getContentType() { - return com.fizzed.rocker.ContentType.HTML; - } - - static public String getTemplateName() { - return "files.rocker.html"; - } - - static public String getTemplatePackageName() { - return ""; - } - - static public String getHeaderHash() { - return "-1618097059"; - } - - static public String[] getArgumentNames() { - return new String[]{"files"}; - } - - // argument @ [2:2] - private ArrayList files; - - public files files(ArrayList files) { - this.files = files; - return this; - } - - public ArrayList files() { - return this.files; - } - - static public files template(ArrayList files) { - return new files() - .files(files); - } - - @Override - protected DefaultRockerTemplate buildTemplate() throws RenderingException { - // optimized for performance (via rocker.optimize flag; no auto reloading) - return new Template(this); - } - - static public class Template extends com.fizzed.rocker.runtime.DefaultRockerTemplate { - - // - static private final byte[] PLAIN_TEXT_1_0; - //
\n - static private final byte[] PLAIN_TEXT_2_0; - - static { - PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(files.class.getClassLoader(), files.class.getName() + "$PlainText", "UTF-8"); - PLAIN_TEXT_0_0 = loader.tryGet("PLAIN_TEXT_0_0"); - PLAIN_TEXT_1_0 = loader.tryGet("PLAIN_TEXT_1_0"); - PLAIN_TEXT_2_0 = loader.tryGet("PLAIN_TEXT_2_0"); - } - - // argument @ [2:2] - protected final ArrayList files; - - public Template(files model) { - super(model); - __internal.setCharset("UTF-8"); - __internal.setContentType(getContentType()); - __internal.setTemplateName(getTemplateName()); - __internal.setTemplatePackageName(getTemplatePackageName()); - this.files = model.files(); - } - - @Override - protected void __doRender() throws IOException, RenderingException { - // ForBlockBegin @ [3:1] - __internal.aboutToExecutePosInTemplate(3, 1); - try { - final com.fizzed.rocker.runtime.IterableForIterator __forIterator0 = new com.fizzed.rocker.runtime.IterableForIterator(files); - while (__forIterator0.hasNext()) { - final String file = __forIterator0.next(); - try { - // PlainText @ [3:29] - __internal.aboutToExecutePosInTemplate(3, 29); - __internal.writeValue(PLAIN_TEXT_0_0); - // ValueExpression @ [4:10] - __internal.aboutToExecutePosInTemplate(4, 10); - __internal.renderValue(file, false); - // PlainText @ [4:15] - __internal.aboutToExecutePosInTemplate(4, 15); - __internal.writeValue(PLAIN_TEXT_1_0); - // ValueExpression @ [4:17] - __internal.aboutToExecutePosInTemplate(4, 17); - __internal.renderValue(file, false); - // PlainText @ [4:22] - __internal.aboutToExecutePosInTemplate(4, 22); - __internal.writeValue(PLAIN_TEXT_2_0); - // ForBlockEnd @ [3:1] - __internal.aboutToExecutePosInTemplate(3, 1); - } catch (com.fizzed.rocker.runtime.ContinueException e) { - // support for continuing for loops - } - } // for end @ [3:1] - } catch (com.fizzed.rocker.runtime.BreakException e) { - // support for breaking for loops - } - } - } - - private static class PlainText { - - static private final String PLAIN_TEXT_0_0 = ""; - static private final String PLAIN_TEXT_2_0 = "
\n"; - - } - -} diff --git a/src/main/resources/compiled-views/fileview.java b/src/main/resources/compiled-views/fileview.java deleted file mode 100644 index 67de59f..0000000 --- a/src/main/resources/compiled-views/fileview.java +++ /dev/null @@ -1,104 +0,0 @@ - -import com.fizzed.rocker.RenderingException; -import com.fizzed.rocker.runtime.DefaultRockerTemplate; -import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader; - -import java.io.IOException; - -/* - * Auto generated code to render template /fileview.rocker.html - * Do not edit this file. Changes will eventually be overwritten by Rocker parser! - */ -@SuppressWarnings("unused") -public class fileview extends com.fizzed.rocker.runtime.DefaultRockerModel { - - static public com.fizzed.rocker.ContentType getContentType() { - return com.fizzed.rocker.ContentType.HTML; - } - - static public String getTemplateName() { - return "fileview.rocker.html"; - } - - static public String getTemplatePackageName() { - return ""; - } - - static public String getHeaderHash() { - return "868254209"; - } - - static public String[] getArgumentNames() { - return new String[]{"content"}; - } - - // argument @ [1:2] - private String content; - - public fileview content(String content) { - this.content = content; - return this; - } - - public String content() { - return this.content; - } - - static public fileview template(String content) { - return new fileview() - .content(content); - } - - @Override - protected DefaultRockerTemplate buildTemplate() throws RenderingException { - // optimized for performance (via rocker.optimize flag; no auto reloading) - return new Template(this); - } - - static public class Template extends com.fizzed.rocker.runtime.DefaultRockerTemplate { - - // \n\n\n \n \n \n Fileview\n\n\n\n\n\n - static private final byte[] PLAIN_TEXT_1_0; - - static { - PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(fileview.class.getClassLoader(), fileview.class.getName() + "$PlainText", "UTF-8"); - PLAIN_TEXT_0_0 = loader.tryGet("PLAIN_TEXT_0_0"); - PLAIN_TEXT_1_0 = loader.tryGet("PLAIN_TEXT_1_0"); - } - - // argument @ [1:2] - protected final String content; - - public Template(fileview model) { - super(model); - __internal.setCharset("UTF-8"); - __internal.setContentType(getContentType()); - __internal.setTemplateName(getTemplateName()); - __internal.setTemplatePackageName(getTemplatePackageName()); - this.content = model.content(); - } - - @Override - protected void __doRender() throws IOException, RenderingException { - // PlainText @ [1:23] - __internal.aboutToExecutePosInTemplate(1, 23); - __internal.writeValue(PLAIN_TEXT_0_0); - // ValueExpression @ [14:5] - __internal.aboutToExecutePosInTemplate(14, 5); - __internal.renderValue(content, false); - // PlainText @ [14:13] - __internal.aboutToExecutePosInTemplate(14, 13); - __internal.writeValue(PLAIN_TEXT_1_0); - } - } - - private static class PlainText { - - static private final String PLAIN_TEXT_0_0 = "\n\n\n \n \n \n Fileview\n\n\n\n\n\n"; - - } - -} diff --git a/src/main/resources/compiled-views/rocker-compiler.conf b/src/main/resources/compiled-views/rocker-compiler.conf new file mode 100644 index 0000000..a8998bd --- /dev/null +++ b/src/main/resources/compiled-views/rocker-compiler.conf @@ -0,0 +1,11 @@ +#rocker.output.dir +#Thu Apr 04 15:51:56 CEST 2019 +rocker.class.dir=/home/melvin/Coding/kloud/src/main/resources/compiled-views +rocker.option.extendsClass=com.fizzed.rocker.runtime.DefaultRockerTemplate +rocker.option.optimize=false +rocker.output.dir=/home/melvin/Coding/kloud/src/main/resources/generated-views +rocker.option.targetCharset=UTF-8 +rocker.template.dir=/home/melvin/Coding/kloud/src/main/resources/views +rocker.option.combineAdjacentPlain=true +rocker.option.javaVersion=1.8 +rocker.option.extendsModelClass=com.fizzed.rocker.runtime.DefaultRockerModel diff --git a/src/main/resources/generated-views/files.java b/src/main/resources/generated-views/files.java new file mode 100644 index 0000000..935aca1 --- /dev/null +++ b/src/main/resources/generated-views/files.java @@ -0,0 +1,136 @@ +import com.fizzed.rocker.RenderingException; +import com.fizzed.rocker.runtime.DefaultRockerTemplate; +import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader; + +import java.io.IOException; +import java.util.ArrayList; + +// import @ [1:1] + +/* + * Auto generated code to render template /files.rocker.html + * Do not edit this file. Changes will eventually be overwritten by Rocker parser! + */ +@SuppressWarnings("unused") +public class files extends com.fizzed.rocker.runtime.DefaultRockerModel { + + static public com.fizzed.rocker.ContentType getContentType() { + return com.fizzed.rocker.ContentType.HTML; + } + + static public String getTemplateName() { + return "files.rocker.html"; + } + + static public String getTemplatePackageName() { + return ""; + } + + static public String getHeaderHash() { + return "-1618097059"; + } + + static public long getModifiedAt() { + return 1554383637000L; + } + + static public String[] getArgumentNames() { + return new String[]{"files"}; + } + + // argument @ [2:2] + private ArrayList files; + + public files files(ArrayList files) { + this.files = files; + return this; + } + + public ArrayList files() { + return this.files; + } + + static public files template(ArrayList files) { + return new files() + .files(files); + } + + @Override + protected DefaultRockerTemplate buildTemplate() throws RenderingException { + // optimized for convenience (runtime auto reloading enabled if rocker.reloading=true) + return com.fizzed.rocker.runtime.RockerRuntime.getInstance().getBootstrap().template(this.getClass(), this); + } + + static public class Template extends com.fizzed.rocker.runtime.DefaultRockerTemplate { + + // + static private final byte[] PLAIN_TEXT_1_0; + //
\n + static private final byte[] PLAIN_TEXT_2_0; + + static { + PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(files.class.getClassLoader(), files.class.getName() + "$PlainText", "UTF-8"); + PLAIN_TEXT_0_0 = loader.tryGet("PLAIN_TEXT_0_0"); + PLAIN_TEXT_1_0 = loader.tryGet("PLAIN_TEXT_1_0"); + PLAIN_TEXT_2_0 = loader.tryGet("PLAIN_TEXT_2_0"); + } + + // argument @ [2:2] + protected final ArrayList files; + + public Template(files model) { + super(model); + __internal.setCharset("UTF-8"); + __internal.setContentType(getContentType()); + __internal.setTemplateName(getTemplateName()); + __internal.setTemplatePackageName(getTemplatePackageName()); + this.files = model.files(); + } + + @Override + protected void __doRender() throws IOException, RenderingException { + // ForBlockBegin @ [3:1] + __internal.aboutToExecutePosInTemplate(3, 1); + try { + final com.fizzed.rocker.runtime.IterableForIterator __forIterator0 = new com.fizzed.rocker.runtime.IterableForIterator(files); + while (__forIterator0.hasNext()) { + final String file = __forIterator0.next(); + try { + // PlainText @ [3:29] + __internal.aboutToExecutePosInTemplate(3, 29); + __internal.writeValue(PLAIN_TEXT_0_0); + // ValueExpression @ [4:10] + __internal.aboutToExecutePosInTemplate(4, 10); + __internal.renderValue(file, false); + // PlainText @ [4:15] + __internal.aboutToExecutePosInTemplate(4, 15); + __internal.writeValue(PLAIN_TEXT_1_0); + // ValueExpression @ [4:17] + __internal.aboutToExecutePosInTemplate(4, 17); + __internal.renderValue(file, false); + // PlainText @ [4:22] + __internal.aboutToExecutePosInTemplate(4, 22); + __internal.writeValue(PLAIN_TEXT_2_0); + // ForBlockEnd @ [3:1] + __internal.aboutToExecutePosInTemplate(3, 1); + } catch (com.fizzed.rocker.runtime.ContinueException e) { + // support for continuing for loops + } + } // for end @ [3:1] + } catch (com.fizzed.rocker.runtime.BreakException e) { + // support for breaking for loops + } + } + } + + private static class PlainText { + + static private final String PLAIN_TEXT_0_0 = ""; + static private final String PLAIN_TEXT_2_0 = "
\n"; + + } + +} diff --git a/src/main/resources/generated-views/fileview.java b/src/main/resources/generated-views/fileview.java new file mode 100644 index 0000000..94785ca --- /dev/null +++ b/src/main/resources/generated-views/fileview.java @@ -0,0 +1,107 @@ +import com.fizzed.rocker.RenderingException; +import com.fizzed.rocker.runtime.DefaultRockerTemplate; +import com.fizzed.rocker.runtime.PlainTextUnloadedClassLoader; + +import java.io.IOException; + +/* + * Auto generated code to render template /fileview.rocker.html + * Do not edit this file. Changes will eventually be overwritten by Rocker parser! + */ +@SuppressWarnings("unused") +public class fileview extends com.fizzed.rocker.runtime.DefaultRockerModel { + + static public com.fizzed.rocker.ContentType getContentType() { + return com.fizzed.rocker.ContentType.HTML; + } + + static public String getTemplateName() { + return "fileview.rocker.html"; + } + + static public String getTemplatePackageName() { + return ""; + } + + static public String getHeaderHash() { + return "868254209"; + } + + static public long getModifiedAt() { + return 1554384470000L; + } + + static public String[] getArgumentNames() { + return new String[]{"content"}; + } + + // argument @ [1:2] + private String content; + + public fileview content(String content) { + this.content = content; + return this; + } + + public String content() { + return this.content; + } + + static public fileview template(String content) { + return new fileview() + .content(content); + } + + @Override + protected DefaultRockerTemplate buildTemplate() throws RenderingException { + // optimized for convenience (runtime auto reloading enabled if rocker.reloading=true) + return com.fizzed.rocker.runtime.RockerRuntime.getInstance().getBootstrap().template(this.getClass(), this); + } + + static public class Template extends com.fizzed.rocker.runtime.DefaultRockerTemplate { + + // \n\n\n \n \n \n Fileview\n\n\n + static private final byte[] PLAIN_TEXT_0_0; + // \n\n\n + static private final byte[] PLAIN_TEXT_1_0; + + static { + PlainTextUnloadedClassLoader loader = PlainTextUnloadedClassLoader.tryLoad(fileview.class.getClassLoader(), fileview.class.getName() + "$PlainText", "UTF-8"); + PLAIN_TEXT_0_0 = loader.tryGet("PLAIN_TEXT_0_0"); + PLAIN_TEXT_1_0 = loader.tryGet("PLAIN_TEXT_1_0"); + } + + // argument @ [1:2] + protected final String content; + + public Template(fileview model) { + super(model); + __internal.setCharset("UTF-8"); + __internal.setContentType(getContentType()); + __internal.setTemplateName(getTemplateName()); + __internal.setTemplatePackageName(getTemplatePackageName()); + this.content = model.content(); + } + + @Override + protected void __doRender() throws IOException, RenderingException { + // PlainText @ [1:23] + __internal.aboutToExecutePosInTemplate(1, 23); + __internal.writeValue(PLAIN_TEXT_0_0); + // ValueExpression @ [13:5] + __internal.aboutToExecutePosInTemplate(13, 5); + __internal.renderValue(content, false); + // PlainText @ [13:13] + __internal.aboutToExecutePosInTemplate(13, 13); + __internal.writeValue(PLAIN_TEXT_1_0); + } + } + + private static class PlainText { + + static private final String PLAIN_TEXT_0_0 = "\n\n\n \n \n \n Fileview\n\n\n "; + static private final String PLAIN_TEXT_1_0 = "\n\n\n"; + + } + +} diff --git a/src/main/resources/rocker-compiler.conf b/src/main/resources/rocker-compiler.conf new file mode 120000 index 0000000..07c7588 --- /dev/null +++ b/src/main/resources/rocker-compiler.conf @@ -0,0 +1 @@ +compiled-views/rocker-compiler.conf \ No newline at end of file diff --git a/src/main/resources/views/fileview.rocker.html b/src/main/resources/views/fileview.rocker.html index 910bdf2..250f34f 100644 --- a/src/main/resources/views/fileview.rocker.html +++ b/src/main/resources/views/fileview.rocker.html @@ -10,8 +10,6 @@ Fileview - -- cgit v1.2.3