2013-07-31 21:23:51 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build appengine
|
|
|
|
|
|
|
|
package build
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/hmac"
|
|
|
|
"crypto/md5"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
2013-12-17 01:14:27 -07:00
|
|
|
"unicode/utf8"
|
2013-07-31 21:23:51 -06:00
|
|
|
|
|
|
|
"appengine"
|
|
|
|
"appengine/datastore"
|
2013-12-08 20:33:08 -07:00
|
|
|
|
2013-07-31 21:23:51 -06:00
|
|
|
"cache"
|
|
|
|
)
|
|
|
|
|
|
|
|
const commitsPerPage = 30
|
|
|
|
|
|
|
|
// commitHandler retrieves commit data or records a new commit.
|
|
|
|
//
|
|
|
|
// For GET requests it returns a Commit value for the specified
|
|
|
|
// packagePath and hash.
|
|
|
|
//
|
|
|
|
// For POST requests it reads a JSON-encoded Commit value from the request
|
|
|
|
// body and creates a new Commit entity. It also updates the "tip" Tag for
|
|
|
|
// each new commit at tip.
|
|
|
|
//
|
|
|
|
// This handler is used by a gobuilder process in -commit mode.
|
|
|
|
func commitHandler(r *http.Request) (interface{}, error) {
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-07-31 21:23:51 -06:00
|
|
|
com := new(Commit)
|
|
|
|
|
|
|
|
if r.Method == "GET" {
|
|
|
|
com.PackagePath = r.FormValue("packagePath")
|
|
|
|
com.Hash = r.FormValue("hash")
|
|
|
|
if err := datastore.Get(c, com.Key(c), com); err != nil {
|
|
|
|
return nil, fmt.Errorf("getting Commit: %v", err)
|
|
|
|
}
|
2014-05-13 01:00:32 -06:00
|
|
|
// Strip potentially large and unnecessary fields.
|
|
|
|
com.ResultData = nil
|
|
|
|
com.PerfResults = nil
|
2013-07-31 21:23:51 -06:00
|
|
|
return com, nil
|
|
|
|
}
|
|
|
|
if r.Method != "POST" {
|
|
|
|
return nil, errBadMethod(r.Method)
|
|
|
|
}
|
2013-12-08 20:33:08 -07:00
|
|
|
if !isMasterKey(c, r.FormValue("key")) {
|
|
|
|
return nil, errors.New("can only POST commits with master key")
|
|
|
|
}
|
2013-07-31 21:23:51 -06:00
|
|
|
|
|
|
|
// POST request
|
|
|
|
defer r.Body.Close()
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(com); err != nil {
|
|
|
|
return nil, fmt.Errorf("decoding Body: %v", err)
|
|
|
|
}
|
2013-12-17 01:14:27 -07:00
|
|
|
com.Desc = limitStringLength(com.Desc, maxDatastoreStringLen)
|
2013-07-31 21:23:51 -06:00
|
|
|
if err := com.Valid(); err != nil {
|
|
|
|
return nil, fmt.Errorf("validating Commit: %v", err)
|
|
|
|
}
|
|
|
|
defer cache.Tick(c)
|
|
|
|
tx := func(c appengine.Context) error {
|
|
|
|
return addCommit(c, com)
|
|
|
|
}
|
|
|
|
return nil, datastore.RunInTransaction(c, tx, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// addCommit adds the Commit entity to the datastore and updates the tip Tag.
|
|
|
|
// It must be run inside a datastore transaction.
|
|
|
|
func addCommit(c appengine.Context, com *Commit) error {
|
|
|
|
var tc Commit // temp value so we don't clobber com
|
|
|
|
err := datastore.Get(c, com.Key(c), &tc)
|
|
|
|
if err != datastore.ErrNoSuchEntity {
|
|
|
|
// if this commit is already in the datastore, do nothing
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("getting Commit: %v", err)
|
|
|
|
}
|
|
|
|
// get the next commit number
|
|
|
|
p, err := GetPackage(c, com.PackagePath)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetPackage: %v", err)
|
|
|
|
}
|
|
|
|
com.Num = p.NextNum
|
|
|
|
p.NextNum++
|
|
|
|
if _, err := datastore.Put(c, p.Key(c), p); err != nil {
|
|
|
|
return fmt.Errorf("putting Package: %v", err)
|
|
|
|
}
|
|
|
|
// if this isn't the first Commit test the parent commit exists
|
|
|
|
if com.Num > 0 {
|
|
|
|
n, err := datastore.NewQuery("Commit").
|
|
|
|
Filter("Hash =", com.ParentHash).
|
|
|
|
Ancestor(p.Key(c)).
|
|
|
|
Count(c)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("testing for parent Commit: %v", err)
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return errors.New("parent commit not found")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// update the tip Tag if this is the Go repo and this isn't on a release branch
|
|
|
|
if p.Path == "" && !strings.HasPrefix(com.Desc, "[release-branch") {
|
|
|
|
t := &Tag{Kind: "tip", Hash: com.Hash}
|
|
|
|
if _, err = datastore.Put(c, t.Key(c), t); err != nil {
|
|
|
|
return fmt.Errorf("putting Tag: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// put the Commit
|
|
|
|
if _, err = datastore.Put(c, com.Key(c), com); err != nil {
|
|
|
|
return fmt.Errorf("putting Commit: %v", err)
|
|
|
|
}
|
2014-05-13 01:00:32 -06:00
|
|
|
if com.NeedsBenchmarking {
|
|
|
|
// add to CommitRun
|
|
|
|
cr, err := GetCommitRun(c, com.Num)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err = cr.AddCommit(c, com); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// create PerfResult
|
|
|
|
res := &PerfResult{CommitHash: com.Hash, CommitNum: com.Num}
|
|
|
|
if _, err := datastore.Put(c, res.Key(c), res); err != nil {
|
|
|
|
return fmt.Errorf("putting PerfResult: %v", err)
|
|
|
|
}
|
|
|
|
// Update perf todo if necessary.
|
|
|
|
if err = AddCommitToPerfTodo(c, com); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2013-07-31 21:23:51 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// tagHandler records a new tag. It reads a JSON-encoded Tag value from the
|
|
|
|
// request body and updates the Tag entity for the Kind of tag provided.
|
|
|
|
//
|
|
|
|
// This handler is used by a gobuilder process in -commit mode.
|
|
|
|
func tagHandler(r *http.Request) (interface{}, error) {
|
|
|
|
if r.Method != "POST" {
|
|
|
|
return nil, errBadMethod(r.Method)
|
|
|
|
}
|
|
|
|
|
|
|
|
t := new(Tag)
|
|
|
|
defer r.Body.Close()
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(t); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := t.Valid(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-07-31 21:23:51 -06:00
|
|
|
defer cache.Tick(c)
|
|
|
|
_, err := datastore.Put(c, t.Key(c), t)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Todo is a todoHandler response.
|
|
|
|
type Todo struct {
|
|
|
|
Kind string // "build-go-commit" or "build-package"
|
|
|
|
Data interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// todoHandler returns the next action to be performed by a builder.
|
|
|
|
// It expects "builder" and "kind" query parameters and returns a *Todo value.
|
|
|
|
// Multiple "kind" parameters may be specified.
|
|
|
|
func todoHandler(r *http.Request) (interface{}, error) {
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-07-31 21:23:51 -06:00
|
|
|
now := cache.Now(c)
|
|
|
|
key := "build-todo-" + r.Form.Encode()
|
|
|
|
var todo *Todo
|
|
|
|
if cache.Get(r, now, key, &todo) {
|
|
|
|
return todo, nil
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
builder := r.FormValue("builder")
|
|
|
|
for _, kind := range r.Form["kind"] {
|
2013-11-24 23:15:56 -07:00
|
|
|
var com *Commit
|
2013-07-31 21:23:51 -06:00
|
|
|
switch kind {
|
|
|
|
case "build-go-commit":
|
2013-11-24 23:15:56 -07:00
|
|
|
com, err = buildTodo(c, builder, "", "")
|
2014-05-13 01:00:32 -06:00
|
|
|
if com != nil {
|
|
|
|
com.PerfResults = []string{}
|
|
|
|
}
|
2013-07-31 21:23:51 -06:00
|
|
|
case "build-package":
|
|
|
|
packagePath := r.FormValue("packagePath")
|
|
|
|
goHash := r.FormValue("goHash")
|
2013-11-24 23:15:56 -07:00
|
|
|
com, err = buildTodo(c, builder, packagePath, goHash)
|
2014-05-13 01:00:32 -06:00
|
|
|
if com != nil {
|
|
|
|
com.PerfResults = []string{}
|
|
|
|
}
|
|
|
|
case "benchmark-go-commit":
|
|
|
|
com, err = perfTodo(c, builder)
|
2013-07-31 21:23:51 -06:00
|
|
|
}
|
2013-11-24 23:15:56 -07:00
|
|
|
if com != nil || err != nil {
|
|
|
|
if com != nil {
|
|
|
|
// ResultData can be large and not needed on builder.
|
|
|
|
com.ResultData = []string{}
|
|
|
|
}
|
|
|
|
todo = &Todo{Kind: kind, Data: com}
|
2013-07-31 21:23:51 -06:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err == nil {
|
|
|
|
cache.Set(r, now, key, todo)
|
|
|
|
}
|
|
|
|
return todo, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// buildTodo returns the next Commit to be built (or nil if none available).
|
|
|
|
//
|
|
|
|
// If packagePath and goHash are empty, it scans the first 20 Go Commits in
|
|
|
|
// Num-descending order and returns the first one it finds that doesn't have a
|
|
|
|
// Result for this builder.
|
|
|
|
//
|
|
|
|
// If provided with non-empty packagePath and goHash args, it scans the first
|
|
|
|
// 20 Commits in Num-descending order for the specified packagePath and
|
|
|
|
// returns the first that doesn't have a Result for this builder and goHash.
|
2013-11-24 23:15:56 -07:00
|
|
|
func buildTodo(c appengine.Context, builder, packagePath, goHash string) (*Commit, error) {
|
2013-07-31 21:23:51 -06:00
|
|
|
p, err := GetPackage(c, packagePath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
t := datastore.NewQuery("Commit").
|
|
|
|
Ancestor(p.Key(c)).
|
|
|
|
Limit(commitsPerPage).
|
|
|
|
Order("-Num").
|
|
|
|
Run(c)
|
|
|
|
for {
|
|
|
|
com := new(Commit)
|
|
|
|
if _, err := t.Next(com); err == datastore.Done {
|
|
|
|
break
|
|
|
|
} else if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if com.Result(builder, goHash) == nil {
|
|
|
|
return com, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nothing left to do if this is a package (not the Go tree).
|
|
|
|
if packagePath != "" {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are no Go tree commits left to build,
|
|
|
|
// see if there are any subrepo commits that need to be built at tip.
|
|
|
|
// If so, ask the builder to build a go tree at the tip commit.
|
|
|
|
// TODO(adg): do the same for "weekly" and "release" tags.
|
|
|
|
|
|
|
|
tag, err := GetTag(c, "tip")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that this Go commit builds OK for this builder.
|
|
|
|
// If not, don't re-build as the subrepos will never get built anyway.
|
|
|
|
com, err := tag.Commit(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if r := com.Result(builder, ""); r != nil && !r.OK {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
pkgs, err := Packages(c, "subrepo")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, pkg := range pkgs {
|
|
|
|
com, err := pkg.LastCommit(c)
|
|
|
|
if err != nil {
|
|
|
|
c.Warningf("%v: no Commit found: %v", pkg, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if com.Result(builder, tag.Hash) == nil {
|
|
|
|
return tag.Commit(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2014-05-13 01:00:32 -06:00
|
|
|
// perfTodo returns the next Commit to be benchmarked (or nil if none available).
|
|
|
|
func perfTodo(c appengine.Context, builder string) (*Commit, error) {
|
|
|
|
p := &Package{}
|
|
|
|
todo := &PerfTodo{Builder: builder}
|
|
|
|
err := datastore.Get(c, todo.Key(c), todo)
|
|
|
|
if err != nil && err != datastore.ErrNoSuchEntity {
|
|
|
|
return nil, fmt.Errorf("fetching PerfTodo: %v", err)
|
|
|
|
}
|
|
|
|
if err == datastore.ErrNoSuchEntity {
|
|
|
|
todo, err = buildPerfTodo(c, builder)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(todo.CommitNums) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Have commit to benchmark, fetch it.
|
|
|
|
num := todo.CommitNums[len(todo.CommitNums)-1]
|
|
|
|
t := datastore.NewQuery("Commit").
|
|
|
|
Ancestor(p.Key(c)).
|
|
|
|
Filter("Num =", num).
|
|
|
|
Limit(1).
|
|
|
|
Run(c)
|
|
|
|
com := new(Commit)
|
|
|
|
if _, err := t.Next(com); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !com.NeedsBenchmarking {
|
|
|
|
return nil, fmt.Errorf("commit from perf todo queue is not intended for benchmarking")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove benchmarks from other builders.
|
|
|
|
var benchs []string
|
|
|
|
for _, b := range com.PerfResults {
|
|
|
|
bb := strings.Split(b, "|")
|
|
|
|
if bb[0] == builder && bb[1] != "meta-done" {
|
|
|
|
benchs = append(benchs, bb[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
com.PerfResults = benchs
|
|
|
|
|
|
|
|
return com, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// buildPerfTodo creates PerfTodo for the builder with all commits. In a transaction.
|
|
|
|
func buildPerfTodo(c appengine.Context, builder string) (*PerfTodo, error) {
|
|
|
|
todo := &PerfTodo{Builder: builder}
|
|
|
|
tx := func(c appengine.Context) error {
|
|
|
|
err := datastore.Get(c, todo.Key(c), todo)
|
|
|
|
if err != nil && err != datastore.ErrNoSuchEntity {
|
|
|
|
return fmt.Errorf("fetching PerfTodo: %v", err)
|
|
|
|
}
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
t := datastore.NewQuery("CommitRun").
|
|
|
|
Ancestor((&Package{}).Key(c)).
|
|
|
|
Order("-StartCommitNum").
|
|
|
|
Run(c)
|
|
|
|
var nums []int
|
|
|
|
var releaseNums []int
|
|
|
|
loop:
|
|
|
|
for {
|
|
|
|
cr := new(CommitRun)
|
|
|
|
if _, err := t.Next(cr); err == datastore.Done {
|
|
|
|
break
|
|
|
|
} else if err != nil {
|
|
|
|
return fmt.Errorf("scanning commit runs for perf todo: %v", err)
|
|
|
|
}
|
|
|
|
for i := len(cr.Hash) - 1; i >= 0; i-- {
|
|
|
|
if !cr.NeedsBenchmarking[i] || cr.Hash[i] == "" {
|
|
|
|
continue // There's nothing to see here. Move along.
|
|
|
|
}
|
|
|
|
num := cr.StartCommitNum + i
|
|
|
|
for k, v := range knownTags {
|
|
|
|
// Releases are benchmarked first, because they are important (and there are few of them).
|
|
|
|
if cr.Hash[i] == v {
|
|
|
|
releaseNums = append(releaseNums, num)
|
|
|
|
if k == "go1" {
|
|
|
|
break loop // Point of no benchmark: test/bench/shootout: update timing.log to Go 1.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nums = append(nums, num)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
todo.CommitNums = orderPrefTodo(nums)
|
|
|
|
todo.CommitNums = append(todo.CommitNums, releaseNums...)
|
|
|
|
if _, err = datastore.Put(c, todo.Key(c), todo); err != nil {
|
|
|
|
return fmt.Errorf("putting PerfTodo: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return todo, datastore.RunInTransaction(c, tx, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeCommitFromPerfTodo(c appengine.Context, builder string, num int) error {
|
|
|
|
todo := &PerfTodo{Builder: builder}
|
|
|
|
err := datastore.Get(c, todo.Key(c), todo)
|
|
|
|
if err != nil && err != datastore.ErrNoSuchEntity {
|
|
|
|
return fmt.Errorf("fetching PerfTodo: %v", err)
|
|
|
|
}
|
|
|
|
if err == datastore.ErrNoSuchEntity {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
for i := len(todo.CommitNums) - 1; i >= 0; i-- {
|
|
|
|
if todo.CommitNums[i] == num {
|
|
|
|
for ; i < len(todo.CommitNums)-1; i++ {
|
|
|
|
todo.CommitNums[i] = todo.CommitNums[i+1]
|
|
|
|
}
|
|
|
|
todo.CommitNums = todo.CommitNums[:i]
|
|
|
|
_, err = datastore.Put(c, todo.Key(c), todo)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("putting PerfTodo: %v", err)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-07-31 21:23:51 -06:00
|
|
|
// packagesHandler returns a list of the non-Go Packages monitored
|
|
|
|
// by the dashboard.
|
|
|
|
func packagesHandler(r *http.Request) (interface{}, error) {
|
|
|
|
kind := r.FormValue("kind")
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-07-31 21:23:51 -06:00
|
|
|
now := cache.Now(c)
|
|
|
|
key := "build-packages-" + kind
|
|
|
|
var p []*Package
|
|
|
|
if cache.Get(r, now, key, &p) {
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
p, err := Packages(c, kind)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
cache.Set(r, now, key, p)
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// resultHandler records a build result.
|
|
|
|
// It reads a JSON-encoded Result value from the request body,
|
|
|
|
// creates a new Result entity, and updates the relevant Commit entity.
|
|
|
|
// If the Log field is not empty, resultHandler creates a new Log entity
|
|
|
|
// and updates the LogHash field before putting the Commit entity.
|
|
|
|
func resultHandler(r *http.Request) (interface{}, error) {
|
|
|
|
if r.Method != "POST" {
|
|
|
|
return nil, errBadMethod(r.Method)
|
|
|
|
}
|
|
|
|
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-07-31 21:23:51 -06:00
|
|
|
res := new(Result)
|
|
|
|
defer r.Body.Close()
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(res); err != nil {
|
|
|
|
return nil, fmt.Errorf("decoding Body: %v", err)
|
|
|
|
}
|
|
|
|
if err := res.Valid(); err != nil {
|
|
|
|
return nil, fmt.Errorf("validating Result: %v", err)
|
|
|
|
}
|
|
|
|
defer cache.Tick(c)
|
|
|
|
// store the Log text if supplied
|
|
|
|
if len(res.Log) > 0 {
|
|
|
|
hash, err := PutLog(c, res.Log)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("putting Log: %v", err)
|
|
|
|
}
|
|
|
|
res.LogHash = hash
|
|
|
|
}
|
|
|
|
tx := func(c appengine.Context) error {
|
|
|
|
// check Package exists
|
|
|
|
if _, err := GetPackage(c, res.PackagePath); err != nil {
|
|
|
|
return fmt.Errorf("GetPackage: %v", err)
|
|
|
|
}
|
|
|
|
// put Result
|
|
|
|
if _, err := datastore.Put(c, res.Key(c), res); err != nil {
|
|
|
|
return fmt.Errorf("putting Result: %v", err)
|
|
|
|
}
|
|
|
|
// add Result to Commit
|
|
|
|
com := &Commit{PackagePath: res.PackagePath, Hash: res.Hash}
|
|
|
|
if err := com.AddResult(c, res); err != nil {
|
|
|
|
return fmt.Errorf("AddResult: %v", err)
|
|
|
|
}
|
|
|
|
// Send build failure notifications, if necessary.
|
|
|
|
// Note this must run after the call AddResult, which
|
|
|
|
// populates the Commit's ResultData field.
|
|
|
|
return notifyOnFailure(c, com, res.Builder)
|
|
|
|
}
|
|
|
|
return nil, datastore.RunInTransaction(c, tx, nil)
|
|
|
|
}
|
|
|
|
|
2014-05-13 01:00:32 -06:00
|
|
|
// perf-result request payload
|
|
|
|
type PerfRequest struct {
|
|
|
|
Builder string
|
|
|
|
Benchmark string
|
|
|
|
Hash string
|
|
|
|
OK bool
|
|
|
|
Metrics []PerfMetric
|
|
|
|
Artifacts []PerfArtifact
|
|
|
|
}
|
|
|
|
|
|
|
|
type PerfMetric struct {
|
|
|
|
Type string
|
|
|
|
Val uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type PerfArtifact struct {
|
|
|
|
Type string
|
|
|
|
Body string
|
|
|
|
}
|
|
|
|
|
|
|
|
// perfResultHandler records a becnhmarking result.
|
|
|
|
func perfResultHandler(r *http.Request) (interface{}, error) {
|
|
|
|
defer r.Body.Close()
|
|
|
|
if r.Method != "POST" {
|
|
|
|
return nil, errBadMethod(r.Method)
|
|
|
|
}
|
|
|
|
|
|
|
|
req := new(PerfRequest)
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(req); err != nil {
|
|
|
|
return nil, fmt.Errorf("decoding Body: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c := contextForRequest(r)
|
|
|
|
defer cache.Tick(c)
|
|
|
|
|
|
|
|
// store the text files if supplied
|
|
|
|
for i, a := range req.Artifacts {
|
|
|
|
hash, err := PutLog(c, a.Body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("putting Log: %v", err)
|
|
|
|
}
|
|
|
|
req.Artifacts[i].Body = hash
|
|
|
|
}
|
|
|
|
tx := func(c appengine.Context) error {
|
|
|
|
return addPerfResult(c, r, req)
|
|
|
|
}
|
|
|
|
return nil, datastore.RunInTransaction(c, tx, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// addPerfResult creates PerfResult and updates Commit, PerfTodo,
|
|
|
|
// PerfMetricRun and PerfConfig. Must be executed within a transaction.
|
|
|
|
func addPerfResult(c appengine.Context, r *http.Request, req *PerfRequest) error {
|
|
|
|
// check Package exists
|
|
|
|
p, err := GetPackage(c, "")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetPackage: %v", err)
|
|
|
|
}
|
|
|
|
// add result to Commit
|
|
|
|
com := &Commit{Hash: req.Hash}
|
|
|
|
if err := com.AddPerfResult(c, req.Builder, req.Benchmark); err != nil {
|
|
|
|
return fmt.Errorf("AddPerfResult: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// add the result to PerfResult
|
|
|
|
res := &PerfResult{CommitHash: req.Hash}
|
|
|
|
if err := datastore.Get(c, res.Key(c), res); err != nil {
|
|
|
|
return fmt.Errorf("getting PerfResult: %v", err)
|
|
|
|
}
|
|
|
|
present := res.AddResult(req)
|
|
|
|
if _, err := datastore.Put(c, res.Key(c), res); err != nil {
|
|
|
|
return fmt.Errorf("putting PerfResult: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Meta-done denotes that there are no benchmarks left.
|
|
|
|
if req.Benchmark == "meta-done" {
|
|
|
|
// Don't send duplicate emails for the same commit/builder.
|
|
|
|
// And don't send emails about too old commits.
|
|
|
|
if !present && com.Num >= p.NextNum-commitsPerPage {
|
|
|
|
if err := checkPerfChanges(c, r, com, req.Builder, res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := removeCommitFromPerfTodo(c, req.Builder, com.Num); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// update PerfConfig
|
|
|
|
newBenchmark, err := UpdatePerfConfig(c, r, req)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("updating PerfConfig: %v", err)
|
|
|
|
}
|
|
|
|
if newBenchmark {
|
|
|
|
// If this is a new benchmark on the builder, delete PerfTodo.
|
|
|
|
// It will be recreated later with all commits again.
|
|
|
|
todo := &PerfTodo{Builder: req.Builder}
|
|
|
|
err = datastore.Delete(c, todo.Key(c))
|
|
|
|
if err != nil && err != datastore.ErrNoSuchEntity {
|
|
|
|
return fmt.Errorf("deleting PerfTodo: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add perf metrics
|
|
|
|
for _, metric := range req.Metrics {
|
|
|
|
m, err := GetPerfMetricRun(c, req.Builder, req.Benchmark, metric.Type, com.Num)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("GetPerfMetrics: %v", err)
|
|
|
|
}
|
|
|
|
if err = m.AddMetric(c, com.Num, metric.Val); err != nil {
|
|
|
|
return fmt.Errorf("AddMetric: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkPerfChanges(c appengine.Context, r *http.Request, com *Commit, builder string, res *PerfResult) error {
|
|
|
|
pc, err := GetPerfConfig(c, r)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
results := res.ParseData()[builder]
|
|
|
|
rcNewer := MakePerfResultCache(c, com, true)
|
|
|
|
rcOlder := MakePerfResultCache(c, com, false)
|
|
|
|
|
|
|
|
// Check whether we need to send failure notification email.
|
|
|
|
if results["meta-done"].OK {
|
|
|
|
// This one is successful, see if the next is failed.
|
|
|
|
nextRes, err := rcNewer.Next(com.Num)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if nextRes != nil && isPerfFailed(nextRes, builder) {
|
|
|
|
sendPerfFailMail(c, builder, nextRes)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// This one is failed, see if the previous is successful.
|
|
|
|
prevRes, err := rcOlder.Next(com.Num)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if prevRes != nil && !isPerfFailed(prevRes, builder) {
|
|
|
|
sendPerfFailMail(c, builder, res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now see if there are any performance changes.
|
|
|
|
// Find the previous and the next results for performance comparison.
|
|
|
|
prevRes, err := rcOlder.NextForComparison(com.Num, builder)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
nextRes, err := rcNewer.NextForComparison(com.Num, builder)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if results["meta-done"].OK {
|
|
|
|
// This one is successful, compare with a previous one.
|
|
|
|
if prevRes != nil {
|
|
|
|
if err := comparePerfResults(c, pc, builder, prevRes, res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Compare a next one with the current.
|
|
|
|
if nextRes != nil {
|
|
|
|
if err := comparePerfResults(c, pc, builder, res, nextRes); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// This one is failed, compare a previous one with a next one.
|
|
|
|
if prevRes != nil && nextRes != nil {
|
|
|
|
if err := comparePerfResults(c, pc, builder, prevRes, nextRes); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func comparePerfResults(c appengine.Context, pc *PerfConfig, builder string, prevRes, res *PerfResult) error {
|
|
|
|
changes := significantPerfChanges(pc, builder, prevRes, res)
|
|
|
|
if len(changes) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
com := &Commit{Hash: res.CommitHash}
|
|
|
|
if err := datastore.Get(c, com.Key(c), com); err != nil {
|
|
|
|
return fmt.Errorf("getting commit %v: %v", com.Hash, err)
|
|
|
|
}
|
|
|
|
sendPerfMailLater.Call(c, com, prevRes.CommitHash, builder, changes) // add task to queue
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-07-31 21:23:51 -06:00
|
|
|
// logHandler displays log text for a given hash.
|
|
|
|
// It handles paths like "/log/hash".
|
|
|
|
func logHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("Content-type", "text/plain; charset=utf-8")
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-12-16 15:50:09 -07:00
|
|
|
hash := r.URL.Path[strings.LastIndex(r.URL.Path, "/")+1:]
|
2013-07-31 21:23:51 -06:00
|
|
|
key := datastore.NewKey(c, "Log", hash, 0, nil)
|
|
|
|
l := new(Log)
|
|
|
|
if err := datastore.Get(c, key, l); err != nil {
|
|
|
|
logErr(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
b, err := l.Text()
|
|
|
|
if err != nil {
|
|
|
|
logErr(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
w.Write(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
type dashHandler func(*http.Request) (interface{}, error)
|
|
|
|
|
|
|
|
type dashResponse struct {
|
|
|
|
Response interface{}
|
|
|
|
Error string
|
|
|
|
}
|
|
|
|
|
|
|
|
// errBadMethod is returned by a dashHandler when
|
|
|
|
// the request has an unsuitable method.
|
|
|
|
type errBadMethod string
|
|
|
|
|
|
|
|
func (e errBadMethod) Error() string {
|
|
|
|
return "bad method: " + string(e)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuthHandler wraps a http.HandlerFunc with a handler that validates the
|
|
|
|
// supplied key and builder query parameters.
|
|
|
|
func AuthHandler(h dashHandler) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-07-31 21:23:51 -06:00
|
|
|
|
|
|
|
// Put the URL Query values into r.Form to avoid parsing the
|
|
|
|
// request body when calling r.FormValue.
|
|
|
|
r.Form = r.URL.Query()
|
|
|
|
|
|
|
|
var err error
|
|
|
|
var resp interface{}
|
|
|
|
|
|
|
|
// Validate key query parameter for POST requests only.
|
|
|
|
key := r.FormValue("key")
|
|
|
|
builder := r.FormValue("builder")
|
|
|
|
if r.Method == "POST" && !validKey(c, key, builder) {
|
2014-03-17 23:02:54 -06:00
|
|
|
err = fmt.Errorf("invalid key %q for builder %q", key, builder)
|
2013-07-31 21:23:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Call the original HandlerFunc and return the response.
|
|
|
|
if err == nil {
|
|
|
|
resp, err = h(r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write JSON response.
|
|
|
|
dashResp := &dashResponse{Response: resp}
|
|
|
|
if err != nil {
|
|
|
|
c.Errorf("%v", err)
|
|
|
|
dashResp.Error = err.Error()
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
if err = json.NewEncoder(w).Encode(dashResp); err != nil {
|
|
|
|
c.Criticalf("encoding response: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func keyHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
builder := r.FormValue("builder")
|
|
|
|
if builder == "" {
|
|
|
|
logErr(w, r, errors.New("must supply builder in query string"))
|
|
|
|
return
|
|
|
|
}
|
2013-09-23 18:06:49 -06:00
|
|
|
c := contextForRequest(r)
|
2013-07-31 21:23:51 -06:00
|
|
|
fmt.Fprint(w, builderKey(c, builder))
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2013-09-23 18:06:49 -06:00
|
|
|
for _, d := range dashboards {
|
|
|
|
// admin handlers
|
|
|
|
http.HandleFunc(d.RelPath+"init", initHandler)
|
|
|
|
http.HandleFunc(d.RelPath+"key", keyHandler)
|
|
|
|
|
|
|
|
// authenticated handlers
|
|
|
|
http.HandleFunc(d.RelPath+"commit", AuthHandler(commitHandler))
|
|
|
|
http.HandleFunc(d.RelPath+"packages", AuthHandler(packagesHandler))
|
|
|
|
http.HandleFunc(d.RelPath+"result", AuthHandler(resultHandler))
|
2014-05-13 01:00:32 -06:00
|
|
|
http.HandleFunc(d.RelPath+"perf-result", AuthHandler(perfResultHandler))
|
2013-09-23 18:06:49 -06:00
|
|
|
http.HandleFunc(d.RelPath+"tag", AuthHandler(tagHandler))
|
|
|
|
http.HandleFunc(d.RelPath+"todo", AuthHandler(todoHandler))
|
|
|
|
|
|
|
|
// public handlers
|
|
|
|
http.HandleFunc(d.RelPath+"log/", logHandler)
|
|
|
|
}
|
2013-07-31 21:23:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func validHash(hash string) bool {
|
|
|
|
// TODO(adg): correctly validate a hash
|
|
|
|
return hash != ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func validKey(c appengine.Context, key, builder string) bool {
|
2013-12-08 20:33:08 -07:00
|
|
|
return isMasterKey(c, key) || key == builderKey(c, builder)
|
|
|
|
}
|
|
|
|
|
|
|
|
func isMasterKey(c appengine.Context, key string) bool {
|
|
|
|
return appengine.IsDevAppServer() || key == secretKey(c)
|
2013-07-31 21:23:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func builderKey(c appengine.Context, builder string) string {
|
|
|
|
h := hmac.New(md5.New, []byte(secretKey(c)))
|
|
|
|
h.Write([]byte(builder))
|
|
|
|
return fmt.Sprintf("%x", h.Sum(nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
func logErr(w http.ResponseWriter, r *http.Request, err error) {
|
2013-09-23 18:06:49 -06:00
|
|
|
contextForRequest(r).Errorf("Error: %v", err)
|
2013-07-31 21:23:51 -06:00
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
fmt.Fprint(w, "Error: ", err)
|
|
|
|
}
|
2013-09-23 18:06:49 -06:00
|
|
|
|
|
|
|
func contextForRequest(r *http.Request) appengine.Context {
|
|
|
|
return dashboardForRequest(r).Context(appengine.NewContext(r))
|
|
|
|
}
|
2013-12-17 01:14:27 -07:00
|
|
|
|
|
|
|
// limitStringLength essentially does return s[:max],
|
|
|
|
// but it ensures that we dot not split UTF-8 rune in half.
|
|
|
|
// Otherwise appengine python scripts will break badly.
|
|
|
|
func limitStringLength(s string, max int) string {
|
|
|
|
if len(s) <= max {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
s = s[:max]
|
|
|
|
r, size := utf8.DecodeLastRuneInString(s)
|
|
|
|
if r != utf8.RuneError || size != 1 {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
max--
|
|
|
|
}
|
|
|
|
}
|