You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
3.7 KiB
129 lines
3.7 KiB
package mw
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
"runtime"
|
|
"runtime/debug"
|
|
"strings"
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/log"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/mw/specialerror"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/errs"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/proto/errinfo"
|
|
"github.com/pkg/errors"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/metadata"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
const OperationID = "operationID"
|
|
const OpUserID = "opUserID"
|
|
|
|
func rpcString(v interface{}) string {
|
|
if s, ok := v.(interface{ String() string }); ok {
|
|
return s.String()
|
|
}
|
|
return fmt.Sprintf("%+v", v)
|
|
}
|
|
|
|
func rpcServerInterceptor(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (resp interface{}, err error) {
|
|
var operationID string
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
log.ZError(ctx, "rpc panic", nil, "FullMethod", info.FullMethod, "type:", fmt.Sprintf("%T", r), "panic:", r)
|
|
fmt.Println("stack info:", string(debug.Stack()))
|
|
pc, file, line, ok := runtime.Caller(4)
|
|
if !ok {
|
|
panic("get runtime.Caller failed")
|
|
}
|
|
errInfo := &errinfo.ErrorInfo{
|
|
Path: file,
|
|
Line: uint32(line),
|
|
Name: runtime.FuncForPC(pc).Name(),
|
|
Cause: fmt.Sprintf("%s", r),
|
|
Warp: nil,
|
|
}
|
|
sta, err_ := status.New(codes.Code(errs.ErrInternalServer.Code()), errs.ErrInternalServer.Msg()).WithDetails(errInfo)
|
|
if err_ != nil {
|
|
panic(err_)
|
|
}
|
|
err = sta.Err()
|
|
}
|
|
}()
|
|
funcName := info.FullMethod
|
|
md, ok := metadata.FromIncomingContext(ctx)
|
|
if !ok {
|
|
return nil, status.New(codes.InvalidArgument, "missing metadata").Err()
|
|
}
|
|
if opts := md.Get(OperationID); len(opts) != 1 || opts[0] == "" {
|
|
return nil, status.New(codes.InvalidArgument, "operationID error").Err()
|
|
} else {
|
|
operationID = opts[0]
|
|
}
|
|
var opUserID string
|
|
if opts := md.Get(OpUserID); len(opts) == 1 {
|
|
opUserID = opts[0]
|
|
}
|
|
ctx = context.WithValue(ctx, OperationID, operationID)
|
|
ctx = context.WithValue(ctx, OpUserID, opUserID)
|
|
log.ZInfo(ctx, "rpc server req", "funcName", funcName, "req", rpcString(req))
|
|
resp, err = handler(ctx, req)
|
|
if err == nil {
|
|
log.ZInfo(ctx, "rpc server resp", "funcName", funcName, "resp", rpcString(resp))
|
|
return resp, nil
|
|
}
|
|
unwrap := errs.Unwrap(err)
|
|
codeErr := specialerror.ErrCode(unwrap)
|
|
if codeErr == nil {
|
|
log.ZError(ctx, "rpc InternalServer error", err, "req", req)
|
|
codeErr = errs.ErrInternalServer
|
|
}
|
|
code := codeErr.Code()
|
|
if code <= 0 || code > math.MaxUint32 {
|
|
log.ZError(ctx, "rpc UnknownError", err, "rpc UnknownCode:", code)
|
|
code = errs.ServerInternalError
|
|
}
|
|
grpcStatus := status.New(codes.Code(code), codeErr.Msg())
|
|
var errInfo *errinfo.ErrorInfo
|
|
if config.Config.Log.WithStack {
|
|
if unwrap != err {
|
|
sti, ok := err.(interface{ StackTrace() errors.StackTrace })
|
|
if ok {
|
|
log.ZWarn(ctx, "rpc server resp", err, "funcName", funcName, "unwrap", unwrap.Error(), "stack", fmt.Sprintf("%+v", err))
|
|
if fs := sti.StackTrace(); len(fs) > 0 {
|
|
pc := uintptr(fs[0])
|
|
fn := runtime.FuncForPC(pc)
|
|
file, line := fn.FileLine(pc)
|
|
errInfo = &errinfo.ErrorInfo{
|
|
Path: file,
|
|
Line: uint32(line),
|
|
Name: fn.Name(),
|
|
Cause: unwrap.Error(),
|
|
Warp: nil,
|
|
}
|
|
if arr := strings.Split(err.Error(), ": "); len(arr) > 1 {
|
|
errInfo.Warp = arr[:len(arr)-1]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if errInfo == nil {
|
|
errInfo = &errinfo.ErrorInfo{Cause: err.Error()}
|
|
}
|
|
details, err := grpcStatus.WithDetails(errInfo)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
log.ZWarn(ctx, "rpc server resp", err, "funcName", funcName)
|
|
return nil, details.Err()
|
|
}
|
|
|
|
func GrpcServer() grpc.ServerOption {
|
|
return grpc.UnaryInterceptor(rpcServerInterceptor)
|
|
}
|