120 lines
5 KiB
C#
120 lines
5 KiB
C#
namespace Server.Services;
|
|
|
|
using System.Collections.Concurrent;
|
|
using System.Reflection;
|
|
using MassTransit.Internals;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.VisualBasic.CompilerServices;
|
|
using Newtonsoft.Json;
|
|
using PacketHandlers;
|
|
using Packets;
|
|
|
|
public class PacketDistributorService : IHostedService
|
|
{
|
|
private readonly ConcurrentQueue<RawPacket> concurrentQueue;
|
|
private readonly ILogger<PacketDistributorService> logger;
|
|
private readonly Dictionary<OperationCode, Type> packetHandlers;
|
|
private readonly Dictionary<OperationCode, Type> packetsTypes;
|
|
private readonly IServiceProvider serviceProvider;
|
|
|
|
public PacketDistributorService(ILogger<PacketDistributorService> logger, IServiceProvider serviceProvider)
|
|
{
|
|
this.concurrentQueue = new ConcurrentQueue<RawPacket>();
|
|
this.logger = logger;
|
|
this.serviceProvider = serviceProvider;
|
|
this.packetHandlers = new Dictionary<OperationCode, Type>();
|
|
this.packetsTypes = new Dictionary<OperationCode, Type>();
|
|
|
|
var executingAssembly = Assembly.GetExecutingAssembly();
|
|
this.packetsTypes = this.GetPacketsWithId(executingAssembly);
|
|
this.packetHandlers = this.GetAllPacketHandlersWithId(executingAssembly);
|
|
}
|
|
|
|
public Task StartAsync(CancellationToken cancellationToken) => Task.CompletedTask;
|
|
|
|
public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
|
|
|
|
private Dictionary<OperationCode, Type> GetPacketsWithId(Assembly executingAssembly)
|
|
{
|
|
var packetsWithId = executingAssembly.GetTypes().AsParallel()
|
|
.Where(type => type.GetCustomAttribute<PacketIdAttribute>() != null && type.HasInterface(typeof(IPacket)) &&
|
|
!type.IsInterface)
|
|
.ToDictionary(packet => packet.GetCustomAttribute<PacketIdAttribute>()!.Code);
|
|
if (packetsWithId is not { Count: 0 })
|
|
{
|
|
packetsWithId.AsParallel().ForAll(packet =>
|
|
{
|
|
this.logger.LogTrace("Packet with ID: {PacketID} has been added as {PacketName}", packet.Key,
|
|
packet.Value.FullName);
|
|
});
|
|
return packetsWithId;
|
|
}
|
|
|
|
this.logger.LogCritical("No Packets have been found");
|
|
throw new IncompleteInitialization();
|
|
}
|
|
|
|
private Dictionary<OperationCode, Type> GetAllPacketHandlersWithId(Assembly assembly)
|
|
{
|
|
var packetHandlersWithId = assembly.GetTypes().AsParallel().Where(t =>
|
|
t is { IsClass: true, IsAbstract: false } && t
|
|
.GetInterfaces().Any(i =>
|
|
i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IPacketHandler<>))).ToDictionary(type =>
|
|
type.GetInterfaces().First(t => t.IsGenericType && t.GetGenericTypeDefinition() == typeof(IPacketHandler<>))
|
|
.GetGenericArguments()[0].GetCustomAttribute<PacketIdAttribute>().Code);
|
|
|
|
if (packetHandlersWithId is not { Count: 0 })
|
|
{
|
|
packetHandlersWithId.AsParallel().ForAll(packetHandler =>
|
|
{
|
|
this.logger.LogTrace("PacketHandler with ID: {PacketID} has been added as {PacketName}",
|
|
packetHandler.Key,
|
|
packetHandler.Value.FullName);
|
|
});
|
|
return packetHandlersWithId;
|
|
}
|
|
|
|
this.logger.LogCritical("No PacketHandlers have been found");
|
|
throw new IncompleteInitialization();
|
|
}
|
|
|
|
public void AddPacket(RawPacket rawPacket)
|
|
{
|
|
this.concurrentQueue.Enqueue(rawPacket);
|
|
Task.Run(this.DequeueRawPacketAsync);
|
|
this.logger.LogInformation("Packet with ID: {MessageOperationCode} has been received",
|
|
rawPacket.OperationCode);
|
|
}
|
|
|
|
private async Task DequeueRawPacketAsync()
|
|
{
|
|
if (this.concurrentQueue.TryDequeue(out var item))
|
|
{
|
|
Task.Run(() => this.InvokePacketHandler(item));
|
|
}
|
|
else
|
|
{
|
|
await Task.Delay(100); // Delay to prevent busy-waiting, can be adjusted based on needs
|
|
}
|
|
}
|
|
|
|
private void InvokePacketHandler(RawPacket? item)
|
|
{
|
|
this.logger.LogTrace("[{TempId}] Packet with ID: {MessageOperationCode} is being dequeued",
|
|
item.Session.Id, item.OperationCode);
|
|
var packetType = this.packetsTypes[item.OperationCode];
|
|
var packet = (IPacket)Activator.CreateInstance(packetType)!;
|
|
packet.Deserialize(item.MessageBody);
|
|
var packetHandler =
|
|
ActivatorUtilities.GetServiceOrCreateInstance(this.serviceProvider,
|
|
this.packetHandlers[item.OperationCode]);
|
|
packetHandler.GetType().GetMethod("HandleAsync")
|
|
?.Invoke(packetHandler, new object[] { packet, item.Session });
|
|
this.logger.LogDebug("Packet data {PacketData}", JsonConvert.SerializeObject(packet));
|
|
this.logger.LogTrace("[{TempId}] Packet with ID: {MessageOperationCode} has finished",
|
|
item.Session.Id,
|
|
item.OperationCode);
|
|
}
|
|
}
|