mirror of
				https://github.com/docker/compose.git
				synced 2025-10-31 11:14:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|    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"
 | |
| 	"strconv"
 | |
| )
 | |
| 
 | |
| var names = []string{
 | |
| 	"grey",
 | |
| 	"red",
 | |
| 	"green",
 | |
| 	"yellow",
 | |
| 	"blue",
 | |
| 	"magenta",
 | |
| 	"cyan",
 | |
| 	"white",
 | |
| }
 | |
| 
 | |
| // 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 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)
 | |
| 		}
 | |
| 	}()
 | |
| }
 |