-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmode.go
82 lines (69 loc) · 1.6 KB
/
mode.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
package nin
import (
"flag"
"io"
"os"
)
const EnvNinMode = "NIN_MODE"
const (
DebugMode = "debug"
ReleaseMode = "release"
TestMode = "test"
)
const (
debugCode = iota
releaseCode
testCode
)
var DefaultWriter io.Writer = os.Stdout
// DefaultErrorWriter is the default io.Writer used by Nin to debug errors
var DefaultErrorWriter io.Writer = os.Stderr
var (
ninMode = debugCode
modeName = DebugMode
)
func init() {
mode := os.Getenv(EnvNinMode)
SetMode(mode)
}
// SetMode sets gin mode according to input string.
func SetMode(value string) {
if value == "" {
if flag.Lookup("test.v") != nil {
value = TestMode
} else {
value = DebugMode
}
}
switch value {
case DebugMode:
ninMode = debugCode
case ReleaseMode:
ninMode = releaseCode
case TestMode:
ninMode = testCode
default:
panic("nin mode unknown: " + value + " (available mode: debug release test)")
}
modeName = value
}
//// DisableBindValidation closes the default validator.
//func DisableBindValidation() {
// binding.Validator = nil
//}
//
//// EnableJsonDecoderUseNumber sets true for binding.EnableDecoderUseNumber to
//// call the UseNumber method on the JSON Decoder instance.
//func EnableJsonDecoderUseNumber() {
// binding.EnableDecoderUseNumber = true
//}
//
//// EnableJsonDecoderDisallowUnknownFields sets true for binding.EnableDecoderDisallowUnknownFields to
//// call the DisallowUnknownFields method on the JSON Decoder instance.
//func EnableJsonDecoderDisallowUnknownFields() {
// binding.EnableDecoderDisallowUnknownFields = true
//}
// Mode returns current gin mode.
func Mode() string {
return modeName
}