-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCosmin Prund.pas
251 lines (205 loc) · 5.51 KB
/
Cosmin Prund.pas
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
program TestFluentInterfaces;
{$APPTYPE CONSOLE}
// https://stackoverflow.com/a/5104244/8106387
// https://web.archive.org/web/20110227200636/http://paste.ideaslabs.com/show/lzILqOs6PK
uses
SysUtils,Windows;
type
ITestIntf = interface
procedure SetName(Name:string);
procedure SetAge(Age:Integer);
function FluentSetName(Name:string):ITestIntf;
function FluentSetAge(Age:Integer):ITestIntf;
function GetName:string;
function GetAge:Integer;
end;
TTestIntfImp = class(TInterfacedObject, ITestIntf)
protected
FName: string;
FAge: Integer;
public
procedure SetName(Name:string);
procedure SetAge(Age:Integer);
function FluentSetName(Name:string):ITestIntf;
function FluentSetAge(Age:Integer):ITestIntf;
function GetName:string;
function GetAge:Integer;
class function MakeIntf: ITestIntf;
end;
TTestObj = class
protected
FName: string;
FAge: Integer;
public
procedure SetName(Name:string);
procedure SetAge(Age:Integer);
function FluentSetName(Name:string):TTestObj;
function FluentSetAge(Age:Integer):TTestObj;
function GetName:string;
function GetAge:Integer;
end;
TTestRoutine = procedure(NumIterations:Integer) of object;
TTestBothImplementations = class
protected
procedure MakeSureTheInterfaceIsUsed(Intf: ITestIntf);
procedure MakeSureTheObjIsUsed(Obj: TTestObj);
procedure TestNonFluent(NumIterations: Integer);
procedure TestFluent(NumIterations: Integer);
procedure TestNonFluent_Obj(NumIterations: Integer);
procedure TestFluent_Obj(NumIterations: Integer);
public
procedure TimeTest(TheTest: TTestRoutine; NumIterations: Integer; TestName:string);
procedure RunTests;
end;
{ TTestIntfImp }
function TTestIntfImp.FluentSetAge(Age: Integer): ITestIntf;
begin
FAge := Age;
Result := Self;
end;
function TTestIntfImp.FluentSetName(Name: string): ITestIntf;
begin
FName := Name;
Result := Self;
end;
function TTestIntfImp.GetAge: Integer;
begin
Result := FAge;
end;
function TTestIntfImp.GetName: string;
begin
Result := FName;
end;
class function TTestIntfImp.MakeIntf: ITestIntf;
begin
Result := TTestIntfImp.Create;
end;
procedure TTestIntfImp.SetAge(Age: Integer);
begin
FAge := Age;
end;
procedure TTestIntfImp.SetName(Name: string);
begin
FName := Name;
end;
{ TTestBothImplementations }
procedure TTestBothImplementations.MakeSureTheInterfaceIsUsed(Intf: ITestIntf);
begin
if (Intf.GetName = 'Jon') or (Intf.GetAge = 7) then raise Exception.Create('Jon is 7');
end;
procedure TTestBothImplementations.MakeSureTheObjIsUsed(Obj: TTestObj);
begin
if (Obj.GetName = 'Jon') and (Obj.GetAge = 7) then raise Exception.Create('Jon is 7');
end;
procedure TTestBothImplementations.RunTests;
const NrIterations = 10000000;
begin
TimeTest(TestNonFluent, NrIterations, 'NonFluent');
TimeTest(TestFluent, NrIterations, 'Fluent');
TimeTest(TestNonFluent_Obj, NrIterations, 'NonFluentObj');
TimeTest(TestFluent_Obj, NrIterations, 'FluentObj');
end;
procedure TTestBothImplementations.TestFluent(NumIterations: Integer);
var i:Integer;
begin
for i:=1 to NumIterations do
MakeSureTheInterfaceIsUsed(TTestIntfImp.MakeIntf.FluentSetName('My name is').FluentSetAge(8).FluentSetName('My name is').FluentSetAge(8).FluentSetName('My name is').FluentSetAge(8));
end;
procedure TTestBothImplementations.TestFluent_Obj(NumIterations: Integer);
var i:Integer;
Obj: TTestObj;
begin
for i:=1 to NumIterations do
begin
Obj := TTestObj.Create;
try
Obj.FluentSetName('My name is').FluentSetAge(8).FluentSetName('My name is').FluentSetAge(8).FluentSetName('My name is').FluentSetAge(8);
MakeSureTheObjIsUsed(Obj);
finally Obj.Free;
end;
end;
end;
procedure TTestBothImplementations.TestNonFluent(NumIterations: Integer);
var i:Integer;
Intf: ITestIntf;
begin
for i:=1 to NumIterations do
begin
Intf := TTestIntfImp.MakeIntf;
Intf.SetName('My name is');
Intf.SetAge(8);
Intf.SetName('My name is');
Intf.SetAge(8);
Intf.SetName('My name is');
Intf.SetAge(8);
MakeSureTheInterfaceIsUsed(Intf);
end;
end;
procedure TTestBothImplementations.TestNonFluent_Obj(NumIterations: Integer);
var i:Integer;
Obj: TTestObj;
begin
for i:=1 to NumIterations do
begin
Obj := TTestObj.Create;
try
Obj.SetName('My name is');
Obj.SetAge(8);
Obj.SetName('My name is');
Obj.SetAge(8);
Obj.SetName('My name is');
Obj.SetAge(8);
MakeSureTheObjIsUsed(Obj);
finally Obj.Free;
end;
end;
end;
procedure TTestBothImplementations.TimeTest(TheTest: TTestRoutine; NumIterations: Integer; TestName:string);
var Start, Stop: Int64;
begin
QueryPerformanceCounter(Start);
TheTest(NumIterations);
QueryPerformanceCounter(Stop);
WriteLn(TestName, ': ', IntToStr(Stop - Start));
end;
{ TTestObj }
function TTestObj.FluentSetAge(Age: Integer): TTestObj;
begin
FAge := Age;
Result := Self;
end;
function TTestObj.FluentSetName(Name: string): TTestObj;
begin
FName := Name;
Result := Self;
end;
function TTestObj.GetAge: Integer;
begin
Result := FAge;
end;
function TTestObj.GetName: string;
begin
Result := FName;
end;
procedure TTestObj.SetAge(Age: Integer);
begin
FAge := Age;
end;
procedure TTestObj.SetName(Name: string);
begin
FName := Name;
end;
var T: TTestBothImplementations;
begin
try
T := TTestBothImplementations.Create;
try
T.RunTests;
Readln;
finally T.Free;
end;
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.