forked from huydx/hget
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui.go
76 lines (62 loc) · 2.01 KB
/
ui.go
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
package main
import (
"fmt"
"io"
"os"
"github.com/fatih/color"
"github.com/mattn/go-colorable"
"github.com/mattn/go-isatty"
)
var (
Stdout = colorable.NewColorableStdout()
Stderr = colorable.NewColorableStderr()
Default UI = Console{Stdout: Stdout, Stderr: Stderr}
)
// UI represents a simple IO output.
type UI interface {
Printf(format string, a ...interface{}) (n int, err error)
Println(a ...interface{}) (n int, err error)
Errorf(format string, a ...interface{}) (n int, err error)
Errorln(a ...interface{}) (n int, err error)
}
// Printf outputs information level logs
func Printf(format string, a ...interface{}) (n int, err error) {
return Default.Printf(color.CyanString("INFO: ")+format, a...)
}
// Errorf outputs error level logs
func Errorf(format string, a ...interface{}) (n int, err error) {
return Default.Errorf(color.RedString("ERROR: ")+format, a...)
}
// Warnf outputs warning level logs
func Warnf(format string, a ...interface{}) (n int, err error) {
return Default.Errorf(color.YellowString("WARN: ")+format, a...)
}
// Errorln is non formatted error printer.
func Errorln(a ...interface{}) (n int, err error) {
return Default.Errorln(a...)
}
// IsTerminal checks if we have tty
func IsTerminal(f *os.File) bool {
return isatty.IsTerminal(f.Fd())
}
// Console is an implementation of UI interface
type Console struct {
Stdout io.Writer
Stderr io.Writer
}
// Printf prints formatted information logs to Stdout
func (c Console) Printf(format string, a ...interface{}) (n int, err error) {
return fmt.Fprintf(c.Stdout, format, a...)
}
// Println prints information logs to Stdout
func (c Console) Println(a ...interface{}) (n int, err error) {
return fmt.Fprintln(c.Stdout, a...)
}
// Errorf prints formatted error logs to Stderr
func (c Console) Errorf(format string, a ...interface{}) (n int, err error) {
return fmt.Fprintf(c.Stderr, format, a...)
}
// Errorln prints error logs to Stderr
func (c Console) Errorln(a ...interface{}) (n int, err error) {
return fmt.Fprintln(c.Stderr, a...)
}