PluralKit/PluralKit.Bot/Services/ShardInfoService.cs

137 lines
5.2 KiB
C#
Raw Normal View History

2019-12-22 11:50:47 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
using DSharpPlus;
using DSharpPlus.EventArgs;
2019-12-22 11:50:47 +00:00
using NodaTime;
using NodaTime.Extensions;
using Serilog;
2019-12-22 11:50:47 +00:00
namespace PluralKit.Bot
{
public class ShardInfoService
{
2020-05-09 13:44:56 +00:00
2019-12-22 11:50:47 +00:00
public class ShardInfo
{
public bool HasAttachedListeners;
2019-12-22 11:50:47 +00:00
public Instant LastConnectionTime;
public Instant LastHeartbeatTime;
2019-12-22 11:50:47 +00:00
public int DisconnectionCount;
public Duration ShardLatency;
public bool Connected;
2019-12-22 11:50:47 +00:00
}
private ILogger _logger;
2020-05-09 13:44:56 +00:00
private DiscordShardedClient _client;
2019-12-22 11:50:47 +00:00
private Dictionary<int, ShardInfo> _shardInfo = new Dictionary<int, ShardInfo>();
2020-05-09 13:44:56 +00:00
public ShardInfoService(ILogger logger, DiscordShardedClient client)
{
2020-05-09 13:44:56 +00:00
_client = client;
_logger = logger.ForContext<ShardInfoService>();
}
2020-05-09 13:44:56 +00:00
public void Init()
2019-12-22 11:50:47 +00:00
{
2020-05-09 13:44:56 +00:00
// We initialize this before any shards are actually created and connected
// This means the client won't know the shard count, so we attach a listener every time a shard gets connected
_client.SocketOpened += RefreshShardList;
}
2019-12-22 11:50:47 +00:00
2020-05-09 13:44:56 +00:00
private async Task RefreshShardList()
{
// This callback doesn't actually receive the shard that was opening, so we just try to check we have 'em all (so far)
foreach (var (id, shard) in _client.ShardClients)
{
// Get or insert info in the client dict
if (_shardInfo.TryGetValue(id, out var info))
{
// Skip adding listeners if we've seen this shard & already added listeners to it
if (info.HasAttachedListeners) continue;
} else _shardInfo[id] = info = new ShardInfo();
2020-05-09 13:44:56 +00:00
// Call our own SocketOpened listener manually (and then attach the listener properly)
await SocketOpened(shard);
shard.SocketOpened += () => SocketOpened(shard);
2020-05-09 13:44:56 +00:00
// Register listeners for new shards
_logger.Information("Attaching listeners to new shard #{Shard}", shard.ShardId);
shard.Resumed += Resumed;
shard.Ready += Ready;
shard.SocketClosed += SocketClosed;
shard.Heartbeated += Heartbeated;
// Register that we've seen it
info.HasAttachedListeners = true;
}
}
2019-12-22 11:50:47 +00:00
private Task SocketOpened(DiscordClient e)
2019-12-22 11:50:47 +00:00
{
// We do nothing else here, since this kinda doesn't mean *much*? It's only really started once we get Ready/Resumed
// And it doesn't get fired first time around since we don't have time to add the event listener before it's fired'
_logger.Information("Shard #{Shard} opened socket", e.ShardId);
2019-12-22 11:50:47 +00:00
return Task.CompletedTask;
}
2020-05-09 13:44:56 +00:00
private ShardInfo TryGetShard(DiscordClient shard)
2019-12-22 11:50:47 +00:00
{
// If we haven't seen this shard before, add it to the dict!
2020-05-09 13:44:56 +00:00
// I don't think this will ever occur since the shard number is constant up-front and we handle those
// in the RefreshShardList handler above but you never know, I guess~
if (!_shardInfo.TryGetValue(shard.ShardId, out var info))
_shardInfo[shard.ShardId] = info = new ShardInfo();
return info;
}
private Task Resumed(ReadyEventArgs e)
{
_logger.Information("Shard #{Shard} resumed connection", e.Client.ShardId);
2020-05-09 13:44:56 +00:00
var info = TryGetShard(e.Client);
// info.LastConnectionTime = SystemClock.Instance.GetCurrentInstant();
info.Connected = true;
2019-12-22 11:50:47 +00:00
return Task.CompletedTask;
}
private Task Ready(ReadyEventArgs e)
2019-12-22 11:50:47 +00:00
{
_logger.Information("Shard #{Shard} sent Ready event", e.Client.ShardId);
2020-05-09 13:44:56 +00:00
var info = TryGetShard(e.Client);
info.LastConnectionTime = SystemClock.Instance.GetCurrentInstant();
info.Connected = true;
2019-12-22 11:50:47 +00:00
return Task.CompletedTask;
}
private Task SocketClosed(SocketCloseEventArgs e)
2019-12-22 11:50:47 +00:00
{
_logger.Warning("Shard #{Shard} disconnected ({CloseCode}: {CloseMessage})", e.Client.ShardId, e.CloseCode, e.CloseMessage);
2020-05-09 13:44:56 +00:00
var info = TryGetShard(e.Client);
info.DisconnectionCount++;
info.Connected = false;
return Task.CompletedTask;
}
private Task Heartbeated(HeartbeatEventArgs e)
{
var latency = Duration.FromMilliseconds(e.Ping);
_logger.Information("Shard #{Shard} received heartbeat (latency: {Latency} ms)", e.Client.ShardId, latency.Milliseconds);
2020-05-09 13:44:56 +00:00
var info = TryGetShard(e.Client);
info.LastHeartbeatTime = e.Timestamp.ToInstant();
info.Connected = true;
info.ShardLatency = latency;
2019-12-22 11:50:47 +00:00
return Task.CompletedTask;
}
public ShardInfo GetShardInfo(DiscordClient shard) => _shardInfo[shard.ShardId];
public ICollection<ShardInfo> Shards => _shardInfo.Values;
2019-12-22 11:50:47 +00:00
}
}