tpl, hugolib: Fix live-reload of non-renderable content pages
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Feb 2017 12:55:08 +0000 (13:55 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Feb 2017 12:56:20 +0000 (13:56 +0100)
Fixes #3062

hugolib/hugo_sites_build.go
hugolib/site.go
tpl/template.go
tpl/tplimpl/template.go

index ce2c3b9411c0212ec04e798380ce5a8b01b7c6d1..2e54cb7a830b9b2ae69a925e04aae49b86cc5e97 100644 (file)
@@ -107,6 +107,13 @@ func (h *HugoSites) initRebuild(config *BuildCfg) error {
 
        h.runMode.Watching = config.Watching
 
+       if config.whatChanged.source {
+               // This is for the non-renderable content pages (rarely used, I guess).
+               // We could maybe detect if this is really needed, but it should be
+               // pretty fast.
+               h.Tmpl.RebuildClone()
+       }
+
        for _, s := range h.Sites {
                s.resetBuildState()
        }
index cbb031680b15f345a5f49518962f1281450bdf16..b369e514ad3d154b7069f6338df5809f82611db3 100644 (file)
@@ -1571,6 +1571,7 @@ func (s *Site) resetBuildState() {
        s.Info.paginationPageCount = 0
        s.draftCount = 0
        s.futureCount = 0
+
        s.expiredCount = 0
 
        for _, p := range s.rawAllPages {
index aaf7fc8c7ca28882912c5efce6d609baea73b4b2..b94fc3242acbc4790488c1fe24c73a4cabd7537b 100644 (file)
@@ -13,6 +13,7 @@ type Template interface {
        Templates() []*template.Template
        New(name string) *template.Template
        GetClone() *template.Template
+       RebuildClone() *template.Template
        LoadTemplates(absPath string)
        LoadTemplatesWithPrefix(absPath, prefix string)
        AddTemplate(name, tpl string) error
index cf1fc5620efa36230309b854d9f50b2bd794f370..012319104899a56865a1096b906b6e3a9d402879 100644 (file)
@@ -44,7 +44,12 @@ type templateErr struct {
 type GoHTMLTemplate struct {
        *template.Template
 
-       clone *template.Template
+       // This looks, and is, strange.
+       // The clone is used by non-renderable content pages, and these need to be
+       // re-parsed on content change, and to avoid the
+       // "cannot Parse after Execute" error, we need to re-clone it from the original clone.
+       clone      *template.Template
+       cloneClone *template.Template
 
        // a separate storage for the overlays created from cloned master templates.
        // note: No mutex protection, so we add these in one Go routine, then just read.
@@ -66,7 +71,6 @@ var DefaultTemplateProvider *TemplateProvider
 // Update updates the Hugo Template System in the provided Deps.
 // with all the additional features, templates & functions
 func (*TemplateProvider) Update(deps *deps.Deps) error {
-       // TODO(bep) check that this isn't called too many times.
        tmpl := &GoHTMLTemplate{
                Template: template.New(""),
                overlays: make(map[string]*template.Template),
@@ -229,6 +233,11 @@ func (t *GoHTMLTemplate) GetClone() *template.Template {
        return t.clone
 }
 
+func (t *GoHTMLTemplate) RebuildClone() *template.Template {
+       t.clone = template.Must(t.cloneClone.Clone())
+       return t.clone
+}
+
 func (t *GoHTMLTemplate) LoadEmbedded() {
        t.EmbedShortcodes()
        t.EmbedTemplates()
@@ -236,9 +245,12 @@ func (t *GoHTMLTemplate) LoadEmbedded() {
 
 // MarkReady marks the template as "ready for execution". No changes allowed
 // after this is set.
+// TODO(bep) if this proves to be resource heavy, we could detect
+// earlier if we really need this, or make it lazy.
 func (t *GoHTMLTemplate) MarkReady() {
        if t.clone == nil {
                t.clone = template.Must(t.Template.Clone())
+               t.cloneClone = template.Must(t.clone.Clone())
        }
 }