-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathJemStatisticColumn.cs
80 lines (67 loc) · 2.83 KB
/
JemStatisticColumn.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Collections.Generic;
using System.Text;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Filters;
using BenchmarkDotNet.Running;
using BenchmarkDotNet.Reports;
using BenchmarkDotNet.Columns;
namespace jemalloc.Benchmarks
{
public class JemStatisticColumn : IColumn
{
#region Constructors
public JemStatisticColumn(string columnName, Func<string> jemStatFunction, string legend)
{
ColumnName = columnName;
JemStatFunction = jemStatFunction;
Legend = legend;
}
#endregion
#region Implemented properties
//
// Summary:
// An unique identificator of the column. If there are several columns with the
// same Id, only one of them will be shown in the summary.
public string Id => ColumnName;
//
// Summary:
// Defines order of column in the same category.
public int PriorityInCategory { get; } = 99;
// Summary:
// Defines how to format column's value
public UnitType UnitType { get; } = UnitType.Size;
//
// Summary:
// Column description.
public string Legend { get; protected set; }
public bool AlwaysShow => true;
public bool IsNumeric => true;
public ColumnCategory Category => ColumnCategory.Statistics;
#endregion
#region Implemented methods
public bool IsDefault(Summary summary, Benchmark benchmark) => false;
public string GetValue(Summary summary, Benchmark benchmark) => JemStatFunction.Invoke();
public bool IsAvailable(Summary summary) => Jem.Initialized;
//
// Summary:
// Value in this column formatted using the specified style.
public string GetValue(Summary summary, Benchmark benchmark, ISummaryStyle style) => (JemStatFunction.Invoke());
public string ColumnName { get; }
#endregion
#region Overriden methods
public override string ToString() => ColumnName;
#endregion
#region Fields
Func<string> JemStatFunction;
#endregion
#region Available columns
public static readonly IColumn Allocated = new JemStatisticColumn("JEM allocated", () => JemUtil.PrintBytes(Jem.AllocatedBytes),
"Allocated pages using jemalloc (native only, inclusive, 1KB = 1024B)");
public static readonly IColumn Active = new JemStatisticColumn("JEM active", () => JemUtil.PrintBytes(Jem.ActiveBytes),
"Active pages using jemalloc (native only, inclusive, 1KB = 1024B)");
public static readonly IColumn Mapped = new JemStatisticColumn("JEM mapped", () => JemUtil.PrintBytes(Jem.MappedBytes),
"Mapped memory using jemalloc (native only, inclusive, 1KB = 1024B)");
#endregion
}
}