mirror of
https://github.com/nabbar/golib.git
synced 2025-12-24 11:51:02 +08:00
Package Errors: - add function to check & cast error interface into golib Error interface - update CodeError type to simplify management & error creation - add function to simplify call of Error function from a generic error interface - remove some useless function from Error interface All Other Packages: - apply change of package Errors into all other packages
144 lines
3.2 KiB
Go
144 lines
3.2 KiB
Go
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2022 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 pool
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"sync"
|
|
|
|
liblog "github.com/nabbar/golib/logger"
|
|
|
|
libctx "github.com/nabbar/golib/context"
|
|
liberr "github.com/nabbar/golib/errors"
|
|
libhtp "github.com/nabbar/golib/httpserver"
|
|
srvtps "github.com/nabbar/golib/httpserver/types"
|
|
montps "github.com/nabbar/golib/monitor/types"
|
|
libver "github.com/nabbar/golib/version"
|
|
)
|
|
|
|
type pool struct {
|
|
m sync.RWMutex
|
|
p libctx.Config[string]
|
|
h srvtps.FuncHandler
|
|
}
|
|
|
|
func (o *pool) Clone(ctx context.Context) Pool {
|
|
return &pool{
|
|
m: sync.RWMutex{},
|
|
p: o.p.Clone(ctx),
|
|
h: o.h,
|
|
}
|
|
}
|
|
|
|
func (o *pool) Merge(p Pool, def liblog.FuncLog) error {
|
|
var err error
|
|
|
|
p.Walk(func(bindAddress string, srv libhtp.Server) bool {
|
|
if s := o.Get(bindAddress); s == nil {
|
|
o.Store(srv)
|
|
} else if e := s.Merge(srv, def); e != nil {
|
|
err = e
|
|
return false
|
|
} else {
|
|
o.Store(s)
|
|
}
|
|
return true
|
|
})
|
|
|
|
return err
|
|
}
|
|
|
|
func (o *pool) Get(adr string) libhtp.Server {
|
|
if i, l := o.p.Load(adr); !l {
|
|
return nil
|
|
} else if v, k := i.(libhtp.Server); !k {
|
|
return nil
|
|
} else {
|
|
return v
|
|
}
|
|
}
|
|
|
|
func (o *pool) Handler(fct srvtps.FuncHandler) {
|
|
o.m.Lock()
|
|
defer o.m.Unlock()
|
|
o.h = fct
|
|
}
|
|
|
|
func (o *pool) handler(name string) http.Handler {
|
|
o.m.RLock()
|
|
defer o.m.RUnlock()
|
|
|
|
if o.h == nil {
|
|
return srvtps.NewBadHandler()
|
|
} else if h := o.h(); h == nil {
|
|
return srvtps.NewBadHandler()
|
|
} else if f, k := h[name]; !k {
|
|
return srvtps.NewBadHandler()
|
|
} else {
|
|
return f
|
|
}
|
|
}
|
|
|
|
func (o *pool) context() context.Context {
|
|
return o.p.GetContext()
|
|
}
|
|
|
|
func (o *pool) MonitorNames() []string {
|
|
var res = make([]string, 0)
|
|
|
|
o.Walk(func(bindAddress string, srv libhtp.Server) bool {
|
|
res = append(res, srv.MonitorName())
|
|
return true
|
|
})
|
|
|
|
return res
|
|
}
|
|
|
|
func (o *pool) Monitor(vrs libver.Version) ([]montps.Monitor, liberr.Error) {
|
|
var (
|
|
res = make([]montps.Monitor, 0)
|
|
err = ErrorPoolMonitor.Error(nil)
|
|
)
|
|
|
|
o.Walk(func(bindAddress string, srv libhtp.Server) bool {
|
|
if p, e := srv.Monitor(vrs); e != nil {
|
|
err.Add(e)
|
|
} else {
|
|
res = append(res, p)
|
|
}
|
|
|
|
return true
|
|
})
|
|
|
|
if !err.HasParent() {
|
|
err = nil
|
|
}
|
|
|
|
return res, err
|
|
}
|