-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathJPL.RTTI.pas
367 lines (300 loc) · 8.76 KB
/
JPL.RTTI.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
unit JPL.RTTI;
{$I .\..\jp.inc}
{$IFDEF FPC}{$MODE DELPHI}{$ENDIF}
{$IFDEF DCC}
{$IFDEF DELPHI2009_OR_BELOW}
Unit for Delphi 2010 or newer!
{$ENDIF}
{$ENDIF}
interface
uses
SysUtils, Classes, Controls
{$IFDEF HAS_RTTI}, {%H-}Rtti, TypInfo{$ENDIF}
;
{$IFDEF HAS_RTTI}
function GetPropertyAsObject(const Obj: TObject; const PropertyName: string): TObject;
function TryGetPropertyAsObject(const Obj: TObject; const PropertyName: string; out OutObj: TObject): Boolean;
function GetPropertyAsClass(const Obj: TObject; const PropertyName: string): TClass;
function TryGetPropertyAsClass(const Obj: TObject; const PropertyName: string; out OutClass: TClass): Boolean;
function SetPropertyText(Obj: TObject; PropertyName: string; Text: string): Boolean;
function GetPropertyText(Obj: TObject; const PropertyName, Default: string): string;
function SetPropertyIntValue(Obj: TObject; PropertyName: string; Value: integer): Boolean;
function GetPropertyIntValue(Obj: TObject; const PropertyName: string; const Default: integer): integer;
{$IFDEF DELPHIXE3_OR_ABOVE}
function SetPropertyStyleElementsValue(Obj: TObject; const AValue: TStyleElements): Boolean;
{$ENDIF}
function GetRttiMethod(Obj: TObject; const MethodName: string): TRttiMethod;
{$ENDIF}
implementation
{$IFDEF HAS_RTTI}
function SetPropertyText(Obj: TObject; PropertyName: string; Text: string): Boolean;
var
RContext: TRttiContext;
RType: TRttiType;
RProperty: TRttiProperty;
Kind: TTypeKind;
UPropName: string;
begin
Result := False;
if not Assigned(Obj) then Exit;
UPropName := UpperCase(PropertyName);
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for RProperty in RType.GetProperties do
begin
if UpperCase(RProperty.Name) = UPropName then
begin
if not RProperty.IsWritable then Exit;
Kind := RProperty.GetValue(Obj).Kind;
{$IFDEF FPC}
{
https://www.freepascal.org/docs-html/rtl/system/ttypekind.html
tkSString - short string
tkLString - long string
tkAString - ansi string
tkWString - wide string
tkUString - unicode string
typinfo.pp: tkString = tkSString
}
if Kind in [tkSString, tkLString, tkAString, tkUString, tkWString] then RProperty.SetValue(Obj, Text)
else Exit;
{$ELSE}
// https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.TypInfo.TTypeKinds
if (Kind = tkUString) or (Kind = tkString) or (Kind = tkLString) then RProperty.SetValue(Obj, Text)
else if Kind = tkWString then RProperty.SetValue(Obj, WideString(Text))
else Exit;
{$ENDIF}
Result := True;
end;
end;
finally
RContext.Free;
end;
end;
function GetPropertyText(Obj: TObject; const PropertyName, Default: string): string;
var
RContext: TRttiContext;
RType: TRttiType;
RProperty: TRttiProperty;
Kind: TTypeKind;
UPropName: string;
Value: TValue;
begin
Result := Default;
if not Assigned(Obj) then Exit;
UPropName := UpperCase(PropertyName);
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for RProperty in RType.GetProperties do
begin
if UpperCase(RProperty.Name) = UPropName then
begin
if not RProperty.IsReadable then Exit;
Kind := RProperty.GetValue(Obj).Kind;
{$IFDEF FPC}
if Kind in [tkSString, tkLString, tkAString, tkUString, tkWString] then
{$ELSE}
if (Kind = tkUString) or (Kind = tkString) or (Kind = tkLString) or (Kind = tkWString) then
{$ENDIF}
begin
Value := RProperty.GetValue(Obj);
Result := Value.AsString;
end;
end;
end;
finally
RContext.Free;
end;
end;
function SetPropertyIntValue(Obj: TObject; PropertyName: string; Value: integer): Boolean;
var
RContext: TRttiContext;
RType: TRttiType;
RProperty: TRttiProperty;
Kind: TTypeKind;
UPropName: string;
begin
Result := False;
if not Assigned(Obj) then Exit;
UPropName := UpperCase(PropertyName);
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for RProperty in RType.GetProperties do
begin
if UpperCase(RProperty.Name) = UPropName then
begin
if not RProperty.IsWritable then Exit;
Kind := RProperty.GetValue(Obj).Kind;
if Kind <> tkInteger then Exit;
RProperty.SetValue(Obj, Value);
Result := True;
end;
end;
finally
RContext.Free;
end;
end;
function GetPropertyIntValue(Obj: TObject; const PropertyName: string; const Default: integer): integer;
var
RContext: TRttiContext;
RType: TRttiType;
RProperty: TRttiProperty;
Kind: TTypeKind;
UPropName: string;
Value: TValue;
begin
Result := Default;
if not Assigned(Obj) then Exit;
UPropName := UpperCase(PropertyName);
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for RProperty in RType.GetProperties do
begin
if UpperCase(RProperty.Name) = UPropName then
begin
if not RProperty.IsReadable then Exit;
Kind := RProperty.GetValue(Obj).Kind;
if (Kind = tkInteger) then
begin
Value := RProperty.GetValue(Obj);
Result := Value.AsInteger;
end;
end;
end;
finally
RContext.Free;
end;
end;
function GetPropertyAsObject(const Obj: TObject; const PropertyName: string): TObject;
var
RContext: TRttiContext;
RType: TRttiType;
RProperty: TRttiProperty;
UPropName: string;
begin
Result := nil;
if not Assigned(Obj) then Exit;
UPropName := UpperCase(PropertyName);
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for RProperty in RType.GetProperties do
begin
if UpperCase(RProperty.Name) = UPropName then
begin
{$IFDEF FPC}
if RProperty.PropertyType.TypeKind = tkClass then Result := RProperty.GetValue(Obj).AsObject;
{$ELSE}
if RProperty.PropertyType.TypeKind = tkClass then Result := RProperty.GetValue(Obj).AsType<TObject>;
{$ENDIF}
Break;
end;
end;
finally
RContext.Free;
end;
end;
function TryGetPropertyAsObject(const Obj: TObject; const PropertyName: string; out OutObj: TObject): Boolean;
begin
OutObj := GetPropertyAsObject(Obj, PropertyName);
Result := OutObj <> nil;
end;
function GetPropertyAsClass(const Obj: TObject; const PropertyName: string): TClass;
var
RContext: TRttiContext;
RType: TRttiType;
RProperty: TRttiProperty;
UPropName: string;
begin
Result := nil;
if not Assigned(Obj) then Exit;
UPropName := UpperCase(PropertyName);
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for RProperty in RType.GetProperties do
begin
if UpperCase(RProperty.Name) = UPropName then
begin
if RProperty.PropertyType.TypeKind = tkClass then Result := TRttiInstanceType(RProperty.PropertyType).MetaclassType;
Break;
end;
end;
finally
RContext.Free;
end;
end;
function TryGetPropertyAsClass(const Obj: TObject; const PropertyName: string; out OutClass: TClass): Boolean;
begin
OutClass := GetPropertyAsClass(Obj, PropertyName);
Result := OutClass <> nil;
end;
{$IFDEF DELPHIXE3_OR_ABOVE}
function SetPropertyStyleElementsValue(Obj: TObject; const AValue: TStyleElements): Boolean;
var
RContext: TRttiContext;
RType: TRttiType;
RProperty: TRttiProperty;
Kind: TTypeKind;
UPropName: string;
Value: TValue;
begin
Result := False;
if not Assigned(Obj) then Exit;
UPropName := 'STYLEELEMENTS';
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for RProperty in RType.GetProperties do
begin
if UpperCase(RProperty.Name) = UPropName then
begin
if not RProperty.IsWritable then Exit;
Kind := RProperty.GetValue(Obj).Kind;
if Kind <> tkSet then Exit;
Value := RProperty.GetValue(Obj);
Result := True;
try
TValue.Make(@AValue, TypeInfo(TStyleElements), Value);
RProperty.SetValue(Obj, Value);
except
Result := False;
end;
end;
end;
finally
RContext.Free;
end;
end;
{$ENDIF}
function GetRttiMethod(Obj: TObject; const MethodName: string): TRttiMethod;
var
RContext: TRttiContext;
RType: TRttiType;
Method: TRttiMethod;
uName: string;
begin
Result := nil;
if not Assigned(Obj) then Exit;
uName := UpperCase(MethodName);
RContext := TRttiContext.Create;
try
RType := RContext.GetType(Obj.ClassType);
for Method in RType.GetMethods do
begin
if UpperCase(Method.Name) = uName then
begin
Result := Method;
Break;
end;
end;
finally
RContext.Free;
end;
end;
{$ENDIF} // HAS_RTTI
end.