jellyfin/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs

282 lines
9.4 KiB
C#
Raw Normal View History

using System;
2019-12-17 23:15:02 +01:00
using System.Buffers;
using System.IO.Pipelines;
using System.Net;
using System.Net.WebSockets;
2021-01-13 01:11:12 +01:00
using System.Text;
2019-12-17 23:15:02 +01:00
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using Jellyfin.Extensions.Json;
using MediaBrowser.Controller.Net;
using MediaBrowser.Controller.Net.WebSocketMessages;
2023-07-03 00:14:44 +02:00
using MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
using MediaBrowser.Model.Session;
using Microsoft.Extensions.Logging;
2013-02-21 02:33:05 +01:00
2018-09-12 19:26:21 +02:00
namespace Emby.Server.Implementations.HttpServer
2013-02-21 02:33:05 +01:00
{
/// <summary>
2019-11-01 18:38:54 +01:00
/// Class WebSocketConnection.
2013-02-21 02:33:05 +01:00
/// </summary>
public class WebSocketConnection : IWebSocketConnection
2013-02-21 02:33:05 +01:00
{
/// <summary>
2019-11-01 18:38:54 +01:00
/// The logger.
2013-02-21 02:33:05 +01:00
/// </summary>
2020-06-06 02:15:56 +02:00
private readonly ILogger<WebSocketConnection> _logger;
2013-02-21 02:33:05 +01:00
2013-02-24 22:53:54 +01:00
/// <summary>
2019-12-17 23:15:02 +01:00
/// The json serializer options.
2013-02-24 22:53:54 +01:00
/// </summary>
2019-12-17 23:15:02 +01:00
private readonly JsonSerializerOptions _jsonOptions;
/// <summary>
/// The socket.
2013-10-03 03:22:50 +02:00
/// </summary>
2019-12-17 23:15:02 +01:00
private readonly WebSocket _socket;
2016-10-06 20:55:01 +02:00
private bool _disposed = false;
2013-02-21 02:33:05 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="WebSocketConnection" /> class.
/// </summary>
/// <param name="logger">The logger.</param>
2013-02-21 02:33:05 +01:00
/// <param name="socket">The socket.</param>
/// <param name="remoteEndPoint">The remote end point.</param>
public WebSocketConnection(
ILogger<WebSocketConnection> logger,
WebSocket socket,
IPAddress? remoteEndPoint)
2013-02-21 02:33:05 +01:00
{
_logger = logger;
2013-02-21 02:33:05 +01:00
_socket = socket;
RemoteEndPoint = remoteEndPoint;
2014-05-17 20:37:40 +02:00
2021-03-09 05:57:38 +01:00
_jsonOptions = JsonDefaults.Options;
LastActivityDate = DateTime.Now;
2014-05-17 20:37:40 +02:00
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
public event EventHandler<EventArgs>? Closed;
2019-11-01 18:38:54 +01:00
/// <summary>
2021-08-29 00:32:50 +02:00
/// Gets the remote end point.
2019-11-01 18:38:54 +01:00
/// </summary>
public IPAddress? RemoteEndPoint { get; }
2019-11-01 18:38:54 +01:00
/// <summary>
/// Gets or sets the receive action.
/// </summary>
/// <value>The receive action.</value>
public Func<WebSocketMessageInfo, Task>? OnReceive { get; set; }
2019-11-01 18:38:54 +01:00
/// <summary>
/// Gets the last activity date.
/// </summary>
/// <value>The last activity date.</value>
public DateTime LastActivityDate { get; private set; }
2020-04-17 13:47:00 +02:00
/// <inheritdoc />
public DateTime LastKeepAliveDate { get; set; }
2019-11-01 18:38:54 +01:00
/// <summary>
/// Gets the state.
/// </summary>
/// <value>The state.</value>
public WebSocketState State => _socket.State;
2023-07-03 00:14:44 +02:00
/// <inheritdoc />
public Task SendAsync(OutboundWebSocketMessage message, CancellationToken cancellationToken)
{
var json = JsonSerializer.SerializeToUtf8Bytes(message, _jsonOptions);
return _socket.SendAsync(json, WebSocketMessageType.Text, true, cancellationToken);
}
2023-07-03 00:14:44 +02:00
/// <inheritdoc />
public Task SendAsync<T>(OutboundWebSocketMessage<T> message, CancellationToken cancellationToken)
2014-05-17 20:37:40 +02:00
{
2019-12-17 23:15:02 +01:00
var json = JsonSerializer.SerializeToUtf8Bytes(message, _jsonOptions);
return _socket.SendAsync(json, WebSocketMessageType.Text, true, cancellationToken);
2013-02-21 02:33:05 +01:00
}
2019-12-17 23:15:02 +01:00
/// <inheritdoc />
public async Task ProcessAsync(CancellationToken cancellationToken = default)
2013-02-21 02:33:05 +01:00
{
2019-12-17 23:15:02 +01:00
var pipe = new Pipe();
var writer = pipe.Writer;
2013-05-26 02:53:51 +02:00
2019-12-17 23:15:02 +01:00
ValueWebSocketReceiveResult receiveresult;
do
{
2019-12-17 23:15:02 +01:00
// Allocate at least 512 bytes from the PipeWriter
Memory<byte> memory = writer.GetMemory(512);
2019-12-27 15:42:59 +01:00
try
{
2020-08-01 15:03:33 +02:00
receiveresult = await _socket.ReceiveAsync(memory, cancellationToken).ConfigureAwait(false);
2019-12-27 15:42:59 +01:00
}
catch (WebSocketException ex)
{
_logger.LogWarning("WS {IP} error receiving data: {Message}", RemoteEndPoint, ex.Message);
break;
}
2015-03-09 01:36:02 +01:00
2019-12-17 23:15:02 +01:00
int bytesRead = receiveresult.Count;
if (bytesRead == 0)
{
break;
2019-12-17 23:15:02 +01:00
}
// Tell the PipeWriter how much was read from the Socket
writer.Advance(bytesRead);
// Make the data available to the PipeReader
2021-01-13 01:11:12 +01:00
FlushResult flushResult = await writer.FlushAsync(cancellationToken).ConfigureAwait(false);
2019-12-17 23:15:02 +01:00
if (flushResult.IsCompleted)
{
// The PipeReader stopped reading
break;
}
LastActivityDate = DateTime.UtcNow;
2019-12-17 23:15:02 +01:00
if (receiveresult.EndOfMessage)
{
await ProcessInternal(pipe.Reader).ConfigureAwait(false);
}
2021-10-02 20:03:47 +02:00
}
while ((_socket.State == WebSocketState.Open || _socket.State == WebSocketState.Connecting)
2019-12-27 15:56:20 +01:00
&& receiveresult.MessageType != WebSocketMessageType.Close);
2019-12-17 23:15:02 +01:00
Closed?.Invoke(this, EventArgs.Empty);
2019-12-27 15:56:20 +01:00
if (_socket.State == WebSocketState.Open
|| _socket.State == WebSocketState.CloseReceived
|| _socket.State == WebSocketState.CloseSent)
2015-03-09 01:36:02 +01:00
{
2019-12-27 15:56:20 +01:00
await _socket.CloseAsync(
WebSocketCloseStatus.NormalClosure,
string.Empty,
cancellationToken).ConfigureAwait(false);
2015-03-09 01:36:02 +01:00
}
}
2013-02-21 02:33:05 +01:00
2019-12-17 23:15:02 +01:00
private async Task ProcessInternal(PipeReader reader)
{
2019-12-27 14:42:53 +01:00
ReadResult result = await reader.ReadAsync().ConfigureAwait(false);
ReadOnlySequence<byte> buffer = result.Buffer;
2022-12-05 15:00:20 +01:00
if (OnReceive is null)
{
2019-12-27 14:42:53 +01:00
// Tell the PipeReader how much of the buffer we have consumed
reader.AdvanceTo(buffer.End);
return;
}
2023-07-03 00:14:44 +02:00
InboundWebSocketMessage<object>? stub;
long bytesConsumed;
try
{
2021-01-13 01:11:12 +01:00
stub = DeserializeWebSocketMessage(buffer, out bytesConsumed);
}
2019-12-17 23:15:02 +01:00
catch (JsonException ex)
{
2019-12-27 14:42:53 +01:00
// Tell the PipeReader how much of the buffer we have consumed
reader.AdvanceTo(buffer.End);
2021-01-13 01:11:12 +01:00
_logger.LogError(ex, "Error processing web socket message: {Data}", Encoding.UTF8.GetString(buffer));
2019-12-27 14:42:53 +01:00
return;
}
2016-10-07 17:08:13 +02:00
2022-12-05 15:00:20 +01:00
if (stub is null)
2020-08-25 16:11:50 +02:00
{
_logger.LogError("Error processing web socket message");
return;
}
2019-12-27 14:42:53 +01:00
// Tell the PipeReader how much of the buffer we have consumed
2021-01-13 01:11:12 +01:00
reader.AdvanceTo(buffer.GetPosition(bytesConsumed));
2013-02-24 22:53:54 +01:00
2019-12-29 14:53:04 +01:00
_logger.LogDebug("WS {IP} received message: {@Message}", RemoteEndPoint, stub);
2013-02-21 02:33:05 +01:00
2021-01-13 01:11:12 +01:00
if (stub.MessageType == SessionMessageType.KeepAlive)
2014-07-20 06:46:29 +02:00
{
2020-08-01 15:03:33 +02:00
await SendKeepAliveResponse().ConfigureAwait(false);
2014-07-20 06:46:29 +02:00
}
else
2013-02-21 02:33:05 +01:00
{
2021-01-13 01:11:12 +01:00
await OnReceive(
new WebSocketMessageInfo
{
MessageType = stub.MessageType,
Data = stub.Data?.ToString(), // Data can be null
Connection = this
}).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
}
2023-07-03 00:14:44 +02:00
internal InboundWebSocketMessage<object>? DeserializeWebSocketMessage(ReadOnlySequence<byte> bytes, out long bytesConsumed)
2021-01-13 01:11:12 +01:00
{
var jsonReader = new Utf8JsonReader(bytes);
2023-07-03 00:14:44 +02:00
var ret = JsonSerializer.Deserialize<InboundWebSocketMessage<object>>(ref jsonReader, _jsonOptions);
2021-01-13 01:11:12 +01:00
bytesConsumed = jsonReader.BytesConsumed;
return ret;
}
2020-05-26 11:37:52 +02:00
private Task SendKeepAliveResponse()
2020-04-17 13:47:00 +02:00
{
LastKeepAliveDate = DateTime.UtcNow;
return SendAsync(
2023-07-03 00:14:44 +02:00
new OutboundKeepAliveMessage(),
2021-12-24 18:28:27 +01:00
CancellationToken.None);
2020-04-17 13:47:00 +02:00
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2013-02-21 02:33:05 +01:00
public void Dispose()
{
Dispose(true);
2019-11-01 18:38:54 +01:00
GC.SuppressFinalize(this);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool dispose)
{
if (_disposed)
{
return;
}
2013-02-21 02:33:05 +01:00
if (dispose)
{
_socket.Dispose();
}
_disposed = true;
}
/// <inheritdoc />
public async ValueTask DisposeAsync()
{
await DisposeAsyncCore().ConfigureAwait(false);
Dispose(false);
GC.SuppressFinalize(this);
}
/// <summary>
/// Used to perform asynchronous cleanup of managed resources or for cascading calls to <see cref="DisposeAsync"/>.
/// </summary>
/// <returns>A ValueTask.</returns>
protected virtual async ValueTask DisposeAsyncCore()
{
if (_socket.State == WebSocketState.Open)
{
await _socket.CloseOutputAsync(WebSocketCloseStatus.NormalClosure, "System Shutdown", CancellationToken.None).ConfigureAwait(false);
}
_socket.Dispose();
2013-02-21 02:33:05 +01:00
}
}
}