-
Notifications
You must be signed in to change notification settings - Fork 497
/
WebSocketContext.cs
240 lines (209 loc) · 9.88 KB
/
WebSocketContext.cs
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
using System;
using System.Buffers;
using System.ComponentModel;
using System.Net;
using System.Net.WebSockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace SteamKit2
{
partial class WebSocketConnection : IConnection
{
internal class WebSocketContext : IDisposable
{
public WebSocketContext(WebSocketConnection connection, EndPoint endPoint)
{
this.connection = connection ?? throw new ArgumentNullException( nameof( connection ) );
EndPoint = endPoint ?? throw new ArgumentNullException( nameof( endPoint ) );
cts = new CancellationTokenSource();
socket = new ClientWebSocket();
connectionUri = ConstructUri(endPoint);
}
readonly WebSocketConnection connection;
readonly CancellationTokenSource cts;
readonly ClientWebSocket socket;
readonly Uri connectionUri;
Task? runloopTask;
int disposed;
public EndPoint EndPoint { get; }
public void Start(TimeSpan connectionTimeout)
{
runloopTask = RunCore(connectionTimeout, cts.Token).IgnoringCancellation(cts.Token);
}
async Task RunCore(TimeSpan connectionTimeout, CancellationToken cancellationToken)
{
using (var timeout = new CancellationTokenSource())
using (var combinedCancellation = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, timeout.Token))
{
timeout.CancelAfter(connectionTimeout);
try
{
await socket.ConnectAsync(connectionUri, combinedCancellation.Token).ConfigureAwait(false);
}
catch (TaskCanceledException) when (timeout.IsCancellationRequested)
{
connection.log.LogDebug(nameof(WebSocketContext), "Time out connecting websocket {0} after {1}", connectionUri, connectionTimeout);
connection.DisconnectCore(userInitiated: false, specificContext: this);
return;
}
catch (Exception ex)
{
connection.log.LogDebug( nameof(WebSocketContext), "Exception connecting websocket: {0} - {1}", ex.GetType().FullName, ex.Message);
connection.DisconnectCore(userInitiated: false, specificContext: this);
return;
}
}
connection.log.LogDebug( nameof(WebSocketContext), "Connected to {0}", connectionUri);
connection.Connected?.Invoke(connection, EventArgs.Empty);
while (!cancellationToken.IsCancellationRequested && socket.State == WebSocketState.Open)
{
byte[]? packet = null;
try
{
packet = await ReadMessageAsync( cancellationToken ).ConfigureAwait( false );
}
catch ( Exception ex )
{
connection.log.LogDebug( nameof( WebSocketContext ), "Exception reading from websocket: {0} - {1}", ex.GetType().FullName, ex.Message );
connection.DisconnectCore( userInitiated: false, specificContext: this );
return;
}
if (packet != null && packet.Length > 0)
{
connection.NetMsgReceived?.Invoke(connection, new NetMsgEventArgs(packet, EndPoint));
}
}
if (socket.State == WebSocketState.Open)
{
connection.log.LogDebug( nameof(WebSocketContext), "Closing connection...");
try
{
await socket.CloseAsync(WebSocketCloseStatus.NormalClosure, null, default).ConfigureAwait(false);
}
catch (Win32Exception ex)
{
connection.log.LogDebug( nameof(WebSocketContext), "Error closing connection: {0}", ex.Message);
}
}
}
public async Task SendAsync(Memory<byte> data)
{
try
{
await socket.SendAsync(data, WebSocketMessageType.Binary, true, cts.Token).ConfigureAwait(false);
}
catch (WebSocketException ex)
{
connection.log.LogDebug( nameof(WebSocketContext), "{0} exception when sending message: {1}", ex.GetType().FullName, ex.Message);
connection.DisconnectCore(userInitiated: false, specificContext: this);
return;
}
}
public void Dispose()
{
if (Interlocked.Exchange(ref disposed, 1) == 1)
{
return;
}
cts.Cancel();
cts.Dispose();
runloopTask = null;
socket.Dispose();
}
async Task<byte[]?> ReadMessageAsync( CancellationToken cancellationToken )
{
var outputBuffer = ArrayPool<byte>.Shared.Rent( 1024 );
var readBuffer = ArrayPool<byte>.Shared.Rent( 1024 );
var readMemory = readBuffer.AsMemory();
ValueWebSocketReceiveResult result;
var outputLength = 0;
try
{
do
{
try
{
result = await socket.ReceiveAsync( readMemory, cancellationToken ).ConfigureAwait( false );
}
catch ( ObjectDisposedException )
{
connection.DisconnectCore( userInitiated: cancellationToken.IsCancellationRequested, specificContext: this );
return null;
}
catch ( WebSocketException )
{
connection.DisconnectCore( userInitiated: false, specificContext: this );
return null;
}
catch ( Win32Exception )
{
connection.DisconnectCore( userInitiated: false, specificContext: this );
return null;
}
switch ( result.MessageType )
{
case WebSocketMessageType.Binary:
if ( outputLength + result.Count > outputBuffer.Length )
{
var newBuffer = ArrayPool<byte>.Shared.Rent( outputBuffer.Length * 2 );
Buffer.BlockCopy( outputBuffer, 0, newBuffer, 0, outputLength );
ArrayPool<byte>.Shared.Return( outputBuffer );
outputBuffer = newBuffer;
}
Buffer.BlockCopy( readBuffer, 0, outputBuffer, outputLength, result.Count );
outputLength += result.Count;
break;
case WebSocketMessageType.Text:
try
{
var message = Encoding.UTF8.GetString( readBuffer, 0, result.Count );
connection.log.LogDebug( nameof( WebSocketContext ), "Received websocket text message: \"{0}\"", message );
}
catch
{
var frameBytes = new byte[ result.Count ];
Array.Copy( readBuffer, 0, frameBytes, 0, result.Count );
connection.log.LogDebug( nameof( WebSocketContext ), "Received websocket text message: 0x{0}", Utils.EncodeHexString( frameBytes ) );
}
break;
case WebSocketMessageType.Close:
default:
connection.DisconnectCore( userInitiated: false, specificContext: this );
return null;
}
}
while ( !result.EndOfMessage );
var output = new byte[ outputLength ];
Buffer.BlockCopy( outputBuffer, 0, output, 0, output.Length );
return output;
}
finally
{
ArrayPool<byte>.Shared.Return( readBuffer );
ArrayPool<byte>.Shared.Return( outputBuffer );
}
}
internal static Uri ConstructUri(EndPoint endPoint)
{
var uri = new UriBuilder();
uri.Scheme = "wss";
uri.Path = "/cmsocket/";
switch (endPoint)
{
case IPEndPoint ipep:
uri.Port = ipep.Port;
uri.Host = ipep.Address.ToString();
break;
case DnsEndPoint dns:
uri.Host = dns.Host;
uri.Port = dns.Port;
break;
default:
throw new InvalidOperationException("Unsupported endpoint type.");
}
return uri.Uri;
}
}
}
}