-
Notifications
You must be signed in to change notification settings - Fork 21
/
Duktape.Glue.pas
460 lines (404 loc) · 13.5 KB
/
Duktape.Glue.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
unit Duktape.Glue;
{$INCLUDE 'Grijjy.inc'}
interface
uses
System.Rtti,
System.TypInfo,
System.SysUtils,
System.Generics.Collections,
Duktape,
Duktape.Api;
type
TdgProc = procedure;
TdgProc<T1> = procedure(const AArg1: T1);
TdgProc<T1, T2> = procedure(const AArg1: T1; const AArg2: T2);
TdgProc<T1, T2, T3> = procedure(const AArg1: T1; const AArg2: T2;
const AArg3: T3);
TdgProc<T1, T2, T3, T4> = procedure(const AArg1: T1; const AArg2: T2;
const AArg3: T3; const AArg4: T4);
TdgFunc<TResult> = function: TResult;
TdgFunc<T1, TResult> = function(const AArg1: T1): TResult;
TdgFunc<T1, T2, TResult> = function(const AArg1: T1; const AArg2: T2): TResult;
TdgFunc<T1, T2, T3, TResult> = function(const AArg1: T1; const AArg2: T2;
const AArg3: T3): TResult;
TdgFunc<T1, T2, T3, T4, TResult> = function(const AArg1: T1; const AArg2: T2;
const AArg3: T3; const AArg4: T4): TResult;
type
PdgInvokable = ^TdgInvokable;
TdgInvokable = record
public
CodeAddress: Pointer;
ReturnType: PTypeInfo;
ArgCount: Integer;
IsStatic: Boolean;
IsConstructor: Boolean;
// ArgTypes: array [0..0] of PTypeInfo;
{$REGION 'Internal Declarations'}
private
function GetArgTypes: PPTypeInfo; inline;
{$ENDREGION 'Internal Declarations'}
public
property ArgTypes: PPTypeInfo read GetArgTypes;
end;
type
{ High-level Duktape class }
TDukGlue = class
{$REGION 'Internal Declarations'}
private const
PROP_INVOKABLE = #$FF'Invokable';
private
FDuktape: TDuktape;
FInvokables: TList<PdgInvokable>;
function GetContext: PDukContext; inline;
private
procedure RegisterProc(const AAddress: Pointer; const AName: String;
const AArgTypes: array of PTypeInfo; const AReturnType: PTypeInfo);
private
class function NativeProc(const ADuktape: TDuktape): TdtResult; cdecl; static;
class function ScriptArgToValue(const ADuktape: TDuktape;
const AArgIndex: Integer; const AArgType: PTypeInfo;
out AValue: TValue): Boolean; static;
class function PushValue(const ADuktape: TDuktape; const AValue: TValue;
const AType: PTypeInfo): Boolean; static;
class function TypeToString(const AType: TdtType): String; static;
{$ENDREGION 'Internal Declarations'}
public
{ Creates a new Duktape context and heap.
Parameters:
AUseDelphiMemoryManager: whether to use Delphi's memory manager.
When False (default), the system memory manager is used. Set to True
to have Delphi manage all memory (de)allocations for Duktape. That is
useful if you want to check for memory leaks using the
ReportMemoryLeaksOnShutdown global variable. }
constructor Create(const AUseDelphiMemoryManager: Boolean = False);
{ Destroys the Duktape context and heap. }
destructor Destroy; override;
public
procedure RegisterProcedure(const AProc: TdgProc;
const AName: String); overload;
procedure RegisterProcedure<T1>(const AProc: TdgProc<T1>;
const AName: String); overload;
procedure RegisterProcedure<T1, T2>(const AProc: TdgProc<T1, T2>;
const AName: String); overload;
procedure RegisterProcedure<T1, T2, T3>(const AProc: TdgProc<T1, T2, T3>;
const AName: String); overload;
procedure RegisterProcedure<T1, T2, T3, T4>(
const AProc: TdgProc<T1, T2, T3, T4>; const AName: String); overload;
procedure RegisterFunction<TResult>(
const AFunc: TdgFunc<TResult>; const AName: String); overload;
procedure RegisterFunction<T1, TResult>(
const AFunc: TdgFunc<T1, TResult>; const AName: String); overload;
procedure RegisterFunction<T1, T2, TResult>(
const AFunc: TdgFunc<T1, T2, TResult>; const AName: String); overload;
procedure RegisterFunction<T1, T2, T3, TResult>(
const AFunc: TdgFunc<T1, T2, T3, TResult>; const AName: String); overload;
procedure RegisterFunction<T1, T2, T3, T4, TResult>(
const AFunc: TdgFunc<T1, T2, T3, T4, TResult>; const AName: String); overload;
public
{ Access to the medium-level Duktape wrapper }
property Duktape: TDuktape read FDuktape;
{ Access to the low-level Duktape context handle }
property Context: PDukContext read GetContext;
end;
implementation
{ TDukGlue }
constructor TDukGlue.Create(const AUseDelphiMemoryManager: Boolean);
begin
inherited Create;
FDuktape := TDuktape.Create(AUseDelphiMemoryManager);
FInvokables := TList<PdgInvokable>.Create;
end;
destructor TDukGlue.Destroy;
var
I: Integer;
begin
if Assigned(FInvokables) then
begin
for I := 0 to FInvokables.Count - 1 do
FreeMem(FInvokables[I]);
FInvokables.Free;
end;
FDuktape.Free;
inherited;
end;
function TDukGlue.GetContext: PDukContext;
begin
Result := FDuktape.Context;
end;
class function TDukGlue.NativeProc(const ADuktape: TDuktape): TdtResult;
var
Invokable: PdgInvokable;
ArgType: PPTypeInfo;
Args: TArray<TValue>;
ReturnValue: TValue;
ArgCount, I: Integer;
begin
ADuktape.PushCurrentFunction;
ADuktape.GetProp(-1, PROP_INVOKABLE);
Invokable := ADuktape.RequirePointer(-1);
if (Invokable = nil) then
begin
ADuktape.Error(TdtErrCode.Error, 'Internal NativeProc error');
Exit(TdtResult.Error);
end;
ADuktape.Pop2;
ArgCount := Invokable.ArgCount;
SetLength(Args, ArgCount);
if (ArgCount > 0) then
begin
ArgType := Invokable.ArgTypes;
for I := 0 to ArgCount - 1 do
begin
if (not ScriptArgToValue(ADuktape, I, ArgType^, Args[I])) then
Exit(TdtResult.TypeError);
Inc(ArgType);
end;
end;
ReturnValue := Invoke(Invokable.CodeAddress, Args, TCallConv.ccReg,
Invokable.ReturnType, Invokable.IsStatic, Invokable.IsConstructor);
if Assigned(Invokable.ReturnType) then
begin
if (PushValue(ADuktape, ReturnValue, Invokable.ReturnType)) then
Result := TdtResult.HasResult
else
Result := TdtResult.TypeError;
end
else
Result := TdtResult.NoResult;
end;
class function TDukGlue.PushValue(const ADuktape: TDuktape;
const AValue: TValue; const AType: PTypeInfo): Boolean;
var
TypeData: PTypeData;
S: DuktapeString;
begin
case AType.Kind of
tkInteger:
begin
TypeData := GetTypeData(AType);
if (TypeData.MinValue < 0) then
ADuktape.PushInt(AValue.AsInteger)
else
ADuktape.PushUInt(AValue.AsOrdinal);
end;
tkInt64:
ADuktape.PushNumber(AValue.AsInt64);
tkEnumeration:
begin
if (AType = TypeInfo(Boolean)) then
ADuktape.PushBoolean(AValue.AsBoolean)
else
ADuktape.PushInt(AValue.AsOrdinal);
end;
tkFloat:
ADuktape.PushNumber(AValue.AsType<Double>);
tkLString,
tkUString:
begin
S := DuktapeString(AValue.AsString);
ADuktape.PushString(S);
end;
end;
Result := True;
end;
procedure TDukGlue.RegisterFunction<TResult>(const AFunc: TdgFunc<TResult>;
const AName: String);
begin
RegisterProc(@AFunc, AName, [], TypeInfo(TResult));
end;
procedure TDukGlue.RegisterFunction<T1, TResult>(
const AFunc: TdgFunc<T1, TResult>; const AName: String);
begin
RegisterProc(@AFunc, AName, [TypeInfo(T1)], TypeInfo(TResult));
end;
procedure TDukGlue.RegisterFunction<T1, T2, TResult>(
const AFunc: TdgFunc<T1, T2, TResult>; const AName: String);
begin
RegisterProc(@AFunc, AName, [TypeInfo(T1), TypeInfo(T2)], TypeInfo(TResult));
end;
procedure TDukGlue.RegisterFunction<T1, T2, T3, TResult>(
const AFunc: TdgFunc<T1, T2, T3, TResult>; const AName: String);
begin
RegisterProc(@AFunc, AName, [TypeInfo(T1), TypeInfo(T2),
TypeInfo(T3)], TypeInfo(TResult));
end;
procedure TDukGlue.RegisterFunction<T1, T2, T3, T4, TResult>(
const AFunc: TdgFunc<T1, T2, T3, T4, TResult>; const AName: String);
begin
RegisterProc(@AFunc, AName, [TypeInfo(T1), TypeInfo(T2), TypeInfo(T3),
TypeInfo(T4)], TypeInfo(TResult));
end;
procedure TDukGlue.RegisterProc(const AAddress: Pointer; const AName: String;
const AArgTypes: array of PTypeInfo; const AReturnType: PTypeInfo);
var
Invokable: PdgInvokable;
begin
{ TODO : Check if AArgTypes and AReturnType are usuable with Duktape }
GetMem(Invokable, SizeOf(TdgInvokable) + (Length(AArgTypes) * SizeOf(PTypeInfo)));
FInvokables.Add(Invokable);
Invokable.CodeAddress := AAddress;
Invokable.ReturnType := AReturnType;
Invokable.ArgCount := Length(AArgTypes);
Invokable.IsStatic := True;
Invokable.IsConstructor := False;
if (Length(AArgTypes) > 0) then
Move(AArgTypes[0], Invokable.ArgTypes^, Length(AArgTypes) * SizeOf(PTypeInfo));
FDuktape.PushDelphiFunction(NativeProc, Length(AArgTypes));
FDuktape.PushPointer(Invokable);
FDuktape.PutProp(-2, PROP_INVOKABLE);
FDuktape.PutGlobalString(DuktapeString(AName));
end;
procedure TDukGlue.RegisterProcedure(const AProc: TdgProc; const AName: String);
begin
RegisterProc(@AProc, AName, [], nil);
end;
procedure TDukGlue.RegisterProcedure<T1>(const AProc: TdgProc<T1>;
const AName: String);
begin
RegisterProc(@AProc, AName, [TypeInfo(T1)], nil);
end;
procedure TDukGlue.RegisterProcedure<T1, T2>(const AProc: TdgProc<T1, T2>;
const AName: String);
begin
RegisterProc(@AProc, AName, [TypeInfo(T1), TypeInfo(T2)], nil);
end;
procedure TDukGlue.RegisterProcedure<T1, T2, T3>(
const AProc: TdgProc<T1, T2, T3>; const AName: String);
begin
RegisterProc(@AProc, AName, [TypeInfo(T1), TypeInfo(T2), TypeInfo(T3)], nil);
end;
procedure TDukGlue.RegisterProcedure<T1, T2, T3, T4>(
const AProc: TdgProc<T1, T2, T3, T4>; const AName: String);
begin
RegisterProc(@AProc, AName, [TypeInfo(T1), TypeInfo(T2), TypeInfo(T3),
TypeInfo(T4)], nil);
end;
class function TDukGlue.ScriptArgToValue(const ADuktape: TDuktape;
const AArgIndex: Integer; const AArgType: PTypeInfo;
out AValue: TValue): Boolean;
var
TypeData: PTypeData;
S: Single;
D: Double;
E: Extended;
CU: Currency;
begin
case AArgType.Kind of
tkInteger,
tkInt64:
begin
if (not ADuktape.IsNumber(AArgIndex)) then
begin
ADuktape.Error(TdtErrCode.TypeError,
DuktapeString(Format('Argument %d: expected numeric type but got type "%s"',
[AArgIndex, TypeToString(ADuktape.GetType(AArgIndex))])));
Exit(False);
end;
if (AArgType.Kind = tkInt64) then
AValue := Trunc(ADuktape.GetNumber(AArgIndex))
else
begin
TypeData := GetTypeData(AArgType);
if (TypeData.MinValue < 0) then
AValue := TValue.FromOrdinal(AArgType, ADuktape.GetInt(AArgIndex))
else
AValue := TValue.FromOrdinal(AArgType, ADuktape.GetUInt(AArgIndex));
end;
end;
tkEnumeration:
begin
if (AArgType = TypeInfo(Boolean)) then
begin
if (not ADuktape.IsBoolean(AArgIndex)) then
begin
ADuktape.Error(TdtErrCode.TypeError,
DuktapeString(Format('Argument %d: expected boolean type but got type "%s"',
[AArgIndex, TypeToString(ADuktape.GetType(AArgIndex))])));
Exit(False);
end;
AValue := ADuktape.GetBoolean(AArgIndex);
end
else
Exit(ScriptArgToValue(ADuktape, AArgIndex, TypeInfo(Integer), AValue));
end;
tkFloat:
begin
if (not ADuktape.IsNumber(AArgIndex)) then
begin
ADuktape.Error(TdtErrCode.TypeError,
DuktapeString(Format('Argument %d: expected numeric type but got type "%s"',
[AArgIndex, TypeToString(ADuktape.GetType(AArgIndex))])));
Exit(False);
end;
TypeData := GetTypeData(AArgType);
case TypeData.FloatType of
ftSingle:
begin
S := ADuktape.GetNumber(AArgIndex);
AValue := S;
end;
ftDouble:
begin
D := ADuktape.GetNumber(AArgIndex);
AValue := D;
end;
ftExtended:
begin
E := ADuktape.GetNumber(AArgIndex);
AValue := E;
end;
ftCurr:
begin
CU := ADuktape.GetNumber(AArgIndex);
AValue := CU;
end;
else
Assert(False);
end;
end;
tkUString,
tkLString:
begin
if (not ADuktape.IsString(AArgIndex)) then
begin
ADuktape.Error(TdtErrCode.TypeError,
DuktapeString(Format('Argument %d: expected string type but got type "%s"',
[AArgIndex, TypeToString(ADuktape.GetType(AArgIndex))])));
Exit(False);
end;
if (AArgType.Kind = tkUString) then
AValue := String(ADuktape.GetString(AArgIndex))
else
AValue := TValue.From<DuktapeString>(ADuktape.GetString(AArgIndex));
end;
else
ADuktape.Error(TdtErrCode.TypeError,
DuktapeString(Format('Argument %d: unsupported type "%s"',
[AArgIndex, TypeToString(ADuktape.GetType(AArgIndex))])));
Exit(False);
end;
Result := True;
end;
class function TDukGlue.TypeToString(const AType: TdtType): String;
begin
case AType of
TdtType.None: Result := '(none)';
TdtType.Undefined: Result := 'undefined';
TdtType.Null: Result := 'null';
TdtType.Boolean: Result := 'boolean';
TdtType.Number: Result := 'number';
TdtType.Str: Result := 'string';
TdtType.Obj: Result := 'object';
TdtType.Buffer: Result := 'buffer';
TdtType.Pointer: Result := 'pointer';
TdtType.LightFunc: Result := 'lightfunc';
else
Result := '(invalid)';
end;
end;
{ TdgInvokable }
function TdgInvokable.GetArgTypes: PPTypeInfo;
begin
Result := Pointer(PByte(@Self) + SizeOf(TdgInvokable));
end;
end.