-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathVarRecs.pas
394 lines (365 loc) · 13.7 KB
/
VarRecs.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
unit VarRecs;
{******************************************************************************}
{* Unit for Conversion of TVarRec Types *}
{* Revolutionary Confederation of Anarcho Syndicalists *}
{* Written by: black.rabbit 2010 *}
{******************************************************************************}
interface
{$I 'std.inc'}
uses
Windows, SysUtils, DateUtils,
Utils;
type
array_of_const = array of TVarRec;
function toBoolean (const aValue: TVarRec) : Boolean; overload;
function toDateTime (const aValue: TVarRec) : TDateTime; overload;
function toDate (const aValue: TVarRec) : TDateTime; overload;
function toTime (const aValue: TVarRec) : TDateTime; overload;
function toPointer (const aValue: TVarRec) : Pointer; overload;
function toObject (const aValue: TVarRec) : TObject; overload;
function toClass (const aValue: TVarRec) : TClass; overload;
function toInteger (const aValue: TVarRec) : Integer; overload;
function toString (const aValue: TVarRec) : String; overload;
function toExtended (const aValue: TVarRec) : Extended; overload;
function toDouble (const aValue: TVarRec) : Double; overload;
function toInt64 (const aValue: TVarRec) : Int64; overload;
function toArrayOfConst (const aValue: TVarRec) : array_of_const; overload;
function _array_of_const (anArgs: array of const) : array_of_const;
function _(anArgs: array of const) : array_of_const; overload;
function merge (anArgs1, anArgs2: array of const) : array_of_const; overload;
function _(anArgs1, anArgs2: array of const) : array_of_const; overload;
function isEmpty (const anIndex: Integer; anArgs: array of const) : Boolean; overload;
function notEmpty (const anIndex: Integer; anArgs: array of const) : Boolean; overload;
implementation
{ TVarRec }
function toBoolean (const aValue: TVarRec) : Boolean;
begin
Result := FALSE;
with aValue do
try
case VType of
vtInteger : Result := IntToBoolean (VInteger);
vtBoolean : Result := VBoolean;
vtChar : Result := StrToBoolean ( VChar );
vtExtended : Result := IntToBoolean ( Round (VExtended^) );
vtString : Result := StrToBoolean (VString^);
vtPointer : Result := StrToBoolean ( StrPas (VPChar) );
vtPChar : Result := StrToBoolean ( StrPas (VPChar) );
vtWideChar : Result := StrToBoolean ( Char (VWideChar) );
vtPWideChar : Result := StrToBoolean ( WideCharToString (VPWideChar) );
vtAnsiString : Result := StrToBoolean ( String (VAnsiString) );
vtCurrency : Result := IntToBoolean ( Round (VExtended^) );
vtVariant : Result := Boolean (VVariant^);
vtWideString : Result := StrToBoolean ( WideCharToString (VWideString) );
vtInt64 : Result := IntToBoolean ( Integer (VInt64^) );
end;
except
Result := FALSE;
end;
end;
function toDateTime (const aValue: TVarRec) : TDateTime;
begin
Result := 0.0;
with aValue do
try
case VType of
vtInt64 : Result := UnixToDateTime (VInt64^);
vtInteger : Result := UnixToDateTime (VInteger);
vtExtended : Result := VExtended^;
vtVariant : Result := Extended (VVariant^);
vtString : Result := StrToDateTime (VString^);
vtPointer : Result := StrToDateTime ( StrPas (VPChar) );
vtPChar : Result := StrToDateTime ( StrPas (VPChar) );
vtAnsiString : Result := StrToDateTime ( String (VAnsiString) );
vtPWideChar : Result := StrToDateTime ( WideCharToString (VPWideChar) );
vtWideString : Result := StrToDateTime ( WideCharToString (VWideString) );
end;
except
Result := 0.0;
end;
end;
function toDate (const aValue: TVarRec) : TDateTime;
begin
Result := 0.0;
with aValue do
try
case VType of
vtInt64 : Result := VInt64^;
vtInteger : Result := VInteger;
vtExtended : Result := Trunc (VExtended^);
vtVariant : Result := Trunc ( Extended (VVariant^) );
vtString : Result := StrToDate (VString^);
vtPointer : Result := StrToDate ( StrPas (VPChar) );
vtPChar : Result := StrToDate ( StrPas (VPChar) );
vtAnsiString : Result := StrToDate ( String (VAnsiString) );
vtPWideChar : Result := StrToDate ( WideCharToString (VPWideChar) );
vtWideString : Result := StrToDate ( WideCharToString (VWideString) );
end;
except
Result := 0.0;
end;
end;
function toTime (const aValue: TVarRec) : TDateTime;
begin
Result := 0.0;
with aValue do
try
case VType of
vtInt64 : Result := Frac ( UnixToDateTime (VInt64^) );
vtInteger : Result := Frac ( UnixToDateTime (VInteger) );
vtExtended : Result := Frac (VExtended^);
vtVariant : Result := Frac ( Extended (VVariant^) );
vtString : Result := StrToTime (VString^);
vtPointer : Result := StrToTime ( StrPas (VPChar) );
vtPChar : Result := StrToTime ( StrPas (VPChar) );
vtAnsiString : Result := StrToTime ( String (VAnsiString) );
vtPWideChar : Result := StrToTime ( WideCharToString (VPWideChar) );
vtWideString : Result := StrToTime ( WideCharToString (VWideString) );
end;
except
Result := 0.0;
end;
end;
function toPointer (const aValue: TVarRec) : Pointer;
begin
Result := NIL;
with aValue do
try
case VType of
vtPointer : Result := VPointer;
vtClass : Result := VClass;
vtObject : Result := VObject;
end;
except
Result := NIL;
end;
end;
function toObject (const aValue: TVarRec) : TObject;
begin
Result := NIL;
with aValue do
try
case VType of
vtObject : Result := VObject;
{vtPointer : if Assigned (VPointer) and isObject (VPointer) then
Result := TObject (VPointer);}
end;
except
Result := NIL;
end;
end;
function toClass (const aValue: TVarRec) : TClass;
begin
Result := NIL;
with aValue do
try
case VType of
vtClass : Result := VClass;
vtObject : Result := VObject.ClassType;
{vtPointer : if Assigned (VPointer) and isClass (VPointer) then
Result := TClass (VPointer);}
end;
except
Result := NIL;
end;
end;
function toInteger (const aValue: TVarRec) : Integer;
begin
Result := 0;
with aValue do
try
case VType of
vtVariant : Result := Integer (VVariant^);
vtInteger : Result := VInteger;
vtInt64 : Result := Integer (VInt64^);
vtPointer : Result := Longint (VPointer);
vtObject : Result := Longint (VObject);
vtClass : Result := Longint (VClass);
vtInterface : Result := Longint (VInterface);
vtBoolean : Result := BooleanToInt (VBoolean);
vtString : Result := StrToInt (VString^);
vtChar : Result := StrToInt (VChar);
vtPChar : Result := StrToInt ( StrPas (VPChar) );
vtAnsiString : Result := StrToInt ( String (VAnsiString) );
vtWideChar : Result := StrToInt ( Char (VWideChar) );
vtPWideChar : Result := StrToInt ( WideCharToString (VPWideChar) );
vtWideString : Result := StrToInt ( WideCharToString (VWideString) );
end;
except
Result := 0;
end;
end;
function toString (const aValue: TVarRec) : String;
begin
Result := '';
with aValue do
try
case VType of
vtInteger : Result := IntToStr (VInteger);
vtBoolean : Result := BooleanToStr (VBoolean);
vtChar : Result := VChar;
vtExtended : Result := FloatToStr (VExtended^);
vtString : Result := VString^;
vtPointer : Result := IntToStr ( Longint (VPointer) );
vtPChar : Result := StrPas (VPChar);
vtObject : if Assigned (VObject) then
Result := VObject.ClassName;
vtClass : if Assigned (VClass) then
Result := VClass.ClassName;
vtAnsiString : Result := String (VAnsiString);
vtWideChar : Result := Char (VWideChar);
vtPWideChar : Result := WideCharToString (VPWideChar);
vtWideString : Result := WideCharToString (VWideString);
vtCurrency : Result := FloatToStr (VCurrency^);
vtInt64 : Result := IntToStr (VInt64^);
vtVariant : Result := VVariant^;
end;
except
Result := '';
end;
end;
function toExtended (const aValue: TVarRec) : Extended;
begin
Result := 0.0;
with aValue do
try
case VType of
vtExtended : Result := VExtended^;
vtCurrency : Result := VCurrency^;
vtVariant : Result := Extended (VVariant^);
vtInteger : Result := VInteger;
vtInt64 : Result := Integer (VInt64^);
vtPointer : Result := Longint (VPointer);
vtObject : Result := Longint (VObject);
vtClass : Result := Longint (VClass);
vtInterface : Result := Longint (VInterface);
vtBoolean : Result := BooleanToInt (VBoolean);
vtString : Result := StrToFloat (VString^);
vtChar : Result := StrToFloat (VChar);
vtPChar : Result := StrToFloat ( StrPas (VPChar) );
vtAnsiString : Result := StrToFloat ( String (VAnsiString) );
vtWideChar : Result := StrToFloat ( Char (VWideChar) );
vtPWideChar : Result := StrToFloat ( WideCharToString (VPWideChar) );
vtWideString : Result := StrToFloat ( WideCharToString (VWideString) );
end;
except
Result := 0.0;
end;
end;
function toDouble (const aValue: TVarRec) : Double;
begin
Result := toExtended (aValue);
end;
function toInt64 (const aValue: TVarRec) : Int64;
begin
Result := 0;
with aValue do
try
case VType of
vtInt64 : Result := VInt64^;
vtInteger : Result := VInteger;
vtExtended : Move ( VExtended^, Result, SizeOf (Int64) );
vtVariant : Result := Integer (VVariant^);
vtPointer : Result := Longint (VPointer);
vtObject : Result := Longint (VObject);
vtClass : Result := Longint (VClass);
vtInterface : Result := Longint (VInterface);
vtBoolean : Result := BooleanToInt (VBoolean);
vtString : Result := StrToInt64 (VString^);
vtChar : Result := StrToInt64 (VChar);
vtPChar : Result := StrToInt64 ( StrPas (VPChar) );
vtAnsiString : Result := StrToInt64 ( String (VAnsiString) );
vtWideChar : Result := StrToInt64 ( Char (VWideChar) );
vtPWideChar : Result := StrToInt64 ( WideCharToString (VPWideChar) );
vtWideString : Result := StrToInt64 ( WideCharToString (VWideString) );
end;
except
Result := 0;
end;
end;
function toArrayOfConst (const aValue: TVarRec) : array_of_const;
begin
Result := _([]);
with aValue do
try
case VType of
vtPointer : Result := VPointer;
end;
except
Result := _([]);
end;
end;
function _array_of_const (anArgs: array of const) : array_of_const;
var
I : WORD;
Index : WORD;
Length : WORD;
begin
Length := 0;
if ( High (anArgs) >= 0 ) then
Length := Length + High (anArgs) - Low (anArgs) +1;
if ( Length > 0 ) then
begin
SetLength (Result,Length);
Index := 0;
for I := Low (anArgs) to High (anArgs) do
begin
Result [Index] := anArgs [I];
Inc (Index);
end;
end;
end;
function _(anArgs: array of const) : array_of_const;
begin
Result := _array_of_const (anArgs);
end;
{ merge array of const }
function merge (anArgs1, anArgs2: array of const) : array_of_const;
var
I : WORD;
Index : WORD;
Length : WORD;
begin
Result := _([]);
try
Length := 0;
if ( High (anArgs1) >= 0 ) then
Length := Length + High (anArgs1) - Low (anArgs1) +1;
if ( High (anArgs2) >= 0 ) then
Length := Length + High (anArgs2) - Low (anArgs2) +1;
if ( Length > 0 ) then
begin
SetLength (Result,Length);
Index := 0;
if ( High (anArgs1) >= 0 ) then
for I := Low (anArgs1) to High (anArgs1) do
begin
Result [Index] := anArgs1 [I];
Inc (Index);
end;
if ( High (anArgs2) >= 0 ) then
for I := Low (anArgs2) to High (anArgs2) do
begin
Result [Index] := anArgs2 [I];
Inc (Index);
end;
end;
except
Result := _([]);
end;
end;
function _(anArgs1, anArgs2: array of const) : array_of_const;
begin
Result := merge (anArgs1,anArgs2);
end;
function isEmpty (const anIndex: Integer; anArgs: array of const) : Boolean;
begin
Result := ( ( High (anArgs) < anIndex ) or
( toString (anArgs [anIndex]) = 'NULL' ) );
end;
function notEmpty (const anIndex: Integer; anArgs: array of const) : Boolean;
begin
Result := ( ( High (anArgs) >= anIndex ) and
( toString (anArgs [anIndex]) <> 'NULL' ) );
end;
end.