acce86c0e4
Log close errors in Unregister instead of silently discarding them. Add doc comments to all exported symbols across 20 registry files. Add comprehensive tests covering base registry, all wrapper types, hot-reload delegation, nil-fallback semantics, and global accessors.
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package registry
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/go-gost/core/bypass"
|
|
)
|
|
|
|
// bypassRegistry implements a hot-reload-safe registry for bypass.Bypass.
|
|
type bypassRegistry struct {
|
|
registry[bypass.Bypass]
|
|
}
|
|
|
|
// Register stores a Bypass under the given name.
|
|
func (r *bypassRegistry) Register(name string, v bypass.Bypass) error {
|
|
return r.registry.Register(name, v)
|
|
}
|
|
|
|
// Get returns a wrapper that delegates to the currently registered Bypass.
|
|
// Returns nil if name is empty.
|
|
func (r *bypassRegistry) Get(name string) bypass.Bypass {
|
|
if name != "" {
|
|
return &bypassWrapper{name: name, r: r}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *bypassRegistry) get(name string) bypass.Bypass {
|
|
return r.registry.Get(name)
|
|
}
|
|
|
|
type bypassWrapper struct {
|
|
name string
|
|
r *bypassRegistry
|
|
}
|
|
|
|
func (w *bypassWrapper) Contains(ctx context.Context, network, addr string, opts ...bypass.Option) bool {
|
|
bp := w.r.get(w.name)
|
|
if bp == nil {
|
|
return false
|
|
}
|
|
return bp.Contains(ctx, network, addr, opts...)
|
|
}
|
|
|
|
func (p *bypassWrapper) IsWhitelist() bool {
|
|
bp := p.r.get(p.name)
|
|
if bp == nil {
|
|
return false
|
|
}
|
|
return bp.IsWhitelist()
|
|
}
|