This repository was archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathshared.go
124 lines (108 loc) · 2.76 KB
/
shared.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
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
// Copyright 2017 Istio 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 mesh contains types and functions that are used across the full
// set of mixer commands.
package mesh
import (
"fmt"
"io"
"os"
"istio.io/pkg/log"
)
func initLogsOrExit(args *rootArgs) {
if err := configLogs(args.logToStdErr); err != nil {
_, _ = fmt.Fprintf(os.Stderr, "Could not configure logs: %s", err)
os.Exit(1)
}
}
func configLogs(logToStdErr bool) error {
opt := log.DefaultOptions()
if logToStdErr {
opt.OutputPaths = []string{"stderr"}
} else {
opt.SetOutputLevel(log.OverrideScopeName, log.NoneLevel)
}
return log.Configure(opt)
}
//Logger is the struct used for mesh command
type Logger struct {
logToStdErr bool
stdOut io.Writer
stdErr io.Writer
}
// NewLogger creates a new logger and returns a pointer to it.
// stdOut and stdErr can be used to capture output for testing.
func NewLogger(logToStdErr bool, stdOut, stdErr io.Writer) *Logger {
return &Logger{
logToStdErr: logToStdErr,
stdOut: stdOut,
stdErr: stdErr,
}
}
// TODO: this really doesn't belong here. Figure out if it's generally needed and possibly move to istio.io/pkg/log.
func (l *Logger) logAndPrint(v ...interface{}) {
if len(v) == 0 {
return
}
s := fmt.Sprint(v...)
if !l.logToStdErr {
l.print(s + "\n")
} else {
log.Infof(s)
}
}
func (l *Logger) logAndError(v ...interface{}) {
if len(v) == 0 {
return
}
s := fmt.Sprint(v...)
if !l.logToStdErr {
l.printErr(s + "\n")
} else {
log.Infof(s)
}
}
func (l *Logger) logAndFatal(a ...interface{}) {
l.logAndError(a...)
os.Exit(-1)
}
func (l *Logger) logAndPrintf(format string, a ...interface{}) {
s := fmt.Sprintf(format, a...)
if !l.logToStdErr {
l.print(s + "\n")
} else {
log.Infof(s)
}
}
func (l *Logger) logAndErrorf(format string, a ...interface{}) {
s := fmt.Sprintf(format, a...)
if !l.logToStdErr {
l.printErr(s + "\n")
} else {
log.Infof(s)
}
}
func (l *Logger) logAndFatalf(format string, a ...interface{}) {
l.logAndErrorf(format, a...)
os.Exit(-1)
}
func (l *Logger) print(s string) {
_, _ = l.stdOut.Write([]byte(s))
}
func (l *Logger) printErr(s string) {
_, _ = l.stdErr.Write([]byte(s))
}
func refreshGoldenFiles() bool {
return os.Getenv("UPDATE_GOLDENS") == "true"
}