1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
- //
- // 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.
- package g
- import (
- "context"
- "io"
- "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"
- )
- // 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.
- func Wait() {
- 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()
- }
- // Dump dumps a variable to stdout with more manually readable.
- func Dump(values ...interface{}) {
- gutil.Dump(values...)
- }
- // DumpTo writes variables `values` as a string in to `writer` with more manually readable
- func DumpTo(writer io.Writer, value interface{}, option gutil.DumpOption) {
- gutil.DumpTo(writer, value, option)
- }
- // DumpWithType acts like Dump, but with type information.
- // Also see Dump.
- func DumpWithType(values ...interface{}) {
- gutil.DumpWithType(values...)
- }
- // DumpWithOption returns variables `values` as a string with more manually readable.
- func DumpWithOption(value interface{}, option gutil.DumpOption) {
- gutil.DumpWithOption(value, option)
- }
- // Throw throws an exception, which can be caught by TryCatch function.
- func Throw(exception interface{}) {
- 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(ctx context.Context, try func(ctx context.Context)) (err error) {
- return gutil.Try(ctx, 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(ctx context.Context, try func(ctx context.Context), catch ...func(ctx context.Context, exception error)) {
- gutil.TryCatch(ctx, 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...)
- }
- // IsEmpty checks whether given `value` empty.
- // It returns true if `value` is in: 0, nil, false, "", len(slice/map/chan) == 0.
- // Or else it returns true.
- func IsEmpty(value interface{}) bool {
- return empty.IsEmpty(value)
- }
- // RequestFromCtx retrieves and returns the Request object from context.
- func RequestFromCtx(ctx context.Context) *ghttp.Request {
- return ghttp.RequestFromCtx(ctx)
- }
|