mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* add output to file option Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * log errors on close of the report destination Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove file option from persistent args Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update file option comments and logging Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * allow for multiple UI fallback options Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update UI select signatures + tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
package ui
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"runtime"
|
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
|
)
|
|
|
|
// TODO: build tags to exclude options from windows
|
|
|
|
// Select is responsible for determining the specific UI function given select user option, the current platform
|
|
// config values, and environment status (such as a TTY being present). The first UI in the returned slice of UIs
|
|
// is intended to be used and the UIs that follow are meant to be attempted only in a fallback posture when there
|
|
// are environmental problems (e.g. cannot write to the terminal). A writer is provided to capture the output of
|
|
// the final SBOM report.
|
|
func Select(verbose, quiet bool, reportWriter io.Writer) (uis []UI) {
|
|
isStdoutATty := terminal.IsTerminal(int(os.Stdout.Fd()))
|
|
isStderrATty := terminal.IsTerminal(int(os.Stderr.Fd()))
|
|
notATerminal := !isStderrATty && !isStdoutATty
|
|
|
|
switch {
|
|
case runtime.GOOS == "windows" || verbose || quiet || notATerminal || !isStderrATty:
|
|
uis = append(uis, NewLoggerUI(reportWriter))
|
|
default:
|
|
uis = append(uis, NewEphemeralTerminalUI(reportWriter), NewLoggerUI(reportWriter))
|
|
}
|
|
|
|
return uis
|
|
}
|