Beispiel #1
0
        public override RemoteConnection ConnectToServer(RemoteServerInfo serverInfo)
        {
            try
            {
                var channel = new Grpc.Core.Channel(
                    serverInfo.ServerIp,
                    serverInfo.ServerPort,
                    Grpc.Core.ChannelCredentials.Insecure,
                    /* keep config and naming using diff channel */
                    new List <Grpc.Core.ChannelOption> {
                    new Grpc.Core.ChannelOption(GetName(), 1)
                });

                // after nacos alpha2 server check response was changed!!
                var response = ServerCheck(channel);
                if (response == null || response is not ServerCheckResponse scResp)
                {
                    ShuntDownChannel(channel);
                    return(null);
                }

                var streamClient  = new Nacos.BiRequestStream.BiRequestStreamClient(channel);
                var requestClient = new Nacos.Request.RequestClient(channel);

                GrpcConnection grpcConn = new GrpcConnection(serverInfo);
                grpcConn.SetConnectionId(scResp.ConnectionId);

                var streamCall = BindRequestStream(streamClient, grpcConn);

                // stream observer to send response to server
                grpcConn.SetBiRequestStreamClient(streamCall);
                grpcConn.SetRequestClient(requestClient);
                grpcConn.SetChannel(channel);

                // after nacos alpha2 setup request was changed!!
                ConnectionSetupRequest conSetupRequest = new ConnectionSetupRequest
                {
                    ClientVersion = Constants.CLIENT_VERSION,
                    Labels        = labels,
                    Abilities     = clientAbilities,
                    ClientIp      = Utils.NetUtils.LocalIP(),
                    Tenant        = GetTenant()
                };

                grpcConn.SendRequest(conSetupRequest, BuildMeta(conSetupRequest.GetRemoteType()));
                return(grpcConn);
            }
            catch (Exception ex)
            {
                logger?.LogError(ex, "[{0}]Fail to connect to server!", this.GetName());
                return(null);
            }
        }
Beispiel #2
0
        private Grpc.Core.AsyncDuplexStreamingCall <Nacos.Payload, Nacos.Payload> BindRequestStream(Nacos.BiRequestStream.BiRequestStreamClient client, GrpcConnection grpcConn)
        {
            var call = client.requestBiStream();

            System.Threading.Tasks.Task.Factory.StartNew(
                async() =>
            {
                var cts = new System.Threading.CancellationTokenSource();

                while (await call.ResponseStream.MoveNext(cts.Token))
                {
                    var current = call.ResponseStream.Current;

                    var parseBody = GrpcUtils.Parse(current);

                    var request = (CommonRequest)parseBody;
                    if (request != null)
                    {
                        try
                        {
                            var response       = HandleServerRequest(request);
                            response.RequestId = request.RequestId;
                            await call.RequestStream.WriteAsync(GrpcUtils.Convert(response));
                        }
                        catch (Exception)
                        {
                            throw;
                        }
                    }
                }

                if (IsRunning() && !grpcConn.IsAbandon())
                {
                    logger?.LogInformation(" Request Stream onCompleted ,switch server ");

                    if (System.Threading.Interlocked.CompareExchange(ref rpcClientStatus, RpcClientStatus.UNHEALTHY, RpcClientStatus.RUNNING) == RpcClientStatus.RUNNING)
                    {
                        SwitchServerAsync();
                    }
                }
                else
                {
                    logger?.LogInformation("client is not running status ,ignore complete  event ");
                }
            }, System.Threading.Tasks.TaskCreationOptions.LongRunning);

            return(call);
        }