-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
BasicUIM.pas
1152 lines (957 loc) · 45.1 KB
/
BasicUIM.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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{-------------------------------------------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-------------------------------------------------------------------------------}
{===============================================================================
BasicUIM
Provides some very basic implementation management, namely routing of
function calls, method calls, objects and classes via variables.
Note that it was written for a specific purpose, and was never meant to be
some universal library. Threfore there is not much functionality and also
absolutely no documentation. But, I am open to suggestions, if anyone will
be interested.
Version 1.1.1 (2024-04-14)
Last change 2024-04-14
©2023-2024 František Milt
Contacts:
František Milt: [email protected]
Support:
If you find this code useful, please consider supporting its author(s) by
making a small donation using the following link(s):
https://www.paypal.me/FMilt
Changelog:
For detailed changelog and history please refer to this git repository:
github.com/TheLazyTomcat/Lib.BasicUIM
Dependencies:
* AuxExceptions - github.com/TheLazyTomcat/Lib.AuxExceptions
Library AuxExceptions is required only when rebasing local exception classes
(see symbol BasicUIM_UseAuxExceptions for details).
Indirect dependencies:
AuxTypes - github.com/TheLazyTomcat/Lib.AuxTypes
SimpleCPUID - github.com/TheLazyTomcat/Lib.SimpleCPUID
StrRect - github.com/TheLazyTomcat/Lib.StrRect
UInt64Utils - github.com/TheLazyTomcat/Lib.UInt64Utils
WinFileInfo - github.com/TheLazyTomcat/Lib.WinFileInfo
===============================================================================}
unit BasicUIM;
{
BasicUIM_UseAuxExceptions
If you want library-specific exceptions to be based on more advanced classes
provided by AuxExceptions library instead of basic Exception class, and don't
want to or cannot change code in this unit, you can define global symbol
BasicUIM_UseAuxExceptions to achieve this.
}
{$IF Defined(BasicUIM_UseAuxExceptions)}
{$DEFINE UseAuxExceptions}
{$IFEND}
//------------------------------------------------------------------------------
{$IFDEF FPC}
{$MODE ObjFpc}
{$ENDIF}
{$H+}
interface
uses
SysUtils
{$IFDEF UseAuxExceptions}, AuxExceptions{$ENDIF};
{===============================================================================
Library-specific exceptions
===============================================================================}
type
EUIMException = class({$IFDEF UseAuxExceptions}EAEGeneralException{$ELSE}Exception{$ENDIF});
EUIMIndexOutOfBounds = class(EUIMException);
EUIMInvalidValue = class(EUIMException);
EUIMDuplicateItem = class(EUIMException);
EUIMInvalidIdentifier = class(EUIMException);
{===============================================================================
Auxiliary functions - declaration
===============================================================================}
Function Method(Code,Data: Pointer): TMethod;
{===============================================================================
--------------------------------------------------------------------------------
TUIMCommonClass
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TUIMCommonClass - class declaration
===============================================================================}
type
TUIMCommonClass = class(TObject)
protected
Function GetCapacity: Integer; virtual; abstract;
procedure SetCapacity(Value: Integer); virtual; abstract;
Function GetCount: Integer; virtual; abstract;
class Function GrowDelta: Integer; virtual; abstract;
procedure Grow; virtual; // only linear growth by GrowFactor
public
Function LowIndex: Integer; virtual; abstract;
Function HighIndex: Integer; virtual; abstract;
Function CheckIndex(Index: Integer): Boolean; virtual;
property Capacity: Integer read GetCapacity write SetCapacity;
property Count: Integer read GetCount;
end;
{===============================================================================
--------------------------------------------------------------------------------
TUIMRouting
--------------------------------------------------------------------------------
===============================================================================}
type
TUIMIdentifier = type Integer;
TUIMRoutingType = (rtFunction,rtMethod,rtObject,rtClass);
TUIMImplementationFlag = (ifSelect,ifAvailable,ifSupported);
TUIMImplementationFlags = set of TUIMImplementationFlag;
TUIMImplementationType = (itFunction,itMethod,itObject,itClass,itAlias);
type
TUIMImplementation = record
ImplementationID: TUIMIdentifier;
ImplementationFlags: TUIMImplementationFlags;
case ImplementorType: TUIMImplementationType of
itFunction: (FunctionImplementor: Pointer);
itMethod: (MethodImplementor: TMethod);
itObject: (ObjectImplementor: TObject);
itClass: (ClassImplementor: TClass);
itAlias: (OriginalImplementor: TUIMIdentifier);
end;
{===============================================================================
TUIMRouting - class declaration
===============================================================================}
type
TUIMRouting = class(TUIMCommonClass)
protected
fRoutingID: TUIMIdentifier;
fRoutingType: TUIMRoutingType;
fRoutingVarAddr: Pointer;
fImplementations: array of TUIMImplementation;
fImplementationCount: Integer;
fSelectedIndex: Integer;
Function GetImplementation(Index: Integer): TUIMImplementation; virtual;
Function GetImplementationFlags(Index: Integer): TUIMImplementationFlags; virtual;
procedure SetImplementationFlags(Index: Integer; Value: TUIMImplementationFlags); virtual;
Function GetSelectedIndex: Integer; virtual;
Function GetCapacity: Integer; override;
procedure SetCapacity(Value: Integer); override;
Function GetCount: Integer; override;
class Function GrowDelta: Integer; override;
procedure Initialize(RoutingID: TUIMIdentifier; RoutingType: TUIMRoutingType; RoutingVarAddr: Pointer); virtual;
procedure Finalize; virtual;
Function Add(ImplementationID: TUIMIdentifier; ImplementorType: TUIMImplementationType; ImplementorPtr: Pointer; ImplementationFlags: TUIMImplementationFlags): Integer; overload; virtual;
Function Replace(ImplementationID: TUIMIdentifier; ImplementorType: TUIMImplementationType; ImplementorPtr: Pointer; ImplementationFlags: TUIMImplementationFlags): Integer; overload; virtual;
public
constructor Create(RoutingID: TUIMIdentifier; var FunctionVariable: Pointer); overload;
constructor Create(RoutingID: TUIMIdentifier; var MethodVariable: TMethod); overload;
constructor Create(RoutingID: TUIMIdentifier; var ObjectVariable: TObject); overload;
constructor Create(RoutingID: TUIMIdentifier; var ClassVariable: TClass); overload;
destructor Destroy; override;
Function LowIndex: Integer; override;
Function HighIndex: Integer; override;
Function IndexOf(ImplementationID: TUIMIdentifier): Integer; virtual;
Function Find(ImplementationID: TUIMIdentifier; out Index: Integer): Boolean; virtual;
Function Add(ImplementationID: TUIMIdentifier; FunctionImplementor: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Add(ImplementationID: TUIMIdentifier; MethodImplementor: TMethod; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Add(ImplementationID: TUIMIdentifier; MethodImplementorCode,MethodImplementorData: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Add(ImplementationID: TUIMIdentifier; ObjectImplementor: TObject; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Add(ImplementationID: TUIMIdentifier; ClassImplementor: TClass; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function AddAlias(ReferencedImplementationID, AliasImplementationID: TUIMIdentifier; ImplementationFlags: TUIMImplementationFlags = []): Integer; virtual;
Function Copy(SourceImplementationID, NewImplementationID: TUIMIdentifier): Integer; virtual;
Function Replace(ImplementationID: TUIMIdentifier; FunctionImplementor: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Replace(ImplementationID: TUIMIdentifier; MethodImplementor: TMethod; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Replace(ImplementationID: TUIMIdentifier; MethodImplementorCode,MethodImplementorData: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Replace(ImplementationID: TUIMIdentifier; ObjectImplementor: TObject; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Replace(ImplementationID: TUIMIdentifier; ClassImplementor: TClass; ImplementationFlags: TUIMImplementationFlags = []): Integer; overload; virtual;
Function Remove(ImplementationID: TUIMIdentifier): Integer; virtual;
procedure Delete(Index: Integer); virtual;
procedure Clear; virtual;
Function FlagsGet(ImplementationID: TUIMIdentifier): TUIMImplementationFlags; virtual;
Function FlagsSet(ImplementationID: TUIMIdentifier; ImplementationFlags: TUIMImplementationFlags): TUIMImplementationFlags; virtual;
Function FlagAdd(ImplementationID: TUIMIdentifier; ImplementationFlag: TUIMImplementationFlag): Boolean; virtual;
Function FlagRemove(ImplementationID: TUIMIdentifier; ImplementationFlag: TUIMImplementationFlag): Boolean; virtual;
Function Selected(out SelectedImplementationID: TUIMIdentifier): Boolean; overload; virtual;
Function Selected: TUIMIdentifier; overload; virtual;
Function IsSelected(ImplementationID: TUIMIdentifier): Boolean; overload; virtual;
Function SelectIndex(Index: Integer): TUIMIdentifier; virtual;
procedure Select(ImplementationID: TUIMIdentifier); virtual;
procedure InvalidateSelection; virtual;
procedure Deselect; virtual;
Function CheckRouting: Boolean; virtual;
property RoutingID: TUIMIdentifier read fRoutingID;
property RoutingType: TUIMRoutingType read fRoutingType;
property RoutingVariableAddress: Pointer read fRoutingVarAddr;
property Implementations[Index: Integer]: TUIMImplementation read GetImplementation; default;
property ImplementationsFlags[Index: Integer]: TUIMImplementationFlags read GetImplementationFlags write SetImplementationFlags;
property ImplementationCount: Integer read GetCount;
property SelectedIndex: Integer read GetSelectedIndex;
end;
{===============================================================================
--------------------------------------------------------------------------------
TImplementationManager
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TImplementationManager - class declaration
===============================================================================}
type
TImplementationManager = class(TUIMCommonClass)
protected
fRoutings: array of TUIMRouting;
fRoutingCount: Integer;
Function GetRouting(Index: Integer): TUIMRouting; virtual;
Function GetCapacity: Integer; override;
procedure SetCapacity(Value: Integer); override;
Function GetCount: Integer; override;
class Function GrowDelta: Integer; override;
procedure Initialize; virtual;
procedure Finalize; virtual;
Function Add(RoutingID: TUIMIdentifier; RoutingType: TUIMRoutingType; RoutingVarAddr: Pointer): Integer; overload; virtual;
public
constructor Create;
destructor Destroy; override;
Function LowIndex: Integer; override;
Function HighIndex: Integer; override;
Function IndexOf(RoutingID: TUIMIdentifier): Integer; virtual;
Function Find(RoutingID: TUIMIdentifier; out Index: Integer): Boolean; virtual;
Function FindObj(RoutingID: TUIMIdentifier): TUIMRouting; virtual;
Function Add(RoutingID: TUIMIdentifier; var FunctionVariable: Pointer): Integer; overload; virtual;
Function Add(RoutingID: TUIMIdentifier; var MethodVariable: TMethod): Integer; overload; virtual;
Function Add(RoutingID: TUIMIdentifier; var ObjectVariable: TObject): Integer; overload; virtual;
Function Add(RoutingID: TUIMIdentifier; var ClassVariable: TClass): Integer; overload; virtual;
Function AddObj(RoutingID: TUIMIdentifier; var FunctionVariable: Pointer): TUIMRouting; overload; virtual;
Function AddObj(RoutingID: TUIMIdentifier; var MethodVariable: TMethod): TUIMRouting; overload; virtual;
Function AddObj(RoutingID: TUIMIdentifier; var ObjectVariable: TObject): TUIMRouting; overload; virtual;
Function AddObj(RoutingID: TUIMIdentifier; var ClassVariable: TClass): TUIMRouting; overload; virtual;
Function Remove(RoutingID: TUIMIdentifier): Integer; virtual;
procedure Delete(Index: Integer); virtual;
procedure Clear; virtual;
property Routings[Index: Integer]: TUIMRouting read GetRouting; default;
property RoutingCount: Integer read GetCount;
end;
type
// some aliases
TUnitImplementationManager = TImplementationManager;
TUnitImplManager = TImplementationManager;
implementation
{===============================================================================
Auxiliary functions - implementation
===============================================================================}
Function Method(Code,Data: Pointer): TMethod;
begin
Result.Code := Code;
Result.Data := Data;
end;
//------------------------------------------------------------------------------
Function RoutToImplType(RoutingType: TUIMRoutingType): TUIMImplementationType;
begin
case RoutingType of
rtFunction: Result := itFunction;
rtMethod: Result := itMethod;
rtObject: Result := itObject;
rtClass: Result := itClass;
else
raise EUIMInvalidValue.CreateFmt('RoutToImplType: Invalid routing type (%d).',[Ord(RoutingType)]);
end;
end;
{===============================================================================
--------------------------------------------------------------------------------
TUIMCommonClass
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TUIMCommonClass - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TUIMCommonClass - protectecd methods
-------------------------------------------------------------------------------}
procedure TUIMCommonClass.Grow;
begin
If Count >= Capacity then
Capacity := Capacity + GrowDelta;
end;
{-------------------------------------------------------------------------------
TUIMCommonClass - public methods
-------------------------------------------------------------------------------}
Function TUIMCommonClass.CheckIndex(Index: Integer): Boolean;
begin
Result := (Index >= LowIndex) and (Index <= HighIndex);
end;
{===============================================================================
--------------------------------------------------------------------------------
TUIMRouting
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TUIMRouting - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TUIMRouting - protectecd methods
-------------------------------------------------------------------------------}
Function TUIMRouting.GetImplementation(Index: Integer): TUIMImplementation;
begin
If CheckIndex(Index) then
Result := fImplementations[Index]
else
raise EUIMIndexOutOfBounds.CreateFmt('TUIMRouting.GetImplementation: Index (%d) out of bounds.',[Index]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.GetImplementationFlags(Index: Integer): TUIMImplementationFlags;
begin
If CheckIndex(Index) then
Result := fImplementations[Index].ImplementationFlags
else
raise EUIMIndexOutOfBounds.CreateFmt('TUIMRouting.GetImplementationFlags: Index (%d) out of bounds.',[Index]);
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.SetImplementationFlags(Index: Integer; Value: TUIMImplementationFlags);
begin
If CheckIndex(Index) then
begin
If ifSelect in Value then
SelectIndex(Index);
fImplementations[Index].ImplementationFlags := Value - [ifSelect];
end
else raise EUIMIndexOutOfBounds.CreateFmt('TUIMRouting.SetImplementationFlags: Index (%d) out of bounds.',[Index]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.GetSelectedIndex: Integer;
begin
If not CheckRouting then
fSelectedIndex := -1;
Result := fSelectedIndex;
end;
//------------------------------------------------------------------------------
Function TUIMRouting.GetCapacity: Integer;
begin
Result := Length(fImplementations);
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.SetCapacity(Value: Integer);
begin
If Value >= 0 then
begin
// there is no need for per-item initialization or finalization
SetLength(fImplementations,Value);
If Value < fImplementationCount then
fImplementationCount := Value;
end
else raise EUIMInvalidValue.CreateFmt('TUIMRouting.SetCapacity: Invalid capacity value (%d).',[Value]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.GetCount: Integer;
begin
Result := fImplementationCount;
end;
//------------------------------------------------------------------------------
class Function TUIMRouting.GrowDelta: Integer;
begin
Result := 4;
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.Initialize(RoutingID: TUIMIdentifier; RoutingType: TUIMRoutingType; RoutingVarAddr: Pointer);
begin
fRoutingID := RoutingID;
fRoutingType := RoutingType;
fRoutingVarAddr := RoutingVarAddr;
SetLength(fImplementations,0);
fImplementationCount := 0;
fSelectedIndex := -1;
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.Finalize;
begin
// nothing to do atm. (do NOT deselect implementations)
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Add(ImplementationID: TUIMIdentifier; ImplementorType: TUIMImplementationType; ImplementorPtr: Pointer; ImplementationFlags: TUIMImplementationFlags): Integer;
begin
If (RoutToImplType(fRoutingType) = ImplementorType) or (ImplementorType = itAlias) then
begin
If not Find(ImplementationID,Result) then
begin
Grow;
Result := fImplementationCount;
fImplementations[Result].ImplementationID := ImplementationID;
fImplementations[Result].ImplementationFlags := ImplementationFlags - [ifSelect];
fImplementations[Result].ImplementorType := ImplementorType;
case ImplementorType of
itFunction: fImplementations[Result].FunctionImplementor := Pointer(ImplementorPtr^);
itMethod: fImplementations[Result].MethodImplementor := TMethod(ImplementorPtr^);
itObject: fImplementations[Result].ObjectImplementor := TObject(ImplementorPtr^);
itClass: fImplementations[Result].ClassImplementor := TClass(ImplementorPtr^);
itAlias: fImplementations[Result].OriginalImplementor := TUIMIdentifier(ImplementorPtr^);
else
raise EUIMInvalidValue.CreateFmt('TUIMRouting.Add: Invalid implementor type (%d).',[Ord(ImplementorType)]);
end;
Inc(fImplementationCount);
If ifSelect in ImplementationFlags then
SelectIndex(Result);
end
else raise EUIMDuplicateItem.CreateFmt('TUIMRouting.Add: Implementation with selected id (%d) already exists.',[ImplementationID]);
end
else raise EUIMInvalidValue.CreateFmt('TUIMRouting.Add: Wrong implementor type (%d, required %d).',[Ord(ImplementorType),Ord(fRoutingType)]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Replace(ImplementationID: TUIMIdentifier; ImplementorType: TUIMImplementationType; ImplementorPtr: Pointer; ImplementationFlags: TUIMImplementationFlags): Integer;
begin
If (RoutToImplType(fRoutingType) = ImplementorType) or (ImplementorType = itAlias) then
begin
If Find(ImplementationID,Result) then
begin
fImplementations[Result].ImplementationFlags := ImplementationFlags - [ifSelect];
fImplementations[Result].ImplementorType := ImplementorType;
case ImplementorType of
itFunction: fImplementations[Result].FunctionImplementor := Pointer(ImplementorPtr^);
itMethod: fImplementations[Result].MethodImplementor := TMethod(ImplementorPtr^);
itObject: fImplementations[Result].ObjectImplementor := TObject(ImplementorPtr^);
itClass: fImplementations[Result].ClassImplementor := TClass(ImplementorPtr^);
// itAlias should not happen here, but meh...
itAlias: fImplementations[Result].OriginalImplementor := TUIMIdentifier(ImplementorPtr^);
else
raise EUIMInvalidValue.CreateFmt('TUIMRouting.Replace: Invalid implementor type (%d).',[Ord(ImplementorType)]);
end;
If (ifSelect in ImplementationFlags) or (fSelectedIndex = Result){reselct/reassign} then
SelectIndex(Result);
end
else raise EUIMDuplicateItem.CreateFmt('TUIMRouting.Replace: Implementation to be replaced (%d) not found.',[ImplementationID]);
end
else raise EUIMInvalidValue.CreateFmt('TUIMRouting.Replace: Wrong implementor type (%d, required %d).',[Ord(ImplementorType),Ord(fRoutingType)]);
end;
{-------------------------------------------------------------------------------
TUIMRouting - public methods
-------------------------------------------------------------------------------}
constructor TUIMRouting.Create(RoutingID: TUIMIdentifier; var FunctionVariable: Pointer);
begin
inherited Create;
Initialize(RoutingID,rtFunction,@FunctionVariable);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
constructor TUIMRouting.Create(RoutingID: TUIMIdentifier; var MethodVariable: TMethod);
begin
inherited Create;
Initialize(RoutingID,rtMethod,@MethodVariable);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
constructor TUIMRouting.Create(RoutingID: TUIMIdentifier; var ObjectVariable: TObject);
begin
inherited Create;
Initialize(RoutingID,rtObject,@ObjectVariable);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
constructor TUIMRouting.Create(RoutingID: TUIMIdentifier; var ClassVariable: TClass);
begin
inherited Create;
Initialize(RoutingID,rtClass,@ClassVariable);
end;
//------------------------------------------------------------------------------
destructor TUIMRouting.Destroy;
begin
Finalize;
inherited;
end;
//------------------------------------------------------------------------------
Function TUIMRouting.LowIndex: Integer;
begin
Result := Low(fImplementations);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.HighIndex: Integer;
begin
Result := Pred(fImplementationCount);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.IndexOf(ImplementationID: TUIMIdentifier): Integer;
var
i: Integer;
begin
Result := -1;
For i := LowIndex to HighIndex do
If fImplementations[i].ImplementationID = ImplementationID then
begin
Result := i;
Break{For i};
end;
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Find(ImplementationID: TUIMIdentifier; out Index: Integer): Boolean;
begin
Index := IndexOf(ImplementationID);
Result := CheckIndex(Index);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Add(ImplementationID: TUIMIdentifier; FunctionImplementor: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Add(ImplementationID,itFunction,@FunctionImplementor,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Add(ImplementationID: TUIMIdentifier; MethodImplementor: TMethod; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Add(ImplementationID,itMethod,@MethodImplementor,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Add(ImplementationID: TUIMIdentifier; MethodImplementorCode,MethodImplementorData: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer;
var
MethodTemp: TMethod;
begin
MethodTemp.Code := MethodImplementorCode;
MethodTemp.Data := MethodImplementorData;
Result := Add(ImplementationID,itMethod,@MethodTemp,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Add(ImplementationID: TUIMIdentifier; ObjectImplementor: TObject; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Add(ImplementationID,itObject,@ObjectImplementor,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Add(ImplementationID: TUIMIdentifier; ClassImplementor: TClass; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Add(ImplementationID,itClass,@ClassImplementor,ImplementationFlags);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.AddAlias(ReferencedImplementationID, AliasImplementationID: TUIMIdentifier; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Add(AliasImplementationID,itAlias,@ReferencedImplementationID,ImplementationFlags);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Copy(SourceImplementationID, NewImplementationID: TUIMIdentifier): Integer;
var
SrcIndex: Integer;
begin
If Find(SourceImplementationID,SrcIndex) then
begin
with fImplementations[SrcIndex] do
case ImplementorType of
itFunction: Result := Add(NewImplementationID,FunctionImplementor,ImplementationFlags);
itMethod: Result := Add(NewImplementationID,MethodImplementor,ImplementationFlags);
itObject: Result := Add(NewImplementationID,ObjectImplementor,ImplementationFlags);
itClass: Result := Add(NewImplementationID,ClassImplementor,ImplementationFlags);
itAlias: Result := AddAlias(OriginalImplementor,NewImplementationID,ImplementationFlags);
else
raise EUIMInvalidValue.CreateFmt('TUIMRouting.Copy: Invalid implementor type (%d).',[Ord(ImplementorType)])
end;
end
else raise EUIMInvalidIdentifier.CreateFmt('TUIMRouting.Copy: Implementation with selected ID (%d) not found.',[SourceImplementationID]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Replace(ImplementationID: TUIMIdentifier; FunctionImplementor: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Replace(ImplementationID,itFunction,@FunctionImplementor,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Replace(ImplementationID: TUIMIdentifier; MethodImplementor: TMethod; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Replace(ImplementationID,itMethod,@MethodImplementor,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Replace(ImplementationID: TUIMIdentifier; MethodImplementorCode,MethodImplementorData: Pointer; ImplementationFlags: TUIMImplementationFlags = []): Integer;
var
MethodTemp: TMethod;
begin
MethodTemp.Code := MethodImplementorCode;
MethodTemp.Data := MethodImplementorData;
Result := Replace(ImplementationID,itMethod,@MethodTemp,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Replace(ImplementationID: TUIMIdentifier; ObjectImplementor: TObject; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Replace(ImplementationID,itObject,@ObjectImplementor,ImplementationFlags);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Replace(ImplementationID: TUIMIdentifier; ClassImplementor: TClass; ImplementationFlags: TUIMImplementationFlags = []): Integer;
begin
Result := Replace(ImplementationID,itClass,@ClassImplementor,ImplementationFlags);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Remove(ImplementationID: TUIMIdentifier): Integer;
begin
If Find(ImplementationID,Result) then
Delete(Result)
else
Result := -1;
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.Delete(Index: Integer);
var
i: Integer;
begin
If CheckIndex(Index) then
begin
If fSelectedIndex = Index then
fSelectedIndex := -1;
For i := Index to Pred(HighIndex) do
begin
fImplementations[i] := fImplementations[i + 1];
If fSelectedIndex = (i + 1) then
Dec(fSelectedIndex);
end;
Dec(fImplementationCount);
end
else raise EUIMIndexOutOfBounds.CreateFmt('TUIMRouting.Delete: Index (%d) out of bounds.',[Index]);
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.Clear;
begin
SetCapacity(0);
fSelectedIndex := -1;
end;
//------------------------------------------------------------------------------
Function TUIMRouting.FlagsGet(ImplementationID: TUIMIdentifier): TUIMImplementationFlags;
var
Index: Integer;
begin
If Find(ImplementationID,Index) then
Result := fImplementations[Index].ImplementationFlags
else
raise EUIMInvalidIdentifier.CreateFmt('TUIMRouting.FlagsGet: Implementation with selected ID (%d) not found.',[ImplementationID]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.FlagsSet(ImplementationID: TUIMIdentifier; ImplementationFlags: TUIMImplementationFlags): TUIMImplementationFlags;
var
Index: Integer;
begin
If Find(ImplementationID,Index) then
begin
Result := fImplementations[Index].ImplementationFlags;
If ifSelect in ImplementationFlags then
SelectIndex(Index);
fImplementations[Index].ImplementationFlags := ImplementationFlags - [ifSelect];
end
else raise EUIMInvalidIdentifier.CreateFmt('TUIMRouting.FlagsSet: Implementation with selected ID (%d) not found.',[ImplementationID]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.FlagAdd(ImplementationID: TUIMIdentifier; ImplementationFlag: TUIMImplementationFlag): Boolean;
var
Index: Integer;
begin
If Find(ImplementationID,Index) then
begin
Result := ImplementationFlag in fImplementations[Index].ImplementationFlags;
If ImplementationFlag = ifSelect then
SelectIndex(Index)
else
Include(fImplementations[Index].ImplementationFlags,ImplementationFlag);
end
else raise EUIMInvalidIdentifier.CreateFmt('TUIMRouting.FlagAdd: Implementation with selected ID (%d) not found.',[ImplementationID]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.FlagRemove(ImplementationID: TUIMIdentifier; ImplementationFlag: TUIMImplementationFlag): Boolean;
var
Index: Integer;
begin
If Find(ImplementationID,Index) then
begin
Result := ImplementationFlag in fImplementations[Index].ImplementationFlags;
Exclude(fImplementations[Index].ImplementationFlags,ImplementationFlag);
end
else raise EUIMInvalidIdentifier.CreateFmt('TUIMRouting.FlagRemove: Implementation with selected ID (%d) not found.',[ImplementationID]);
end;
//------------------------------------------------------------------------------
Function TUIMRouting.Selected(out SelectedImplementationID: TUIMIdentifier): Boolean;
begin
If not CheckRouting then
fSelectedIndex := -1;
If CheckIndex(fSelectedIndex) then
begin
SelectedImplementationID := fImplementations[fSelectedIndex].ImplementationID;
Result := True;
end
else Result := False;
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TUIMRouting.Selected: TUIMIdentifier;
begin
If not Selected(Result) then
Result := 0;
end;
//------------------------------------------------------------------------------
Function TUIMRouting.IsSelected(ImplementationID: TUIMIdentifier): Boolean;
begin
If not CheckRouting then
fSelectedIndex := -1;
If CheckIndex(fSelectedIndex) then
Result := ImplementationID = fImplementations[fSelectedIndex].ImplementationID
else
Result := False;
end;
//------------------------------------------------------------------------------
Function TUIMRouting.SelectIndex(Index: Integer): TUIMIdentifier;
begin
If CheckIndex(Index) then
begin
If fImplementations[Index].ImplementorType <> itAlias then
begin
fSelectedIndex := Index;
case fRoutingType of
rtFunction: Pointer(fRoutingVarAddr^) := fImplementations[fSelectedIndex].FunctionImplementor;
rtMethod: TMethod(fRoutingVarAddr^) := fImplementations[fSelectedIndex].MethodImplementor;
rtObject: TObject(fRoutingVarAddr^) := fImplementations[fSelectedIndex].ObjectImplementor;
rtClass: TClass(fRoutingVarAddr^) := fImplementations[fSelectedIndex].ClassImplementor;
else
raise EUIMInvalidValue.CreateFmt('TUIMRouting.SelectIndex: Invalid routing type (%d).',[Ord(fRoutingType)]);
end;
end
else Select(fImplementations[Index].OriginalImplementor);
Result := fImplementations[Index].ImplementationID;
end
else raise EUIMIndexOutOfBounds.CreateFmt('TUIMRouting.SelectIndex: Index (%d) out of bounds.',[Index]);
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.Select(ImplementationID: TUIMIdentifier);
var
Index: Integer;
begin
If Find(ImplementationID,Index) then
SelectIndex(Index)
else
raise EUIMInvalidIdentifier.CreateFmt('TUIMRouting.Select: Implementation with selected ID (%d) not found.',[ImplementationID]);
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.InvalidateSelection;
begin
fSelectedIndex := -1;
end;
//------------------------------------------------------------------------------
procedure TUIMRouting.Deselect;
begin
InvalidateSelection;
case fRoutingType of
rtFunction: Pointer(fRoutingVarAddr^) := nil;
rtMethod: begin
TMethod(fRoutingVarAddr^).Code := nil;
TMethod(fRoutingVarAddr^).Data := nil;
end;
rtObject: TObject(fRoutingVarAddr^) := TObject(nil);
rtClass: TClass(fRoutingVarAddr^) := TClass(nil);
else
raise EUIMInvalidValue.CreateFmt('TUIMRouting.Deselect: Invalid routing type (%d).',[Ord(fRoutingType)])
end;
end;
//------------------------------------------------------------------------------
Function TUIMRouting.CheckRouting: Boolean;
begin
If CheckIndex(fSelectedIndex) then
case fRoutingType of
rtFunction: Result := Pointer(fRoutingVarAddr^) = fImplementations[fSelectedIndex].FunctionImplementor;
rtMethod: Result := (TMethod(fRoutingVarAddr^).Code = fImplementations[fSelectedIndex].MethodImplementor.Code) and
(TMethod(fRoutingVarAddr^).Data = fImplementations[fSelectedIndex].MethodImplementor.Data);
rtObject: Result := TObject(fRoutingVarAddr^) = fImplementations[fSelectedIndex].ObjectImplementor;
rtClass: Result := TClass(fRoutingVarAddr^) = fImplementations[fSelectedIndex].ClassImplementor;
else
raise EUIMInvalidValue.CreateFmt('TUIMRouting.CheckRouting: Invalid routing type (%d).',[Ord(fRoutingType)])
end
else Result := True;
end;
{===============================================================================
--------------------------------------------------------------------------------
TImplementationManager
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TImplementationManager - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TImplementationManager - protected methods
-------------------------------------------------------------------------------}
Function TImplementationManager.GetRouting(Index: Integer): TUIMRouting;
begin
If CheckIndex(Index) then
Result := fRoutings[Index]
else
raise EUIMIndexOutOfBounds.CreateFmt('TImplementationManager.GetRouting: Index (%d) out of bounds.',[Index]);
end;
//------------------------------------------------------------------------------
Function TImplementationManager.GetCapacity: Integer;
begin
Result := Length(fRoutings);
end;
//------------------------------------------------------------------------------
procedure TImplementationManager.SetCapacity(Value: Integer);
var
i: Integer;
begin
If Value >= 0 then
begin
If Value < fRoutingCount then
begin
For i := Value to HighIndex do
FreeAndNil(fRoutings[i]);
fRoutingCount := Value;
end;
SetLength(fRoutings,Value);
end
else raise EUIMInvalidValue.CreateFmt('TImplementationManager.SetCapacity: Invalid capacity value (%d).',[Value]);
end;
//------------------------------------------------------------------------------
Function TImplementationManager.GetCount: Integer;
begin
Result := fRoutingCount;
end;
//------------------------------------------------------------------------------
class Function TImplementationManager.GrowDelta: Integer;
begin
Result := 16;
end;
//------------------------------------------------------------------------------
procedure TImplementationManager.Initialize;
begin
SetLength(fRoutings,0);
fRoutingCount := 0;
end;
//------------------------------------------------------------------------------
procedure TImplementationManager.Finalize;
begin
Clear;
end;
//------------------------------------------------------------------------------
Function TImplementationManager.Add(RoutingID: TUIMIdentifier; RoutingType: TUIMRoutingType; RoutingVarAddr: Pointer): Integer;
begin
If not Find(RoutingID,Result) then
begin
Grow;
Result := fRoutingCount;
case RoutingType of
rtFunction: fRoutings[Result] := TUIMRouting.Create(RoutingID,Pointer(RoutingVarAddr^));
rtMethod: fRoutings[Result] := TUIMRouting.Create(RoutingID,TMethod(RoutingVarAddr^));
rtObject: fRoutings[Result] := TUIMRouting.Create(RoutingID,TObject(RoutingVarAddr^));
rtClass: fRoutings[Result] := TUIMRouting.Create(RoutingID,TClass(RoutingVarAddr^));
else
raise EUIMInvalidValue.CreateFmt('TImplementationManager.Add: Invalid routing type (%d).',[Ord(RoutingType)])
end;
Inc(fRoutingCount);
end
else raise EUIMDuplicateItem.CreateFmt('TImplementationManager.Add: Routing with selected ID (%d) already exists.',[RoutingID]);
end;
{-------------------------------------------------------------------------------
TImplementationManager - public methods
-------------------------------------------------------------------------------}
constructor TImplementationManager.Create;
begin
inherited;
Initialize;
end;
//------------------------------------------------------------------------------
destructor TImplementationManager.Destroy;
begin
Finalize;
inherited;
end;
//------------------------------------------------------------------------------
Function TImplementationManager.LowIndex: Integer;
begin