jellyfin/MediaBrowser.Server.Implementations/WebSocket/AlchemyWebSocket.cs

134 lines
4.2 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using Alchemy.Classes;
using MediaBrowser.Common.Net;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Logging;
2013-04-15 21:09:27 +02:00
using MediaBrowser.Model.Net;
2013-02-21 02:33:05 +01:00
using System;
2013-02-24 22:53:54 +01:00
using System.Text;
2013-02-21 02:33:05 +01:00
using System.Threading;
using System.Threading.Tasks;
2013-03-07 06:34:00 +01:00
namespace MediaBrowser.Server.Implementations.WebSocket
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class AlchemyWebSocket
/// </summary>
public class AlchemyWebSocket : IWebSocket
{
/// <summary>
/// The logger
/// </summary>
2013-02-21 22:06:23 +01:00
private readonly ILogger _logger;
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the web socket.
/// </summary>
/// <value>The web socket.</value>
private UserContext UserContext { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="AlchemyWebSocket" /> class.
/// </summary>
/// <param name="context">The context.</param>
2013-02-21 22:06:23 +01:00
/// <param name="logger">The logger.</param>
2013-02-21 02:33:05 +01:00
/// <exception cref="System.ArgumentNullException">context</exception>
2013-02-21 22:06:23 +01:00
public AlchemyWebSocket(UserContext context, ILogger logger)
2013-02-21 02:33:05 +01:00
{
if (context == null)
{
throw new ArgumentNullException("context");
}
2013-02-21 22:06:23 +01:00
_logger = logger;
2013-02-21 02:33:05 +01:00
UserContext = context;
context.SetOnDisconnect(OnDisconnected);
context.SetOnReceive(OnReceive);
2013-02-21 22:06:23 +01:00
_logger.Info("Client connected from {0}", context.ClientAddress);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// The _disconnected
/// </summary>
private bool _disconnected = false;
/// <summary>
/// Gets or sets the state.
/// </summary>
/// <value>The state.</value>
public WebSocketState State
{
get { return _disconnected ? WebSocketState.Closed : WebSocketState.Open; }
}
/// <summary>
/// Called when [disconnected].
/// </summary>
/// <param name="context">The context.</param>
private void OnDisconnected(UserContext context)
{
_disconnected = true;
}
/// <summary>
/// Called when [receive].
/// </summary>
/// <param name="context">The context.</param>
private void OnReceive(UserContext context)
{
if (OnReceiveDelegate != null)
{
var json = context.DataFrame.ToString();
if (!string.IsNullOrWhiteSpace(json))
{
try
{
2013-02-24 22:53:54 +01:00
var bytes = Encoding.UTF8.GetBytes(json);
2013-02-21 02:33:05 +01:00
2013-02-24 22:53:54 +01:00
OnReceiveDelegate(bytes);
2013-02-21 02:33:05 +01:00
}
catch (Exception ex)
{
2013-02-21 22:06:23 +01:00
_logger.ErrorException("Error processing web socket message", ex);
2013-02-21 02:33:05 +01:00
}
}
}
}
/// <summary>
/// Sends the async.
/// </summary>
/// <param name="bytes">The bytes.</param>
/// <param name="type">The type.</param>
/// <param name="endOfMessage">if set to <c>true</c> [end of message].</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
public Task SendAsync(byte[] bytes, WebSocketMessageType type, bool endOfMessage, CancellationToken cancellationToken)
{
return Task.Run(() => UserContext.Send(bytes));
}
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
Dispose(true);
}
/// <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)
{
}
/// <summary>
/// Gets or sets the receive action.
/// </summary>
/// <value>The receive action.</value>
2013-02-24 22:53:54 +01:00
public Action<byte[]> OnReceiveDelegate { get; set; }
2013-02-21 02:33:05 +01:00
}
}