2017-07-15 03:19:01 +02:00
|
|
|
package site
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2017-07-15 14:59:19 +02:00
|
|
|
"sync"
|
2017-07-15 03:19:01 +02:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
|
|
"github.com/osteele/gojekyll/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// WatchFiles calls fn repeatedly in a goroutine when
|
|
|
|
// files change
|
|
|
|
func (s *Site) WatchFiles(fn func([]string)) error {
|
|
|
|
var (
|
|
|
|
sourceDir = s.SourceDir()
|
|
|
|
events = make(chan string)
|
|
|
|
debounced = debounce(time.Second, events)
|
|
|
|
)
|
|
|
|
watcher, err := fsnotify.NewWatcher()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case event := <-watcher.Events:
|
|
|
|
events <- event.Name
|
|
|
|
case err := <-watcher.Errors:
|
|
|
|
fmt.Fprintln(os.Stderr, "error:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
paths := s.sitePaths(<-debounced)
|
|
|
|
if len(paths) > 0 {
|
|
|
|
fn(paths)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return watcher.Add(sourceDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
// relativize and de-dup paths and filter to those the site source
|
|
|
|
func (s *Site) sitePaths(filenames []string) []string {
|
|
|
|
var (
|
|
|
|
dir = s.SourceDir()
|
|
|
|
paths = make([]string, 0, len(filenames))
|
|
|
|
seen = map[string]bool{}
|
|
|
|
)
|
|
|
|
for _, filename := range filenames {
|
|
|
|
path := utils.MustRel(dir, filename)
|
|
|
|
if path == "_config.yml" || !s.Exclude(path) {
|
|
|
|
if !seen[path] {
|
|
|
|
seen[path] = true
|
|
|
|
paths = append(paths, path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return paths
|
|
|
|
}
|
|
|
|
|
2017-07-15 14:59:19 +02:00
|
|
|
// WatchRebuild watches the directory. Each time a file changes, it
|
|
|
|
// rebuilds the site. It sends status messages and error to its output
|
|
|
|
// channel.
|
|
|
|
//
|
|
|
|
// WatchRebuild never returns, unless there was an error creating the file watcher.
|
|
|
|
func (s *Site) WatchRebuild(o BuildOptions) (<-chan interface{}, error) {
|
|
|
|
var mu sync.Mutex
|
|
|
|
events := make(chan interface{})
|
|
|
|
return events, s.WatchFiles(func(filenames []string) {
|
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
|
|
|
|
|
|
|
// DRY w/ similar logic, messages in server.reload
|
|
|
|
count := len(filenames)
|
|
|
|
start := time.Now()
|
|
|
|
inflect := map[bool]string{true: "", false: "s"}[count == 1]
|
|
|
|
events <- fmt.Sprintf("Regenerating: %d file%s changed at %s...", count, inflect, start.Format(time.Stamp))
|
|
|
|
r, err := s.Reloaded()
|
|
|
|
if err == nil {
|
|
|
|
count, e := r.Build(o)
|
|
|
|
if e == nil {
|
|
|
|
// use the new site value the next time
|
|
|
|
s = r
|
|
|
|
elapsed := time.Since(start)
|
|
|
|
events <- fmt.Sprintf("wrote %d files in %.2fs.\n", count, elapsed.Seconds())
|
|
|
|
}
|
|
|
|
err = e
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println()
|
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-07-15 03:19:01 +02:00
|
|
|
// debounce relays values from input to output, merging successive values within interval
|
|
|
|
// TODO consider https://github.com/ReactiveX/RxGo
|
|
|
|
func debounce(interval time.Duration, input <-chan string) <-chan []string {
|
|
|
|
output := make(chan []string)
|
|
|
|
var (
|
|
|
|
pending = []string{}
|
|
|
|
ticker = time.Tick(interval) // nolint: staticcheck, megacheck
|
|
|
|
)
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case value := <-input:
|
|
|
|
pending = append(pending, value)
|
|
|
|
case <-ticker:
|
|
|
|
if len(pending) > 0 {
|
|
|
|
output <- pending
|
|
|
|
pending = []string{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return output
|
|
|
|
}
|