Update the speculator to understand spec subdirs

Fix the speculator so that it doesn't blow up when it finds subdirs in the gen
directory.

(It doesn't handle the html diff very well in the case that the subdirs don't
match, but it's hard to do much about that)
pull/326/head
Richard van der Hoff 8 years ago
parent 01f8173c84
commit 8aa0f64665

@ -21,6 +21,7 @@ import (
"os" "os"
"os/exec" "os/exec"
"path" "path"
"path/filepath"
"regexp" "regexp"
"strconv" "strconv"
"strings" "strings"
@ -353,29 +354,44 @@ func (s *server) serveSpec(w http.ResponseWriter, req *http.Request) {
return return
} }
if styleLikeMatrixDotOrg { pathToContent = make(map[string][]byte)
cmd := exec.Command("./add-matrix-org-stylings.sh", *includesDir) scriptsdir := path.Join(dst, "scripts")
cmd.Dir = path.Join(dst, "scripts") base := path.Join(scriptsdir, "gen")
var b bytes.Buffer walker := func(path string, info os.FileInfo, err error) error {
cmd.Stderr = &b if err != nil {
if err := cmd.Run(); err != nil { return err
writeError(w, 500, fmt.Errorf("error styling spec: %v\nOutput:\n%v", err, b.String())) }
return if info.IsDir() {
return nil
} }
}
fis, err := ioutil.ReadDir(path.Join(dst, "scripts", "gen")) rel, err := filepath.Rel(base, path)
if err != nil { if err != nil {
writeError(w, 500, fmt.Errorf("Error reading directory: %v", err)) return fmt.Errorf("Failed to get relative path of %s: %v", path, err)
} }
pathToContent = make(map[string][]byte)
for _, fi := range fis { if styleLikeMatrixDotOrg {
b, err := ioutil.ReadFile(path.Join(dst, "scripts", "gen", fi.Name())) cmd := exec.Command("./add-matrix-org-stylings.pl", *includesDir, path)
cmd.Dir = scriptsdir
var b bytes.Buffer
cmd.Stderr = &b
if err := cmd.Run(); err != nil {
return fmt.Errorf("error styling spec: %v\nOutput:\n%v", err, b.String())
}
}
bytes, err := ioutil.ReadFile(path)
if err != nil { if err != nil {
writeError(w, 500, fmt.Errorf("Error reading spec: %v", err)) return fmt.Errorf("Error reading spec: %v", err)
return
} }
pathToContent[fi.Name()] = b pathToContent[rel] = bytes
return nil
}
err = filepath.Walk(base, walker)
if err != nil {
writeError(w, 500, err)
return
} }
cache.Add(sha, pathToContent) cache.Add(sha, pathToContent)
} }
@ -499,13 +515,15 @@ func (s *server) serveHTMLDiff(w http.ResponseWriter, req *http.Request) {
return return
} }
cmd := exec.Command(htmlDiffer, path.Join(base, "scripts", "gen", requestedPath), path.Join(head, "scripts", "gen", requestedPath)) cmd := exec.Command(htmlDiffer, path.Join(base, "scripts", "gen", requestedPath), path.Join(head, "scripts", "gen", requestedPath))
var b bytes.Buffer var stdout bytes.Buffer
cmd.Stdout = &b var stderr bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stderr
if err := cmd.Run(); err != nil { if err := cmd.Run(); err != nil {
writeError(w, 500, fmt.Errorf("error running HTML differ: %v", err)) writeError(w, 500, fmt.Errorf("error running HTML differ: %v\nOutput:\n%v", err, stderr.String()))
return return
} }
w.Write(b.Bytes()) w.Write(stdout.Bytes())
} }
func findHTMLDiffer() (string, error) { func findHTMLDiffer() (string, error) {

Loading…
Cancel
Save