/* Copyright 2020 Docker Compose CLI authors 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 formatter import ( "fmt" "os" "strconv" "github.com/mattn/go-isatty" ) var names = []string{ "grey", "red", "green", "yellow", "blue", "magenta", "cyan", "white", } const ( // Never use ANSI codes Never = "never" // Always use ANSI codes Always = "always" // Auto detect terminal is a tty and can use ANSI codes Auto = "auto" ) // SetANSIMode configure formatter for colored output on ANSI-compliant console func SetANSIMode(ansi string) { if !useAnsi(ansi) { nextColor = func() colorFunc { return monochrome } } } func useAnsi(ansi string) bool { switch ansi { case Always: return true case Auto: return isatty.IsTerminal(os.Stdout.Fd()) } return false } // colorFunc use ANSI codes to render colored text on console type colorFunc func(s string) string var monochrome = func(s string) string { return s } func ansiColor(code, s string) string { return fmt.Sprintf("%s%s%s", ansi(code), s, ansi("0")) } func ansi(code string) string { return fmt.Sprintf("\033[%sm", code) } func makeColorFunc(code string) colorFunc { return func(s string) string { return ansiColor(code, s) } } var nextColor = rainbowColor func rainbowColor() colorFunc { return <-loop } var loop = make(chan colorFunc) func init() { colors := map[string]colorFunc{} for i, name := range names { colors[name] = makeColorFunc(strconv.Itoa(30 + i)) colors["intense_"+name] = makeColorFunc(strconv.Itoa(30+i) + ";1") } go func() { i := 0 rainbow := []colorFunc{ colors["cyan"], colors["yellow"], colors["green"], colors["magenta"], colors["blue"], colors["intense_cyan"], colors["intense_yellow"], colors["intense_green"], colors["intense_magenta"], colors["intense_blue"], } for { loop <- rainbow[i] i = (i + 1) % len(rainbow) } }() }