b82471ad6d
This adds a new status package that merges the running of "actions" (ninja calls them edges) of multiple tools into one view of the current state, and gives that to a number of different outputs. For inputs: Kati's output parser has been rewritten (and moved) to map onto the StartAction/FinishAction API. A byproduct of this is that the build servers should be able to extract errors from Kati better, since they look like the errors that Ninja used to write. Ninja is no longer directly connected to the terminal, but its output is read via the protobuf frontend API, so it's just another tool whose output becomes merged together. multiproduct_kati loses its custom status routines, and uses the common one instead. For outputs: The primary output is the ui/terminal.Status type, which along with ui/terminal.Writer now controls everything about the terminal output. Today, this doesn't really change any behaviors, but having all terminal output going through here allows a more complicated (multi-line / full window) status display in the future. The tracer acts as an output of the status package, tracing all the action start / finish events. This replaces reading the .ninja_log file, so it now properly handles multiple output files from a single action. A new rotated log file (out/error.log, or out/dist/logs/error.log) just contains a description of all of the errors that happened during the current build. Another new compressed and rotated log file (out/verbose.log.gz, or out/dist/logs/verbose.log.gz) contains the full verbose (showcommands) log of every execution run by the build. Since this is now written on every build, the showcommands argument is now ignored -- if you want to get the commands run, look at the log file after the build. Test: m Test: <built-in tests> Test: NINJA_ARGS="-t list" m Test: check the build.trace.gz Test: check the new log files Change-Id: If1d8994890d43ef68f65aa10ddd8e6e06dc7013a
138 lines
3.2 KiB
Go
138 lines
3.2 KiB
Go
// Copyright 2018 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package status
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"io"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
var katiError = regexp.MustCompile(`^(\033\[1m)?[^ ]+:[0-9]+: (\033\[31m)?error:`)
|
|
var katiIncludeRe = regexp.MustCompile(`^(\[(\d+)/(\d+)] )?((including [^ ]+|initializing build system|finishing build rules|writing build rules) ...)$`)
|
|
var katiLogRe = regexp.MustCompile(`^\*kati\*: `)
|
|
var katiNinjaMissing = regexp.MustCompile("^[^ ]+ is missing, regenerating...$")
|
|
|
|
type katiOutputParser struct {
|
|
st ToolStatus
|
|
|
|
count int
|
|
total int
|
|
extra int
|
|
|
|
action *Action
|
|
buf strings.Builder
|
|
hasError bool
|
|
}
|
|
|
|
func (k *katiOutputParser) flushAction() {
|
|
if k.action == nil {
|
|
return
|
|
}
|
|
|
|
var err error
|
|
if k.hasError {
|
|
err = fmt.Errorf("makefile error")
|
|
}
|
|
|
|
k.st.FinishAction(ActionResult{
|
|
Action: k.action,
|
|
Output: k.buf.String(),
|
|
Error: err,
|
|
})
|
|
|
|
k.buf.Reset()
|
|
k.hasError = false
|
|
}
|
|
|
|
func (k *katiOutputParser) parseLine(line string) {
|
|
// Only put kati debug/stat lines in our verbose log
|
|
if katiLogRe.MatchString(line) {
|
|
k.st.Verbose(line)
|
|
return
|
|
}
|
|
|
|
if matches := katiIncludeRe.FindStringSubmatch(line); len(matches) > 0 {
|
|
k.flushAction()
|
|
k.count += 1
|
|
|
|
matches := katiIncludeRe.FindStringSubmatch(line)
|
|
if matches[2] != "" {
|
|
idx, err := strconv.Atoi(matches[2])
|
|
|
|
if err == nil && idx+k.extra != k.count {
|
|
k.extra = k.count - idx
|
|
k.st.SetTotalActions(k.total + k.extra)
|
|
}
|
|
} else {
|
|
k.extra += 1
|
|
k.st.SetTotalActions(k.total + k.extra)
|
|
}
|
|
|
|
if matches[3] != "" {
|
|
tot, err := strconv.Atoi(matches[3])
|
|
|
|
if err == nil && tot != k.total {
|
|
k.total = tot
|
|
k.st.SetTotalActions(k.total + k.extra)
|
|
}
|
|
}
|
|
|
|
k.action = &Action{
|
|
Description: matches[4],
|
|
}
|
|
k.st.StartAction(k.action)
|
|
} else if k.action != nil {
|
|
if katiError.MatchString(line) {
|
|
k.hasError = true
|
|
}
|
|
k.buf.WriteString(line)
|
|
k.buf.WriteString("\n")
|
|
} else {
|
|
// Before we've started executing actions from Kati
|
|
if line == "No need to regenerate ninja file" || katiNinjaMissing.MatchString(line) {
|
|
k.st.Status(line)
|
|
} else {
|
|
k.st.Print(line)
|
|
}
|
|
}
|
|
}
|
|
|
|
// KatiReader reads the output from Kati, and turns it into Actions and
|
|
// messages that are passed into the ToolStatus API.
|
|
func KatiReader(st ToolStatus, pipe io.ReadCloser) {
|
|
parser := &katiOutputParser{
|
|
st: st,
|
|
}
|
|
|
|
scanner := bufio.NewScanner(pipe)
|
|
for scanner.Scan() {
|
|
parser.parseLine(scanner.Text())
|
|
}
|
|
|
|
parser.flushAction()
|
|
|
|
if err := scanner.Err(); err != nil {
|
|
var buf strings.Builder
|
|
io.Copy(&buf, pipe)
|
|
st.Print(fmt.Sprintf("Error from kati parser: %s", err))
|
|
st.Print(buf.String())
|
|
}
|
|
|
|
st.Finish()
|
|
}
|