* LCWebSocketConnection.cs: chore: 增加 websocket 日志 id
* LCIMClient.cs: chore: 增加 WebSocket 日志输出 id
parent
6781d4e94f
commit
ca2c190d3b
|
@ -21,11 +21,14 @@ namespace LeanCloud.Realtime.Internal.WebSocket {
|
||||||
|
|
||||||
private Dictionary<int, TaskCompletionSource<GenericCommand>> responses;
|
private Dictionary<int, TaskCompletionSource<GenericCommand>> responses;
|
||||||
|
|
||||||
|
private string id;
|
||||||
|
|
||||||
internal Action<GenericCommand> OnNotification {
|
internal Action<GenericCommand> OnNotification {
|
||||||
get; set;
|
get; set;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal LCWebSocketConnection() {
|
internal LCWebSocketConnection(string id) {
|
||||||
|
this.id = id;
|
||||||
responses = new Dictionary<int, TaskCompletionSource<GenericCommand>>();
|
responses = new Dictionary<int, TaskCompletionSource<GenericCommand>>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,11 +47,11 @@ namespace LeanCloud.Realtime.Internal.WebSocket {
|
||||||
TaskCompletionSource<GenericCommand> tcs = new TaskCompletionSource<GenericCommand>();
|
TaskCompletionSource<GenericCommand> tcs = new TaskCompletionSource<GenericCommand>();
|
||||||
request.I = RequestI;
|
request.I = RequestI;
|
||||||
responses.Add(request.I, tcs);
|
responses.Add(request.I, tcs);
|
||||||
LCLogger.Debug($"=> {request.Cmd}/{request.Op}: {request.ToString()}");
|
LCLogger.Debug($"{id} => {request.Cmd}/{request.Op}: {request.ToString()}");
|
||||||
ArraySegment<byte> bytes = new ArraySegment<byte>(request.ToByteArray());
|
ArraySegment<byte> bytes = new ArraySegment<byte>(request.ToByteArray());
|
||||||
try {
|
try {
|
||||||
ws.SendAsync(bytes, WebSocketMessageType.Binary, true, default);
|
ws.SendAsync(bytes, WebSocketMessageType.Binary, true, default);
|
||||||
} catch (Exception e) {
|
} catch (Exception) {
|
||||||
// TODO 发送消息异常
|
// TODO 发送消息异常
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -80,7 +83,7 @@ namespace LeanCloud.Realtime.Internal.WebSocket {
|
||||||
} while (!result.EndOfMessage);
|
} while (!result.EndOfMessage);
|
||||||
try {
|
try {
|
||||||
GenericCommand command = GenericCommand.Parser.ParseFrom(data);
|
GenericCommand command = GenericCommand.Parser.ParseFrom(data);
|
||||||
LCLogger.Debug($"<= {command.Cmd}/{command.Op}: {command.ToString()}");
|
LCLogger.Debug($"{id} <= {command.Cmd}/{command.Op}: {command.ToString()}");
|
||||||
HandleCommand(command);
|
HandleCommand(command);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// 解析消息错误
|
// 解析消息错误
|
||||||
|
|
|
@ -89,7 +89,7 @@ namespace LeanCloud.Realtime {
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task Open() {
|
public async Task Open() {
|
||||||
connection = new LCWebSocketConnection {
|
connection = new LCWebSocketConnection(ClientId) {
|
||||||
OnNotification = OnNotification
|
OnNotification = OnNotification
|
||||||
};
|
};
|
||||||
await connection.Connect();
|
await connection.Connect();
|
||||||
|
|
Loading…
Reference in New Issue