2014-10-27 23:31:02 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-08-21 18:24:17 -04:00
|
|
|
"bufio"
|
2019-11-08 15:34:36 -05:00
|
|
|
"bytes"
|
2018-08-21 18:24:17 -04:00
|
|
|
"fmt"
|
2014-10-27 23:31:02 -04:00
|
|
|
"io"
|
|
|
|
"os"
|
2018-08-21 18:24:17 -04:00
|
|
|
"strings"
|
2014-10-27 23:31:02 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// These are the environmental variables that determine if we log, and if
|
|
|
|
// we log whether or not the log should go to a file.
|
|
|
|
const EnvLog = "PACKER_LOG" //Set to True
|
|
|
|
const EnvLogFile = "PACKER_LOG_PATH" //Set to a file
|
|
|
|
|
|
|
|
// logOutput determines where we should send logs (if anywhere).
|
|
|
|
func logOutput() (logOutput io.Writer, err error) {
|
|
|
|
logOutput = nil
|
2016-10-07 15:10:20 -04:00
|
|
|
if os.Getenv(EnvLog) != "" && os.Getenv(EnvLog) != "0" {
|
2014-10-27 23:31:02 -04:00
|
|
|
logOutput = os.Stderr
|
|
|
|
|
|
|
|
if logPath := os.Getenv(EnvLogFile); logPath != "" {
|
|
|
|
var err error
|
|
|
|
logOutput, err = os.Create(logPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-08-21 18:24:17 -04:00
|
|
|
} else {
|
|
|
|
// no path; do a little light filtering to avoid double-dipping UI
|
|
|
|
// calls.
|
|
|
|
r, w := io.Pipe()
|
|
|
|
scanner := bufio.NewScanner(r)
|
2019-11-08 15:34:36 -05:00
|
|
|
scanner.Split(ScanLinesSmallerThanBuffer)
|
|
|
|
|
2018-08-21 18:24:17 -04:00
|
|
|
go func(scanner *bufio.Scanner) {
|
|
|
|
for scanner.Scan() {
|
|
|
|
if strings.Contains(scanner.Text(), "ui:") {
|
|
|
|
continue
|
|
|
|
}
|
2019-07-25 19:33:02 -04:00
|
|
|
if strings.Contains(scanner.Text(), "ui error:") {
|
|
|
|
continue
|
|
|
|
}
|
2018-10-09 22:43:54 -04:00
|
|
|
os.Stderr.WriteString(fmt.Sprint(scanner.Text() + "\n"))
|
2018-08-21 18:24:17 -04:00
|
|
|
}
|
2019-11-11 12:19:35 -05:00
|
|
|
if err := scanner.Err(); err != nil {
|
|
|
|
os.Stderr.WriteString(err.Error())
|
|
|
|
w.Close()
|
|
|
|
}
|
2018-08-21 18:24:17 -04:00
|
|
|
}(scanner)
|
|
|
|
logOutput = w
|
2014-10-27 23:31:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2019-11-08 15:34:36 -05:00
|
|
|
|
|
|
|
// The below functions come from bufio.Scanner with a small tweak, to fix an
|
|
|
|
// edgecase where the default ScanFunc fails: sometimes, if someone tries to
|
|
|
|
// log a line that is longer than 64*1024 bytes long before it contains a
|
|
|
|
// newline, the ScanLine will continue to return, requesting more data from the
|
|
|
|
// buffer, which can't increase in size anymore, causing a hang.
|
|
|
|
func dropCR(data []byte) []byte {
|
|
|
|
if len(data) > 0 && data[len(data)-1] == '\r' {
|
|
|
|
return data[0 : len(data)-1]
|
|
|
|
}
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
|
|
|
func ScanLinesSmallerThanBuffer(data []byte, atEOF bool) (advance int, token []byte, err error) {
|
|
|
|
if atEOF && len(data) == 0 {
|
|
|
|
return 0, nil, nil
|
|
|
|
}
|
|
|
|
if i := bytes.IndexByte(data, '\n'); i >= 0 {
|
|
|
|
// We have a full newline-terminated line.
|
|
|
|
return i + 1, dropCR(data[0:i]), nil
|
|
|
|
}
|
|
|
|
// If we're at EOF, we have a final, non-terminated line. Return it.
|
|
|
|
if atEOF {
|
|
|
|
return len(data), dropCR(data), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Our tweak:
|
|
|
|
// Buffer is full, so we can't get more data. Just return what we have as
|
|
|
|
// its own token so we can keep going, even though there's no newline.
|
|
|
|
if len(data)+1 >= bufio.MaxScanTokenSize {
|
|
|
|
return len(data), data[0 : len(data)-1], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Request more data.
|
|
|
|
return 0, nil, nil
|
|
|
|
}
|