forked from dotnetcore/AspectCore-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomAttributeReflectorBenchmarks.cs
More file actions
96 lines (81 loc) · 2.5 KB
/
Copy pathCustomAttributeReflectorBenchmarks.cs
File metadata and controls
96 lines (81 loc) · 2.5 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using BenchmarkDotNet.Attributes;
namespace AspectCore.Extensions.Reflection.Benchmark.Benchmarks
{
[AllStatisticsColumn]
[MemoryDiagnoser]
public class CustomAttributeReflectorBenchmarks
{
private readonly MethodInfo _method;
private readonly MethodReflector _reflector;
public CustomAttributeReflectorBenchmarks()
{
_method = typeof(CustomAttributeReflectorBenchmarks).GetMethod(nameof(Reflection_GetCustomAttribute));
_reflector = _method.GetReflector();
}
[Attribute1]
[Attribute2("benchmark", Id = 10000)]
[Benchmark]
[Attribute3]
[Attribute3]
[Attribute3]
public Attribute Reflection_GetCustomAttribute()
{
return _method.GetCustomAttribute(typeof(Attribute2));
}
[Benchmark]
public Attribute AspectCore_Reflector_GetCustomAttribute()
{
return _reflector.GetCustomAttribute(typeof(Attribute2));
}
[Benchmark]
public IEnumerable<Attribute> Reflection_GetCustomAttributes_WithAttrType()
{
return _method.GetCustomAttributes(typeof(Attribute1));
}
[Benchmark]
public IEnumerable<Attribute> AspectCore_Reflector_GetCustomAttributes_WithAttrType()
{
return _reflector.GetCustomAttributes(typeof(Attribute1));
}
[Benchmark]
public IEnumerable<Attribute> Reflection_GetCustomAttributes_All()
{
return _method.GetCustomAttributes();
}
[Benchmark]
public IEnumerable<Attribute> AspectCore_Reflector_GetCustomAttributes_All()
{
return _reflector.GetCustomAttributes();
}
[Benchmark]
public bool Reflection_IsDefined()
{
return _method.IsDefined(typeof(Attribute3));
}
[Benchmark]
public bool AspectCore_Reflector_IsDefined()
{
return _reflector.IsDefined(typeof(Attribute3));
}
}
public class Attribute1 : Attribute
{ }
public class Attribute2 : Attribute
{
public int Id { get; set; }
public string Title { get; }
public Attribute2(string title)
{
Title = title;
}
}
[AttributeUsage(AttributeTargets.All, AllowMultiple = true)]
public class Attribute3 : Attribute1
{
}
}