mirror of
https://github.com/golang/go
synced 2024-11-05 11:36:10 -07:00
godoc: init corpus in a separate goroutine in http mode
Currently, in http mode the server blocks until the corpus has been initialized. This can cause considerable delay if the user workspace is significantly large and the files are not present in the buffer cache. This CL spawns off the initialization in a separate goroutine if httpMode is set and turns on a flag when it's done. The http handler checks the flag and returns an error response if it has not been set. The check is only performed for the path prefixes handled by the handlerServer struct. Other paths do not call the GetPageInfo() function and hence can return immediately. This preserves maximum responsiveness of the server. Also adds an additional print statement in verbose mode Note: This is a re-do of a previous CL golang.org/cl/88695 which was incorrect committed without running tests. This CL fixes that test. Fixes golang/go#13278 Change-Id: I80c801f32af007312090d3783a2ea2c6f92cad66 Reviewed-on: https://go-review.googlesource.com/93215 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
f05340fad4
commit
006ac430a0
@ -154,19 +154,32 @@ func waitForServerReady(t *testing.T, addr string) {
|
|||||||
waitForServer(t,
|
waitForServer(t,
|
||||||
fmt.Sprintf("http://%v/", addr),
|
fmt.Sprintf("http://%v/", addr),
|
||||||
"The Go Programming Language",
|
"The Go Programming Language",
|
||||||
15*time.Second)
|
15*time.Second,
|
||||||
|
false)
|
||||||
}
|
}
|
||||||
|
|
||||||
func waitForSearchReady(t *testing.T, addr string) {
|
func waitForSearchReady(t *testing.T, addr string) {
|
||||||
waitForServer(t,
|
waitForServer(t,
|
||||||
fmt.Sprintf("http://%v/search?q=FALLTHROUGH", addr),
|
fmt.Sprintf("http://%v/search?q=FALLTHROUGH", addr),
|
||||||
"The list of tokens.",
|
"The list of tokens.",
|
||||||
2*time.Minute)
|
2*time.Minute,
|
||||||
|
false)
|
||||||
|
}
|
||||||
|
|
||||||
|
func waitUntilScanComplete(t *testing.T, addr string) {
|
||||||
|
waitForServer(t,
|
||||||
|
fmt.Sprintf("http://%v/pkg", addr),
|
||||||
|
"Scan is not yet complete",
|
||||||
|
2*time.Minute,
|
||||||
|
true,
|
||||||
|
)
|
||||||
|
// setting reverse as true, which means this waits
|
||||||
|
// until the string is not returned in the response anymore
|
||||||
}
|
}
|
||||||
|
|
||||||
const pollInterval = 200 * time.Millisecond
|
const pollInterval = 200 * time.Millisecond
|
||||||
|
|
||||||
func waitForServer(t *testing.T, url, match string, timeout time.Duration) {
|
func waitForServer(t *testing.T, url, match string, timeout time.Duration, reverse bool) {
|
||||||
// "health check" duplicated from x/tools/cmd/tipgodoc/tip.go
|
// "health check" duplicated from x/tools/cmd/tipgodoc/tip.go
|
||||||
deadline := time.Now().Add(timeout)
|
deadline := time.Now().Add(timeout)
|
||||||
for time.Now().Before(deadline) {
|
for time.Now().Before(deadline) {
|
||||||
@ -177,9 +190,13 @@ func waitForServer(t *testing.T, url, match string, timeout time.Duration) {
|
|||||||
}
|
}
|
||||||
rbody, err := ioutil.ReadAll(res.Body)
|
rbody, err := ioutil.ReadAll(res.Body)
|
||||||
res.Body.Close()
|
res.Body.Close()
|
||||||
if err == nil && res.StatusCode == http.StatusOK &&
|
if err == nil && res.StatusCode == http.StatusOK {
|
||||||
bytes.Contains(rbody, []byte(match)) {
|
if bytes.Contains(rbody, []byte(match)) && !reverse {
|
||||||
return
|
return
|
||||||
|
}
|
||||||
|
if !bytes.Contains(rbody, []byte(match)) && reverse {
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
t.Fatalf("Server failed to respond in %v", timeout)
|
t.Fatalf("Server failed to respond in %v", timeout)
|
||||||
@ -229,6 +246,7 @@ func testWeb(t *testing.T, withIndex bool) {
|
|||||||
waitForSearchReady(t, addr)
|
waitForSearchReady(t, addr)
|
||||||
} else {
|
} else {
|
||||||
waitForServerReady(t, addr)
|
waitForServerReady(t, addr)
|
||||||
|
waitUntilScanComplete(t, addr)
|
||||||
}
|
}
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
|
@ -153,6 +153,13 @@ func handleURLFlag() {
|
|||||||
log.Fatalf("too many redirects")
|
log.Fatalf("too many redirects")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func initCorpus(corpus *godoc.Corpus) {
|
||||||
|
err := corpus.Init()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Usage = usage
|
flag.Usage = usage
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
@ -231,8 +238,10 @@ func main() {
|
|||||||
corpus.IndexEnabled = true
|
corpus.IndexEnabled = true
|
||||||
}
|
}
|
||||||
if *writeIndex || httpMode || *urlFlag != "" {
|
if *writeIndex || httpMode || *urlFlag != "" {
|
||||||
if err := corpus.Init(); err != nil {
|
if httpMode {
|
||||||
log.Fatal(err)
|
go initCorpus(corpus)
|
||||||
|
} else {
|
||||||
|
initCorpus(corpus)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -323,6 +332,9 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Start http server.
|
// Start http server.
|
||||||
|
if *verbose {
|
||||||
|
log.Println("starting HTTP server")
|
||||||
|
}
|
||||||
if err := http.ListenAndServe(*httpAddr, handler); err != nil {
|
if err := http.ListenAndServe(*httpAddr, handler); err != nil {
|
||||||
log.Fatalf("ListenAndServe %s: %v", *httpAddr, err)
|
log.Fatalf("ListenAndServe %s: %v", *httpAddr, err)
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ package godoc
|
|||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
pathpkg "path"
|
pathpkg "path"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"golang.org/x/tools/godoc/analysis"
|
"golang.org/x/tools/godoc/analysis"
|
||||||
@ -103,6 +104,10 @@ type Corpus struct {
|
|||||||
|
|
||||||
// Analysis is the result of type and pointer analysis.
|
// Analysis is the result of type and pointer analysis.
|
||||||
Analysis analysis.Result
|
Analysis analysis.Result
|
||||||
|
|
||||||
|
// flag to check whether a corpus is initialized or not
|
||||||
|
initMu sync.RWMutex
|
||||||
|
initDone bool
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewCorpus returns a new Corpus from a filesystem.
|
// NewCorpus returns a new Corpus from a filesystem.
|
||||||
@ -136,13 +141,15 @@ func (c *Corpus) FSModifiedTime() time.Time {
|
|||||||
// Init initializes Corpus, once options on Corpus are set.
|
// Init initializes Corpus, once options on Corpus are set.
|
||||||
// It must be called before any subsequent method calls.
|
// It must be called before any subsequent method calls.
|
||||||
func (c *Corpus) Init() error {
|
func (c *Corpus) Init() error {
|
||||||
// TODO(bradfitz): do this in a goroutine because newDirectory might block for a long time?
|
|
||||||
// It used to be sometimes done in a goroutine before, at least in HTTP server mode.
|
|
||||||
if err := c.initFSTree(); err != nil {
|
if err := c.initFSTree(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
c.updateMetadata()
|
c.updateMetadata()
|
||||||
go c.refreshMetadataLoop()
|
go c.refreshMetadataLoop()
|
||||||
|
|
||||||
|
c.initMu.Lock()
|
||||||
|
c.initDone = true
|
||||||
|
c.initMu.Unlock()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ package godoc
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"go/ast"
|
"go/ast"
|
||||||
"go/build"
|
"go/build"
|
||||||
@ -248,6 +249,12 @@ func (h *handlerServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
relpath := pathpkg.Clean(r.URL.Path[len(h.stripPrefix)+1:])
|
relpath := pathpkg.Clean(r.URL.Path[len(h.stripPrefix)+1:])
|
||||||
|
|
||||||
|
if !h.corpusInitialized() {
|
||||||
|
h.p.ServeError(w, r, relpath, errors.New("Scan is not yet complete. Please retry after a few moments"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
abspath := pathpkg.Join(h.fsRoot, relpath)
|
abspath := pathpkg.Join(h.fsRoot, relpath)
|
||||||
mode := h.p.GetPageInfoMode(r)
|
mode := h.p.GetPageInfoMode(r)
|
||||||
if relpath == builtinPkgPath {
|
if relpath == builtinPkgPath {
|
||||||
@ -322,6 +329,12 @@ func (h *handlerServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (h *handlerServer) corpusInitialized() bool {
|
||||||
|
h.c.initMu.RLock()
|
||||||
|
defer h.c.initMu.RUnlock()
|
||||||
|
return h.c.initDone
|
||||||
|
}
|
||||||
|
|
||||||
type PageInfoMode uint
|
type PageInfoMode uint
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
Loading…
Reference in New Issue
Block a user