70 lines
1.4 KiB
Go
Raw Normal View History

2014-10-28 16:07:33 -07:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
import (
2017-01-20 13:21:18 -06:00
"io"
2014-10-28 16:07:33 -07:00
"os"
2017-01-20 13:21:18 -06:00
"github.com/gin-gonic/gin/binding"
2014-10-28 16:07:33 -07:00
)
2017-01-20 13:21:18 -06:00
const ENV_GIN_MODE = "GIN_MODE"
2014-10-28 16:07:33 -07:00
const (
DebugMode string = "debug"
ReleaseMode string = "release"
TestMode string = "test"
)
const (
debugCode = iota
2017-01-20 13:21:18 -06:00
releaseCode
testCode
2014-10-28 16:07:33 -07:00
)
2017-01-20 13:21:18 -06:00
// DefaultWriter is the default io.Writer used the Gin for debug output and
// 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:
// import "github.com/mattn/go-colorable"
// gin.DefaultWriter = colorable.NewColorableStdout()
var DefaultWriter io.Writer = os.Stdout
var DefaultErrorWriter io.Writer = os.Stderr
var ginMode = debugCode
var modeName = DebugMode
2015-02-09 01:31:16 -06:00
func init() {
2017-01-20 13:21:18 -06:00
mode := os.Getenv(ENV_GIN_MODE)
if len(mode) == 0 {
2015-02-09 01:31:16 -06:00
SetMode(DebugMode)
} else {
2017-01-20 13:21:18 -06:00
SetMode(mode)
2015-02-09 01:31:16 -06:00
}
}
2014-10-28 16:07:33 -07:00
func SetMode(value string) {
switch value {
case DebugMode:
2017-01-20 13:21:18 -06:00
ginMode = debugCode
2014-10-28 16:07:33 -07:00
case ReleaseMode:
2017-01-20 13:21:18 -06:00
ginMode = releaseCode
2014-10-28 16:07:33 -07:00
case TestMode:
2017-01-20 13:21:18 -06:00
ginMode = testCode
2014-10-28 16:07:33 -07:00
default:
2015-02-09 01:31:16 -06:00
panic("gin mode unknown: " + value)
2014-10-28 16:07:33 -07:00
}
2017-01-20 13:21:18 -06:00
modeName = value
2014-10-28 16:07:33 -07:00
}
2017-01-20 13:21:18 -06:00
func DisableBindValidation() {
binding.Validator = nil
2015-02-09 01:31:16 -06:00
}
2017-01-20 13:21:18 -06:00
func Mode() string {
return modeName
2014-10-28 16:07:33 -07:00
}