-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathEBind_Trigger.cs
385 lines (325 loc) · 11.4 KB
/
EBind_Trigger.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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
using System;
using BenchmarkDotNet.Attributes;
using EBind.Test.Models;
namespace EBind.Benchmarks
{
public class EBind_Trigger
{
private readonly NotifyPropertyChangedEventObject _npcObject = new();
private readonly PropertyChangedEventObject _pcObject = new();
private EBinding? _binding;
[GlobalSetup(Target = nameof(EqualityProperties_NotifyPropertyChanged))]
public void Setup()
{
var target = new NotifyPropertyChangedEventObject();
_binding = new EBinding()
{
() => target.IntValue == _npcObject.IntValue,
};
}
[Benchmark(Description = "a.Prop == b.Prop // INPC")]
public void EqualityProperties_NotifyPropertyChanged()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(EqualityProperties_Handler))]
public void SetupHandler()
{
var target = new PropertyChangedEventObject();
var configuration = new Configuration();
configuration.ConfigureTrigger<PropertyChangedEventObject, string>(
x => x.StringValue,
(o, h) => o.StringValueChanged += h,
(o, h) => o.StringValueChanged -= h);
_binding = new EBinding(configuration)
{
() => target.StringValue == _pcObject.StringValue,
};
}
[Benchmark(Description = "a.Prop == b.Prop // EventHandler")]
public void EqualityProperties_Handler()
{
ChangeStringValue(_pcObject);
}
[GlobalSetup(Target = nameof(Action_Instance_0_Arguments))]
public void SetupAction_Instance_0_Arguments()
{
_binding = new EBinding()
{
() => _npcObject.IntValue.GetHashCode()
};
}
[Benchmark(Description = "a.Method()")]
public void Action_Instance_0_Arguments()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(Action_Static_1_Argument_Method))]
public void SetupAction_Static_1_Argument_Method()
{
_binding = new EBinding()
{
() => Convert.ToString(_npcObject.IntValue.GetHashCode())
};
}
[Benchmark(Description = "a.Method(b.Prop.Method())")]
public void Action_Static_1_Argument_Method()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(Equality_Static_1_Argument))]
public void SetupEquality_Static_1_Argument()
{
var target = new NotifyPropertyChangedEventObject();
_binding = new EBinding()
{
() => target.StringValue == MethodInvoker.ConvertStatic(_npcObject.IntValue),
};
}
[Benchmark(Description = "a.Prop == Static.Method(b.Prop)")]
public void Equality_Static_1_Argument()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(Equality_Instance_1_Argument))]
public void SetupEquality_Instance_1_Argument()
{
var target = new NotifyPropertyChangedEventObject();
var instanceMethodInvoker = new MethodInvoker();
_binding = new EBinding()
{
() => target.StringValue == instanceMethodInvoker.Convert(_npcObject.IntValue),
};
}
[Benchmark(Description = "a.Prop == b.Method(c.Prop)")]
public void Equality_Instance_1_Argument()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(Equality_Instance_2_Arguments))]
public void SetupEquality_Instance_2_Arguments()
{
var target = new NotifyPropertyChangedEventObject();
var instanceMethodInvoker = new MethodInvoker();
_binding = new EBinding()
{
() => target.StringValue == instanceMethodInvoker.Convert(_npcObject.IntValue, 1),
};
}
[Benchmark(Description = "a.Prop == b.Method(c.Prop, d.Prop)")]
public void Equality_Instance_2_Arguments()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(Equality_Instance_3_Arguments))]
public void SetupEquality_Instance_3_Arguments()
{
var target = new NotifyPropertyChangedEventObject();
var instanceMethodInvoker = new MethodInvoker();
_binding = new EBinding()
{
() => target.StringValue == instanceMethodInvoker.Convert(_npcObject.IntValue, 1, 2),
};
}
[Benchmark(Description = "a.Prop == b.Method(c.Prop, d.Prop, e.Prop)")]
public void Equality_Instance_3_Arguments()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(EqualityComplexAction))]
public void SetupEqualityComplexAction()
{
var target = new NotifyPropertyChangedEventObject();
_binding = new EBinding()
{
() => target.StringValue == (_npcObject.StringValue + " ").Trim(),
};
}
[Benchmark(Description = "a.Prop == (b.Prop + c.Prop).Method()")]
public void EqualityComplexAction()
{
ChangeStringValue(_npcObject);
}
[GlobalSetup(Target = nameof(NullCoalescing))]
public void SetupNullCoalescing()
{
var target = new NotifyPropertyChangedEventObject();
var nullValueNPC = new NotifyPropertyChangedEventObject
{
StringValue = null,
};
_binding = new EBinding
{
() => target.StringValue == (nullValueNPC.StringValue ?? _npcObject.StringValue)
};
}
[Benchmark(Description = "a.Prop == (b.Prop ?? c.Prop)")]
public void NullCoalescing()
{
ChangeStringValue(_npcObject);
}
[GlobalSetup(Target = nameof(ConditionalAnd))]
public void SetupConditionalAnd()
{
var target = new NotifyPropertyChangedEventObject();
var trueValueNPC = new NotifyPropertyChangedEventObject
{
BoolValue = true,
};
_binding = new EBinding
{
() => target.BoolValue == (trueValueNPC.BoolValue && _npcObject.BoolValue)
};
}
[Benchmark(Description = "a.Prop == (b.Prop && c.Prop)")]
public void ConditionalAnd()
{
_npcObject.BoolValue = !_npcObject.BoolValue;
}
[GlobalSetup(Target = nameof(ConditionalOr))]
public void SetupConditionalOr()
{
var target = new NotifyPropertyChangedEventObject();
var falseValueNPC = new NotifyPropertyChangedEventObject
{
BoolValue = false,
};
_binding = new EBinding
{
() => target.BoolValue == (falseValueNPC.BoolValue || _npcObject.BoolValue)
};
}
[Benchmark(Description = "a.Prop == (b.Prop || c.Prop)")]
public void ConditionalOr()
{
_npcObject.BoolValue = !_npcObject.BoolValue;
}
[GlobalSetup(Target = nameof(LogicalNegation))]
public void SetupLogicalNegation()
{
var target = new NotifyPropertyChangedEventObject();
_binding = new EBinding
{
() => target.BoolValue == !_npcObject.BoolValue
};
}
[Benchmark(Description = "a.Prop == !b.Prop")]
public void LogicalNegation()
{
_npcObject.BoolValue = !_npcObject.BoolValue;
}
[GlobalSetup(Target = nameof(Equals))]
public void SetupEquals()
{
var target = new NotifyPropertyChangedEventObject();
var zeroValueNPC = new NotifyPropertyChangedEventObject();
_binding = new EBinding
{
() => target.BoolValue == (zeroValueNPC.IntValue == _npcObject.IntValue)
};
}
[Benchmark(Description = "a.Prop == (b.Prop == c.Prop)")]
public void Equals()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(Enum))]
public void SetupEnum()
{
var target = new NotifyPropertyChangedEventObject();
_binding = new EBinding
{
() => target.EnumValue == _npcObject.EnumValue
};
}
[Benchmark(Description = "a.Enum == b.Enum")]
public void Enum()
{
ChangeEnumValue(_npcObject);
}
[GlobalSetup(Target = nameof(Conversion))]
public void SetupConversion()
{
var target = new NotifyPropertyChangedEventObject();
_binding = new EBinding
{
() => target.FloatValue == _npcObject.IntValue
};
}
[Benchmark(Description = "a.Float == b.Int")]
public void Conversion()
{
ChangeIntValue(_npcObject);
}
[GlobalSetup(Target = nameof(Plus))]
public void SetupPlus()
{
var target = new NotifyPropertyChangedEventObject();
var constStringNPC = new NotifyPropertyChangedEventObject
{
StringValue = "const_"
};
_binding = new EBinding
{
() => target.StringValue == constStringNPC.StringValue + _npcObject.StringValue
};
}
[Benchmark(Description = "a.Prop == b.Prop + c.Prop")]
public void Plus()
{
ChangeStringValue(_npcObject);
}
[GlobalSetup(Target = nameof(StringInterpolation))]
public void SetupStringInterpolation()
{
var target = new NotifyPropertyChangedEventObject();
var constStringNPC = new NotifyPropertyChangedEventObject
{
StringValue = "const"
};
_binding = new EBinding
{
() => target.StringValue == $"{constStringNPC.StringValue}_{_npcObject.StringValue}"
};
}
[Benchmark(Description = "a.Prop == $\"{b.Prop}_{c.Prop}\"")]
public void StringInterpolation()
{
ChangeStringValue(_npcObject);
}
private void ChangeIntValue(NotifyPropertyChangedEventObject obj)
{
if (obj.IntValue <= 0)
{
obj.IntValue++;
}
else
{
obj.IntValue--;
}
}
private void ChangeStringValue(NotifyPropertyChangedEventObject obj)
{
obj.StringValue = obj.StringValue?.Length == 0
? "NotEmpty"
: string.Empty;
}
private void ChangeEnumValue(NotifyPropertyChangedEventObject obj)
{
obj.EnumValue = obj.EnumValue == DayOfWeek.Monday
? DayOfWeek.Tuesday
: DayOfWeek.Monday;
}
private void ChangeStringValue(PropertyChangedEventObject obj)
{
obj.StringValue = obj.StringValue.Length == 0
? "NotEmpty"
: string.Empty;
}
[GlobalCleanup]
public void Cleanup()
{
_binding!.Dispose();
}
}
}