gf/frame/g/g_func.go

85 lines
2.7 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
2018-09-26 09:58:49 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
2018-09-26 09:58:49 +08:00
package g
import (
"context"
2021-11-13 23:23:55 +08:00
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/container/gvar"
"github.com/gogf/gf/v2/internal/empty"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/os/gproc"
"github.com/gogf/gf/v2/util/gutil"
2018-09-26 09:58:49 +08:00
)
// NewVar returns a gvar.Var.
func NewVar(i interface{}, safe ...bool) *Var {
return gvar.New(i, safe...)
}
// Wait is an alias of ghttp.Wait, which blocks until all the web servers shutdown.
// It's commonly used in multiple servers' situation.
2018-09-26 09:58:49 +08:00
func Wait() {
2019-06-19 09:06:52 +08:00
ghttp.Wait()
}
// Listen is an alias of gproc.Listen, which handles the signals received and automatically
// calls registered signal handler functions.
// It blocks until shutdown signals received and all registered shutdown handlers done.
func Listen() {
gproc.Listen()
2018-09-26 09:58:49 +08:00
}
2019-02-27 22:17:09 +08:00
// Dump dumps a variable to stdout with more manually readable.
2021-10-21 22:07:43 +08:00
func Dump(values ...interface{}) {
gutil.Dump(values...)
2018-09-26 09:58:49 +08:00
}
2021-10-30 20:35:55 +08:00
// DumpWithType acts like Dump, but with type information.
2021-10-21 22:07:43 +08:00
// Also see Dump.
2021-10-30 20:35:55 +08:00
func DumpWithType(values ...interface{}) {
gutil.DumpWithType(values...)
2019-03-21 18:21:53 +08:00
}
// Throw throws an exception, which can be caught by TryCatch function.
func Throw(exception interface{}) {
2019-06-19 09:06:52 +08:00
gutil.Throw(exception)
}
// Try implements try... logistics using internal panic...recover.
// It returns error if any exception occurs, or else it returns nil.
func Try(try func()) (err error) {
return gutil.Try(try)
}
// TryCatch implements try...catch... logistics using internal panic...recover.
// It automatically calls function `catch` if any exception occurs ans passes the exception as an error.
func TryCatch(try func(), catch ...func(exception error)) {
2019-06-19 09:06:52 +08:00
gutil.TryCatch(try, catch...)
}
// IsNil checks whether given `value` is nil.
// Parameter `traceSource` is used for tracing to the source variable if given `value` is type
// of pinter that also points to a pointer. It returns nil if the source is nil when `traceSource`
// is true.
// Note that it might use reflect feature which affects performance a little.
func IsNil(value interface{}, traceSource ...bool) bool {
return empty.IsNil(value, traceSource...)
2020-02-23 20:25:55 +08:00
}
// IsEmpty checks whether given `value` empty.
// It returns true if `value` is in: 0, nil, false, "", len(slice/map/chan) == 0.
2020-02-23 20:25:55 +08:00
// Or else it returns true.
func IsEmpty(value interface{}) bool {
2019-06-19 09:06:52 +08:00
return empty.IsEmpty(value)
}
// RequestFromCtx retrieves and returns the Request object from context.
func RequestFromCtx(ctx context.Context) *ghttp.Request {
return ghttp.RequestFromCtx(ctx)
}