util

package
v0.10.0-rc4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 31, 2023 License: Apache-2.0 Imports: 32 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrUnsupportedProtocolScheme = errors.New("unsupported protocol scheme")

Functions

func BindContext added in v0.5.4

func BindContext[A any](ctx context.Context, f func(context.Context) A) func() A

func BindContext2 added in v0.5.4

func BindContext2[A, B any](ctx context.Context, f func(context.Context) (A, B)) func() (A, B)

func DecodeStruct added in v0.4.1

func DecodeStruct[T any](input interface{}) (*T, error)

func DeepCopy added in v0.4.1

func DeepCopy[T any](in *T) *T

func DeepCopyInto added in v0.4.1

func DeepCopyInto[T any](out, in *T)

func DialProtocol added in v0.5.4

func DialProtocol(ctx context.Context, addr string) (net.Conn, error)

func GenerateRandomString added in v0.3.1

func GenerateRandomString(length int) []byte

func HashString added in v0.8.3

func HashString(s string) uint64

func HashStrings added in v0.8.3

func HashStrings(strings []string) string

func Indexed added in v0.6.0

func Indexed[T any, U any](f func(T) U) func(T, int) U

Used with lo.Map to wrap functions that do not take an index argument

func IsInterfaceNil added in v0.5.4

func IsInterfaceNil(i interface{}) bool

func LoadClientMTLSConfig added in v0.4.1

func LoadClientMTLSConfig(certs *v1beta1.MTLSSpec) (*tls.Config, error)

func LoadServingCertBundle added in v0.4.1

func LoadServingCertBundle(certsSpec v1beta1.CertsSpec) (*tls.Certificate, *x509.CertPool, error)

func Must added in v0.4.1

func Must[T any](t T, err ...error) T

func NewProtocolListener added in v0.4.1

func NewProtocolListener(addr string) (net.Listener, error)

func ParsePEMEncodedCert added in v0.4.1

func ParsePEMEncodedCert(data []byte) (*x509.Certificate, error)

func ParsePEMEncodedCertChain added in v0.4.1

func ParsePEMEncodedCertChain(chain []byte) ([]*x509.Certificate, error)

func ProtoClone added in v0.5.4

func ProtoClone[T proto.Message](msg T) T

func ReadString added in v0.6.0

func ReadString(r io.Reader) string

func RemoveFirstOccurence added in v0.7.0

func RemoveFirstOccurence[S ~[]T, T comparable](items S, remove T) S

func ReplaceFirstOccurrence added in v0.7.0

func ReplaceFirstOccurrence[S ~[]T, T comparable](items S, old T, new T) S

func ServeHandler added in v0.6.0

func ServeHandler(ctx context.Context, handler http.Handler, listener net.Listener) error

ServeHandler serves a http.Handler with the given listener. If the context is canceled, the server will be closed.

func StatusCode added in v0.5.4

func StatusCode(err error) codes.Code

Like status.Code(), but supports wrapped errors.

func StatusError added in v0.5.4

func StatusError(code codes.Code) error

func WaitAll added in v0.6.0

func WaitAll(ctx context.Context, ca context.CancelFunc, channels ...<-chan error) error

WaitAll waits for all the given channels to be closed, under the following rules: 1. The lifetime of the task represented by each channel is directly tied to the provided context. 2. If a task exits with an error before the context is canceled, the context should be canceled. 3. If a task exits successfully, the context should not be canceled and other tasks should continue to run.

Types

type DelimiterCodec added in v0.4.1

type DelimiterCodec struct {
	// contains filtered or unexported fields
}

Implements rbac.Codec

func NewDelimiterCodec added in v0.4.1

func NewDelimiterCodec(key string, delimiter string) DelimiterCodec

func (DelimiterCodec) Decode added in v0.4.1

func (d DelimiterCodec) Decode(s string) []string

func (DelimiterCodec) Encode added in v0.4.1

func (d DelimiterCodec) Encode(ids []string) string

func (DelimiterCodec) Key added in v0.4.1

func (d DelimiterCodec) Key() string

type Initializer added in v0.6.0

type Initializer struct {
	// contains filtered or unexported fields
}

func (*Initializer) InitOnce added in v0.6.0

func (i *Initializer) InitOnce(f func())

func (*Initializer) Initialized added in v0.6.0

func (i *Initializer) Initialized() bool

func (*Initializer) WaitForInit added in v0.6.0

func (i *Initializer) WaitForInit()

func (*Initializer) WaitForInitContext added in v0.6.0

func (i *Initializer) WaitForInitContext(ctx context.Context) error

type LockMap added in v0.5.4

type LockMap[K comparable, L sync.Locker] interface {
	Get(key K) L
	Delete(key K)
}

func NewLockMap added in v0.5.4

func NewLockMap[K comparable, L locker[T], T any]() LockMap[K, L]

type MultiErrGroup added in v0.10.0

type MultiErrGroup struct {
	sync.WaitGroup
	// contains filtered or unexported fields
}

MultiErrGroup Best effort to run all tasks, then combines all errors

func (*MultiErrGroup) Add added in v0.10.0

func (i *MultiErrGroup) Add(tasks int)

func (*MultiErrGroup) AddError added in v0.10.0

func (i *MultiErrGroup) AddError(err error)

func (*MultiErrGroup) Done added in v0.10.0

func (i *MultiErrGroup) Done()

func (*MultiErrGroup) Error added in v0.10.0

func (i *MultiErrGroup) Error() error

func (*MultiErrGroup) Go added in v0.10.0

func (i *MultiErrGroup) Go(fn func() error)

func (*MultiErrGroup) Wait added in v0.10.0

func (i *MultiErrGroup) Wait()

type ServicePack added in v0.5.4

type ServicePack[T any] struct {
	// contains filtered or unexported fields
}

func PackService added in v0.5.4

func PackService[T any](desc *grpc.ServiceDesc, impl T) ServicePack[T]

func (ServicePack[T]) Unpack added in v0.5.4

func (s ServicePack[T]) Unpack() (*grpc.ServiceDesc, any)

type ServicePackInterface added in v0.6.0

type ServicePackInterface interface {
	Unpack() (*grpc.ServiceDesc, any)
}

Directories

Path Synopsis
Package for abstracting agent downstream updates and notifying upstream
Package for abstracting agent downstream updates and notifying upstream

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL