You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
203 lines
4.5 KiB
Go
203 lines
4.5 KiB
Go
// continuserv proactively re-generates the spec on filesystem changes, and serves it over HTTP.
|
|
// It will always serve the most recent version of the spec, and may block an HTTP request until regeneration is finished.
|
|
// It does not currently pre-empt stale generations, but will block until they are complete.
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
fsnotify "gopkg.in/fsnotify.v1"
|
|
)
|
|
|
|
var (
|
|
port = flag.Int("port", 8000, "Port on which to serve HTTP")
|
|
|
|
mu sync.Mutex // Prevent multiple updates in parallel.
|
|
toServe atomic.Value // Always contains a bytesOrErr. May be stale unless wg is zero.
|
|
|
|
wgMu sync.Mutex // Prevent multiple calls to wg.Wait() or wg.Add(positive number) in parallel.
|
|
wg sync.WaitGroup // Indicates how many updates are pending.
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
w, err := fsnotify.NewWatcher()
|
|
if err != nil {
|
|
log.Fatalf("Error making watcher: %v", err)
|
|
}
|
|
|
|
dir, err := os.Getwd()
|
|
if err != nil {
|
|
log.Fatalf("Error getting wd: %v", err)
|
|
}
|
|
for ; !exists(path.Join(dir, ".git")); dir = path.Dir(dir) {
|
|
if dir == "/" {
|
|
log.Fatalf("Could not find git root")
|
|
}
|
|
}
|
|
|
|
filepath.Walk(dir, makeWalker(w))
|
|
|
|
wg.Add(1)
|
|
populateOnce(dir)
|
|
|
|
ch := make(chan struct{}, 100) // Buffered to ensure we can multiple-increment wg for pending writes
|
|
go doPopulate(ch, dir)
|
|
|
|
go watchFS(ch, w)
|
|
fmt.Printf("Listening on port %d\n", *port)
|
|
http.HandleFunc("/", serve)
|
|
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", *port), nil))
|
|
|
|
}
|
|
|
|
func watchFS(ch chan struct{}, w *fsnotify.Watcher) {
|
|
for {
|
|
select {
|
|
case e := <-w.Events:
|
|
if filter(e) {
|
|
fmt.Printf("Noticed change to %s, re-generating spec\n", e.Name)
|
|
ch <- struct{}{}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func makeWalker(w *fsnotify.Watcher) filepath.WalkFunc {
|
|
return func(path string, _ os.FileInfo, err error) error {
|
|
if err != nil {
|
|
log.Fatalf("Error walking: %v", err)
|
|
}
|
|
if err := w.Add(path); err != nil {
|
|
log.Fatalf("Failed to add watch: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Return true if event should trigger re-population
|
|
func filter(e fsnotify.Event) bool {
|
|
// vim is *really* noisy about how it writes files
|
|
if e.Op != fsnotify.Write {
|
|
return false
|
|
}
|
|
// Avoid some temp files that vim writes
|
|
if strings.HasSuffix(e.Name, "~") || strings.HasSuffix(e.Name, ".swp") || strings.HasPrefix(e.Name, ".") {
|
|
return false
|
|
}
|
|
|
|
// Ignore the .git directory - It's very noisy
|
|
if strings.Contains(e.Name, "/.git/") {
|
|
return false
|
|
}
|
|
|
|
// Avoid infinite cycles being caused by writing actual output
|
|
if strings.Contains(e.Name, "/tmp/") || strings.Contains(e.Name, "/gen/") {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func serve(w http.ResponseWriter, req *http.Request) {
|
|
wgMu.Lock()
|
|
wg.Wait()
|
|
wgMu.Unlock()
|
|
|
|
file := req.URL.Path
|
|
if file[0] == '/' {
|
|
file = file[1:]
|
|
}
|
|
if file == "" {
|
|
file = "index.html"
|
|
}
|
|
m := toServe.Load().(bytesOrErr)
|
|
if m.err != nil {
|
|
w.Header().Set("Content-Type", "text/plain")
|
|
w.Write([]byte(m.err.Error()))
|
|
return
|
|
}
|
|
b, ok := m.bytes[file]
|
|
if ok {
|
|
w.Header().Set("Content-Type", "text/html")
|
|
w.Write([]byte(b))
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "text/plain")
|
|
w.WriteHeader(404)
|
|
w.Write([]byte("Not found"))
|
|
}
|
|
|
|
func populateOnce(dir string) {
|
|
defer wg.Done()
|
|
mu.Lock()
|
|
defer mu.Unlock()
|
|
cmd := exec.Command("python", "gendoc.py")
|
|
cmd.Dir = path.Join(dir, "scripts")
|
|
var b bytes.Buffer
|
|
cmd.Stderr = &b
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
toServe.Store(bytesOrErr{nil, fmt.Errorf("error generating spec: %v\nOutput from gendoc:\n%v", err, b.String())})
|
|
return
|
|
}
|
|
fis, err := ioutil.ReadDir(path.Join(dir, "scripts", "gen"))
|
|
if err != nil {
|
|
toServe.Store(bytesOrErr{nil, err})
|
|
return
|
|
}
|
|
files := make(map[string][]byte)
|
|
for _, fi := range fis {
|
|
bytes, err := ioutil.ReadFile(path.Join(dir, "scripts", "gen", fi.Name()))
|
|
if err != nil {
|
|
toServe.Store(bytesOrErr{nil, fmt.Errorf("error reading spec: %v", err)})
|
|
return
|
|
}
|
|
files[fi.Name()] = bytes
|
|
}
|
|
toServe.Store(bytesOrErr{files, nil})
|
|
}
|
|
|
|
func doPopulate(ch chan struct{}, dir string) {
|
|
var pending int
|
|
for {
|
|
select {
|
|
case <-ch:
|
|
if pending == 0 {
|
|
wgMu.Lock()
|
|
wg.Add(1)
|
|
wgMu.Unlock()
|
|
}
|
|
pending++
|
|
case <-time.After(10 * time.Millisecond):
|
|
if pending > 0 {
|
|
pending = 0
|
|
populateOnce(dir)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func exists(path string) bool {
|
|
_, err := os.Stat(path)
|
|
return !os.IsNotExist(err)
|
|
}
|
|
|
|
type bytesOrErr struct {
|
|
bytes map[string][]byte // filename -> contents
|
|
err error
|
|
}
|