mirror of
https://github.com/nabbar/golib.git
synced 2025-09-26 20:01:15 +08:00

- Add some README file to give missing documentations or update existing documentation file Package Archive: - Add some comments to godoc information - Moving NopWriterCloser interface to ioutils package Package IOUtils: - New package NopWriterCloser to implement interfac like NopReader Package Database: - KVMap: fix missing function following update of kvdriver Package Duration: - Rename BDD testing Package Context/Gin: - Moving function New between model & interface file Package AWS: - rework Walk function to use more generic with standard walk caller function - func walk will now no more return and include error (can be catched into the given func) - func walk will now return a bool to continue or stop the loop - func walk with many input function will now stop when all given function return false - func walk will now return error only about main process and not given function Package errors: - Add interface error into interface Error Package IOUtils: - Moving IOWrapper as subPackage and optimize process + allow thread safe
155 lines
3.7 KiB
Go
155 lines
3.7 KiB
Go
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2019 Nicolas JUHEL
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*
|
|
*/
|
|
|
|
package gin
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/signal"
|
|
"time"
|
|
|
|
ginsdk "github.com/gin-gonic/gin"
|
|
liblog "github.com/nabbar/golib/logger"
|
|
loglvl "github.com/nabbar/golib/logger/level"
|
|
)
|
|
|
|
type ctxGinTonic struct {
|
|
l liblog.FuncLog
|
|
g *ginsdk.Context
|
|
x context.Context
|
|
c context.CancelFunc
|
|
}
|
|
|
|
func (c *ctxGinTonic) SetLogger(fct liblog.FuncLog) {
|
|
c.l = fct
|
|
}
|
|
|
|
func (c *ctxGinTonic) log(lvl loglvl.Level, msg string, args ...interface{}) {
|
|
if c.l != nil {
|
|
c.l().Entry(lvl, msg, args...).Log()
|
|
} else {
|
|
l := liblog.New(func() context.Context {
|
|
return c
|
|
})
|
|
|
|
l.Entry(lvl, msg, args...).Log()
|
|
}
|
|
}
|
|
|
|
func (c *ctxGinTonic) CancelOnSignal(s ...os.Signal) {
|
|
go func() {
|
|
sc := make(chan os.Signal, 1)
|
|
signal.Notify(sc, s...)
|
|
|
|
select {
|
|
case <-sc:
|
|
c.log(loglvl.InfoLevel, "OS Signal received, calling context cancel !")
|
|
c.c()
|
|
return
|
|
case <-c.Done():
|
|
c.log(loglvl.InfoLevel, "Context has been closed !")
|
|
return
|
|
}
|
|
}()
|
|
}
|
|
|
|
func (c *ctxGinTonic) Deadline() (deadline time.Time, ok bool) {
|
|
return c.x.Deadline()
|
|
}
|
|
|
|
func (c *ctxGinTonic) Done() <-chan struct{} {
|
|
return c.x.Done()
|
|
}
|
|
|
|
func (c *ctxGinTonic) Err() error {
|
|
return c.x.Err()
|
|
}
|
|
|
|
func (c *ctxGinTonic) Value(key interface{}) interface{} {
|
|
return c.g.Value(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GinContext() *ginsdk.Context {
|
|
return c.g
|
|
}
|
|
|
|
func (c *ctxGinTonic) Set(key string, value interface{}) {
|
|
c.g.Set(key, value)
|
|
}
|
|
|
|
func (c *ctxGinTonic) Get(key string) (value interface{}, exists bool) {
|
|
return c.g.Get(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) MustGet(key string) interface{} {
|
|
return c.g.MustGet(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetString(key string) (s string) {
|
|
return c.g.GetString(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetBool(key string) (b bool) {
|
|
return c.g.GetBool(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetInt(key string) (i int) {
|
|
return c.g.GetInt(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetInt64(key string) (i64 int64) {
|
|
return c.g.GetInt64(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetFloat64(key string) (f64 float64) {
|
|
return c.g.GetFloat64(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetTime(key string) (t time.Time) {
|
|
return c.g.GetTime(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetDuration(key string) (d time.Duration) {
|
|
return c.g.GetDuration(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetStringSlice(key string) (ss []string) {
|
|
return c.g.GetStringSlice(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetStringMap(key string) (sm map[string]interface{}) {
|
|
return c.g.GetStringMap(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetStringMapString(key string) (sms map[string]string) {
|
|
return c.g.GetStringMapString(key)
|
|
}
|
|
|
|
func (c *ctxGinTonic) GetStringMapStringSlice(key string) (smss map[string][]string) {
|
|
return c.g.GetStringMapStringSlice(key)
|
|
}
|