2019-10-18 22:22:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using BenchmarkDotNet.Attributes;
|
|
|
|
|
using BenchmarkDotNet.Running;
|
|
|
|
|
using MediaBrowser.Common;
|
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Common.Benches
|
|
|
|
|
{
|
|
|
|
|
[MemoryDiagnoser]
|
|
|
|
|
public class HexDecodeBenches
|
|
|
|
|
{
|
2019-10-20 10:31:59 +00:00
|
|
|
|
[Params(/*0,*/ 10, 100, 1000, 10000, 1000000)]
|
2019-10-19 22:05:04 +00:00
|
|
|
|
public int N { get; set; }
|
2019-10-18 22:22:08 +00:00
|
|
|
|
|
2019-10-19 22:05:04 +00:00
|
|
|
|
private string data;
|
|
|
|
|
|
|
|
|
|
[GlobalSetup]
|
|
|
|
|
public void GlobalSetup()
|
2019-10-18 22:22:08 +00:00
|
|
|
|
{
|
|
|
|
|
var tmp = new byte[N];
|
|
|
|
|
new Random(42).NextBytes(tmp);
|
|
|
|
|
data = Hex.Encode(tmp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static byte[] DecodeSubString(string str)
|
|
|
|
|
{
|
|
|
|
|
byte[] bytes = new byte[str.Length / 2];
|
|
|
|
|
for (int i = 0; i < str.Length; i += 2)
|
|
|
|
|
{
|
|
|
|
|
bytes[i / 2] = byte.Parse(
|
|
|
|
|
str.Substring(i, 2),
|
|
|
|
|
NumberStyles.HexNumber,
|
|
|
|
|
CultureInfo.InvariantCulture);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return bytes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Benchmark]
|
|
|
|
|
public byte[] Decode() => Hex.Decode(data);
|
|
|
|
|
|
|
|
|
|
[Benchmark]
|
2019-10-20 10:31:59 +00:00
|
|
|
|
public byte[] Decode2() => Hex.Decode2(data);
|
|
|
|
|
|
|
|
|
|
//[Benchmark]
|
2019-10-18 22:22:08 +00:00
|
|
|
|
public byte[] DecodeSubString() => DecodeSubString(data);
|
|
|
|
|
}
|
|
|
|
|
}
|