gin/debug.go

113 lines
2.9 KiB
Go
Raw Permalink Normal View History

// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
2015-03-23 05:03:12 +00:00
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
2015-08-03 15:28:12 +00:00
import (
"fmt"
2015-08-03 15:28:12 +00:00
"html/template"
"runtime"
"strconv"
"strings"
"sync/atomic"
2015-08-03 15:28:12 +00:00
)
2015-03-23 05:03:12 +00:00
const ginSupportMinGoVer = 21
// IsDebugging returns true if the framework is running in debug mode.
// Use SetMode(gin.ReleaseMode) to disable debug mode.
2015-03-23 05:03:12 +00:00
func IsDebugging() bool {
return atomic.LoadInt32(&ginMode) == debugCode
2015-03-23 05:03:12 +00:00
}
// DebugPrintRouteFunc indicates debug log output format.
var DebugPrintRouteFunc func(httpMethod, absolutePath, handlerName string, nuHandlers int)
// DebugPrintFunc indicates debug log output format.
var DebugPrintFunc func(format string, values ...interface{})
2015-05-09 01:34:43 +00:00
func debugPrintRoute(httpMethod, absolutePath string, handlers HandlersChain) {
2015-03-23 05:03:12 +00:00
if IsDebugging() {
nuHandlers := len(handlers)
handlerName := nameOfFunction(handlers.Last())
if DebugPrintRouteFunc == nil {
debugPrint("%-6s %-25s --> %s (%d handlers)\n", httpMethod, absolutePath, handlerName, nuHandlers)
} else {
DebugPrintRouteFunc(httpMethod, absolutePath, handlerName, nuHandlers)
}
2015-03-23 05:03:12 +00:00
}
}
2015-08-03 15:28:12 +00:00
func debugPrintLoadTemplate(tmpl *template.Template) {
if IsDebugging() {
var buf strings.Builder
2015-08-03 15:28:12 +00:00
for _, tmpl := range tmpl.Templates() {
buf.WriteString("\t- ")
buf.WriteString(tmpl.Name())
buf.WriteString("\n")
}
debugPrint("Loaded HTML Templates (%d): \n%s\n", len(tmpl.Templates()), buf.String())
}
}
2022-03-21 01:43:17 +00:00
func debugPrint(format string, values ...any) {
if !IsDebugging() {
return
}
if DebugPrintFunc != nil {
DebugPrintFunc(format, values...)
return
}
if !strings.HasSuffix(format, "\n") {
format += "\n"
2015-03-23 05:03:12 +00:00
}
fmt.Fprintf(DefaultWriter, "[GIN-debug] "+format, values...)
2015-03-23 05:03:12 +00:00
}
2015-05-09 01:34:43 +00:00
func getMinVer(v string) (uint64, error) {
first := strings.IndexByte(v, '.')
last := strings.LastIndexByte(v, '.')
if first == last {
return strconv.ParseUint(v[first+1:], 10, 64)
}
return strconv.ParseUint(v[first+1:last], 10, 64)
}
func debugPrintWARNINGDefault() {
if v, e := getMinVer(runtime.Version()); e == nil && v < ginSupportMinGoVer {
debugPrint(`[WARNING] Now Gin requires Go 1.21+.
`)
}
debugPrint(`[WARNING] Creating an Engine instance with the Logger and Recovery middleware already attached.
`)
}
func debugPrintWARNINGNew() {
2015-05-23 23:21:23 +00:00
debugPrint(`[WARNING] Running in "debug" mode. Switch to "release" mode in production.
- using env: export GIN_MODE=release
- using code: gin.SetMode(gin.ReleaseMode)
`)
2015-05-09 01:34:43 +00:00
}
func debugPrintWARNINGSetHTMLTemplate() {
2015-06-26 14:08:55 +00:00
debugPrint(`[WARNING] Since SetHTMLTemplate() is NOT thread-safe. It should only be called
at initialization. ie. before any route is registered or the router is listening in a socket:
router := gin.Default()
router.SetHTMLTemplate(template) // << good place
`)
}
2015-05-09 01:34:43 +00:00
func debugPrintError(err error) {
if err != nil && IsDebugging() {
fmt.Fprintf(DefaultErrorWriter, "[GIN-debug] [ERROR] %v\n", err)
2015-05-09 01:34:43 +00:00
}
}