2022-05-28 05:42:28 +03:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
2014-08-29 21:49:50 +04:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-08-19 05:40:52 +04:00
|
|
|
package gin
|
|
|
|
|
|
|
|
import (
|
2022-05-14 04:11:35 +03:00
|
|
|
"flag"
|
2016-04-15 11:12:07 +03:00
|
|
|
"io"
|
2014-08-19 05:40:52 +04:00
|
|
|
"os"
|
2024-05-08 04:13:36 +03:00
|
|
|
"sync/atomic"
|
2015-04-07 19:37:17 +03:00
|
|
|
|
2015-05-31 18:03:15 +03:00
|
|
|
"github.com/gin-gonic/gin/binding"
|
2014-08-19 05:40:52 +04:00
|
|
|
)
|
|
|
|
|
2019-02-22 07:53:47 +03:00
|
|
|
// EnvGinMode indicates environment name for gin mode.
|
|
|
|
const EnvGinMode = "GIN_MODE"
|
2014-08-19 05:40:52 +04:00
|
|
|
|
|
|
|
const (
|
2018-09-15 10:21:54 +03:00
|
|
|
// DebugMode indicates gin mode is debug.
|
|
|
|
DebugMode = "debug"
|
2018-11-12 13:58:24 +03:00
|
|
|
// ReleaseMode indicates gin mode is release.
|
2017-11-29 05:50:14 +03:00
|
|
|
ReleaseMode = "release"
|
2018-09-15 10:21:54 +03:00
|
|
|
// TestMode indicates gin mode is test.
|
|
|
|
TestMode = "test"
|
2014-08-19 05:40:52 +04:00
|
|
|
)
|
2020-05-04 06:40:41 +03:00
|
|
|
|
2014-08-19 05:40:52 +04:00
|
|
|
const (
|
2017-03-11 16:35:29 +03:00
|
|
|
debugCode = iota
|
|
|
|
releaseCode
|
|
|
|
testCode
|
2014-08-19 05:40:52 +04:00
|
|
|
)
|
|
|
|
|
2018-11-01 10:30:19 +03:00
|
|
|
// DefaultWriter is the default io.Writer used by Gin for debug output and
|
2016-01-26 20:53:00 +03:00
|
|
|
// middleware output like Logger() or Recovery().
|
|
|
|
// Note that both Logger and Recovery provides custom ways to configure their
|
|
|
|
// output io.Writer.
|
|
|
|
// To support coloring in Windows use:
|
2022-08-15 16:38:20 +03:00
|
|
|
//
|
|
|
|
// import "github.com/mattn/go-colorable"
|
|
|
|
// gin.DefaultWriter = colorable.NewColorableStdout()
|
2016-04-15 11:12:07 +03:00
|
|
|
var DefaultWriter io.Writer = os.Stdout
|
2018-11-01 10:30:19 +03:00
|
|
|
|
|
|
|
// DefaultErrorWriter is the default io.Writer used by Gin to debug errors
|
2016-04-15 11:12:07 +03:00
|
|
|
var DefaultErrorWriter io.Writer = os.Stderr
|
2016-01-26 20:53:00 +03:00
|
|
|
|
2024-05-08 04:13:36 +03:00
|
|
|
var ginMode int32 = debugCode
|
|
|
|
var modeName atomic.Value
|
2014-08-19 05:40:52 +04:00
|
|
|
|
2014-10-09 03:40:42 +04:00
|
|
|
func init() {
|
2019-02-22 07:53:47 +03:00
|
|
|
mode := os.Getenv(EnvGinMode)
|
2017-11-21 05:03:57 +03:00
|
|
|
SetMode(mode)
|
2014-10-09 03:40:42 +04:00
|
|
|
}
|
|
|
|
|
2018-09-15 10:21:54 +03:00
|
|
|
// SetMode sets gin mode according to input string.
|
2014-08-19 05:40:52 +04:00
|
|
|
func SetMode(value string) {
|
2020-04-16 17:31:58 +03:00
|
|
|
if value == "" {
|
2022-05-14 04:11:35 +03:00
|
|
|
if flag.Lookup("test.v") != nil {
|
|
|
|
value = TestMode
|
|
|
|
} else {
|
|
|
|
value = DebugMode
|
|
|
|
}
|
2020-04-16 17:31:58 +03:00
|
|
|
}
|
|
|
|
|
2014-08-19 05:40:52 +04:00
|
|
|
switch value {
|
2024-05-08 04:13:36 +03:00
|
|
|
case DebugMode, "":
|
|
|
|
atomic.StoreInt32(&ginMode, debugCode)
|
2014-08-19 05:40:52 +04:00
|
|
|
case ReleaseMode:
|
2024-05-08 04:13:36 +03:00
|
|
|
atomic.StoreInt32(&ginMode, releaseCode)
|
2014-08-21 03:01:05 +04:00
|
|
|
case TestMode:
|
2024-05-08 04:13:36 +03:00
|
|
|
atomic.StoreInt32(&ginMode, testCode)
|
2014-08-19 05:40:52 +04:00
|
|
|
default:
|
2021-01-11 19:03:31 +03:00
|
|
|
panic("gin mode unknown: " + value + " (available mode: debug release test)")
|
2014-08-19 05:40:52 +04:00
|
|
|
}
|
2024-05-08 04:13:36 +03:00
|
|
|
modeName.Store(value)
|
2014-09-08 22:54:08 +04:00
|
|
|
}
|
|
|
|
|
2018-09-15 10:21:54 +03:00
|
|
|
// DisableBindValidation closes the default validator.
|
2015-05-31 18:03:15 +03:00
|
|
|
func DisableBindValidation() {
|
|
|
|
binding.Validator = nil
|
|
|
|
}
|
|
|
|
|
2019-09-06 08:56:59 +03:00
|
|
|
// EnableJsonDecoderUseNumber sets true for binding.EnableDecoderUseNumber to
|
2018-09-15 10:21:54 +03:00
|
|
|
// call the UseNumber method on the JSON Decoder instance.
|
2017-07-10 11:33:35 +03:00
|
|
|
func EnableJsonDecoderUseNumber() {
|
|
|
|
binding.EnableDecoderUseNumber = true
|
|
|
|
}
|
|
|
|
|
2019-11-24 11:22:18 +03:00
|
|
|
// EnableJsonDecoderDisallowUnknownFields sets true for binding.EnableDecoderDisallowUnknownFields to
|
2019-09-06 08:56:59 +03:00
|
|
|
// call the DisallowUnknownFields method on the JSON Decoder instance.
|
|
|
|
func EnableJsonDecoderDisallowUnknownFields() {
|
|
|
|
binding.EnableDecoderDisallowUnknownFields = true
|
|
|
|
}
|
|
|
|
|
2021-12-15 18:27:23 +03:00
|
|
|
// Mode returns current gin mode.
|
2014-09-08 22:54:08 +04:00
|
|
|
func Mode() string {
|
2024-05-08 04:13:36 +03:00
|
|
|
return modeName.Load().(string)
|
2014-08-19 05:40:52 +04:00
|
|
|
}
|