1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
package command
import (
"bytes"
"fmt"
"io"
"os"
"os/exec"
"strings"
"sync"
"github.com/dty1er/kubecolor/color"
"github.com/dty1er/kubecolor/kubectl"
"github.com/dty1er/kubecolor/printer"
"github.com/mattn/go-colorable"
)
var (
Stdout = colorable.NewColorableStdout()
Stderr = colorable.NewColorableStderr()
)
type Printers struct {
FullColoredPrinter printer.Printer
ErrorPrinter printer.Printer
}
// This is defined here to be replaced in test
var getPrinters = func(subcommandInfo *kubectl.SubcommandInfo, darkBackground bool) *Printers {
return &Printers{
FullColoredPrinter: &printer.KubectlOutputColoredPrinter{
SubcommandInfo: subcommandInfo,
DarkBackground: darkBackground,
Recursive: subcommandInfo.Recursive,
},
ErrorPrinter: &printer.WithFuncPrinter{
Fn: func(line string) color.Color {
if strings.HasPrefix(strings.ToLower(line), "error") {
return color.Red
}
return color.Yellow
},
},
}
}
func Run(args []string, version string) error {
args, config := ResolveConfig(args)
shouldColorize, subcommandInfo := ResolveSubcommand(args, config)
if config.ShowKubecolorVersion {
fmt.Fprintf(os.Stdout, "%s\n", version)
return nil
}
cmd := exec.Command(config.KubectlCmd, args...)
cmd.Stdin = os.Stdin
// when should not colorize, just run command and return
// TODO: right now, krew is unsupported by kubecolor but it should be.
if !shouldColorize {
cmd.Stdout = Stdout
cmd.Stderr = Stderr
if err := cmd.Start(); err != nil {
return err
}
// inherit the kubectl exit code
if err := cmd.Wait(); err != nil {
return fmt.Errorf("%w", &KubectlError{ExitCode: cmd.ProcessState.ExitCode()})
}
return nil
}
// when colorize, capture stdout and err then colorize it
cmdOut, err := cmd.StdoutPipe()
if err != nil {
return err
}
cmdErr, err := cmd.StderrPipe()
if err != nil {
return err
}
// make buffer to be used in defer recover()
buff := new(bytes.Buffer)
outReader := io.TeeReader(cmdOut, buff)
errReader := io.TeeReader(cmdErr, buff)
if err := cmd.Start(); err != nil {
return err
}
printers := getPrinters(subcommandInfo, config.DarkBackground)
wg := &sync.WaitGroup{}
wg.Add(1)
go func() {
defer wg.Done()
defer func() {
if r := recover(); r != nil {
fmt.Fprintf(os.Stdout, buff.String())
}
}()
// This can panic when kubecolor has bug, so recover in defer
printers.FullColoredPrinter.Print(outReader, Stdout)
}()
wg.Add(1)
go func() {
defer wg.Done()
// This will unlikely panic
printers.ErrorPrinter.Print(errReader, Stderr)
}()
wg.Wait()
// inherit the kubectl exit code
if err := cmd.Wait(); err != nil {
return fmt.Errorf("%w", &KubectlError{ExitCode: cmd.ProcessState.ExitCode()})
}
return nil
}
|