54 lines
1.7 KiB
Go
54 lines
1.7 KiB
Go
// Copyright 2017 David Ackroyd. All Rights Reserved.
|
|
// See LICENSE for licensing terms.
|
|
|
|
package grpc_recovery
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
// RecoveryHandlerFunc is a function that recovers from the panic `p` by returning an `error`.
|
|
type RecoveryHandlerFunc func(p interface{}) (err error)
|
|
|
|
// RecoveryHandlerFuncContext is a function that recovers from the panic `p` by returning an `error`.
|
|
// The context can be used to extract request scoped metadata and context values.
|
|
type RecoveryHandlerFuncContext func(ctx context.Context, p interface{}) (err error)
|
|
|
|
// UnaryServerInterceptor returns a new unary server interceptor for panic recovery.
|
|
func UnaryServerInterceptor(opts ...Option) grpc.UnaryServerInterceptor {
|
|
o := evaluateOptions(opts)
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (_ interface{}, err error) {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
err = recoverFrom(ctx, r, o.recoveryHandlerFunc)
|
|
}
|
|
}()
|
|
|
|
return handler(ctx, req)
|
|
}
|
|
}
|
|
|
|
// StreamServerInterceptor returns a new streaming server interceptor for panic recovery.
|
|
func StreamServerInterceptor(opts ...Option) grpc.StreamServerInterceptor {
|
|
o := evaluateOptions(opts)
|
|
return func(srv interface{}, stream grpc.ServerStream, info *grpc.StreamServerInfo, handler grpc.StreamHandler) (err error) {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
err = recoverFrom(stream.Context(), r, o.recoveryHandlerFunc)
|
|
}
|
|
}()
|
|
|
|
return handler(srv, stream)
|
|
}
|
|
}
|
|
|
|
func recoverFrom(ctx context.Context, p interface{}, r RecoveryHandlerFuncContext) error {
|
|
if r == nil {
|
|
return grpc.Errorf(codes.Internal, "%s", p)
|
|
}
|
|
return r(ctx, p)
|
|
}
|