mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-12-22 07:42:47 +01:00
32 lines
1.2 KiB
C#
32 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BrotliCalc.Commands.Base;
|
|
using BrotliCalc.Helpers;
|
|
using BrotliImpl.Transformers;
|
|
|
|
namespace BrotliCalc.Commands{
|
|
class CmdTestRebuild : CmdAbstractFileTable.Compressed{
|
|
public override string FullName => "test-rebuild";
|
|
public override string ShortName => "trb";
|
|
|
|
protected override string[] Columns { get; } = {
|
|
"File", "Quality", "Original Bytes", "Rebuild Bytes", "Rebuild-Original"
|
|
};
|
|
|
|
protected override IEnumerable<object?[]> GenerateRows(BrotliFileGroup group, BrotliFile.Compressed file){
|
|
int? originalBytes = file.SizeBytes;
|
|
var rebuildBytes = group.CountBytesAndValidate(file.Transforming(new TransformRebuild()));
|
|
|
|
return new List<object?[]>{
|
|
new object?[]{ file.Name, file.Identifier, originalBytes, rebuildBytes, rebuildBytes - originalBytes } // subtraction propagates null
|
|
};
|
|
}
|
|
|
|
protected override IEnumerable<object?[]> OnError(BrotliFileGroup group, BrotliFile.Compressed file, Exception ex){
|
|
return new List<object?[]>{
|
|
new object?[]{ file.Name, file.Identifier, file.SizeBytes, null, null }
|
|
};
|
|
}
|
|
}
|
|
}
|