-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathMVCBr.Patterns.Lazy.pas
489 lines (426 loc) · 10.4 KB
/
MVCBr.Patterns.Lazy.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
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
unit MVCBr.Patterns.Lazy;
interface
uses
System.Classes,
System.SysUtils,
System.Generics.Collections,
System.RTTI,
TypInfo;
const
ObjCastGUID: TGUID = '{4324E01E-6BBA-4771-88D5-E5A8AD1E2AAE}';
type
IMVCBrLazy<T: class> = interface(TFunc<T>)
['{31156284-3837-44A9-B0AD-CBD9BE3FB46B}']
function IsCreated: Boolean;
property Instance: T read Invoke;
procedure Release;
procedure FreeInstance;
end;
TMVCBrLazy<T: Class> = class(TInterfacedObject, IMVCBrLazy<T>, IInterface)
private
FCreated: Boolean;
FGuid: TGUID;
FInstance: T;
FFactory: TFunc<T>;
procedure Initialize;
function Invoke: T;
protected
function QueryInterface(const AIID: TGUID; out Obj): HResult; stdcall;
public
constructor Create(AValueFactory: TFunc<T>); virtual;
destructor Destroy; override;
function New: IMVCBrLazy<T>;
function DelegateTo(ADelegate: TFunc<T>): TMVCBrLazy<T>; virtual;
function Implements(AGuid: TGUID): TMVCBrLazy<T>; virtual;
procedure Release; virtual;
function IsCreated: Boolean;
property Instance: T read Invoke;
function AsInstance<TBaseClass: Class>: TBaseClass; overload;
function AsInterface<T: IInterface>: T; overload;
function AsInterface: IInterface; overload;
procedure FreeInstance; virtual;
end;
TMVCBrAggregatedLazy<T: IInterface> = class(TInterfacedObject, IInterface)
private
FCreated: Boolean;
[unsafe]
FInstance: T;
FFactory: TFunc<T>;
procedure Initialize;
function GetInstance: T;
protected
function QueryInterface(const AIID: TGUID; out Obj): HResult; stdcall;
public
constructor Create(AValueFactory: TFunc<T>);
destructor Destroy; override;
procedure Release; virtual;
function IsCreated: Boolean;
property Instance: T read GetInstance;
end;
MVCBrLazy<T: class> = record
strict private
FLazy: IMVCBrLazy<T>;
FInstance: T;
FIsCreated: Boolean;
function GetInstance: T;
private
public
class constructor Create;
property Instance: T read GetInstance;
procedure Release;
class operator Implicit(const Value: MVCBrLazy<T>): IMVCBrLazy<T>; overload;
class operator Implicit(const Value: MVCBrLazy<T>): T; overload;
class operator Implicit(const Value: TFunc<T>): MVCBrLazy<T>; overload;
end;
TMVCBrLazyItem<T: Class> = Class(TMVCBrLazy<T>)
public
FCommand: TValue;
FClass: TClass;
FFunc: TFunc<T>;
End;
TThreadLazyList<T: Class> = class(TThreadList < TMVCBrLazyItem < T >> )
end;
IMVCBrLazyFactory<T: Class> = interface
['{1B2BF0A7-F693-4734-A0F4-DCB2D7218AD3}']
function Add(ACommand: TValue; AClass: TClass): TMVCBrLazyItem<T>;
function IndexOf(ACommand: TValue): Integer;
function IsValid(Const Idx: Integer): Boolean;
function Query(ACommand: TValue): TMVCBrLazyItem<T>;
function LockList: TList<TMVCBrLazyItem<T>>;
procedure UnlockList;
end;
TMVCBrLazyFactory<T: Class> = class(TInterfacedObject, IMVCBrLazyFactory<T>)
private
FList: TThreadLazyList<T>;
public
constructor Create; virtual;
destructor Destroy; override;
class function New(AClass: T): TMVCBrLazyFactory<T>;
function IndexOf(ACommand: TValue): Integer; virtual;
function IsValid(Const Idx: Integer): Boolean; virtual;
function Add(ACommand: TValue; AClass: TClass): TMVCBrLazyItem<T>;
overload; virtual;
function Add<TBaseClass: Class>(ACommand: TValue)
: TMVCBrLazyItem<TBaseClass>; overload;
function Query(ACommand: TValue): TMVCBrLazyItem<T>;
function LockList: TList<TMVCBrLazyItem<T>>;
procedure UnlockList;
procedure FreeInstance(ACommand: TValue); virtual;
procedure FreeAllInstances; virtual;
function Count: Integer;
end;
implementation
uses {$IFNDEF BPL}
System.RTTI.Helper,
{$ENDIF}MVCBr.Interf;
function TMVCBrLazy<T>.AsInstance<TBaseClass>: TBaseClass;
var
Obj: TObject;
begin
result := nil;
Obj := Instance;
if Obj.InheritsFrom(TBaseClass) then
result := TBaseClass(Obj);
end;
function TMVCBrLazy<T>.AsInterface: IInterface;
begin
supports(Instance, FGuid, result);
end;
function TMVCBrLazy<T>.AsInterface<T>: T;
var
AGuid: TGUID;
begin
result := nil;
AGuid := TMVCBr.getGuid<T>;
supports(Instance, FGuid, result);
end;
constructor TMVCBrLazy<T>.Create(AValueFactory: TFunc<T>);
begin
FFactory := AValueFactory;
end;
function TMVCBrLazy<T>.DelegateTo(ADelegate: TFunc<T>): TMVCBrLazy<T>;
begin
FFactory := ADelegate;
result := self;
end;
destructor TMVCBrLazy<T>.Destroy;
begin
if FCreated then
begin
if Assigned(FInstance) then
FInstance.Free;
end;
inherited;
end;
procedure TMVCBrLazy<T>.FreeInstance;
begin
FreeAndNil(FInstance);
FCreated := false;
end;
function TMVCBrLazy<T>.Implements(AGuid: TGUID): TMVCBrLazy<T>;
begin
FGuid := AGuid;
result := self;
end;
procedure TMVCBrLazy<T>.Initialize;
begin
if not FCreated then
begin
FInstance := FFactory();
FCreated := True;
end;
end;
function TMVCBrLazy<T>.Invoke: T;
begin
Initialize();
result := FInstance;
end;
function TMVCBrLazy<T>.IsCreated: Boolean;
begin
result := FCreated;
end;
function TMVCBrLazy<T>.New: IMVCBrLazy<T>;
var
LInstance: TMVCBrLazy<T>;
begin
LInstance := TMVCBrLazy<T>.Create(nil);
LInstance.DelegateTo(
function: T
var
Obj: TObject;
begin
Obj := TClass(T).Create;
result := T(Obj);
end);
result := LInstance;
end;
function TMVCBrLazy<T>.QueryInterface(const AIID: TGUID; out Obj): HResult;
begin
if IsEqualGUID(AIID, ObjCastGUID) then
begin
Initialize;
end;
result := inherited;
end;
procedure TMVCBrLazy<T>.Release;
begin
end;
{ Lazy<T> }
class constructor MVCBrLazy<T>.Create;
begin
// TRttiSingleton.GetInstance.GetRttiType(TypeInfo(T));
end;
function MVCBrLazy<T>.GetInstance: T;
begin
if not FIsCreated then
begin
if Assigned(FLazy) then
begin
FInstance := FLazy();
end
else
TObject(FInstance) := TClass(T).Create;
FIsCreated := FInstance <> nil;
end;
result := FInstance;
end;
class operator MVCBrLazy<T>.Implicit(const Value: MVCBrLazy<T>): IMVCBrLazy<T>;
begin
result := Value.FLazy;
end;
class operator MVCBrLazy<T>.Implicit(const Value: MVCBrLazy<T>): T;
begin
result := Value.Instance;
end;
class operator MVCBrLazy<T>.Implicit(const Value: TFunc<T>): MVCBrLazy<T>;
begin
result.FLazy := TMVCBrLazy<T>.Create(Value);
end;
procedure MVCBrLazy<T>.Release;
begin
if Assigned(FInstance) then
FInstance.disposeOf;
end;
{ TMVCBrAggregatedLazy<T> }
constructor TMVCBrAggregatedLazy<T>.Create(AValueFactory: TFunc<T>);
begin
inherited Create;
FFactory := AValueFactory;
end;
destructor TMVCBrAggregatedLazy<T>.Destroy;
begin
if FCreated then
begin
FInstance := nil;
end;
inherited;
end;
procedure TMVCBrAggregatedLazy<T>.Initialize;
begin
if not FCreated then
begin
FInstance := FFactory();
FCreated := True;
end;
end;
function TMVCBrAggregatedLazy<T>.GetInstance: T;
begin
Initialize();
result := FInstance;
end;
function TMVCBrAggregatedLazy<T>.IsCreated: Boolean;
begin
result := FCreated;
end;
function TMVCBrAggregatedLazy<T>.QueryInterface(const AIID: TGUID;
out Obj): HResult;
begin
if IsEqualGUID(AIID, ObjCastGUID) then
begin
Initialize;
end;
result := inherited;
end;
procedure TMVCBrAggregatedLazy<T>.Release;
begin
end;
{ TMVCBrLazyFactory<T> }
function TMVCBrLazyFactory<T>.Add(ACommand: TValue; AClass: TClass)
: TMVCBrLazyItem<T>;
var
Obj: TMVCBrLazyItem<T>;
begin
Obj := TMVCBrLazyItem<T>.Create(
function: T
begin
result := T(AClass.Create);
end);
Obj.FCommand := ACommand;
Obj.FClass := AClass;
FList.Add(Obj);
result := Obj;
end;
function TMVCBrLazyFactory<T>.Add<TBaseClass>(ACommand: TValue)
: TMVCBrLazyItem<TBaseClass>;
begin
result := TMVCBrLazyItem<TBaseClass>(Add(ACommand, TBaseClass));
end;
function TMVCBrLazyFactory<T>.Count: Integer;
begin
with LockList do
try
result := Count;
finally
UnlockList;
end;
end;
constructor TMVCBrLazyFactory<T>.Create;
begin
inherited Create;
FList := TThreadLazyList<T>.Create;
end;
destructor TMVCBrLazyFactory<T>.Destroy;
var
o: TObject;
i: Integer;
begin
with LockList do
try
for i := Count - 1 downto 0 do
begin
o := items[i];
o.disposeOf;
delete(i);
end;
finally
UnlockList;
end;
FList.Free;
inherited;
end;
procedure TMVCBrLazyFactory<T>.FreeAllInstances;
var
i: Integer;
begin
i := -1;
with LockList do
try
for i := Count - 1 downto 0 do
items[i].FreeInstance;
finally
UnlockList;
end;
end;
procedure TMVCBrLazyFactory<T>.FreeInstance(ACommand: TValue);
var
i: Integer;
begin
i := IndexOf(ACommand);
if IsValid(i) then
with LockList do
try
items[i].FreeInstance;
finally
UnlockList;
end;
end;
function TMVCBrLazyFactory<T>.LockList: TList<TMVCBrLazyItem<T>>;
begin
result := FList.LockList;
end;
class function TMVCBrLazyFactory<T>.New(AClass: T): TMVCBrLazyFactory<T>;
begin
result := TMVCBrLazyFactory<T>.Create;
end;
function TMVCBrLazyFactory<T>.Query(ACommand: TValue): TMVCBrLazyItem<T>;
var
i: Integer;
begin
result := nil;
i := IndexOf(ACommand);
if i >= 0 then
begin
with LockList do
try
result := items[i];
finally
UnlockList;
end;
end;
end;
function TMVCBrLazyFactory<T>.IndexOf(ACommand: TValue): Integer;
var
i: Integer;
begin
i := -1;
{$IFNDEF BPL}
with LockList do
try
for i := 0 to Count - 1 do
if items[i].FCommand.equals(ACommand) then
begin
result := i;
exit;
end;
finally
UnlockList;
end;
{$ENDIF}
end;
function TMVCBrLazyFactory<T>.IsValid(const Idx: Integer): Boolean;
var
n: Integer;
begin
with LockList do
try
n := Count;
finally
UnlockList;
end;
result := (Idx >= 0) and (Idx < n);
end;
procedure TMVCBrLazyFactory<T>.UnlockList;
begin
FList.UnlockList;
end;
end.