You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/zrpc/internal/serverinterceptors/recoverinterceptor.go

43 lines
1.0 KiB
Go

4 years ago
package serverinterceptors
import (
"context"
"runtime/debug"
"github.com/zeromicro/go-zero/core/logx"
4 years ago
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
// StreamRecoverInterceptor catches panics in processing stream requests and recovers.
func StreamRecoverInterceptor(svr any, stream grpc.ServerStream, _ *grpc.StreamServerInfo,
4 years ago
handler grpc.StreamHandler) (err error) {
defer handleCrash(func(r any) {
4 years ago
err = toPanicError(r)
})
return handler(svr, stream)
4 years ago
}
// UnaryRecoverInterceptor catches panics in processing unary requests and recovers.
func UnaryRecoverInterceptor(ctx context.Context, req any, _ *grpc.UnaryServerInfo,
handler grpc.UnaryHandler) (resp any, err error) {
defer handleCrash(func(r any) {
err = toPanicError(r)
})
return handler(ctx, req)
4 years ago
}
func handleCrash(handler func(any)) {
4 years ago
if r := recover(); r != nil {
handler(r)
}
}
func toPanicError(r any) error {
3 years ago
logx.Errorf("%+v\n\n%s", r, debug.Stack())
4 years ago
return status.Errorf(codes.Internal, "panic: %v", r)
}