-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleGroups.cs
112 lines (97 loc) · 4.37 KB
/
SampleGroups.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using PerformanceTestReportViewer.Definition;
using PerformanceTestReportViewer.SampleDefinitions;
using Unity.PerformanceTesting;
using UnityEngine.Profiling;
namespace PerformanceTestReportViewer.Editor
{
public struct SamplingScope : IDisposable
{
private readonly SampleGroups target;
private readonly ISampleDefinition sampleDefinition;
private readonly string sampleTarget;
private long startTime;
internal SamplingScope(SampleGroups target, ISampleDefinition sampleDefinition, string sampleTarget)
{
this.target = target;
this.sampleDefinition = sampleDefinition;
this.sampleTarget = sampleTarget;
startTime = DateTime.UtcNow.Ticks;
}
public void Dispose()
{
if (target == null)
return;
long endTime = DateTime.UtcNow.Ticks;
target.AddSample(sampleDefinition, (endTime - startTime) / 10000f, sampleTarget);
}
}
public class SampleGroups : IDisposable
{
public SampleGroups(params (string categoryName, ISampleDefinition, string sampleTarget)[] sampleTypes)
{
foreach ((string categoryName, ISampleDefinition sampleGroupDefinition, string sampleTarget) in sampleTypes)
{
var sampleTarget2 = string.IsNullOrEmpty(sampleTarget) ? string.Empty : sampleTarget;
sampleGroups[(sampleGroupDefinition, sampleTarget2)] = CreateSampleGroup(categoryName, sampleGroupDefinition, sampleTarget2);
}
}
public static SampleGroup CreateSampleGroup(
string categoryName,
ISampleDefinition sampleDefinition,
string sampleTarget)
{
return new SampleGroup(
PerformanceTestReportViewerUtility.FormatSampleGroupName(sampleTarget, categoryName, sampleDefinition.Name),
sampleDefinition.SampleUnit,
increaseIsBetter: sampleDefinition.IncreaseIsBetter.GetValueOrDefault(false)
);
}
private Dictionary<(ISampleDefinition, string), SampleGroup> sampleGroups = new();
private static void TryAddSampleGroup(SampleGroup group)
{
if (group == null || group.Samples.Count == 0)
return;
PerformanceTest.AddSampleGroup(group);
}
public void RemoveSampleGroup(ISampleDefinition sampleDefinition, string sampleTarget = null)
{
sampleTarget = string.IsNullOrEmpty(sampleTarget) ? string.Empty : sampleTarget;
sampleGroups.Remove((sampleDefinition, sampleTarget));
}
public void Dispose()
{
foreach ((ISampleDefinition sampleGroupDefinition, string sampleTarget) in sampleGroups.Keys)
{
if (sampleGroups.TryGetValue((sampleGroupDefinition, sampleTarget), out var serverSampleGroup))
TryAddSampleGroup(serverSampleGroup);
}
PerformanceTest.Active.CalculateStatisticalValues();
}
public void AddSample(ISampleDefinition sampleDefinition, double value, string sampleTarget = null)
{
sampleTarget = string.IsNullOrEmpty(sampleTarget) ? string.Empty : sampleTarget;
if (sampleGroups.TryGetValue((sampleDefinition, sampleTarget), out SampleGroup group) == false)
{
group = CreateSampleGroup(sampleDefinition.Category, sampleDefinition, sampleTarget);
sampleGroups.Add((sampleDefinition, sampleTarget), group);
}
group.Samples.Add(value);
}
public void RecordMemory(string sampleTarget = null)
{
AddSample(SystemSampleDefinitions.TotalAllocatedMemorySize,
Profiler.GetTotalAllocatedMemoryLong() / (float)(1024 * 1024), sampleTarget);
AddSample(SystemSampleDefinitions.MonoUsedMemorySize,
Profiler.GetMonoUsedSizeLong() / (float)(1024 * 1024), sampleTarget);
}
public SamplingScope CreateScope(ISampleDefinition sampleDefinition, string sampleTarget = null)
{
sampleTarget = string.IsNullOrEmpty(sampleTarget) ? string.Empty : sampleTarget;
return new SamplingScope(this, sampleDefinition, sampleTarget);
}
}
}