)
type Page struct {
+ *pageInit
// Kind is the discriminator that identifies the different page types
// in the different page collections. This can, as an example, be used
shortcodes map[string]shortcode
// the content stripped for HTML
- plain string // TODO should be []byte
- plainWords []string
- plainInit sync.Once
- plainWordsInit sync.Once
+ plain string // TODO should be []byte
+ plainWords []string
// rendering configuration
- renderingConfig *helpers.Blackfriday
- renderingConfigInit sync.Once
+ renderingConfig *helpers.Blackfriday
// menus
- pageMenus PageMenus
- pageMenusInit sync.Once
+ pageMenus PageMenus
Source
URLPath
- paginator *Pager
- paginatorInit sync.Once
+ paginator *Pager
scratch *Scratch
- language *helpers.Language
- languageInit sync.Once
- lang string
+ language *helpers.Language
+ lang string
+}
+
+// pageInit lazy initializes different parts of the page. It is extracted
+// into its own type so we can easily create a copy of a given page.
+type pageInit struct {
+ languageInit sync.Once
+ pageMenusInit sync.Once
+ pageMetaInit sync.Once
+ paginatorInit sync.Once
+ plainInit sync.Once
+ plainWordsInit sync.Once
+ renderingConfigInit sync.Once
}
// IsNode returns whether this is an item of one of the list types in Hugo,
wordCount int
fuzzyWordCount int
readingTime int
- pageMetaInit sync.Once
Weight int
}
func newPage(filename string) *Page {
page := Page{
+ pageInit: &pageInit{},
Kind: kindFromFilename(filename),
contentType: "",
Source: Source{File: *source.NewFile(filename)},
}
}
-// Page constains some sync.Once which have a mutex, so we cannot just
-// copy the Page by value. So for the situations where we need a copy,
-// the paginators etc., we do it manually here.
-// TODO(bep) np do better
+// copy creates a copy of this page with the lazy sync.Once vars reset
+// so they will be evaluated again, for word count calculations etc.
func (p *Page) copy() *Page {
- c := &Page{Kind: p.Kind, Site: p.Site}
- c.Title = p.Title
- c.Data = p.Data
- c.Date = p.Date
- c.Lastmod = p.Lastmod
- c.language = p.language
- c.lang = p.lang
- c.URLPath = p.URLPath
- return c
+ c := *p
+ c.pageInit = &pageInit{}
+ return &c
}
// TODO(bep) np these are pulled over from Node. Needs regrouping / embed