mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
76 lines
2.0 KiB
C#
76 lines
2.0 KiB
C#
using SocketIOClient.Transport;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
|
|
namespace SocketIOClient.Messages
|
|
{
|
|
/// <summary>
|
|
/// The server calls the client's callback
|
|
/// </summary>
|
|
public class ClientAckMessage : IMessage
|
|
{
|
|
public MessageType Type => MessageType.AckMessage;
|
|
|
|
public string Namespace { get; set; }
|
|
|
|
public string Event { get; set; }
|
|
|
|
public List<JsonElement> JsonElements { get; set; }
|
|
|
|
public string Json { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
|
|
public List<byte[]> OutgoingBytes { get; set; }
|
|
|
|
public List<byte[]> IncomingBytes { get; set; }
|
|
|
|
public int BinaryCount { get; }
|
|
|
|
public int Eio { get; set; }
|
|
|
|
public TransportProtocol Protocol { get; set; }
|
|
|
|
public void Read(string msg)
|
|
{
|
|
int index = msg.IndexOf('[');
|
|
int lastIndex = msg.LastIndexOf(',', index);
|
|
if (lastIndex > -1)
|
|
{
|
|
string text = msg.Substring(0, index);
|
|
Namespace = text.Substring(0, lastIndex);
|
|
Id = int.Parse(text.Substring(lastIndex + 1));
|
|
}
|
|
else
|
|
{
|
|
Id = int.Parse(msg.Substring(0, index));
|
|
}
|
|
msg = msg.Substring(index);
|
|
JsonElements = JsonDocument.Parse(msg).RootElement.EnumerateArray().ToList();
|
|
}
|
|
|
|
public string Write()
|
|
{
|
|
var builder = new StringBuilder();
|
|
builder.Append("42");
|
|
if (!string.IsNullOrEmpty(Namespace))
|
|
{
|
|
builder.Append(Namespace).Append(',');
|
|
}
|
|
builder.Append(Id);
|
|
if (string.IsNullOrEmpty(Json))
|
|
{
|
|
builder.Append("[\"").Append(Event).Append("\"]");
|
|
}
|
|
else
|
|
{
|
|
string data = Json.Insert(1, $"\"{Event}\",");
|
|
builder.Append(data);
|
|
}
|
|
return builder.ToString();
|
|
}
|
|
}
|
|
}
|