1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
public class ClientGrpcInterceptor : Interceptor { private readonly IColaLogs _colaLog; private readonly IConfiguration _config; public ClientGrpcInterceptor( IColaLogs colaLog, IConfiguration config) { _colaLog = colaLog; _config = config; }
public override AsyncUnaryCall<TResponse> AsyncUnaryCall<TRequest, TResponse>( TRequest request, ClientInterceptorContext<TRequest, TResponse> context, AsyncUnaryCallContinuation<TRequest, TResponse> continuation) { ClientInterceptorLog($" gRpc调用类型: 一元 RPC 异步调用. \r\n gRpc调用方法: {context.Method.Name}.",context); var call = continuation(request, context); return new AsyncUnaryCall<TResponse>( HandleResponse(call.ResponseAsync), call.ResponseHeadersAsync, call.GetStatus, call.GetTrailers, call.Dispose); }
public override TResponse BlockingUnaryCall<TRequest, TResponse>(TRequest request, ClientInterceptorContext<TRequest, TResponse> context, BlockingUnaryCallContinuation<TRequest, TResponse> continuation) { ClientInterceptorLog($" gRpc调用类型: 一元 RPC 阻塞调用. \r\n gRpc调用方法: {context.Method.Name}.",context); return continuation(request, context); }
public override AsyncClientStreamingCall<TRequest, TResponse> AsyncClientStreamingCall<TRequest, TResponse>(ClientInterceptorContext<TRequest, TResponse> context, AsyncClientStreamingCallContinuation<TRequest, TResponse> continuation) { ClientInterceptorLog($" gRpc调用类型: 客户端流式处理 RPC 异步调用. \r\n gRpc调用方法: {context.Method.Name}.",context); var call = continuation(context); return new AsyncClientStreamingCall<TRequest, TResponse>( HandleResponse(call.RequestStream), HandleResponse(call.ResponseAsync), call.ResponseHeadersAsync, call.GetStatus, call.GetTrailers, call.Dispose); }
public override AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(TRequest request, ClientInterceptorContext<TRequest, TResponse> context, AsyncServerStreamingCallContinuation<TRequest, TResponse> continuation) { ClientInterceptorLog($" gRpc调用类型: 服务器流式处理 RPC 异步调用. \r\n gRpc调用方法: {context.Method.Name}.",context); var call = continuation(request,context); return new AsyncServerStreamingCall<TResponse>( HandleResponse(call.ResponseStream), call.ResponseHeadersAsync, call.GetStatus, call.GetTrailers, call.Dispose); }
public override AsyncDuplexStreamingCall<TRequest, TResponse> AsyncDuplexStreamingCall<TRequest, TResponse>(ClientInterceptorContext<TRequest, TResponse> context, AsyncDuplexStreamingCallContinuation<TRequest, TResponse> continuation) { ClientInterceptorLog($" gRpc调用类型: 双向流式处理 RPC 异步调用. \r\n gRpc调用方法: {context.Method.Name}.",context); var call = continuation(context); return new AsyncDuplexStreamingCall<TRequest, TResponse>( HandleResponse(call.RequestStream), HandleResponse(call.ResponseStream), call.ResponseHeadersAsync, call.GetStatus, call.GetTrailers, call.Dispose); }
private async Task<TResponse> HandleResponse<TResponse>(Task<TResponse> inner) { try { return await inner; } catch (Exception ex) { _colaLog.Error(ex); throw new InvalidOperationException("Custom error", ex); } } private TResponse HandleResponse<TResponse>(TResponse inner) { try { return inner; } catch (Exception ex) { _colaLog.Error(ex); throw new InvalidOperationException("Custom error", ex); } } private void ClientInterceptorLog<TRequest, TResponse>(string logInfo,ClientInterceptorContext<TRequest, TResponse> context) where TRequest:class where TResponse:class { var interceptorLog = _config.GetSection(SystemConstant.CONSTANT_COLAGRPCCLIENT_SECTION).Get<GrpcClientOption>() .InterceptorLog; if (interceptorLog) { _colaLog.Info(logInfo); } } }
|