-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubjects.cs
More file actions
190 lines (164 loc) · 6.53 KB
/
Copy pathSubjects.cs
File metadata and controls
190 lines (164 loc) · 6.53 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
using System.Runtime.CompilerServices;
using KeyHashProof.Types;
namespace KeyHashProof;
/// <summary>
/// Сборка словарей и поиск по ним. У каждого метода NoInlining: иначе
/// компилятор встроит его в тело замера и часть работы удалит.
///
/// Все шесть словарей строятся из одних и тех же данных: число повторяется,
/// строка уникальна. Различаются только объявления ключей.
/// </summary>
internal static class Subjects
{
/// <summary>Словарь с ключом, где первым идёт число.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static Dictionary<NumberFirst, int> BuildNumberFirst(string[] texts)
{
Dictionary<NumberFirst, int> map = new(texts.Length);
for (int i = 0; i < texts.Length; i++)
{
map[new NumberFirst { A = Payloads.SharedNumber, B = texts[i] }] = i;
}
return map;
}
/// <summary>Словарь с ключом, где первой идёт строка.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static Dictionary<TextFirst, int> BuildTextFirst(string[] texts)
{
Dictionary<TextFirst, int> map = new(texts.Length);
for (int i = 0; i < texts.Length; i++)
{
map[new TextFirst { A = Payloads.SharedNumber, B = texts[i] }] = i;
}
return map;
}
/// <summary>Словарь с ключом, у которого есть сравнение, но нет своего хеша.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static Dictionary<EquatableOnly, int> BuildEquatableOnly(string[] texts)
{
Dictionary<EquatableOnly, int> map = new(texts.Length);
for (int i = 0; i < texts.Length; i++)
{
map[new EquatableOnly { A = Payloads.SharedNumber, B = texts[i] }] = i;
}
return map;
}
/// <summary>Словарь с полностью описанным ключом.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static Dictionary<FullKey, int> BuildFull(string[] texts)
{
Dictionary<FullKey, int> map = new(texts.Length);
for (int i = 0; i < texts.Length; i++)
{
map[new FullKey { A = Payloads.SharedNumber, B = texts[i] }] = i;
}
return map;
}
/// <summary>Словарь с ключом-записью.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static Dictionary<RecordKey, int> BuildRecord(string[] texts)
{
Dictionary<RecordKey, int> map = new(texts.Length);
for (int i = 0; i < texts.Length; i++)
{
map[new RecordKey(Payloads.SharedNumber, texts[i])] = i;
}
return map;
}
/// <summary>Словарь с ключом без ссылок внутри.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static Dictionary<NoReference, int> BuildNoReference(int count)
{
Dictionary<NoReference, int> map = new(count);
for (int i = 0; i < count; i++)
{
map[new NoReference { A = Payloads.SharedNumber, B = i }] = i;
}
return map;
}
// ---------- поиск ----------
/// <summary>Поиск по словарю с ключом, где первым идёт число.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static int LookupNumberFirst(Dictionary<NumberFirst, int> map, string[] texts, int[] probes)
{
int found = 0;
for (int i = 0; i < probes.Length; i++)
{
if (map.TryGetValue(new NumberFirst { A = Payloads.SharedNumber, B = texts[probes[i]] }, out _))
{
found++;
}
}
return found;
}
/// <summary>Поиск по словарю с ключом, где первой идёт строка.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static int LookupTextFirst(Dictionary<TextFirst, int> map, string[] texts, int[] probes)
{
int found = 0;
for (int i = 0; i < probes.Length; i++)
{
if (map.TryGetValue(new TextFirst { A = Payloads.SharedNumber, B = texts[probes[i]] }, out _))
{
found++;
}
}
return found;
}
/// <summary>Поиск по словарю с ключом без своего хеша.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static int LookupEquatableOnly(Dictionary<EquatableOnly, int> map, string[] texts, int[] probes)
{
int found = 0;
for (int i = 0; i < probes.Length; i++)
{
if (map.TryGetValue(new EquatableOnly { A = Payloads.SharedNumber, B = texts[probes[i]] }, out _))
{
found++;
}
}
return found;
}
/// <summary>Поиск по словарю с полностью описанным ключом.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static int LookupFull(Dictionary<FullKey, int> map, string[] texts, int[] probes)
{
int found = 0;
for (int i = 0; i < probes.Length; i++)
{
if (map.TryGetValue(new FullKey { A = Payloads.SharedNumber, B = texts[probes[i]] }, out _))
{
found++;
}
}
return found;
}
/// <summary>Поиск по словарю с ключом-записью.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static int LookupRecord(Dictionary<RecordKey, int> map, string[] texts, int[] probes)
{
int found = 0;
for (int i = 0; i < probes.Length; i++)
{
if (map.TryGetValue(new RecordKey(Payloads.SharedNumber, texts[probes[i]]), out _))
{
found++;
}
}
return found;
}
/// <summary>Поиск по словарю с ключом без ссылок.</summary>
[MethodImpl(MethodImplOptions.NoInlining)]
internal static int LookupNoReference(Dictionary<NoReference, int> map, int[] probes)
{
int found = 0;
for (int i = 0; i < probes.Length; i++)
{
if (map.TryGetValue(new NoReference { A = Payloads.SharedNumber, B = probes[i] }, out _))
{
found++;
}
}
return found;
}
}