-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathiPub.Rtl.Refit.pas
2090 lines (1914 loc) · 74.3 KB
/
iPub.Rtl.Refit.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
unit iPub.Rtl.Refit;
interface
{$SCOPEDENUMS ON}
uses
{ Delphi }
System.SysUtils,
System.Rtti,
System.TypInfo,
System.JSON.Serializers,
System.Generics.Collections,
System.NetEncoding,
REST.Client;
type
{ Exceptions }
EipRestService = class(Exception);
EipRestServiceCanceled = class(EipRestService);
EipRestServiceFailed = class(EipRestService);
EipRestServiceJson = class(EipRestService);
EipRestServiceStatusCode = class(EipRestService)
strict private
FStatusCode: Integer;
FStatusText: string;
public
constructor Create(const AStatusCode: Integer; const AStatusText, AMethodName: string);
property StatusCode: Integer read FStatusCode;
property StatusText: string read FStatusText;
end;
{ Attributes }
TBodyKind = (Json, Text, FormURLEncoded, MultipartFormData);
ContentTypeAttribute = class(TCustomAttribute) // Method attribute
strict private
FBodyKind: TBodyKind;
public
constructor Create(const ABodyKind: TBodyKind);
property BodyKind: TBodyKind read FBodyKind;
end;
BodyAttribute = class(TCustomAttribute); // Parameter attribute
HeaderAttribute = class(TCustomAttribute) // Parameter attribute
strict private
FName: string;
public
constructor Create(const AName: string);
property Name: string read FName;
end;
TipUrlAttribute = class abstract(TCustomAttribute)
strict private
FUrl: string;
public
constructor Create(const AUrl: string);
property Url: string read FUrl;
end;
// Methods attributes - Method kind and relative url
GetAttribute = class(TipUrlAttribute);
PostAttribute = class(TipUrlAttribute);
DeleteAttribute = class(TipUrlAttribute);
PutAttribute = class(TipUrlAttribute);
PatchAttribute = class(TipUrlAttribute);
HeadersAttribute = class(TCustomAttribute) // Method and type attribute
strict private
FName: string;
FValue: string;
public
constructor Create(const AName, AValue: string);
property Name: string read FName;
property Value: string read FValue;
end;
BaseUrlAttribute = class(TipUrlAttribute); // Types attribute
/// <summary>Rest service to create the rest api consumer interfaces</summary>
/// <remarks>This class and the rest api interfaces created by this class are thread safe.
/// As the connections are synchronous, the ideal is to call the api functions in
/// the background. If you have multiple threads you can also create multiple rest
/// api interfaces for the same api, each one will have a different connection.</remarks>
TipRestService = class abstract
public
type
TApiJsonSerializer = class abstract
{$REGION ' - Internal use'}
protected
function GetConverters: TArray<TJsonConverter>; virtual; abstract;
function InternalDeserialize(const AJson: string; const ATypeInfo: PTypeInfo): TValue; virtual; abstract;
procedure InternalPopulate(const AJson: string; var AValue: TValue); virtual; abstract;
function InternalSerialize(const AValue: TValue): string; virtual; abstract;
procedure SetConverters(const AConverters: TArray<TJsonConverter>); virtual; abstract;
{$ENDREGION}
public
constructor Create; virtual;
function Deserialize<T>(const AJson: string): T;
procedure Populate<T>(const AJson: string; var AValue: T);
function Serialize<T>(const AValue: T): string;
property Converters: TArray<TJsonConverter> read GetConverters;
end;
TApiJsonSerializerClass = class of TApiJsonSerializer;
TJsonConverterClass = class of TJsonConverter;
protected
function GetJsonSerializer: TApiJsonSerializer; virtual; abstract;
procedure MakeFor(const ATypeInfo: Pointer; const AClient: TRESTClient; const ABaseUrl: string; const AThreadSafe: Boolean; const AJsonSerializerClass: TApiJsonSerializerClass; out AResult); virtual; abstract;
public
function &For<T: IInterface>: T; overload;
function &For<T: IInterface>(const ABaseUrl: string): T; overload;
/// <summary>You can pass your own client, but you will be responsible for giving the client free after
/// use the rest api interface returned</summary>
function &For<T: IInterface>(const AClient: TRESTClient; const ABaseUrl: string = ''; const AThreadSafe: Boolean = True; const AJsonSerializerClass: TApiJsonSerializerClass = nil): T; overload;
procedure RegisterConverters(const AConverterClasses: TArray<TJsonConverterClass>); virtual; abstract;
/// <summary>Default json serializer used internally, but you can access it for manual serializations</summary>
property JsonSerializer: TApiJsonSerializer read GetJsonSerializer;
end;
{$M+}
/// <summary>The base interface of your rest api consumer that will be used in GService.&For</summary>
IipRestApi = interface
/// <summary>You can cancel the current request (for example when you need to close the program),
/// but will raise an exception EipRestServiceCanceled</summary>
procedure CancelRequest;
function GetAuthenticator: TCustomAuthenticator;
function GetJsonSerializer: TipRestService.TApiJsonSerializer;
function GetResponse: TRESTResponse;
procedure SetAuthenticator(AValue: TCustomAuthenticator);
/// <summary>Set this authenticator is necessary when the api need a OAuth1 or OAuth2 for example, then you
/// can use the native components like TOAuth2Authenticator. Then you will need to create and configure the
/// authenticator by your self, set here and after finished all api calls you will need to destroy the
/// authenticator (this rest service will not destroy it)</summary>
property Authenticator: TCustomAuthenticator read GetAuthenticator write SetAuthenticator;
/// <summary>Json serializer used internally, but you can access it for manual serializations</summary>
property JsonSerializer: TipRestService.TApiJsonSerializer read GetJsonSerializer;
/// <summary>The response will be useful when you need to use a TRESTResponseDataSetAdapter</summary>
property Response: TRESTResponse read GetResponse;
end;
{$M-}
var
GRestService: TipRestService;
implementation
uses
{ Delphi }
System.Classes,
System.Character,
System.SyncObjs,
System.JSON.Types,
System.JSON.Writers,
System.JSON.Readers,
System.Net.Mime,
System.Net.URLClient,
REST.Types;
const
DELPHI_10_4_SYDNEY = 34.0;
type
TMethodKind = (Get, Post, Delete, Put, Patch);
{ TRttiUtils }
TRttiUtils = class sealed
public
class function Attributes<T: TCustomAttribute>(const AAttributes: TArray<TCustomAttribute>): TArray<T>; static;
class function HasAttribute<T: TCustomAttribute>(const AAttributes: TArray<TCustomAttribute>): Boolean; overload; static;
class function HasAttribute<T: TCustomAttribute>(const AAttributes: TArray<TCustomAttribute>; out AAttribute: T): Boolean; overload; static;
class function IsDateTime(const ATypeInfo: PTypeInfo): Boolean; static;
end;
{ TReadWriteLock }
TReadWriteLock = class
strict private
FLock: {$IF CompilerVersion >= DELPHI_10_4_SYDNEY}TLightweightMREW{$ELSE}TCriticalSection{$ENDIF};
public
constructor Create;
destructor Destroy; override;
procedure BeginRead;
procedure BeginWrite;
procedure EndRead;
procedure EndWrite;
end;
{ TDefaultApiJsonSerializer }
TDefaultApiJsonSerializer = class(TipRestService.TApiJsonSerializer)
private
type
TJsonContractResolver = class(TJsonDefaultContractResolver)
protected
procedure SetPropertySettingsFromAttributes(const AProperty: TJsonProperty; const ARttiMember: TRttiMember;
AMemberSerialization: TJsonMemberSerialization); override;
end;
TSystemJsonSerializer = class(TJsonSerializer)
public
function Deserialize(const AJson: string; const ATypeInfo: PTypeInfo): TValue; overload;
function Serialize(const AValue: TValue): string; overload;
end;
strict private
FConverters: TArray<TJsonConverter>;
FLock: TReadWriteLock;
protected
function GetConverters: TArray<TJsonConverter>; override;
function InternalDeserialize(const AJson: string; const ATypeInfo: PTypeInfo): TValue; override;
procedure InternalPopulate(const AJson: string; var AValue: TValue); override;
function InternalSerialize(const AValue: TValue): string; override;
procedure SetConverters(const AConverters: TArray<TJsonConverter>); override;
public
constructor Create; override;
destructor Destroy; override;
end;
{ TJsonConverters }
TJsonConverters = record
public
type
TEnumConverter = class(TJsonConverter)
public
function CanConvert(ATypeInf: PTypeInfo): Boolean; override;
function ReadJson(const AReader: TJsonReader; ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue; override;
procedure WriteJson(const AWriter: TJsonWriter; const AValue: TValue; const ASerializer: TJsonSerializer); override;
end;
TSetConverter = class(TJsonConverter)
public
function CanConvert(ATypeInf: PTypeInfo): Boolean; override;
function ReadJson(const AReader: TJsonReader; ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue; override;
procedure WriteJson(const AWriter: TJsonWriter; const AValue: TValue; const ASerializer: TJsonSerializer); override;
end;
TBooleanConverter = class(TJsonConverter)
public
function CanConvert(ATypeInf: PTypeInfo): Boolean; override;
function ReadJson(const AReader: TJsonReader; ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue; override;
procedure WriteJson(const AWriter: TJsonWriter; const AValue: TValue; const ASerializer: TJsonSerializer); override;
end;
TInt64Converter = class(TJsonConverter)
public
function CanConvert(ATypeInf: PTypeInfo): Boolean; override;
function ReadJson(const AReader: TJsonReader; ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue; override;
procedure WriteJson(const AWriter: TJsonWriter; const AValue: TValue; const ASerializer: TJsonSerializer); override;
end;
TUInt64Converter = class(TJsonConverter)
public
function CanConvert(ATypeInf: PTypeInfo): Boolean; override;
function ReadJson(const AReader: TJsonReader; ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue; override;
procedure WriteJson(const AWriter: TJsonWriter; const AValue: TValue; const ASerializer: TJsonSerializer); override;
end;
end;
{ TApiParam }
TApiParam = class
strict private
FArgIndex: Integer;
FIsBytes: Boolean;
FIsDateTime: Boolean;
FName: string;
FTypeInfo: PTypeInfo;
public
constructor Create(const AArgIndex: Integer; const AIsBytes, AIsDateTime: Boolean; const AName: string; const ATypeInfo: PTypeInfo);
property ArgIndex: Integer read FArgIndex;
property IsBytes: Boolean read FIsBytes;
property IsDateTime: Boolean read FIsDateTime;
property Name: string read FName;
property TypeInfo: PTypeInfo read FTypeInfo;
end;
{ TApiProperty }
TApiProperty = class
strict private
FDefaultValue: TValue;
FGetMethod: Pointer;
FIndex: Integer;
FIsDateTime: Boolean;
FName: string;
FSetMethod: Pointer;
FTypeInfo: PTypeInfo;
public
constructor Create(const AGetMethod, ASetMethod: TRttiMethod; const AIndex: Integer);
procedure CallMethod(const AMethodHandle: Pointer; const AArgs: TArray<TValue>;
var AResult: TValue; var AProperties: TArray<TValue>);
function GetValue(const AProperties: TArray<TValue>): TValue;
property DefaultValue: TValue read FDefaultValue;
property GetMethod: Pointer read FGetMethod;
property IsDateTime: Boolean read FIsDateTime;
property Name: string read FName;
property SetMethod: Pointer read FSetMethod;
property TypeInfo: PTypeInfo read FTypeInfo;
end;
{ TApiMethod }
TApiMethod = class
strict private
FBodyKind: TBodyKind;
FBodyParameters: TArray<TApiParam>;
FKind: TMethodKind;
FHeaderParameters: TArray<TApiParam>;
FHeaders: TNameValueArray;
FMultipartFormDataParamIndex: Integer;
FParameters: TArray<TApiParam>;
FQualifiedName: string;
FRelativeUrl: string;
FResultKind: TTypeKind;
FResultIsDateTime: Boolean;
FResultTypeInfo: PTypeInfo;
FTryFunction: Boolean;
FTryFunctionResultParameterIndex: Integer;
public
constructor Create(const AQualifiedName: string; const ATypeHeaders: TNameValueArray;
const ARttiParameters: TArray<TRttiParameter>; const ARttiReturnType: TRttiType; const AAttributes: TArray<TCustomAttribute>);
destructor Destroy; override;
procedure CallApi(const ABaseUrl: string;
const AJsonSerializer: TipRestService.TApiJsonSerializer; const AArgs: TArray<TValue>;
var AResult: TValue; const AProperties: TObjectList<TApiProperty>;
const APropertiesValues: TArray<TValue>; const ACancelRequest: PBoolean;
const ARequest: TRESTRequest);
end;
{ IApiType }
IApiType = interface
function GetAuthenticatorPropertyIndex: Integer;
function GetBaseUrl: string;
function GetCancelRequestMethod: Pointer;
function GetIID: TGUID;
function GetJsonSerializerGetterMethod: Pointer;
function GetMethods: TObjectDictionary<Pointer, TApiMethod>;
function GetProperties: TObjectList<TApiProperty>;
function GetPropertiesMethods: TDictionary<Pointer, TApiProperty>;
function GetResponseGetterMethod: Pointer;
function GetTypeInfo: PTypeInfo;
property AuthenticatorPropertyIndex: Integer read GetAuthenticatorPropertyIndex;
property BaseUrl: string read GetBaseUrl;
property CancelRequestMethod: Pointer read GetCancelRequestMethod;
property IID: TGUID read GetIID;
property JsonSerializerGetterMethod: Pointer read GetJsonSerializerGetterMethod;
property Methods: TObjectDictionary<Pointer, TApiMethod> read GetMethods;
property Properties: TObjectList<TApiProperty> read GetProperties;
property PropertiesMethods: TDictionary<Pointer, TApiProperty> read GetPropertiesMethods;
property ResponseGetterMethod: Pointer read GetResponseGetterMethod;
property TypeInfo: PTypeInfo read GetTypeInfo;
end;
{ TApiType }
TApiType = class(TInterfacedObject, IApiType)
strict private
FAuthenticatorPropertyIndex: Integer;
FBaseUrl: string;
FCancelRequestMethod: Pointer;
FIID: TGUID;
FJsonSerializerGetterMethod: Pointer;
FMethods: TObjectDictionary<Pointer, TApiMethod>;
FProperties: TObjectList<TApiProperty>;
FPropertiesMethods: TDictionary<Pointer, TApiProperty>;
FResponseGetterMethod: Pointer;
FTypeInfo: PTypeInfo;
function GetAuthenticatorPropertyIndex: Integer;
function GetBaseUrl: string;
function GetCancelRequestMethod: Pointer;
function GetIID: TGUID;
function GetJsonSerializerGetterMethod: Pointer;
function GetMethods: TObjectDictionary<Pointer, TApiMethod>;
function GetProperties: TObjectList<TApiProperty>;
function GetPropertiesMethods: TDictionary<Pointer, TApiProperty>;
function GetResponseGetterMethod: Pointer;
function GetTypeInfo: PTypeInfo;
public
constructor Create(const AAuthenticatorPropertyIndex: Integer; const ABaseUrl: string;
const ACancelRequestMethod: Pointer; const AIID: TGUID;
const AMethods: TObjectDictionary<Pointer, TApiMethod>; const AProperties: TObjectList<TApiProperty>;
const APropertiesMethods: TDictionary<Pointer, TApiProperty>; const AJsonSerializerGetterMethod,
AResponseGetterMethod: Pointer; const ATypeInfo: PTypeInfo);
destructor Destroy; override;
end;
{ TApiVirtualInterface }
TApiVirtualInterface = class(TVirtualInterface)
strict private
FApiType: IApiType;
FBaseUrl: string;
FCancelNextRequest: Boolean;
FClient: TRESTClient;
FClientOwn: Boolean;
FJsonSerializer: TipRestService.TApiJsonSerializer;
FLocker: TCriticalSection;
FProperties: TArray<TValue>;
FRequest: TRESTRequest;
FResponse: TRESTResponse;
procedure CallMethod(const AMethodHandle: Pointer; const AArgs: TArray<TValue>; var AResult: TValue);
procedure CancelRequest;
function GetAuthenticator: TCustomAuthenticator;
public
constructor Create(const AApiType: IApiType; const AConverters: TArray<TJsonConverter>; const AClient: TRESTClient; const AJsonSerializerClass: TipRestService.TApiJsonSerializerClass; const ABaseUrl: string; const AThreadSafe: Boolean);
destructor Destroy; override;
end;
{ TRestServiceManager }
TRestServiceManager = class(TipRestService)
strict private
FApiTypeMap: TDictionary<PTypeInfo, IApiType>;
FConvertersList: TObjectList<TJsonConverter>;
FJsonSerializer: TipRestService.TApiJsonSerializer;
FLock: TReadWriteLock;
function CreateApiType(const ATypeInfo: PTypeInfo): IApiType;
strict protected
function GetJsonSerializer: TipRestService.TApiJsonSerializer; override;
procedure MakeFor(const ATypeInfo: Pointer; const AClient: TRESTClient; const ABaseUrl: string;
const AThreadSafe: Boolean; const AJsonSerializerClass: TipRestService.TApiJsonSerializerClass; out AResult); override;
public
constructor Create;
destructor Destroy; override;
procedure RegisterConverters(const AConverterClasses: TArray<TipRestService.TJsonConverterClass>); override;
end;
const
CMethodsWithBodyContent: set of TMethodKind = [TMethodKind.Post, TMethodKind.Put, TMethodKind.Patch];
CMethodsWithoutResponseContent: set of TMethodKind = [];
CSupportedResultKind: set of TTypeKind = [TTypeKind.tkUString, TTypeKind.tkClass, TTypeKind.tkMRecord, TTypeKind.tkRecord, TTypeKind.tkDynArray];
{ EipRestServiceStatusCode }
constructor EipRestServiceStatusCode.Create(const AStatusCode: Integer;
const AStatusText, AMethodName: string);
begin
inherited CreateFmt('Unexpected response calling %s method (code: %d; text: %s)', [AMethodName, AStatusCode, AStatusText]);
FStatusCode := AStatusCode;
FStatusText := AStatusText;
end;
{ TipUrlAttribute }
constructor TipUrlAttribute.Create(const AUrl: string);
begin
inherited Create;
FUrl := AUrl;
end;
{ ContentTypeAttribute }
constructor ContentTypeAttribute.Create(const ABodyKind: TBodyKind);
begin
inherited Create;
FBodyKind := ABodyKind;
end;
{ HeaderAttribute }
constructor HeaderAttribute.Create(const AName: string);
begin
inherited Create;
FName := AName;
end;
{ HeadersAttribute }
constructor HeadersAttribute.Create(const AName, AValue: string);
begin
inherited Create;
FName := AName;
FValue := AValue;
end;
{ TipRestService.TApiJsonSerializer }
constructor TipRestService.TApiJsonSerializer.Create;
begin
inherited Create;
end;
function TipRestService.TApiJsonSerializer.Deserialize<T>(
const AJson: string): T;
begin
Result := InternalDeserialize(AJson, TypeInfo(T)).AsType<T>;
end;
procedure TipRestService.TApiJsonSerializer.Populate<T>(const AJson: string;
var AValue: T);
var
LValue: TValue;
begin
TValue.Make(@AValue, TypeInfo(T), LValue);
InternalPopulate(AJson, LValue);
AValue := LValue.AsType<T>;
end;
function TipRestService.TApiJsonSerializer.Serialize<T>(
const AValue: T): string;
var
LValue: TValue;
begin
TValue.Make(@AValue, TypeInfo(T), LValue);
Result := InternalSerialize(LValue);
end;
{ TipRestService }
function TipRestService.&For<T>: T;
begin
MakeFor(TypeInfo(T), nil, '', True, nil, Result);
end;
function TipRestService.&For<T>(const ABaseUrl: string): T;
begin
MakeFor(TypeInfo(T), nil, ABaseUrl, True, nil, Result);
end;
function TipRestService.&For<T>(const AClient: TRESTClient;
const ABaseUrl: string; const AThreadSafe: Boolean;
const AJsonSerializerClass: TipRestService.TApiJsonSerializerClass): T;
begin
MakeFor(TypeInfo(T), AClient, ABaseUrl, AThreadSafe, AJsonSerializerClass, Result);
end;
{ TRttiUtils }
class function TRttiUtils.Attributes<T>(
const AAttributes: TArray<TCustomAttribute>): TArray<T>;
var
I: Integer;
LCount: Integer;
begin
LCount := 0;
SetLength(Result, Length(AAttributes));
for I := 0 to Length(AAttributes)-1 do
if AAttributes[I] is T then
begin
Result[LCount] := T(AAttributes[I]);
Inc(LCount);
end;
if LCount <> Length(Result) then
SetLength(Result, LCount);
end;
class function TRttiUtils.HasAttribute<T>(
const AAttributes: TArray<TCustomAttribute>): Boolean;
var
I: Integer;
begin
for I := 0 to Length(AAttributes)-1 do
if AAttributes[I] is T then
Exit(True);
Result := False;
end;
class function TRttiUtils.HasAttribute<T>(
const AAttributes: TArray<TCustomAttribute>; out AAttribute: T): Boolean;
var
I: Integer;
begin
for I := 0 to Length(AAttributes)-1 do
if AAttributes[I] is T then
begin
AAttribute := T(AAttributes[I]);
Exit(True);
end;
AAttribute := nil;
Result := False;
end;
class function TRttiUtils.IsDateTime(const ATypeInfo: PTypeInfo): Boolean;
begin
Result := (ATypeInfo = System.TypeInfo(TDate)) or
(ATypeInfo = System.TypeInfo(TDateTime)) or (ATypeInfo = System.TypeInfo(TTime));
end;
{ TReadWriteLock }
constructor TReadWriteLock.Create;
begin
inherited Create;
{$IF CompilerVersion < DELPHI_10_4_SYDNEY}
FLock := TCriticalSection.Create;
{$ENDIF}
end;
destructor TReadWriteLock.Destroy;
begin
{$IF CompilerVersion < DELPHI_10_4_SYDNEY}
FLock.Free;
{$ENDIF}
inherited;
end;
procedure TReadWriteLock.BeginRead;
begin
{$IF CompilerVersion >= DELPHI_10_4_SYDNEY}
FLock.BeginRead;
{$ELSE}
FLock.Enter;
{$ENDIF}
end;
procedure TReadWriteLock.BeginWrite;
begin
{$IF CompilerVersion >= DELPHI_10_4_SYDNEY}
FLock.BeginWrite;
{$ELSE}
FLock.Enter;
{$ENDIF}
end;
procedure TReadWriteLock.EndRead;
begin
{$IF CompilerVersion >= DELPHI_10_4_SYDNEY}
FLock.EndRead;
{$ELSE}
FLock.Leave;
{$ENDIF}
end;
procedure TReadWriteLock.EndWrite;
begin
{$IF CompilerVersion >= DELPHI_10_4_SYDNEY}
FLock.EndWrite;
{$ELSE}
FLock.Leave;
{$ENDIF}
end;
{ TDefaultApiJsonSerializer.TJsonContractResolver }
procedure TDefaultApiJsonSerializer.TJsonContractResolver.SetPropertySettingsFromAttributes(
const AProperty: TJsonProperty; const ARttiMember: TRttiMember;
AMemberSerialization: TJsonMemberSerialization);
begin
inherited;
if (not AProperty.Ignored) and (AProperty.AttributeProvider.GetAttribute(JsonNameAttribute) = nil) then
begin
if (ARttiMember is TRttiField) and
(Length(AProperty.Name) > 1) and
AProperty.Name.StartsWith('F', True) and
AProperty.Name.Chars[1].IsUpper then
begin
AProperty.Name := AProperty.Name.Substring(1);
end;
// Apply camel case
if Length(AProperty.Name) > 0 then
AProperty.Name := AProperty.Name.Chars[0].ToLower + AProperty.Name.Substring(1);
end;
end;
{ TDefaultApiJsonSerializer.TSystemJsonSerializer }
function TDefaultApiJsonSerializer.TSystemJsonSerializer.Deserialize(
const AJson: string; const ATypeInfo: PTypeInfo): TValue;
var
LStringReader: TStringReader;
LJsonReader: TJsonTextReader;
begin
LStringReader := TStringReader.Create(AJson);
try
LJsonReader := TJsonTextReader.Create(LStringReader);
LJsonReader.DateTimeZoneHandling := DateTimeZoneHandling;
LJsonReader.DateParseHandling := DateParseHandling;
LJsonReader.MaxDepth := MaxDepth;
try
Result := InternalDeserialize(LJsonReader, ATypeInfo);
finally
LJsonReader.Free;
end;
finally
LStringReader.Free;
end;
end;
function TDefaultApiJsonSerializer.TSystemJsonSerializer.Serialize(
const AValue: TValue): string;
var
LStringBuilder: TStringBuilder;
LStringWriter: TStringWriter;
LJsonWriter: TJsonTextWriter;
begin
LStringBuilder := TStringBuilder.Create($7FFF);
LStringWriter := TStringWriter.Create(LStringBuilder);
try
LJsonWriter := TJsonTextWriter.Create(LStringWriter);
LJsonWriter.FloatFormatHandling := FloatFormatHandling;
LJsonWriter.DateFormatHandling := DateFormatHandling;
LJsonWriter.DateTimeZoneHandling := DateTimeZoneHandling;
LJsonWriter.StringEscapeHandling := StringEscapeHandling;
LJsonWriter.Formatting := Formatting;
try
InternalSerialize(LJsonWriter, AValue);
finally
LJsonWriter.Free;
end;
Result := LStringBuilder.ToString(True);
finally
LStringWriter.Free;
LStringBuilder.Free;
end;
end;
{ TDefaultApiJsonSerializer }
constructor TDefaultApiJsonSerializer.Create;
begin
inherited Create;
FLock := TReadWriteLock.Create;
end;
destructor TDefaultApiJsonSerializer.Destroy;
begin
FLock.Free;
inherited;
end;
function TDefaultApiJsonSerializer.GetConverters: TArray<TJsonConverter>;
begin
FLock.BeginRead;
try
Result := Copy(FConverters);
finally
FLock.EndRead;
end;
end;
function TDefaultApiJsonSerializer.InternalDeserialize(const AJson: string;
const ATypeInfo: PTypeInfo): TValue;
var
LJsonSerializer: TSystemJsonSerializer;
begin
LJsonSerializer := TSystemJsonSerializer.Create;
try
LJsonSerializer.ContractResolver := TJsonContractResolver.Create;
LJsonSerializer.Converters.AddRange(FConverters);
Result := LJsonSerializer.Deserialize(AJson, ATypeInfo);
finally
LJsonSerializer.Free;
end;
end;
procedure TDefaultApiJsonSerializer.InternalPopulate(const AJson: string; var AValue: TValue);
var
LJsonSerializer: TSystemJsonSerializer;
begin
LJsonSerializer := TSystemJsonSerializer.Create;
try
LJsonSerializer.ContractResolver := TJsonContractResolver.Create;
LJsonSerializer.Converters.AddRange(FConverters);
LJsonSerializer.Populate(AJson, AValue);
finally
LJsonSerializer.Free;
end;
end;
function TDefaultApiJsonSerializer.InternalSerialize(const AValue: TValue): string;
var
LJsonSerializer: TSystemJsonSerializer;
begin
LJsonSerializer := TSystemJsonSerializer.Create;
try
LJsonSerializer.ContractResolver := TJsonContractResolver.Create;
LJsonSerializer.Converters.AddRange(FConverters);
Result := LJsonSerializer.Serialize(AValue);
finally
LJsonSerializer.Free;
end;
if AValue.Kind in [TTypeKind.tkRecord, TTypeKind.tkMRecord, TTypeKind.tkClass, TTypeKind.tkInterface] then
Result := Result.DeQuotedString('"');
end;
procedure TDefaultApiJsonSerializer.SetConverters(const AConverters: TArray<TJsonConverter>);
begin
FLock.BeginWrite;
try
FConverters := AConverters;
finally
FLock.EndWrite;
end;
end;
{ TJsonConverters.TEnumConverter }
function TJsonConverters.TEnumConverter.CanConvert(ATypeInf: PTypeInfo): Boolean;
begin
Result := (ATypeInf.Kind = TTypeKind.tkEnumeration) and (ATypeInf <> TypeInfo(Boolean)) and (ATypeInf.TypeData <> nil);
end;
function TJsonConverters.TEnumConverter.ReadJson(const AReader: TJsonReader;
ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue;
begin
Result := AReader.Value;
if not Result.IsOrdinal then
Result := TValue.FromOrdinal(ATypeInf, GetEnumValue(ATypeInf, Result.AsString));
end;
procedure TJsonConverters.TEnumConverter.WriteJson(const AWriter: TJsonWriter;
const AValue: TValue; const ASerializer: TJsonSerializer);
var
LEnumName: string;
begin
if (AValue.AsOrdinal < AValue.TypeData.MinValue) or (AValue.AsOrdinal > AValue.TypeData.MaxValue) then
AWriter.WriteNull
else
begin
LEnumName := GetEnumName(AValue.TypeInfo, AValue.AsOrdinal);
if LEnumName <> '' then
LEnumName := LEnumName.Chars[0].ToLower + LEnumName.Substring(1);
AWriter.WriteValue(LEnumName);
end;
end;
{ TJsonConverters.TSetConverter }
function TJsonConverters.TSetConverter.CanConvert(ATypeInf: PTypeInfo): Boolean;
begin
Result := (ATypeInf.Kind = TTypeKind.tkSet);
end;
function TJsonConverters.TSetConverter.ReadJson(const AReader: TJsonReader;
ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue;
var
LSetString: string;
LString: string;
begin
if AReader.TokenType = TJsonToken.StartArray then
begin
LSetString := '';
while AReader.Read and (AReader.TokenType <> TJsonToken.EndArray) do
begin
Result := AReader.Value;
if AReader.TokenType = TJsonToken.String then
LString := Result.AsString
else
LString := Result.AsOrdinal.ToString;
if LString.IsEmpty then
Continue;
if not LSetString.IsEmpty then
LSetString := LSetString + ',';
LSetString := LSetString + LString;
end;
Result := AExistingValue;
StringToSet(Result.TypeInfo, LSetString, Result.GetReferenceToRawData);
end
else
Result := AReader.Value;
end;
procedure TJsonConverters.TSetConverter.WriteJson(const AWriter: TJsonWriter;
const AValue: TValue; const ASerializer: TJsonSerializer);
var
LStrings: TArray<string>;
LString: string;
begin
AWriter.WriteStartArray;
LStrings := SetToString(AValue.TypeInfo, AValue.GetReferenceToRawData).Split([',']);
for LString in LStrings do
AWriter.WriteValue(LString);
AWriter.WriteEndArray;
end;
{ TJsonConverters.TBooleanConverter }
function TJsonConverters.TBooleanConverter.CanConvert(
ATypeInf: PTypeInfo): Boolean;
begin
Result := ATypeInf = TypeInfo(Boolean);
end;
function TJsonConverters.TBooleanConverter.ReadJson(const AReader: TJsonReader;
ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue;
var
LBool: Boolean;
begin
Result := AReader.Value;
// This is necessary when received a Boolean in string format
if Result.IsType<string> then
begin
LBool := StrToBool(Result.AsString);
TValue.Make(@LBool, AExistingValue.TypeInfo, Result);
end;
end;
procedure TJsonConverters.TBooleanConverter.WriteJson(
const AWriter: TJsonWriter; const AValue: TValue;
const ASerializer: TJsonSerializer);
begin
AWriter.WriteValue(AValue);
end;
{ TJsonConverters.TInt64Converter }
function TJsonConverters.TInt64Converter.CanConvert(
ATypeInf: PTypeInfo): Boolean;
begin
Result := ATypeInf = TypeInfo(Int64);
end;
function TJsonConverters.TInt64Converter.ReadJson(const AReader: TJsonReader;
ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue;
var
LOrdinal: Int64;
begin
Result := AReader.Value;
// This is necessary when received a Int64 in string format
if Result.IsType<string> then
begin
LOrdinal := StrToInt64(Result.AsString);
TValue.Make(@LOrdinal, AExistingValue.TypeInfo, Result);
end;
end;
procedure TJsonConverters.TInt64Converter.WriteJson(
const AWriter: TJsonWriter; const AValue: TValue;
const ASerializer: TJsonSerializer);
begin
AWriter.WriteValue(AValue);
end;
{ TJsonConverters.TUInt64Converter }
function TJsonConverters.TUInt64Converter.CanConvert(
ATypeInf: PTypeInfo): Boolean;
begin
Result := ATypeInf = TypeInfo(UInt64);
end;
function TJsonConverters.TUInt64Converter.ReadJson(const AReader: TJsonReader;
ATypeInf: PTypeInfo; const AExistingValue: TValue;
const ASerializer: TJsonSerializer): TValue;
var
LOrdinal: UInt64;
begin
Result := AReader.Value;
// This is necessary when received a UInt64 in string format
if Result.IsType<string> then
begin
LOrdinal := StrToUInt64(Result.AsString);
TValue.Make(@LOrdinal, AExistingValue.TypeInfo, Result);
end;
end;
procedure TJsonConverters.TUInt64Converter.WriteJson(
const AWriter: TJsonWriter; const AValue: TValue;
const ASerializer: TJsonSerializer);
begin
AWriter.WriteValue(AValue);
end;
{ TApiParam }
constructor TApiParam.Create(const AArgIndex: Integer; const AIsBytes,
AIsDateTime: Boolean; const AName: string; const ATypeInfo: PTypeInfo);
begin
inherited Create;
FArgIndex := AArgIndex;
FIsBytes := AIsBytes;
FIsDateTime := AIsDateTime;
FName := AName;
FTypeInfo := ATypeInfo;
end;
{ TApiProperty }
procedure TApiProperty.CallMethod(const AMethodHandle: Pointer;
const AArgs: TArray<TValue>; var AResult: TValue;
var AProperties: TArray<TValue>);
begin
if AMethodHandle = FGetMethod then
AResult := GetValue(AProperties)
else
AProperties[FIndex] := AArgs[1];
end;
constructor TApiProperty.Create(const AGetMethod, ASetMethod: TRttiMethod;
const AIndex: Integer);
begin
inherited Create;
if AGetMethod.ReturnType.Handle <> ASetMethod.GetParameters[0].ParamType.Handle then
raise EipRestService.CreateFmt('Incompatible types of methods %s and %s', [AGetMethod.Name, ASetMethod.Name]);
FIsDateTime := TRttiUtils.IsDateTime(AGetMethod.ReturnType.Handle);