BililiveRecorder/BililiveRecorder.Core/ProcessingRules/StatsRule.cs

124 lines
5.1 KiB
C#
Raw Normal View History

2021-02-23 18:03:37 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BililiveRecorder.Core.Event;
using BililiveRecorder.Flv;
using BililiveRecorder.Flv.Pipeline;
namespace BililiveRecorder.Core.ProcessingRules
{
public class StatsRule : ISimpleProcessingRule
{
2021-02-27 13:28:21 +08:00
public const string SkipStatsKey = nameof(SkipStatsKey);
2021-02-23 18:03:37 +08:00
public event EventHandler<RecordingStatsEventArgs>? StatsUpdated;
public long TotalInputVideoByteCount { get; private set; }
public long TotalInputAudioByteCount { get; private set; }
public int TotalOutputVideoFrameCount { get; private set; }
public int TotalOutputAudioFrameCount { get; private set; }
public long TotalOutputVideoByteCount { get; private set; }
public long TotalOutputAudioByteCount { get; private set; }
2021-02-27 13:28:21 +08:00
public long CurrnetFileSize { get; private set; } = 13;
2021-02-23 18:03:37 +08:00
public int SumOfMaxTimestampOfClosedFiles { get; private set; }
public int CurrentFileMaxTimestamp { get; private set; }
public DateTimeOffset LastWriteTime { get; private set; }
2021-02-27 13:28:21 +08:00
public Task RunAsync(FlvProcessingContext context, Func<Task> next)
{
if (context.LocalItems.ContainsKey(SkipStatsKey))
return next();
else
return this.RunCoreAsync(context, next);
}
private async Task RunCoreAsync(FlvProcessingContext context, Func<Task> next)
2021-02-23 18:03:37 +08:00
{
var e = new RecordingStatsEventArgs();
if (context.OriginalInput is PipelineDataAction data)
{
e.TotalInputVideoByteCount = this.TotalInputVideoByteCount += e.InputVideoByteCount = data.Tags.Where(x => x.Type == TagType.Video).Sum(x => x.Size + (11 + 4));
e.TotalInputAudioByteCount = this.TotalInputAudioByteCount += e.InputAudioByteCount = data.Tags.Where(x => x.Type == TagType.Audio).Sum(x => x.Size + (11 + 4));
}
await next().ConfigureAwait(false);
var groups = new List<List<PipelineDataAction>?>();
{
List<PipelineDataAction>? curr = null;
2021-03-09 00:50:13 +08:00
foreach (var action in context.Actions)
2021-02-23 18:03:37 +08:00
{
if (action is PipelineDataAction dataAction)
{
if (curr is null)
{
curr = new List<PipelineDataAction>();
groups.Add(curr);
}
curr.Add(dataAction);
}
else if (action is PipelineNewFileAction)
{
curr = null;
groups.Add(null);
}
}
}
foreach (var item in groups)
{
if (item is null)
NewFile();
else
CalcStats(e, item);
}
var now = DateTimeOffset.UtcNow;
e.PassedTime = (now - this.LastWriteTime).TotalSeconds;
this.LastWriteTime = now;
e.DuraionRatio = e.AddedDuration / e.PassedTime;
StatsUpdated?.Invoke(this, e);
return;
void CalcStats(RecordingStatsEventArgs e, IReadOnlyList<PipelineDataAction> dataActions)
{
if (dataActions.Count > 0)
{
e.TotalOutputVideoFrameCount = this.TotalOutputVideoFrameCount += e.OutputVideoFrameCount = dataActions.Sum(x => x.Tags.Count(x => x.Type == TagType.Video));
e.TotalOutputAudioFrameCount = this.TotalOutputAudioFrameCount += e.OutputAudioFrameCount = dataActions.Sum(x => x.Tags.Count(x => x.Type == TagType.Audio));
e.TotalOutputVideoByteCount = this.TotalOutputVideoByteCount += e.OutputVideoByteCount = dataActions.Sum(x => x.Tags.Where(x => x.Type == TagType.Video).Sum(x => (x.Nalus == null ? x.Size : (5 + x.Nalus.Sum(n => n.FullSize + 4))) + (11 + 4)));
e.TotalOutputAudioByteCount = this.TotalOutputAudioByteCount += e.OutputAudioByteCount = dataActions.Sum(x => x.Tags.Where(x => x.Type == TagType.Audio).Sum(x => x.Size + (11 + 4)));
2021-02-27 13:28:21 +08:00
e.CurrnetFileSize = this.CurrnetFileSize += e.OutputVideoByteCount + e.OutputAudioByteCount;
2021-02-23 18:03:37 +08:00
2021-02-27 13:28:21 +08:00
foreach (var action in dataActions)
{
var tags = action.Tags;
if (tags.Count > 0)
{
e.AddedDuration += (tags[tags.Count - 1].Timestamp - tags[0].Timestamp) / 1000d;
this.CurrentFileMaxTimestamp = e.FileMaxTimestamp = tags[tags.Count - 1].Timestamp;
}
}
2021-02-23 18:03:37 +08:00
}
e.SessionMaxTimestamp = this.SumOfMaxTimestampOfClosedFiles + this.CurrentFileMaxTimestamp;
}
void NewFile()
{
this.SumOfMaxTimestampOfClosedFiles += this.CurrentFileMaxTimestamp;
this.CurrentFileMaxTimestamp = 0;
2021-02-27 13:28:21 +08:00
this.CurrnetFileSize = 13;
2021-02-23 18:03:37 +08:00
}
}
}
}