-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsiInterp.c
1712 lines (1589 loc) · 57.5 KB
/
jsiInterp.c
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
#ifndef JSI_LITE_ONLY
#define __JSIINT_C__
#ifndef JSI_AMALGAMATION
#include "jsiInt.h"
#endif
#include <stdio.h>
#include <string.h>
#include <limits.h>
#include <assert.h>
static int is_init = 0;
Jsi_Interp *jsiMainInterp = NULL;
Jsi_Interp *jsiDelInterp = NULL;
static Jsi_Hash *interpsTbl;
//#include "jsiRevision.h"
static Jsi_CmdSpec interpCmds[];
#define IIOF .flags=JSI_OPT_INIT_ONLY
static Jsi_OptionSpec InterpOptions[] = {
JSI_OPT(ARRAY, Jsi_Interp, args, .help="The console.arguments for interp", IIOF),
JSI_OPT(INT, Jsi_Interp, debug, .help="Set debugging level"),
JSI_OPT(BOOL, Jsi_Interp, doUnlock, .help="Unlock our mutex when evaling in other interps", IIOF, .init="true"),
JSI_OPT(BOOL, Jsi_Interp, noUndef, .help="Suppress printing undefined value result when in interactive mode"),
JSI_OPT(STRKEY,Jsi_Interp, evalCallback,.help="String name of callback function in parent to handle eval stepping", IIOF ),
JSI_OPT(VALUE, Jsi_Interp, indexFiles, .help="File(s) to source for loading index for unknown commands"),
JSI_OPT(BOOL, Jsi_Interp, isSafe, .help="Interp is safe (ie. no file access)", IIOF),
JSI_OPT(INT, Jsi_Interp, lockTimeout, .help="Timeout for mutex lock-acquire (milliseconds)" ),
JSI_OPT(STRKEY,Jsi_Interp, logCallback, .help="String name of callback function in parent to handle logging", IIOF ),
JSI_OPT(INT, Jsi_Interp, maxDepth, .help="Recursion call depth limit", .init="1000"),
JSI_OPT(INT, Jsi_Interp, maxIncDepth, .help="Max file include nesting limit", .init="50" ),
JSI_OPT(INT, Jsi_Interp, maxInterpDepth,.help="Max nested subinterp create limit", .init="10" ),
JSI_OPT(INT, Jsi_Interp, maxUserObjs, .help="Cap on number of 'new' object calls (eg. File, Regexp, etc)" ),
JSI_OPT(INT, Jsi_Interp, maxOpCnt, .help="Execution cap on opcodes evaluated" ),
JSI_OPT(BOOL, Jsi_Interp, nDebug, .help="Make assert statements have no effect"),
JSI_OPT(STRKEY,Jsi_Interp, name, .help="Name of interp", IIOF),
JSI_OPT(BOOL, Jsi_Interp, noreadline, .help="Do not use readline in interactive mode", IIOF),
JSI_OPT(FUNC, Jsi_Interp, onExit, .help="Command to call in parent on exit (which returns true to continue)", IIOF ),
JSI_OPT(BOOL, Jsi_Interp, noSubInterps,.help="Disallow sub-interp creation", IIOF),
JSI_OPT(BOOL, Jsi_Interp, privKeys, .help="Disable string key sharing with other interps", IIOF, .init="true"),
JSI_OPT(STRKEY,Jsi_Interp, recvCmd, .help="Name of function to recv 'send' msgs"),
JSI_OPT(ARRAY, Jsi_Interp, safeReadDirs,.help="In safe mode, directories to allow reads from", IIOF),
JSI_OPT(ARRAY, Jsi_Interp, safeWriteDirs,.help="In safe mode, directories to allow writes to", IIOF),
JSI_OPT(STRKEY,Jsi_Interp, scriptStr, .help="Startup script string", IIOF),
JSI_OPT(VALUE, Jsi_Interp, scriptFile, .help="Startup script file name", IIOF),
JSI_OPT(BOOL, Jsi_Interp, strict, .help="If set to false, option parse ignore unknown options",.init="true" ),
JSI_OPT(BOOL, Jsi_Interp, subthread, .help="Create thread for interp", IIOF),
JSI_OPT(INT, Jsi_Interp, traceCalls, .help="Echo method call/return value"),
JSI_OPT_END(Jsi_Interp)
};
/* Object for each interp created. */
typedef struct InterpObj {
#ifdef JSI_HAS_SIG
jsi_Sig sig;
#endif
Jsi_Interp *subinterp;
Jsi_Interp *parent;
Jsi_Hash *aliases;
//char *interpname;
char *mode;
Jsi_Obj *fobj;
int objId;
} InterpObj;
/* Global state of interps. */
typedef struct {
#ifdef JSI_HAS_SIG
jsi_Sig sig;
#endif
int refCount;
const char *cmdName;
Jsi_Value *args;
Jsi_Value *func;
Jsi_Value *cmdVal;
InterpObj *intobj;
Jsi_Interp *interp;
} AliasCmd;
static void interpObjErase(InterpObj *fo);
static int interpObjFree(Jsi_Interp *interp, void *data);
static int interpObjIsTrue(void *data);
static int interpObjEqual(void *data1, void *data2);
static Jsi_UserObjReg interpobject = {
"Interp",
interpCmds,
interpObjFree,
interpObjIsTrue,
interpObjEqual
};
#ifndef JSI_OMIT_THREADS
#ifdef __WIN32
#include <windows.h>
static int MutexLock(Jsi_Interp *interp, CRITICAL_SECTION* mtx) {
if (interp->lockTimeout<0)
EnterCriticalSection(mtx);
else {
uint cnt = interp->lockTimeout;
while (cnt-- >= 0) {
if (TryEnterCriticalSection(mtx))
return JSI_OK;
usleep(1000);
}
Jsi_LogError("lock timed out");
interp->threadErrCnt++;
return JSI_ERROR;
}
return JSI_OK;
}
static void MutexUnlock(CRITICAL_SECTION* mtx) { LeaveCriticalSection(mtx); }
static void MutexInit(CRITICAL_SECTION *mtx) { InitializeCriticalSection(mtx); }
static void* MutexNew(void) {
CRITICAL_SECTION *mtx = Jsi_Calloc(1,sizeof(*mtx));
InitializeCriticalSection(mtx);
return mtx;
}
static void MutexDone(CRITICAL_SECTION *mtx) { DeleteCriticalSection(mtx); }
#else /* ! __WIN32 */
#include <pthread.h>
static int MutexLock(Jsi_Interp *interp, pthread_mutex_t *mtx) {
if (interp->lockTimeout<0)
pthread_mutex_lock(mtx);
else {
struct timespec ts;
ts.tv_sec = interp->lockTimeout/1000;
ts.tv_nsec = 1000 * (interp->lockTimeout%1000);
int rc = pthread_mutex_timedlock(mtx, &ts);
if (rc != 0) {
Jsi_LogError("lock timed out");
interp->threadErrCnt++;
return JSI_ERROR;
}
}
return JSI_OK;
}
static void MutexUnlock(pthread_mutex_t *mtx) { pthread_mutex_unlock(mtx); }
static void MutexInit(pthread_mutex_t *mtx) {
pthread_mutexattr_t Attr;
pthread_mutexattr_init(&Attr);
pthread_mutexattr_settype(&Attr, PTHREAD_MUTEX_RECURSIVE);
pthread_mutex_init(mtx, &Attr);
}
static void* MutexNew(void) { pthread_mutex_t* mtx = Jsi_Malloc(sizeof(pthread_mutex_t)); MutexInit(mtx); return mtx; }
static void MutexDone(pthread_mutex_t *mtx) { pthread_mutex_destroy(mtx); }
#endif
int Jsi_MutexLock(Jsi_Interp *interp, void *mtx) { interp->lockRefCnt++; return MutexLock(interp, mtx);}
void Jsi_MutexUnlock(Jsi_Interp *interp, void *mtx) { MutexUnlock(mtx); interp->lockRefCnt--; }
void* Jsi_MutexNew(Jsi_Interp *interp) { return MutexNew(); }
void Jsi_MutexDone(Jsi_Interp *interp, void *mtx) { MutexDone(mtx); }
void Jsi_MutexInit(Jsi_Interp *interp, void *mtx) { MutexInit(mtx); }
void* Jsi_InterpThread(Jsi_Interp *interp) { return interp->threadId; }
void* Jsi_CurrentThread(void) {
#ifdef __WIN32
return (void*)GetCurrentThreadId();
#else
return (void*)pthread_self();
#endif
}
#else /* ! JSI_OMIT_THREADS */
int Jsi_MutexLock(Jsi_Interp *interp, void *mtx) { return JSI_OK; }
void Jsi_MutexUnlock(Jsi_Interp *interp, void *mtx) { }
void* Jsi_MutexNew(Jsi_Interp *interp) { return NULL; }
void Jsi_MutexDone(Jsi_Interp *interp, void *mtx) { }
void* Jsi_CurrentThread(void) { return NULL; }
void* Jsi_InterpThread(Jsi_Interp *interp) { return NULL; }
void Jsi_MutexInit(Jsi_Interp *interp, void *mtx) { }
#endif
Jsi_Number Jsi_Version(void) {
Jsi_Number d = JSI_VERSION;
return d;
}
static void ConvertReturn(Jsi_Interp *interp, Jsi_Interp *inInterp, Jsi_Value *ret)
{
Jsi_DString dStr = {};
switch (ret->vt) {
case JSI_VT_UNDEF:
case JSI_VT_BOOL:
case JSI_VT_NUMBER:
case JSI_VT_NULL:
break;
default:
Jsi_DSInit(&dStr);
char *cp = (char*)Jsi_ValueGetDString(inInterp, ret, &dStr, JSI_OUTPUT_JSON);
Jsi_JSONParse(interp, cp, ret, 0);
Jsi_DSFree(&dStr);
}
}
/* Call a command with JSON args. Returned value is converted to JSON. */
int Jsi_EvalCmdJSON(Jsi_Interp *interp, const char *cmd, const char *jsonArgs, Jsi_DString *dStr)
{
if (Jsi_MutexLock(interp, interp->Mutex) != JSI_OK)
return JSI_ERROR;
Jsi_Value nret = VALINIT, *nrPtr = &nret;
int rc = Jsi_CommandInvokeJSON(interp, cmd, jsonArgs, &nrPtr);
Jsi_DSInit(dStr);
Jsi_ValueGetDString(interp, &nret, dStr, JSI_OUTPUT_JSON);
Jsi_ValueMakeUndef(interp, &nret);
Jsi_MutexUnlock(interp, interp->Mutex);
return rc;
}
/* Call a function with JSON args. Return a primative. */
int Jsi_FunctionInvokeJSON(Jsi_Interp *interp, Jsi_Value *func, const char *json, Jsi_Value **ret)
{
int rc;
Jsi_Value args = VALINIT;
rc = Jsi_JSONParse(interp, json, &args, 0);
if (rc == JSI_OK) {
rc = Jsi_FunctionInvoke(interp, func, &args, ret, NULL);
Jsi_ValueReset(interp, &args);
}
return rc;
}
/* Lookup cmd from cmdstr and invoke with JSON args. */
/*
* Jsi_CommandInvokeJSON(interp, "info.cmds", "[\"*\",true]", ret);
*/
int Jsi_CommandInvokeJSON(Jsi_Interp *interp, const char *cmdstr, const char *json, Jsi_Value **ret)
{
Jsi_Value *func = Jsi_NameLookup(interp, cmdstr);
if (func)
return Jsi_FunctionInvokeJSON(interp, func, json, ret);
Jsi_LogError("can not find cmd: %s", cmdstr);
return JSI_ERROR;
}
static int AliasFree(Jsi_Interp *interp, void *data) {
/* TODO: deal with other copies of func may be floating around (refCount). */
AliasCmd *ac = data;
SIGASSERT(ac,ALIASCMD);
if (ac->func)
Jsi_DecrRefCount(ac->interp, ac->func);
if (ac->args)
Jsi_DecrRefCount(ac->interp, ac->args);
Jsi_Func *fobj = ac->cmdVal->d.obj->d.fobj->func;
fobj->cmdSpec->udata3 = NULL;
fobj->cmdSpec->proc = NULL;
if (ac->intobj->subinterp)
Jsi_CommandDelete(ac->intobj->subinterp, ac->cmdName);
Jsi_DecrRefCount(ac->interp, ac->cmdVal);
MEMCLEAR(ac);
Jsi_Free(ac);
return JSI_OK;
}
static int NeedClean(Jsi_Interp *interp, Jsi_Value *arg)
{
switch (arg->vt) {
case JSI_VT_BOOL: return 0;
case JSI_VT_NULL: return 0;
case JSI_VT_NUMBER: return 0;
case JSI_VT_STRING: return (interp->privKeys || arg->f.bits.isstrkey);
case JSI_VT_UNDEF: return 0;
//case JSI_VT_VARIABLE: return 1;
case JSI_VT_OBJECT: {
Jsi_Obj *o = arg->d.obj;
switch (o->ot) {
case JSI_OT_NUMBER: return 0;
case JSI_OT_BOOL: return 0;
case JSI_OT_STRING: return (interp->privKeys || arg->d.obj->isstrkey);
case JSI_OT_FUNCTION: return 1;
case JSI_OT_REGEXP: return 1;
case JSI_OT_USEROBJ: return 1;
case JSI_OT_ITER: return 1;
case JSI_OT_OBJECT:
case JSI_OT_ARRAY:
if (o->isArray && o->arr)
{
int i;
for (i = 0; i < o->arrCnt; ++i) {
if (o->arr[i] && NeedClean(interp, o->arr[i]))
return 1;
}
} else if (o->tree) {
int trc = 0;
Jsi_TreeEntry *tPtr;
Jsi_TreeSearch search;
Jsi_Value *v;
for (tPtr = Jsi_TreeSearchFirst(o->tree, &search, 0);
tPtr; tPtr = Jsi_TreeSearchNext(&search)) {
v = Jsi_TreeValueGet(tPtr);
if (v && (trc = NeedClean(interp, v)))
break;
}
Jsi_TreeSearchDone(&search);
return trc;
} else {
return 1;
}
return 0;
default:
return 1;
}
}
}
return 1;
}
static int Jsi_CleanValue(Jsi_Interp *interp, Jsi_Interp *tointerp, Jsi_Value *args, Jsi_Value *ret)
{
if (tointerp->threadId == interp->threadId && !NeedClean(interp, args)) {
Jsi_ValueCopy(tointerp, ret, args);
return JSI_OK;
}
/* Cleanse input args by convert to JSON and back. */
Jsi_DString dStr;
const char *cp = Jsi_ValueGetDString(interp, args, &dStr, JSI_OUTPUT_JSON);
if (Jsi_JSONParse(tointerp, cp, ret, 0) != JSI_OK) {
Jsi_DSFree(&dStr);
Jsi_LogError("bad subinterp parse");
return JSI_ERROR;
}
Jsi_DSFree(&dStr);
return JSI_OK;
}
static int AliasInvoke(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
Jsi_Interp *pinterp = interp->parent;
if (!pinterp)
return JSI_ERROR;
AliasCmd *ac = funcPtr->cmdSpec->udata3;
Jsi_Value *nargs = NULL;
int argc = Jsi_ValueGetLength(interp, args);
if (!ac) {
Jsi_LogBug("BAD ALIAS INVOKE OF DELETED");
return JSI_ERROR;
}
SIGASSERT(ac,ALIASCMD);
Jsi_Value nret = VALINIT;
if (argc == 0 && ac->args)
nargs = ac->args;
else if (argc) {
if (Jsi_CleanValue(interp, pinterp, args, &nret) != JSI_OK)
return JSI_ERROR;
if (ac->args) {
nargs = Jsi_ValueArrayConcat(pinterp, ac->args, &nret);
} else {
nargs = &nret;
}
}
if (interp->doUnlock) Jsi_MutexUnlock(interp, interp->Mutex);
if (Jsi_MutexLock(interp, pinterp->Mutex) != JSI_OK) {
if (interp->doUnlock) Jsi_MutexLock(interp, interp->Mutex);
return JSI_ERROR;
}
ac->refCount++;
if (nargs && nargs != &nret)
Jsi_IncrRefCount(interp, nargs);
int rc = Jsi_FunctionInvoke(pinterp, ac->func, nargs, ret, NULL);
ac->refCount--;
Jsi_MutexUnlock(interp, pinterp->Mutex);
if (interp->doUnlock && Jsi_MutexLock(interp, interp->Mutex) != JSI_OK) {
return JSI_ERROR;
}
Jsi_ValueMakeUndef(interp, &nret);
if (nargs && nargs != &nret)
Jsi_DecrRefCount(interp, nargs);
ConvertReturn(pinterp, interp, *ret);
return rc;
}
static int InterpAliasCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
InterpObj *udf = Jsi_UserObjGetData(interp, _this, funcPtr);
if (!udf) {
Jsi_LogError("Apply Interp.eval in a non-interp object");
return JSI_ERROR;
}
if (!udf->aliases) {
Jsi_LogError("Sub-interp gone");
return JSI_ERROR;
}
int argc = Jsi_ValueGetLength(interp, args);
if (argc == 0) {
return Jsi_HashKeysDump(interp, udf->aliases, *ret);
}
Jsi_HashEntry *hPtr;
char *key = Jsi_ValueArrayIndexToStr(interp, args, 0, NULL);
if (!key) {
Jsi_LogError("expected string");
return JSI_ERROR;
}
AliasCmd* ac;
if (argc == 1) {
hPtr = Jsi_HashEntryFind(udf->aliases, (void*)key);
if (!hPtr)
return JSI_OK;
ac = Jsi_HashValueGet(hPtr);
SIGASSERT(ac,ALIASCMD);
Jsi_ValueCopy(interp, *ret, ac->func);
return JSI_OK;
}
Jsi_Value *afunc = Jsi_ValueArrayIndex(interp, args, 1);
if (argc == 2) {
hPtr = Jsi_HashEntryFind(udf->aliases, (void*)key);
if (!hPtr)
return JSI_OK;
ac = Jsi_HashValueGet(hPtr);
if (!Jsi_ValueIsFunction(interp, afunc)) {
Jsi_LogError("arg 2: expected function");
return JSI_ERROR;
}
Jsi_ValueCopy(interp, *ret, ac->args);
return JSI_OK;
}
if (argc == 3) {
int isNew;
Jsi_Value *aargs = Jsi_ValueArrayIndex(interp, args, 2);
if (Jsi_ValueIsNull(interp, afunc) && Jsi_ValueIsNull(interp, aargs)) {
hPtr = Jsi_HashEntryFind(udf->aliases, (void*)key);
if (hPtr == NULL)
return JSI_OK;
AliasFree(interp, Jsi_HashValueGet(hPtr));
Jsi_HashEntryDelete(hPtr);
return JSI_OK;
}
hPtr = Jsi_HashEntryCreate(udf->aliases, (void*)key, &isNew);
if (!hPtr) {
Jsi_LogError("create failed: %s", key);
return JSI_ERROR;
}
if (!Jsi_ValueIsFunction(interp, afunc)) {
Jsi_LogError("arg 2: expected function");
return JSI_ERROR;
}
if (Jsi_ValueIsNull(interp, aargs) == 0 && Jsi_ValueIsArray(interp, aargs) == 0) {
Jsi_LogError("arg 3: expected array or null");
return JSI_ERROR;
}
AliasCmd *ac;
if (!isNew) {
AliasFree(interp, Jsi_HashValueGet(hPtr));
}
ac = Jsi_Calloc(1, sizeof(AliasCmd));
SIGINIT(ac, ALIASCMD);
ac->cmdName = Jsi_HashKeyGet(hPtr);
ac->func = afunc;
Jsi_IncrRefCount(interp, afunc);
if (!Jsi_ValueIsNull(interp, aargs)) {
ac->args = aargs;
Jsi_IncrRefCount(interp, aargs);
}
ac->intobj = udf;
ac->interp = interp;
Jsi_HashValueSet(hPtr, ac);
Jsi_Value *cmd = Jsi_CommandCreate(udf->subinterp, key, AliasInvoke, NULL);
if (!cmd) {
Jsi_LogError("command create failure");
return JSI_ERROR;
}
ac->cmdVal = cmd;
Jsi_IncrRefCount(udf->subinterp, ac->cmdVal);
Jsi_Func *fobj = cmd->d.obj->d.fobj->func;
fobj->cmdSpec->udata3 = ac;
}
return JSI_OK;
}
static int freeCodeTbl(Jsi_Interp *interp, void *ptr) {
jsi_Pstate *ps = ptr;
if (!ps) return JSI_OK;
ps->hPtr = NULL;
jsi_PstateFree(ps);
return JSI_OK;
}
static int freeAssocTbl(Jsi_Interp *interp, void *ptr) {
if (!ptr) return JSI_OK;
jsi_DelAssocData(interp, ptr);
return JSI_OK;
}
static int freeEventTbl(Jsi_Interp *interp, void *ptr) {
Jsi_Event *event = ptr;
SIGASSERT(event,EVENT);
if (!ptr) return JSI_OK;
event->hPtr = NULL;
Jsi_EventFree(interp, event);
return JSI_OK;
}
static int jsiFree(Jsi_Interp *interp, void *ptr) {
Jsi_Free(ptr);
return JSI_OK;
}
static int regExpFree(Jsi_Interp *interp, void *ptr) {
Jsi_RegExpFree(ptr);
return JSI_OK;
}
static int freeCmdSpecTbl(Jsi_Interp *interp, void *ptr) {
if (!ptr) return JSI_OK;
jsi_CmdSpecDelete(interp, ptr);
return JSI_OK;
}
static int freeGenObjTbl(Jsi_Interp *interp, void *ptr) {
Jsi_Obj *obj = ptr;
SIGASSERT(obj,OBJ);
if (!obj) return JSI_OK;
Jsi_ObjDecrRefCount(interp, obj);
return JSI_OK;
}
/* TODO: incr ref before add then just decr till done. */
static int freeValueTbl(Jsi_Interp *interp, void *ptr) {
Jsi_Value *val = ptr;
SIGASSERT(val,VALUE);
if (!val) return JSI_OK;
//printf("GEN: %p\n", val);
Jsi_DecrRefCount(interp, val);
return JSI_OK;
}
static int freeUserdataTbl(Jsi_Interp *interp, void *ptr) {
if (ptr)
jsi_UserObjDelete(interp, ptr);
return JSI_OK;
}
void Jsi_ShiftArgs(Jsi_Interp *interp) {
Jsi_Value *v = interp->args; //Jsi_NameLookup(interp, "console.args");
if (v==NULL || v->vt != JSI_VT_OBJECT || v->d.obj->arr == NULL || v->d.obj->arrCnt <= 0)
return;
Jsi_Obj *obj = v->d.obj;
int n = v->d.obj->arrCnt;
n--;
v = obj->arr[0];
if (n>0)
memmove(obj->arr, obj->arr+1, n*sizeof(Jsi_Value*));
obj->arr[n] = NULL;
Jsi_ObjSetLength(interp, obj, n);
}
char *jsi_execName = NULL;
static Jsi_Value *jsi_execValue = NULL;
Jsi_Value *Jsi_Executable(Jsi_Interp *interp)
{
return jsi_execValue;
}
static int KeyLocker(Jsi_Hash* tbl, int lock)
{
if (!lock)
Jsi_MutexUnlock(jsiMainInterp, jsiMainInterp->Mutex);
else
return Jsi_MutexLock(jsiMainInterp, jsiMainInterp->Mutex);
return JSI_OK;
}
Jsi_Interp* Jsi_InterpCreate(Jsi_Interp *parent, int argc, char **argv, Jsi_Value *opts)
{
Jsi_Interp* interp = Jsi_Calloc(1,sizeof(*interp));
char buf[BUFSIZ];
if (jsiMainInterp == NULL && parent == NULL)
jsiMainInterp = interp;
interp->parent = parent;
#ifdef VALUE_DEBUG
interp->valueDebugTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD, NULL);
#endif
if (!parent)
interp->maxInterpDepth = JSI_MAX_SUBINTERP_DEPTH;
else {
if (parent->noSubInterps) {
Jsi_Free(interp);
interp = parent;
Jsi_LogError("subinterps disallowed");
return NULL;
}
interp->maxInterpDepth = parent->maxInterpDepth;
interp->interpDepth = parent->interpDepth+1;
if (interp->interpDepth > interp->maxInterpDepth) {
Jsi_Free(interp);
interp = parent;
Jsi_LogError("exceeded max subinterp depth");
return NULL;
}
}
#ifndef DISABLE_GETENV
interp->debug = (getenv("JSI_DEBUG") != NULL);
interp->traceCalls = (getenv("JSI_TRACE") != NULL);
#endif
interp->maxDepth = JSI_MAX_EVAL_DEPTH;
interp->maxIncDepth = JSI_MAX_INCLUDE_DEPTH;
SIGINIT(interp,INTERP);
SIGINIT((&interp->lastSubscriptFail), VALUE);
interp->NullValue = Jsi_ValueNewNull(interp);
Jsi_IncrRefCount(interp, interp->NullValue);
interp->curDir = Jsi_Strdup(getcwd(buf, sizeof(buf)));
interp->assocTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, freeAssocTbl);
interp->cmdSpecTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, freeCmdSpecTbl);
interp->eventTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD, freeEventTbl);
interp->genDataTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD, jsiFree);
interp->fileTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, jsiFree);
interp->funcTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, NULL/*freeGenObjTbl*/);
interp->protoTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, NULL/*freeValueTbl*/);
//interp->protoTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, freeValueTbl);
interp->regexpTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, regExpFree);
interp->preserveTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD, jsiFree);
interp->loadTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, jsi_FreeOneLoadHandle);
interp->optionDataHash = Jsi_HashNew(interp, JSI_KEYS_STRING, jsiFree);
interp->lockTimeout = -1;
#ifdef JSI_LOCK_TIMEOUT
interp->lockTimeout JSI_LOCK_TIMEOUT;
#endif
#ifndef JSI_DO_UNLOCK
#define JSI_DO_UNLOCK 1
#endif
interp->doUnlock = JSI_DO_UNLOCK;
if (interp == jsiMainInterp || interp->threadId != jsiMainInterp->threadId) {
interp->strKeyTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, NULL);
interp->privKeys = 1;
}
if (!interp->strKeyTbl)
interp->strKeyTbl = jsiMainInterp->strKeyTbl;
#ifndef JSI_USE_STRICT
#define JSI_USE_STRICT 1
#endif
interp->strict = JSI_USE_STRICT;
const char *scp;
if ((scp = getenv("JSI_STRICT")))
interp->strict = atoi(scp);
if (opts && opts->vt != JSI_VT_NULL && Jsi_OptionsProcess(interp, InterpOptions, opts, interp, 0) < 0) {
Jsi_InterpDelete(interp);
return NULL;
}
if (interp == jsiMainInterp) {
interp->subthread = 0;
} else {
if (interp->privKeys && interp->strKeyTbl == jsiMainInterp->strKeyTbl) {
//Jsi_HashDelete(interp->strKeyTbl);
Jsi_OptionsFree(interp, InterpOptions, interp, 0); /* Reparse options to populate new key table. */
interp->strKeyTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, NULL);
if (opts->vt != JSI_VT_NULL) Jsi_OptionsProcess(interp, InterpOptions, opts, interp, 0);
} else if (interp->privKeys == 0 && interp->strKeyTbl != jsiMainInterp->strKeyTbl) {
Jsi_OptionsFree(interp, InterpOptions, interp, 0); /* Reparse options to populate new key table. */
Jsi_HashDelete(interp->strKeyTbl);
interp->strKeyTbl = jsiMainInterp->strKeyTbl;
if (opts->vt != JSI_VT_NULL) Jsi_OptionsProcess(interp, InterpOptions, opts, interp, 0);
}
if (interp->subthread)
jsiMainInterp->threadCnt++;
if (interp->subthread && interp->strKeyTbl == jsiMainInterp->strKeyTbl)
jsiMainInterp->threadShrCnt++;
if (jsiMainInterp->threadShrCnt)
jsiMainInterp->strKeyTbl->lockProc = KeyLocker;
}
if (parent && parent->isSafe)
interp->isSafe = 1;
char *ocp = getenv("JSI_INTERP_OPTS");
Jsi_DString oStr = {};
#ifdef JSI_INTERP_OPTS /* eg. "nonStrict: true, maxOpCnt:1000000" */
if (ocp && *ocp)
Jsi_DSAppend(&oStr, "{", JSI_INTERP_OPTS, ", ", ocp+1, NULL);
else
Jsi_DSAppend(&oStr, "{", JSI_INTERP_OPTS, "}", NULL);
#else
Jsi_DSAppend(&oStr, ocp, NULL);
#endif
ocp = Jsi_DSValue(&oStr);
if (interp == jsiMainInterp && *ocp) {
Jsi_Value *popts = Jsi_ValueNew1(interp);
if (Jsi_JSONParse(interp, ocp, popts, 0) != JSI_OK ||
Jsi_OptionsProcess(interp, InterpOptions, popts, interp, JSI_OPTS_IS_UPDATE) < 0) {
Jsi_InterpDelete(interp);
Jsi_DSFree(&oStr);
return NULL;
}
Jsi_DecrRefCount(interp, popts);
}
Jsi_DSFree(&oStr);
interp->threadId = Jsi_CurrentThread();
if (interp == jsiMainInterp)
interp->lexkeyTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, NULL);
else
interp->lexkeyTbl = jsiMainInterp->lexkeyTbl;
interp->thisTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD, freeValueTbl);
interp->userdataTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, freeUserdataTbl);
interp->varTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, NULL);
interp->codeTbl = Jsi_HashNew(interp, JSI_KEYS_STRING, freeCodeTbl);
interp->genValueTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD,freeValueTbl);
interp->genObjTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD, freeGenObjTbl);
interp->maxArrayList = MAX_ARRAY_LIST;
if (!is_init) {
is_init = 1;
jsi_ValueInit(interp);
interpsTbl = Jsi_HashNew(interp, JSI_KEYS_ONEWORD, 0);
}
/* current scope, also global */
interp->csc = Jsi_ValueNew1(interp);
interp->csc->f.bits.isglob = 1;
Jsi_ValueMakeObject(interp,interp->csc, Jsi_ObjNew(interp));
interp->incsc = interp->csc;
/* initial scope chain, nothing */
interp->ingsc = interp->gsc = jsi_ScopeChainNew(interp, 0);
interp->ps = jsi_PstateNew(interp); /* Default parser. */
if (interp->args && argc) {
Jsi_LogFatal("args may not be specified both as options and parameter");
Jsi_InterpDelete(interp);
return NULL;
}
if (interp->maxDepth>JSI_MAX_EVAL_DEPTH)
interp->maxDepth = JSI_MAX_EVAL_DEPTH;
#define DOINIT(nam) if (jsi_##nam##Init(interp) != JSI_OK) { Jsi_LogFatal("Init failure in %s", #nam); }
DOINIT(Proto);
if (argc >= 0) {
Jsi_Value *iargs = Jsi_ValueNew1(interp);
iargs->f.bits.isglob = 1;
iargs->f.bits.dontdel = 1;
iargs->f.bits.readonly = 1;
Jsi_Obj *iobj = Jsi_ObjNew(interp);
Jsi_ValueMakeArrayObject(interp,iargs, iobj);
int msiz = (argc?argc-1:0);
iobj->arr = Jsi_Calloc(msiz+1, sizeof(Jsi_Value*));
iobj->arrMaxSize = msiz;
int i;
for (i = 1; i < argc; ++i) {
iobj->arr[i-1] = Jsi_ValueNewStringDup(interp, argv[i]);
Jsi_IncrRefCount(interp, iobj->arr[i-1]);
}
Jsi_ObjSetLength(interp, iobj, msiz);
interp->args = iargs;
}
jsi_CmdsInit(interp);
jsi_InterpInit(interp);
jsi_JSONInit(interp);
static Jsi_Value nret = VALINIT;
interp->ret = nret;
interp->Mutex = Jsi_MutexNew(interp);
if (1 || interp->subthread) {
interp->QMutex = Jsi_MutexNew(interp);
Jsi_DSInit(&interp->interpEvalQ);
Jsi_DSInit(&interp->interpMsgQ);
}
if (interp != jsiMainInterp && !parent)
Jsi_HashEntryCreate(interpsTbl, interp, NULL);
if (!interp->isSafe) {
DOINIT(Load);
#ifndef JSI_OMIT_FILESYS
Jsi_execInit(interp);
#endif
#ifndef JSI_OMIT_SIGNAL
jsi_Initsignal(interp);
#endif
}
if (interp->isSafe == 0 || interp->safeWriteDirs!=NULL || interp->safeReadDirs!=NULL) {
#ifndef JSI_OMIT_FILESYS
jsi_FileCmdsInit(interp);
jsi_FilesysInit(interp);
#endif
#ifdef HAVE_SQLITE
Jsi_InitSqlite(interp);
#endif
}
#ifdef HAVE_WEBSOCKET
Jsi_InitWebsocket(interp);
#endif
if (argc > 0) {
char *ss = argv[0];
char epath[PATH_MAX] = "";
#ifdef __WIN32
if (GetModuleFileName(NULL, epath, sizeof(epath))>0)
ss = epath;
#else
#ifndef PROC_SELF_DIR
#define PROC_SELF_DIR "/proc/self/exe"
#endif
if (ss && *ss != '/' && readlink(PROC_SELF_DIR, epath, sizeof(epath))) {
ss = epath;
}
#endif
Jsi_Value *src = Jsi_ValueNewStringDup(interp, ss);
Jsi_IncrRefCount(interp, src);
jsi_execName = Jsi_Realpath(interp, src, NULL);
Jsi_DecrRefCount(interp, src);
jsi_execValue = Jsi_ValueNewString(interp, jsi_execName);
}
//interp->nocacheOpCodes = 1;
return interp;
}
int Jsi_InterpGone( Jsi_Interp* interp)
{
return (interp == NULL || interp->deleting || interp->destroying || interp->exited);
}
static void DeleteAllInterps() { /* Delete toplevel interps. */
Jsi_HashEntry *hPtr;
Jsi_HashSearch search;
for (hPtr = Jsi_HashEntryFirst(interpsTbl, &search); hPtr; hPtr = Jsi_HashEntryNext(&search)) {
Jsi_Interp *interp = Jsi_HashKeyGet(hPtr);
Jsi_HashEntryDelete(hPtr);
interp->destroying = 1;
Jsi_InterpDelete(interp);
}
}
static int jsiInterpDelete(Jsi_Interp* interp, void *unused)
{
SIGASSERT(interp,INTERP);
if (interp == jsiMainInterp) { /* cleanup all toplevel interps. */
DeleteAllInterps();
}
jsiDelInterp = interp;
if (interp->gsc) jsi_ScopeChainFree(interp, interp->gsc);
//if (interp->csc->d.obj->refcnt>1) /* TODO: This is a hack to release global. */
// Jsi_ObjDecrRefCount(interp, interp->csc->d.obj);
if (interp->csc) Jsi_DecrRefCount(interp, interp->csc);
if (interp->ps) jsi_PstateFree(interp->ps);
int i;
for (i=0; i<interp->maxStack; i++) {
if (interp->Stack[i]) Jsi_DecrRefCount(interp, interp->Stack[i]);
if (interp->Obj_this[i]) Jsi_DecrRefCount(interp, interp->Obj_this[i]);
}
Jsi_Free(interp->Stack);
Jsi_Free(interp->Obj_this);
Jsi_HashDelete(interp->assocTbl);
Jsi_HashDelete(interp->codeTbl);
Jsi_HashDelete(interp->cmdSpecTbl);
Jsi_HashDelete(interp->fileTbl);
Jsi_HashDelete(interp->funcTbl);
if (interp == jsiMainInterp)
Jsi_HashDelete(interp->lexkeyTbl);
Jsi_HashDelete(interp->protoTbl);
Jsi_HashDelete(interp->regexpTbl);
if (interp->subthread)
jsiMainInterp->threadCnt--;
if (interp->subthread && interp->strKeyTbl == jsiMainInterp->strKeyTbl)
jsiMainInterp->threadShrCnt--;
if (!jsiMainInterp->threadShrCnt)
jsiMainInterp->strKeyTbl->lockProc = NULL;
if (interp == jsiMainInterp || interp->strKeyTbl != jsiMainInterp->strKeyTbl)
Jsi_HashDelete(interp->strKeyTbl);
Jsi_ValueMakeUndef(interp, &interp->ret);
Jsi_HashDelete(interp->thisTbl);
Jsi_HashDelete(interp->userdataTbl);
Jsi_HashDelete(interp->eventTbl);
Jsi_HashDelete(interp->varTbl);
Jsi_HashDelete(interp->genValueTbl);
Jsi_HashDelete(interp->genObjTbl);
Jsi_HashDelete(interp->genDataTbl);
Jsi_HashDelete(interp->loadTbl);
Jsi_HashDelete(interp->optionDataHash);
if (interp->preserveTbl->numEntries!=0)
Jsi_LogBug("Preserves unbalanced");
Jsi_HashDelete(interp->preserveTbl);
if (interp->argv0)
Jsi_DecrRefCount(interp, interp->argv0);
if (interp->console)
Jsi_DecrRefCount(interp, interp->console);
if (interp->curDir)
Jsi_Free(interp->curDir);
if (interp == jsiMainInterp) {
jsiMainInterp = NULL;
jsi_FilesysDone();
}
if (interp->Mutex) {
Jsi_MutexDone(interp, interp->Mutex);
Jsi_Free(interp->Mutex);
}
if (interp->QMutex) {
Jsi_MutexDone(interp, interp->QMutex);
Jsi_Free(interp->QMutex);
Jsi_DSFree(&interp->interpEvalQ);
Jsi_DSFree(&interp->interpMsgQ);
}
Jsi_DecrRefCount(interp, interp->NullValue);
#ifdef VALUE_DEBUG
Jsi_HashSearch search;
Jsi_HashEntry *hPtr;
for (hPtr = Jsi_HashEntryFirst(interp->valueDebugTbl, &search);
hPtr != NULL; hPtr = Jsi_HashEntryNext(&search)) {
Jsi_Value *vp = Jsi_HashKeyGet(hPtr);
if (vp==NULL || vp->sig != JSI_SIG_VALUE)
printf("BAD VALUE: %p\n", vp);
else
printf("VALUE: %s:%d in func %s\n", vp->fname, vp->line, vp->func);
}
Jsi_HashDelete(interp->valueDebugTbl);
#endif
Jsi_OptionsFree(interp, InterpOptions, interp, 0);
SIGASSERT(interp,INTERP);
MEMCLEAR(interp);
jsiDelInterp = NULL;
Jsi_Free(interp);
return JSI_OK;
}
void Jsi_InterpDelete(Jsi_Interp* interp)
{
if (interp->deleting || interp->level > 0)
return;
if (interp->onDeleteProc)
(*interp->onDeleteProc)(interp, (void*)interp->exitCode);
interp->deleting = 1;
Jsi_EventuallyFree(interp, interp, jsiInterpDelete);
}
typedef struct {
void *data;
Jsi_Interp *interp;
int refCnt;
Jsi_DeleteProc* proc;
} PreserveData;
void Jsi_Preserve(Jsi_Interp* interp, void *data) {
int isNew;
PreserveData *ptr;
Jsi_HashEntry *hPtr = Jsi_HashEntryCreate(interp->preserveTbl, data, &isNew);
assert(hPtr);
if (!isNew) {
ptr = Jsi_HashValueGet(hPtr);
assert(interp == ptr->interp);
ptr->refCnt++;
} else {
ptr = Jsi_Calloc(1,sizeof(*ptr));
Jsi_HashValueSet(hPtr, ptr);
ptr->interp = interp;
ptr->data = data;
ptr->refCnt = 1;
}
}
void Jsi_Release(Jsi_Interp* interp, void *data) {
Jsi_HashEntry *hPtr = Jsi_HashEntryFind(interp->preserveTbl, data);
if (!hPtr) return;
PreserveData *ptr = Jsi_HashValueGet(hPtr);
assert(ptr->interp == interp);
if (--ptr->refCnt > 0) return;
if (ptr->proc)
(*ptr->proc)(interp, data);
Jsi_Free(ptr);
Jsi_HashEntryDelete(hPtr);
}
void Jsi_EventuallyFree(Jsi_Interp* interp, void *data, Jsi_DeleteProc* proc) {
Jsi_HashEntry *hPtr = Jsi_HashEntryFind(interp->preserveTbl, data);
if (!hPtr) {
(*proc)(interp, data);
return;
}
PreserveData *ptr = Jsi_HashValueGet(hPtr);
assert(ptr && ptr->interp == interp);
Jsi_HashEntryDelete(hPtr);
}
Jsi_DeleteProc* Jsi_InterpOnDelete(Jsi_Interp *interp, Jsi_DeleteProc *freeProc)
{
Jsi_DeleteProc* old = interp->onDeleteProc;
interp->onDeleteProc = freeProc;
return old;
}
static void interpObjErase(InterpObj *fo)
{
SIGASSERT(fo,INTERPOBJ);
if (fo->subinterp) {
Jsi_Interp *interp = fo->subinterp;
fo->subinterp = NULL;
Jsi_HashDelete(fo->aliases);
Jsi_InterpDelete(interp);
/*fclose(fo->fp);
Jsi_Free(fo->interpname);
Jsi_Free(fo->mode);*/
}