mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/sagernet/sing/common"
|
|
)
|
|
|
|
func ContextWithRegistry(ctx context.Context, registry Registry) context.Context {
|
|
return context.WithValue(ctx, common.DefaultValue[*Registry](), registry)
|
|
}
|
|
|
|
func RegistryFromContext(ctx context.Context) Registry {
|
|
registry := ctx.Value(common.DefaultValue[*Registry]())
|
|
if registry == nil {
|
|
return nil
|
|
}
|
|
return registry.(Registry)
|
|
}
|
|
|
|
func FromContext[T any](ctx context.Context) T {
|
|
registry := RegistryFromContext(ctx)
|
|
if registry == nil {
|
|
return common.DefaultValue[T]()
|
|
}
|
|
service := registry.Get(common.DefaultValue[*T]())
|
|
if service == nil {
|
|
return common.DefaultValue[T]()
|
|
}
|
|
return service.(T)
|
|
}
|
|
|
|
func PtrFromContext[T any](ctx context.Context) *T {
|
|
registry := RegistryFromContext(ctx)
|
|
if registry == nil {
|
|
return nil
|
|
}
|
|
servicePtr := registry.Get(common.DefaultValue[*T]())
|
|
if servicePtr == nil {
|
|
return nil
|
|
}
|
|
return servicePtr.(*T)
|
|
}
|
|
|
|
func ContextWith[T any](ctx context.Context, service T) context.Context {
|
|
registry := RegistryFromContext(ctx)
|
|
if registry == nil {
|
|
registry = NewRegistry()
|
|
ctx = ContextWithRegistry(ctx, registry)
|
|
}
|
|
registry.Register(common.DefaultValue[*T](), service)
|
|
return ctx
|
|
}
|
|
|
|
func ContextWithPtr[T any](ctx context.Context, servicePtr *T) context.Context {
|
|
registry := RegistryFromContext(ctx)
|
|
if registry == nil {
|
|
registry = NewRegistry()
|
|
ctx = ContextWithRegistry(ctx, registry)
|
|
}
|
|
registry.Register(common.DefaultValue[*T](), servicePtr)
|
|
return ctx
|
|
}
|