-
Notifications
You must be signed in to change notification settings - Fork 0
/
JSNatives.pas
2541 lines (2223 loc) · 63.9 KB
/
JSNatives.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 JSNatives;
interface
uses
System.Generics.Collections, jsonEx, sysutils, classes, v8, System.strutils,
wmipc, messages, XSuperObject, XSuperJSON, windows, gfxcore, udputils, jstts,
activex, Winapi.ShellAPI, console, vcl.Dialogs, utils, jsdownloader;
var
VM: Pv8Engine;
winh: THandle;
hotkeys: TDictionary<word, string>;
keys: TDictionary<word, string>;
keyhook: array of string;
var
CriticalSection: TRTLCriticalSection;
const
MONITOR_ON = -1;
MONITOR_OFF = 2;
MONITOR_STANDBY = 1;
type
TLockWorkStation = function: Boolean;
TExtproc = procedure(handle: dword);
Textension = record
handle: THandle;
proc: TExtproc;
path: string;
end;
var
hUser32: HModule;
LockWorkStation: TLockWorkStation;
procedure _unixtime(_info: V8FunctionCallbackInfo); cdecl;
procedure _millis(_info: V8FunctionCallbackInfo); cdecl;
procedure _LoadExtension(_info: V8FunctionCallbackInfo); cdecl;
procedure LoadJson(_info: V8FunctionCallbackInfo) cdecl;
procedure __DebugStr(str: ansistring; engine: Pv8Engine);
// sapi
procedure _TTSSpeak(_info: V8FunctionCallbackInfo); cdecl;
// filesystem
procedure _md5file(_info: V8FunctionCallbackInfo); cdecl;
procedure _fileDelete(_info: V8FunctionCallbackInfo); cdecl;
procedure _fileRename(_info: V8FunctionCallbackInfo); cdecl;
procedure _fileExists(_info: V8FunctionCallbackInfo); cdecl;
procedure _dirCreate(_info: V8FunctionCallbackInfo); cdecl;
procedure _filewrite(_info: V8FunctionCallbackInfo); cdecl;
procedure _fileAppend(_info: V8FunctionCallbackInfo); cdecl;
procedure _readfile(_info: V8FunctionCallbackInfo); cdecl;
procedure _browse(_info: V8FunctionCallbackInfo); cdecl;
procedure _runfile(_info: V8FunctionCallbackInfo); cdecl;
// timers
procedure _setTimeout(_info: V8FunctionCallbackInfo); cdecl;
procedure _setInterval(_info: V8FunctionCallbackInfo); cdecl;
procedure _clearInterval(_info: V8FunctionCallbackInfo); cdecl;
procedure _clearTimeout(_info: V8FunctionCallbackInfo); cdecl;
// http
procedure _httpget(_info: V8FunctionCallbackInfo); cdecl;
procedure _httpPost(_info: V8FunctionCallbackInfo); cdecl;
procedure _httpDownload(_info: V8FunctionCallbackInfo); cdecl;
// sec
procedure _md5(_info: V8FunctionCallbackInfo); cdecl;
procedure _crc32(_info: V8FunctionCallbackInfo); cdecl;
procedure _sha1(_info: V8FunctionCallbackInfo); cdecl;
// database
procedure _dbquery(_info: V8FunctionCallbackInfo); cdecl;
procedure _dbqueryEx(_info: V8FunctionCallbackInfo); cdecl;
procedure _dbopen(_info: V8FunctionCallbackInfo); cdecl;
procedure _dbclose(_info: V8FunctionCallbackInfo); cdecl;
procedure _dbexec(_info: V8FunctionCallbackInfo); cdecl;
// serial
procedure _portopen(_info: V8FunctionCallbackInfo); cdecl;
procedure _portclose(_info: V8FunctionCallbackInfo); cdecl;
procedure _portwrite(_info: V8FunctionCallbackInfo); cdecl;
procedure _portread(_info: V8FunctionCallbackInfo); cdecl;
procedure _portenum(_info: V8FunctionCallbackInfo); cdecl;
procedure _portavailable(_info: V8FunctionCallbackInfo); cdecl;
// Proc
procedure _proccreate(_info: V8FunctionCallbackInfo); cdecl;
procedure _procPipe(_info: V8FunctionCallbackInfo); cdecl;
procedure _procPing(_info: V8FunctionCallbackInfo); cdecl;
procedure _procRelease(_info: V8FunctionCallbackInfo); cdecl;
procedure _procInfo(_info: V8FunctionCallbackInfo); cdecl;
procedure _procList(_info: V8FunctionCallbackInfo); cdecl;
// HW
procedure _hwlist(_info: V8FunctionCallbackInfo); cdecl;
procedure _wlscan(_info: V8FunctionCallbackInfo); cdecl;
// disk
procedure _disklist(_info: V8FunctionCallbackInfo); cdecl;
// VM
procedure _release(_info: V8FunctionCallbackInfo); cdecl;
procedure _GetWinMsg(_info: V8FunctionCallbackInfo); cdecl;
procedure _GetDevMsg(_info: V8FunctionCallbackInfo); cdecl;
procedure _SetWinMsg(data: ansistring; engine: Pv8Engine);
procedure _SetDevMsg(arrival: Boolean; engine: Pv8Engine);
// natives
procedure _include(_info: V8FunctionCallbackInfo); cdecl;
procedure console_log(_info: V8FunctionCallbackInfo); cdecl;
procedure _alert(_info: V8FunctionCallbackInfo); cdecl;
procedure _confirm(_info: V8FunctionCallbackInfo); cdecl;
procedure _gettickcount(_info: V8FunctionCallbackInfo); cdecl;
procedure _ram(_info: V8FunctionCallbackInfo); cdecl;
procedure JSterminate;
// user routines
procedure _NotifyHotkey(code: integer; engine: Pv8Engine);
procedure _Notifykey(code: integer; engine: Pv8Engine);
procedure _Notifykeys(code: integer; caps: string; engine: Pv8Engine);
procedure _SetHotkey(_info: V8FunctionCallbackInfo); cdecl;
procedure _SetKey(_info: V8FunctionCallbackInfo); cdecl;
procedure _SetKeys(_info: V8FunctionCallbackInfo); cdecl;
procedure _unSetKeys(_info: V8FunctionCallbackInfo); cdecl;
procedure _GetIdle(_info: V8FunctionCallbackInfo); cdecl;
procedure _GetUserName(_info: V8FunctionCallbackInfo); cdecl;
procedure _SendKeys(_info: V8FunctionCallbackInfo); cdecl;
procedure _ScreenShot(_info: V8FunctionCallbackInfo); cdecl;
procedure _GetResolution(_info: V8FunctionCallbackInfo); cdecl;
procedure _ToggleMonitor(_info: V8FunctionCallbackInfo); cdecl;
procedure _Shutdown(_info: V8FunctionCallbackInfo); cdecl;
procedure _Execute(_info: V8FunctionCallbackInfo); cdecl;
procedure _Lock(_info: V8FunctionCallbackInfo); cdecl;
// tcp
procedure _tcplisten(_info: V8FunctionCallbackInfo); cdecl;
procedure _tcpclose(_info: V8FunctionCallbackInfo); cdecl;
procedure _tcpkick(_info: V8FunctionCallbackInfo); cdecl;
procedure _tcpwrite(_info: V8FunctionCallbackInfo); cdecl;
procedure _udpSend(_info: V8FunctionCallbackInfo); cdecl;
procedure _udpListen(_info: V8FunctionCallbackInfo); cdecl;
procedure _udpkill(_info: V8FunctionCallbackInfo); cdecl;
//
procedure _RegEDebug(_info: V8FunctionCallbackInfo); cdecl;
procedure _RegDebug(_info: V8FunctionCallbackInfo); cdecl;
procedure _DebugStr(str: ansistring; engine: Pv8Engine);
procedure _Halt(_info: V8FunctionCallbackInfo); cdecl;
procedure _WriteDebug(_info: V8FunctionCallbackInfo); cdecl;
/// audio
procedure _audstart(_info: V8FunctionCallbackInfo); cdecl;
procedure _audstop(_info: V8FunctionCallbackInfo); cdecl;
procedure _audload(_info: V8FunctionCallbackInfo); cdecl;
procedure _audplay(_info: V8FunctionCallbackInfo); cdecl;
procedure _audspeech(_info: V8FunctionCallbackInfo); cdecl;
procedure _audstream(_info: V8FunctionCallbackInfo); cdecl;
procedure _RegAudio(_info: V8FunctionCallbackInfo); cdecl;
procedure _Audstate(state: integer; engine: Pv8Engine);
///
procedure _findwindow(_info: V8FunctionCallbackInfo); cdecl;
procedure _sendstring(_info: V8FunctionCallbackInfo); cdecl;
procedure _GetCurrentApp(_info: V8FunctionCallbackInfo); cdecl;
procedure _GetCurrentWin(_info: V8FunctionCallbackInfo); cdecl;
procedure _IsFullscreen(_info: V8FunctionCallbackInfo); cdecl;
/// /////
procedure _RegOsEvent(_info: V8FunctionCallbackInfo); cdecl;
procedure _OsEvent(event: integer; engine: Pv8Engine);
procedure _RegMessage(_info: V8FunctionCallbackInfo); cdecl;
procedure _ipcMessage(msg: ansistring; engine: Pv8Engine);
/// //////////
procedure _RegFchange(_info: V8FunctionCallbackInfo); cdecl;
procedure _fchange(str: ansistring; engine: Pv8Engine);
////////////////
procedure _stop(_info: V8FunctionCallbackInfo); cdecl;
implementation
uses
JSfilesystem, JSajax, jsproc, JSCrypt, libserial, jsdb, setupapihelper,
JsTimers, jshwinfo, mod_keyhook, sndkey32tr, stringtools, psyapi, jstcp,
jsaudio, mod_disk, entrypoint;
var
_start: int64;
__killswitch: Boolean;
relbuf: array of string;
msgbuf: array of string;
devbuf: array of string;
dbgbuf: array of string;
audbuf: array of string;
cmdbuf: array of string;
evtbuf: array of string;
debuf: array of string;
febuf: array of string;
extensions: array of Textension;
ihttp, ipost, itts, ipipe: Int64;
function toJson(str: string): string;
var
X: ISuperObject;
begin
X := SO;
X.S['msg'] := trim(str);
result := X.AsJSON();
end;
function cleanStr(str: ansistring): ansistring;
begin
if copy(str, 1, 1) = #27 then
delete(str, 1, 1);
if copy(str, Length(str), 1) = #27 then
delete(str, Length(str), 1);
if copy(str, Length(str) - 1, 1) = #27 then
delete(str, Length(str), 1);
str := AnsiReplaceStr(str, #27, '');
str := AnsiReplaceStr(str, #13, '');
str := AnsiReplaceStr(str, #10, '');
str := quotedstr(str);
result := str;
end;
function geneid(const pfx: string = ''): string;
begin
Randomize;
result := '_' + pfx + inttostr(gettickcount64) + inttostr(random(99999));
end;
procedure _stop(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
//TerminateProcess(getcurrentprocess(), 0);
v8_FunctionCallbackInfo_return_uint32(_info, 1);
judith.free;
end;
procedure _Audstate(state: integer; engine: Pv8Engine);
var
i: integer;
begin
if __killswitch then
exit;
begin
if (Length(audbuf) > 0) then
begin
for i := Low(audbuf) to High(audbuf) do
begin
engine.eval(audbuf[i] + '(' + inttostr(state) + ');');
end;
end;
end;
end;
procedure __DebugStr(str: ansistring; engine: Pv8Engine);
var
i: integer;
// code: string;
begin
if __killswitch then
exit;
begin
if (Length(debuf) > 0) then
begin
// code := QuotedStr(StringReplace(str, #13#10, ' ', [rfReplaceAll]));
for i := Low(debuf) to High(debuf) do
begin
engine.eval(debuf[i] + '(' + toJson(str) + ');');
end;
end;
end;
end;
procedure _fchange(str: ansistring; engine: Pv8Engine);
var
i: integer;
begin
if __killswitch then
exit;
begin
if (Length(febuf) > 0) then
begin
for i := Low(febuf) to High(febuf) do
begin
engine.eval(febuf[i] + '(' + quotedstr(makePath(str)) + ');');
end;
end;
end;
end;
procedure _OsEvent(event: integer; engine: Pv8Engine);
var
i: integer;
begin
if __killswitch then
exit;
begin
if (Length(evtbuf) > 0) then
begin
for i := Low(evtbuf) to High(evtbuf) do
begin
engine.eval(evtbuf[i] + '(' + inttostr(event) + ');');
end;
end;
end;
end;
procedure _ipcMessage(msg: ansistring; engine: Pv8Engine);
var
i: integer;
begin
if __killswitch then
exit;
begin
if copy(msg, 1, 5) = 'eval=' then
begin
engine.eval(copy(msg, 6, lstrlenA(PAnsiChar(msg)) - 5));
exit;
end;
if (Length(cmdbuf) > 0) then
begin
for i := Low(cmdbuf) to High(cmdbuf) do
begin
engine.eval(cmdbuf[i] + '(' + (cleanStr(msg)) + ');');
end;
end;
end;
end;
procedure _TTScreate(_info: V8FunctionCallbackInfo); cdecl;
var
id: pwidechar;
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
v8_FunctionCallbackInfo_return_string(_info, id);
end;
procedure _TTSFree(_info: V8FunctionCallbackInfo); cdecl;
var
id: pwidechar;
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
v8_FunctionCallbackInfo_return_string(_info, id);
end;
procedure _TTSSpeak(_info: V8FunctionCallbackInfo); cdecl;
var
id: string;
info: Tv8FunctionCallbackInfo;
v: string;
text, speaker, path: string;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
Inc(itts);
v := info.args[2].AsString;
v := fixpath(v);
id := ('_$tts' + inttostr(itts));
VM.GlobalObject.SetObject(id, info.args[3].AsObject);
text := (info.args[0].AsString);
speaker := (info.args[1].AsString);
path := (info.args[2].AsString);
jstts.renderText(ahandle, text, speaker, path, id);
v8_FunctionCallbackInfo_return_string(_info, pwidechar(id));
end;
end;
procedure _TTSSpeakFast(_info: V8FunctionCallbackInfo); cdecl;
var
id: string;
info: Tv8FunctionCallbackInfo;
v: string;
text, speaker, path: string;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
Inc(itts);
v := info.args[2].AsString;
v := fixpath(v);
id := ('_$ttsf' + inttostr(itts));
VM.GlobalObject.SetObject(id, info.args[3].AsObject);
text := (info.args[0].AsString);
speaker := (info.args[1].AsString);
path := (info.args[2].AsString);
jstts.renderText(ahandle, text, speaker, path, id);
v8_FunctionCallbackInfo_return_string(_info, pwidechar(id));
end;
end;
procedure _audstart(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
v8_FunctionCallbackInfo_return_int32(_info, jsaudio.audio_init(info.args[0].AsInteger));
end;
end;
procedure _audstop(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
v8_FunctionCallbackInfo_return_int32(_info, jsaudio.audio_close(info.args[0].AsInteger));
end;
end;
procedure _audload(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
v8_FunctionCallbackInfo_return_int32(_info, jsaudio.audio_loadsample(info.args[0].AsInteger, fixpath(info.args[1].AsString), (info.args[2].AsString)));
end;
end;
procedure _audspeech(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
v8_FunctionCallbackInfo_return_int32(_info, jsaudio.audio_speech(info.args[0].AsInteger, fixpath(info.args[1].AsString)));
end;
end;
procedure _audstream(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
v8_FunctionCallbackInfo_return_int32(_info, jsaudio.audio_stream(info.args[0].AsInteger, fixpath(info.args[1].AsString)));
end;
end;
procedure _audplay(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
v8_FunctionCallbackInfo_return_int32(_info, jsaudio.audio_playsample(info.args[0].AsInteger, info.args[1].AsString));
end;
end;
/// ///////////////////////////
procedure _tcplisten(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
eid: string;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
eid := geneid;
VM.GlobalObject.SetObject(eid, info.args[1].AsObject);
v8_FunctionCallbackInfo_return_int32(_info, jstcp.listen(info.args[0].AsInteger, eid, VM));
end;
end;
procedure _tcpclose(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
v8_FunctionCallbackInfo_return_int32(_info, jstcp.close(info.args[0].AsInteger));
end;
end;
procedure _tcpkick(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
r: integer;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 1 then
begin
try
r := jstcp.kick(info.args[0].AsInteger, info.args[1].AsInteger);
v8_FunctionCallbackInfo_return_int32(_info, r);
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, 0);
end;
end;
end;
end;
procedure _tcpwrite(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
J: TjsonEx;
w: integer;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
try
J := TjsonEx.Create;
J.Parse(info.args[0].AsString);
w := jstcp.write(J['id'].AsInteger, J['sock'].AsInteger, J['data'].AsString);
v8_FunctionCallbackInfo_return_int32(_info, w);
J.Free;
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, 0);
end;
end;
end;
end;
procedure _disklist(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
try
v8_FunctionCallbackInfo_return_string(_info, pchar(DisksAsJson(disklistobj)));
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, -1);
end;
end;
end;
procedure _hwlist(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
try
v8_FunctionCallbackInfo_return_string(_info, pchar(DevicesAsJson(listdevices)));
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, -1);
end;
end;
end;
procedure _wlscan(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
try
// v8_FunctionCallbackInfo_return_string(_info, PChar(wScan()));
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, -1);
end;
end;
end;
procedure _procPipe(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
X: ISuperObject;
id: string;
app: string;
path: string;
cmd: string;
param: string;
obj: Iv8Object;
T: TThread;
cd: string;
start: int64;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
cd := extractfilepath(paramstr(0));
Inc(ipipe);
id := '_$pipe' + inttostr(ipipe);
obj := info.args[0].AsObject;
app := fixpath(obj.GetStr('app'));
param := obj.getstr('param');
if param = 'undefined' then
param := '';
path := fixpath(obj.GetStr('path'));
cmd := obj.GetStr('cmd');
if (FileExists(app)) and (pos(':', app) < 1) then
app := cd + app;
if (path = 'undefined') or (path = '') then
begin
if pos('\', app) > 0 then
begin
path := extractfilepath(app);
end
else
path := cd;
end;
if not FileExists(app) then
app := cd + app;
VM.GlobalObject.SetObject(id, info.args[1].AsObject);
start := gettickcount;
T := TThread.CreateAnonymousThread(
procedure
begin
try
X := SO;
EnterCriticalSection(CriticalSection);
outputdebugstring(pchar(app + ' ' + param));
if (cmd <> 'undefined') and (cmd <> '') then
X.S['data'] := GetOutputStdIn(app + ' ' + param, cmd, path)
else
X.S['data'] := GetDosOutput(app + ' ' + param, path);
X.I['took'] := gettickcount - start;
LeaveCriticalSection(CriticalSection);
finally
Sleep(1);
wm_sendstringex(ahandle, ahandle, pwidechar('~eval=' + id + '(' + X.AsJSON() + ');' + id + '=undefined;'));
Sleep(1000);
end;
end);
T.FreeOnTerminate := true;
T.Start;
v8_FunctionCallbackInfo_return_string(_info, pwidechar(id));
end;
end;
procedure _proccreate(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
p: Tprocmeta;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 2 then
begin
try
p := RunProcess(pchar(fixpath(info.args[0].AsString)), pchar(info.args[1].AsString), Boolean(info.args[2].AsInteger));
v8_FunctionCallbackInfo_return_string(_info, pchar(ProcmetaAsJson(p)));
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, -1);
end;
end;
end;
end;
procedure _procRelease(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
try
v8_FunctionCallbackInfo_return_int32(_info, releaseProcess(info.args[0].AsInteger));
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, -1);
end;
end;
end;
end;
procedure _procPing(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
try
v8_FunctionCallbackInfo_return_int32(_info, integer(pingProcess(info.args[0].AsInteger)));
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, -1);
end;
end;
end;
end;
procedure _procList(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
v8_FunctionCallbackInfo_return_string(_info, pwidechar(EnumProc));
end;
procedure _findwindow(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
// id: integer;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
try
v8_FunctionCallbackInfo_return_uint32(_info, FindWindow(nil, pchar(info.args[0].AsString)));
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, 0);
end;
end;
end;
end;
procedure _sendstring(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
// id: integer;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
try
wm_sendstringex(winh, info.args[0].AsInteger, pwidechar(info.args[1].AsString));
v8_FunctionCallbackInfo_return_int32(_info, 1);
except
on e: exception do
begin
v8_FunctionCallbackInfo_return_int32(_info, 0);
end;
end;
end;
end;
procedure _SetWinMsg(data: ansistring; engine: Pv8Engine);
var
i: integer;
begin
if __killswitch then
exit;
if (Length(msgbuf) > 0) then
begin
for i := Low(msgbuf) to High(msgbuf) do
begin
engine.eval(msgbuf[i] + '(' + (cleanStr(data)) + ');');
end;
end;
end;
procedure _SetDevMsg(arrival: Boolean; engine: Pv8Engine);
var
i: integer;
begin
if __killswitch then
exit;
if (Length(devbuf) > 0) then
begin
for i := Low(devbuf) to High(devbuf) do
begin
engine.eval(devbuf[i] + '(' + inttostr(integer(arrival)) + ');');
end;
end;
end;
procedure _NotifyHotkey(code: integer; engine: Pv8Engine);
var
cb: string;
begin
if __killswitch then
exit;
begin
if hotkeys.TryGetValue(code, cb) then
engine.eval(cb + '(' + inttostr(code) + ');');
end;
end;
procedure _procInfo(_info: V8FunctionCallbackInfo); cdecl;
var
// i: integer;
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
v8_FunctionCallbackInfo_return_string(_info, pwidechar(ReplaceStr(paramstr(0), '\', '/')));
end;
procedure _LoadExtension(_info: V8FunctionCallbackInfo); cdecl;
var
i: integer;
path: string;
fname: string;
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
if info.ArgCount > 0 then
begin
path := fixpath(info.args[0].AsString);
fname := info.args[1].AsString;
if not fileexists(path) then
begin
path := Extractfilepath(ParamStr(0)) + '\' + path;
if not fileexists(path) then
begin
v8_FunctionCallbackInfo_return_string(_info, pwidechar('file_not_found'));
exit;
end;
end;
i := Length(extensions);
SetLength(extensions, i + 1);
extensions[i].handle := LoadLibrary(pchar(path));
if extensions[i].handle <> 0 then
begin
@extensions[i].proc := GetProcAddress(extensions[i].handle, pwidechar(fname));
if Assigned(@extensions[i].proc) then
begin
extensions[i].proc(ahandle);
v8_FunctionCallbackInfo_return_string(_info, pwidechar('ok'));
end
else
v8_FunctionCallbackInfo_return_string(_info, pwidechar('getprocaddress_fail'));
end
else
begin
v8_FunctionCallbackInfo_return_string(_info, pwidechar('loadlibrary_fail'));
FreeLibrary(extensions[i].handle);
end;
end;
end;
procedure _Halt(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
TerminateProcess(getcurrentprocess(), 0);
v8_FunctionCallbackInfo_return_uint32(_info, 1);
end;
procedure _WriteDebug(_info: V8FunctionCallbackInfo); cdecl;
var
info: Tv8FunctionCallbackInfo;
begin
info := Tv8FunctionCallbackInfo.Create(_info);
OutputDebugString(pchar(info.args[0].AsString));
v8_FunctionCallbackInfo_return_uint32(_info, 1);
end;
procedure _DebugStr(str: ansistring; engine: Pv8Engine);
var
i: integer;
begin
if __killswitch then
exit;
begin
if (Length(dbgbuf) > 0) then
begin
for i := Low(dbgbuf) to High(dbgbuf) do
begin
// engine.eval(dbgbuf[i] + '(' + (TNetEncoding.Base64.encode(str)) + ');');
//engine.eval(dbgbuf[i] + '(' + (toJson(str)) + ');');
end;
end;
end;
end;