-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathlambdaway_eval.js
1535 lines (1455 loc) · 53.9 KB
/
lambdaway_eval.js
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
/*
JS.js | alainmarty 20160210 | copyleft under GPL
contains static modules:
LAMBDATALK, ALPHAWIKI, FORUM, SECTIONEDIT, SHOW, LIGHTBOX, MINIBOX
other modules are in the plugin folder and are called dynamically as needed:
LAMBDALISP, LAMBDASHEET, ...
*/
//---------------------------------------------------------------------------------//
// LAMBDATALK
//---------------------------------------------------------------------------------//
var LAMBDATALK = (function () {
var dict = {}; // JS + user functions
var g_cons = {}; // an object containing user defined conses
var g_array = {}; // an object containing user defined arrays
var g_lambda_num = 0; // global number for lambdas used in function eval_lambda()
var g_cons_num = 0; // global number for conses structs
var g_array_num = 0; // global number for array structs
var evaluate = function( str ) { // called at each keyUp (public)
var t0 = new Date().getTime();
str = preprocessing( str ); // cleaning, hiding braces, sugar, ...
var bal = balance( str ); // control braces
if (bal.left != bal.right)
str = 'none';
else {
str = eval_special_forms( str ); // handle '{, q, if, lambda, def, let
str = eval_forms( str ); // evaluate {first rest}
}
str = postprocessing( str ); // cleaning, showing braces
var t1 = new Date().getTime();
return {val:str, bal:bal, time:t1-t0};
};
// 1. EVALUATION OF SYMBOLIC EXPRESSIONS
var loop_rex = /\{([^\s{}]*)(?:[\s]*)([^{}]*)\}/g; // regexp sliding window
var debug = false;
var eval_forms = function( str ) { // (public)
var index = 0, trace = 'TRACE\n';
while (str != (str = str.replace( loop_rex, do_apply)))
if (debug) trace += index++ + ': ' + str + '\n';
if (debug) console.log( trace );
return str;
};
var do_apply = function() {
var f = arguments[1] || '', r = arguments[2] || '';
if (dict.hasOwnProperty(f)) { // first belongs to dict
return dict[f].apply( null, [r] ); // [r] is a pointer to a string
} else { // return (f r) unevaluated
return (r == '')? '(' + f + ')' : '(' + f + ' ' + r + ')'; // {} -> ()
}
};
//---------------------------------------------------------------------------------//
// 2. EVALUATION OF SPECIAL FORMS ['{, q, if, let, lambda, def]
var eval_special_forms = function( str ) {
//g_lambda_num = 0; // reset user defined lambdas
//g_cons_num = 0; // reset user defined conses
//g_array_num = 0; // reset user defined arrays
str = eval_apos( str ); // '{foo bar} '{foo bar} '{foo bar}
str = eval_quotes( str ); // {q s-expressions}
str = eval_ifs( str ); // {if bool then one else two}
str = eval_lets( str ); // {let { {:arg val} ... } body}
str = eval_lambdas( str ); // {lambda {:args} body}
str = eval_defs( str); // {def name body}
return str;
};
var catch_sexpression = function( symbol, str ) {
var start = str.indexOf( symbol );
if (start == -1) return 'none';
var d0, d1, d2;
if (symbol === "'{") { d0 = 1; d1 = 1; d2 = 1; }
else if (symbol === "{") { d0 = 0; d1 = 0; d2 = 1; }
else { d0 = 0; d1 = symbol.length; d2 = 0; }
var nb = 1, index = start+d0;
while(nb > 0) { if (index > 100000) {console.log( 'oops' ); return 'none';}
index++;
if ( str.charAt(index) == '{' ) nb++;
else if ( str.charAt(index) == '}' ) nb--;
}
return str.substring( start+d1, index+d2 );
};
var eval_apos = function( str ) {
while (true) {
var s = catch_sexpression( "'{", str );
if (s === 'none') break;
str = str.replace( "'"+s, hide_braces( s.trim() ) );
}
return str;
};
var eval_quotes = function( str ) {
while (true) {
var s = catch_sexpression( '{q ', str );
if (s === 'none') break;
str = str.replace( '{q '+s+'}', hide_braces( s.trim() ) );
}
return str;
};
var eval_ifs = function( str ) { // {if bool then one else two}
while (true) {
var s = catch_sexpression( '{if ', str );
if (s === 'none') break;
str = str.replace( '{if '+s+'}', eval_if( s.trim() ) );
}
return str;
};
var eval_lambdas = function( str ) {
while (true) {
var s = catch_sexpression( '{lambda ', str );
if (s === 'none') break;
str = str.replace( '{lambda '+s+'}', eval_lambda(s.trim()) );
}
return str;
};
var eval_defs = function( str, flag ) {
flag = (flag === undefined)? true : false;
while (true) {
var s = catch_sexpression( '{def ', str );
if (s === 'none') break;
str = str.replace( '{def '+s+'}', eval_def( s.trim(), flag ) );
}
return str;
};
var eval_lets = function( str ) {
while (true) {
var s = catch_sexpression( '{let ', str );
if (s === 'none') break;
str = str.replace( '{let '+s+'}', eval_let(s.trim()) );
}
return str;
};
//
var eval_if = function( s ) {
s = eval_ifs( s );
var pif = parse_if( s );
return '{_if_ ' + pif[0] +
' then ' + hide_braces(pif[1]) + ' else ' + hide_braces(pif[2]) + '}';
};
var eval_lambda = function (s) {
s = eval_lambdas( s );
var name = 'lambda_' + g_lambda_num ++,
args = supertrim( s.substring(1, s.indexOf('}')) ).split(' '),
body = supertrim( s.substring(s.indexOf('}')+1) );
for (var reg_args=[], i=0; i < args.length; i++)
reg_args[i] = RegExp( args[i], 'g');
dict[name] = function () {
var vals = supertrim(arguments[0]).split(' ');
return function (bod) {
if (vals.length < args.length) {
for (var i=0; i < vals.length; i++)
bod = bod.replace( reg_args[i], vals[i] );
var _args = args.slice(vals.length).join(' ');
bod = eval_lambda( '{' + _args + '}' + bod );
} else { // vals.length >= args.length, ignore extra values
for (var i=0; i < args.length; i++)
bod = bod.replace( reg_args[i], vals[i] );
}
return bod;
}(body);
};
return name;
};
var eval_def = function (s, flag) {
s = eval_defs( s, false );
var name = s.substring(0, s.indexOf(' ')).trim(),
body = s.substring(s.indexOf(' ')).trim();
body = supertrim(body);
if (dict.hasOwnProperty(body)) {
dict[name] = dict[body];
delete dict[body];
} else {
dict[name] = function() { return body };
}
return (flag)? name : '';
};
var eval_let = function (s) {
s = eval_lets( s );
s = supertrim( s );
var varvals = catch_sexpression( '{', s );
var body = supertrim( s.replace( varvals, '' ) );
varvals = varvals.substring(1, varvals.length-1);
var avv = [], i=0;
while (true) {
avv[i] = catch_sexpression( '{', varvals );
if (avv[i] === 'none') break;
varvals = varvals.replace( avv[i], '' );
i++;
}
for (var one ='', two='', i=0; i<avv.length-1; i++) {
var index = avv[i].indexOf( ' ' );
one += avv[i].substring( 1, index ) + ' ';
two += avv[i].substring(index+1, avv[i].length-1) + ' ';
}
return '{{lambda {'+ one + '} ' + body + '} ' + two + '}';
};
//---------------------------------------------------------------------------------//
// 3. PRE-PROCESSING, POST-PROCESSING, UTILITY FUNCTIONS
var preprocessing = function( str ) {
//delete_lambdas();
//delete_conses();
//delete_arrays();
str = str.trim()
.replace( /°°°[\s\S]*?°°°/g, '' ) // delete °°° comments °°°
.replace( /<=/g, '__lte__' ) // prevent "<=" break -> "< ="
.replace( /<([^<>]*)>/g, '< $1>' ) // breaks HTML < tags>
.replace( /<\/([^<>]*)>/g, '< /$1>' ) // breaks HTML < /tags>
.replace( /__lte__/g, '<=' ); // retrieve the "<=" operators
str = hide_show_braces( str, true ); // hide braces between °° .. .. °°
str += '\n'; // add a CR at the end for "closing" a final alternate form
// some sugar form to frequently used standard form {first rest} :
str = str.replace( /_h([1-6]) (.*?)\n/g, '{h$1 $2}' ) // titles
.replace( /_p (.*?)\n/g, '{p $1}' ) // paragraphs
.replace( /_(u|o)l ([^\n]*?)\n/g, '{_$1l $2}' ) // list items
.replace( /_(u|o)l([0-9]+) ([^\n]*?)\n/g, '{__$1l $2 $3}' )
.replace( /\[\[([^\[\]]*?)\]\]/g, doWikiLink ); // wiki-links
return str;
};
var postprocessing = function( str ) {
str = str.replace( /(<\/ol><ol>|<\/ul><ul>)/g,'' ) // clean list items
.replace( /<(u|o)l>/g, '<$1l>' )
.replace( /<\/(u|o)l>/g,'</$1l>' );
str = hide_show_braces( str, false ); // show braces escaped by °° .. .. °°
str = show_braces(str);
delete_lambdas();
delete_conses();
delete_arrays();
return str;
};
var delete_lambdas = function () {
g_lambda_num = 0;
for (var key in dict) {
if (key.substring(0,7) === 'lambda_') {
delete dict[key]
}
}
};
var delete_arrays = function () {
g_array_num = 0;
for (var key in g_array) {
if (key.substring(0,6) === 'array_') {
delete g_array[key]
}
}
};
var delete_conses = function () {
g_cons_num = 0;
for (var key in g_cons) {
if (key.substring(0,5) === 'cons_') {
delete g_cons[key]
}
}
};
//---------------------------------------------------------------------------------//
var balance = function ( str ) {
var acc_strt = str.match( /\{/g ),
acc_stop = str.match( /\}/g ),
nb_acc_strt = (acc_strt)? acc_strt.length : 0,
nb_acc_stop = (acc_stop)? acc_stop.length : 0;
return {left:nb_acc_strt, right:nb_acc_stop};
};
var hide_show_braces = function ( str, flag ) { // °° some text °°
// braces are hidden in pre-processing and showed in post-processing
var tab = str.match( /°°[\s\S]*?°°/g );
if (tab == null) return str;
for (var i=0; i< tab.length; i++)
str = str.replace( tab[i], ((flag)? hide_braces(tab[i]) : show_braces(tab[i]) ));
str = str.replace( /°°/g, '' );
return str;
};
var hide_braces = function( s ) { // deactivate s-exprs
return s.replace( /\{/g, '{' ).replace( /\}/g, '}' );
};
var show_braces = function( s ) { // reactivate s-exprs
return s.replace(/{/g, '{').replace(/}/g, '}')
};
var supertrim = function (str) { // trimmed + multiple spaces reduced to one
return str.trim().replace(/\s+/g, ' ')
};
var doWikiLink = function ( m, nom ) {
// wikilinks alternatives to {a {@ src=""...}}
if (nom.match( /\|/ )) { // [[nom|URL]] -> <a href="URL">nom</a>
var tab = nom.split( '|' );
return '<a href="' + tab[1] + '">' + tab[0] + '</a>';
}
else // [[nom]] -> <a href="?view=nom">nom</a>
return '<a href="?view=' + nom + '">' + nom + '</a>';
};
var parse_if = function(s) {
var index1 = s.indexOf( 'then' ),
index2 = s.indexOf( 'else' ),
bool_term = s.substring(0,index1).trim(),
then_term = s.substring(index1+5,index2).trim(),
else_term = s.substring(index2+5).trim();
return [bool_term, then_term, else_term]
};
//---------------------------------------------------------------------------------//
// 4. DICTIONARY
// every elements of dict have this structure :
// dict[ tag ] = function () { .. .. };
// from the function catch_sexprs(), arguments come as a single element array,
// so "var args = arguments[0]" gives arguments as a string
// and "var args = arguments[0].split(' ')" gives arguments as an array
dict['debug'] = function() {
var args = arguments[0]; // true|false
debug = (args === 'true')? true : false;
return ''
}
dict['lib'] = function () { // {lib} -> list the functions in dict
var str = '', index = 0;
for (var key in dict) {
//if(dict.hasOwnProperty(key) && key != 'lambda_' && key != '_if_' ) {
if(dict.hasOwnProperty(key) && !key.match('lambda_') && !key.match( /^_/ ) ) {
str += key + ', ';
index++;
}
}
return '<b>dictionary: </b>(' +
index + ') [ ' + str.substring(0,str.length-2) + ' ]<br /> ';
};
dict['lambdas'] = function () { // {lambdas} -> list lambdas in dict
var str = '', index = 0;
for (var key in dict) {
if(dict.hasOwnProperty(key) && key.match('lambda_')) {
str += key + ', ';
index++;
}
}
return '<b>lambdas: </b>(' +
index + ') [ ' + str.substring(0,str.length-2) + ' ]<br /> ';
};
dict['conses'] = function () { // {lists} -> list the lists in g_cons
var str = '', index = 0;
for (var key in g_cons) {
if(g_cons.hasOwnProperty(key)) {
str += key + ', ';
index++;
}
}
return '<b> conses :</b>(' +
index + ') [ ' + str.substring(0,str.length-2) + ' ]<br /> ';
};
dict['arrays'] = function () { // {arrays} -> list the arrays in g_array
var str = '', index = 0;
for (var key in g_array) {
if(g_array.hasOwnProperty(key)) {
str += key + ', ';
index++;
}
}
return '<b> arrays :</b>(' +
index + ') [ ' + str.substring(0,str.length-2) + ' ]<br /> ';
};
//---------------------------------------------------------------------------------//
// SENTENCES first, rest, nth, length
dict['first'] = function () { // {first a b c d}
var args = arguments[0].split(' '); // [a,b,c,d]
return args[0];
}
dict['rest'] = function () { // {rest a b c d}
var args = arguments[0].split(' '); // [a,b,c,d]
return args.slice(1).join(' ');
}
dict['nth'] = function () { // {nth n a b c d}
var args = arguments[0].split(' '); // [a,b,c,d]
return args[args.shift()];
}
dict['length'] = function () { // {length a b c d}
var args = arguments[0].split(' '); // [a,b,c,d]
return args.length;
}
// STRINGS equal?, empty?, chars, charAt, substring
dict['equal?'] = function() { // {equal? word1 word2}
var terms = arguments[0].split(' ');
return terms[0] === terms[1];
};
dict['empty?'] = function() { // {empty? string}
return arguments[0] === '';
};
dict['chars'] = function() { // {chars some text}
return arguments[0].length;
};
dict['charAt'] = function() { // {charAt i some text}
var args = arguments[0].split(' '), // ["i","some","text"]
i = args.shift(),
s = args.join(' ');
return s.charAt(parseInt(i));
};
dict['substring'] = function() { // {substring i0 i1 some text}
var args = arguments[0].split(' '), // ["i0","i1","some","text"]
i0 = parseInt(args.shift()),
i1 = parseInt(args.shift()),
s = args.join(' ');
return s.substring(i0,i1);
};
//---------------------------------------------------------------------------------//
// CONS CAR CDR (2015/03/14)
// cons, cons?, car, cdr, cons_disp
// list.new, list.disp
dict['cons'] = function () { // {cons 12 34} -> cons_123
var args = supertrim(arguments[0]).split(' ');
var name = 'cons_' + g_cons_num++; // see eval_special_forms()
g_cons[name] = function(w) { return (w === 'true')? args[0] : args[1] };
return name;
};
dict['cons?'] = function () { // {cons? z}
var z = arguments[0];
return ( z.substring(0,5) === 'cons_' )? 'true' : 'false';
};
dict['car'] = function () { // {car z}
var z = arguments[0];
return ( z.substring(0,5) === 'cons_' )? g_cons[z]('true') : z;
};
dict['cdr'] = function () { // {cdr z}
var z = arguments[0];
return ( z.substring(0,5) === 'cons_' )? g_cons[z]('false') : z;
};
dict['cons_disp'] =
dict['cons.disp'] = function () { // {cons.disp {cons a b}}
var args = supertrim(arguments[0]);
var r_cons_disp = function (z) {
if ( z.substring(0,5) === 'cons_' )
return '(' + r_cons_disp( g_cons[z]('true') ) + ' '
+ r_cons_disp( g_cons[z]('false') ) + ')';
else
return z;
};
return r_cons_disp( args );
};
/* could be a user function
{def cons_disp {lambda {:p}
{if {cons? :p}
then ({cons_disp {car :p}} {cons_disp {cdr :p}})
else :p}}}
*/
dict['list_new'] =
dict['list.new'] = function () {
// {list.new 12 34 56 78} -> cons_123
var args = supertrim(arguments[0]).split(' '); // [12,34,56,78]
var r_list_new = function (arr) {
if (arr.length === 0)
return 'nil';
else
return '{cons ' + arr.shift() + ' ' + r_list_new( arr ) + '}';
};
return r_list_new( args );
};
/* could be a user function
{def list_disp {lambda {:l}
{if {equal? :l nil}
then nil
else {car :l} {list_disp {cdr :l}}}}}
*/
dict['->'] =
dict['list_disp'] =
dict['list.disp'] = function () {
// {list.disp {list.new 12 34 56 78}}
var r_list_disp = function (z) {
if (z === 'nil')
return '';
else
return g_cons[z]('true') + ' ' + r_list_disp( g_cons[z]('false') );
};
var args = supertrim(arguments[0]);
if ( args.substring(0,5) !== 'cons_' )
return args
else
return '(' + supertrim( r_list_disp( args.split(' ') ) ) + ')';
};
dict['list.length'] = function () {
var args = supertrim(arguments[0]);
var foo = function (z,n) {
return (z === 'nil')? n : foo(g_cons[z]('false'), n+1);
};
return foo(args,0);
};
// testing user functions replaced by primitives
dict['list.first'] = function () {
var z = arguments[0]; // cons_123
return ( z.substring(0,5) === 'cons_' )? g_cons[z]('true') : z;
};
dict['list.butfirst'] = function () {
var z = arguments[0]; // cons_123
return ( z.substring(0,5) === 'cons_' )? g_cons[z]('false') : z;
};
dict['list.last'] = function () {
var r_list_last = function (z) {
if (g_cons[z]('false') === 'nil')
return g_cons[z]('true');
else
return r_list_last( g_cons[z]('false') );
};
var args = arguments[0]; // cons_123
if ( args.substring(0,5) !== 'cons_' )
return args
else
return r_list_last( args.split(' ') );
};
dict['list.butlast'] = function () {
return 'not yet!';
};
dict['list.2array'] = function () {
var args = arguments[0]; // cons_123
args = dict['list.disp'](args);
return args.substring(1,args.length-1).split(' ');
};
//---------------------------------------------------------------------------------//
// ARRAYS (2015/06/15)
// array.new, array?, array.disp, array.length, array.nth
dict['array.new'] = function () { // {array.new 12 34 56 78} -> array_123
var args = supertrim(arguments[0]);
var name = 'array_' + g_array_num++;
g_array[name] = (args != '')? args.split(' ') : [];
return name;
};
dict['array?'] = function () { // {array? z}
var args = arguments[0].trim(); // z
return Array.isArray(g_array[args]);
};
dict['array.disp'] = function () { // {array.disp z}
var args = arguments[0].trim(); // z
return (Array.isArray(g_array[args]))? '['+g_array[args].join(',')+']' : args;
};
dict['array.length'] = function () { // {array.length z}
var args = arguments[0].trim(); // z
return (Array.isArray(g_array[args]))? g_array[args].length : 0;
};
dict['array.nth'] = function () { // {array.nth z i}
var args = supertrim(arguments[0]).split(' '); // [z,i]
return (Array.isArray(g_array[args[0]]))? g_array[args[0]][args[1]] : args[0];
};
dict['array.last'] = function () { // {array.last z} added 2016|01|30
var args = arguments[0].trim(); // z
return g_array[args][g_array[args].length-1];
};
dict['array.push'] = function () { // {array.push z val}
var args = supertrim(arguments[0]).split(' '); // [z,val]
g_array[args[0]].push( args[1] );
return args[0];
};
dict['array.pop'] = function () { // {array.pop z} added 2016|01|30
var args = arguments[0].trim(); // z
return g_array[args].pop();
};
//---------------------------------------------------------------------------------//
dict['_if_'] =
dict['when'] = function () { // twinned with eval_ifs()
var pif = parse_if( arguments[0] );
return (eval_forms(pif[0]) === "true")?
eval_forms(show_braces(pif[1])) : eval_forms(show_braces(pif[2]));
};
dict['serie'] = function () { // {serie start end step}
var args = supertrim(arguments[0]).split(' ');
var start = parseFloat( args[0] ),
end = parseFloat( args[1] ),
step = parseFloat( args[2] || 1 );
for (var str='', i=start; i<=end; i+= step)
str += i + ' ';
return str.substring(0, str.length-1);
};
dict['map'] = function () { // {map func serie}
var args = supertrim(arguments[0]).split(' ');
var func = args.shift();
dict['map_temp'] = dict[func]; // if it's a lambda it's saved in map_temp
for (var str='', i=0; i< args.length; i++)
str += dict['map_temp'].call( null, args[i] ) + ' ';
delete dict['map_temp']; // clean map_temp
return str.substring(0, str.length-1);
};
dict['reduce'] = function () { // {reduce *userfunc* serie}
var args = supertrim(arguments[0]).split(' ');
var func = args.shift();
var res = '{{' + func + ' ' + args[0] + '}';
for (var i=1; i< args.length-1; i++)
res = '{' + func + ' ' + res + ' ' + args[i] + '}';
res += ' ' + args[args.length-1] + '}';
return eval_forms(res);
};
// experimenting: {set! foo 1}, {foo} -> 1 {set! foo 2}, {foo} -> 2
dict['set!'] = function() {
var args = supertrim(arguments[0]).split(' ');
var one = args.shift();
args = args.join(' ');
dict[one] = function() { return args };
return args; // one;
};
// BOOLEANS
dict['gt'] =
dict['>'] = function() {
var terms = arguments[0].split(' ');
return parseFloat(terms[0]) > parseFloat(terms[1])
};
dict['lt'] =
dict['<'] = function() {
var terms = arguments[0].split(' ');
return parseFloat(terms[0]) < parseFloat(terms[1])
};
dict['>='] = function() {
var terms = arguments[0].split(' ');
return parseFloat(terms[0]) >= parseFloat(terms[1])
};
dict['<='] = function() { // see pre-processing
var terms = arguments[0].split(' ');
return parseFloat(terms[0]) <= parseFloat(terms[1])
};
dict['='] = function() {
var terms = arguments[0].split(' ');
var a = parseFloat(terms[0]), b = parseFloat(terms[1]);
return !(a < b) && !(b < a)
};
dict['not'] = function () {
return (arguments[0] === 'true') ? 'false' : 'true';
};
dict['or'] = function () {
var terms = arguments[0].split(' ');
for (var ret='false', i=0; i< terms.length; i++)
if (terms[i] == 'true')
return 'true';
return ret;
};
dict['and'] = function () { // (and (= 1 1) (= 1 2)) -> false
var terms = arguments[0].split(' ');
for (var ret='true', i=0; i< terms.length; i++)
if (terms[i] == 'false')
return 'false';
return ret;
};
// BASIC ARITHMETIC OPERATORS made variadic, ie. {* 1 2 3 4 5 6} -> 720
dict['+'] = function() {
var args = arguments[0].split(' ');
//if (args.length == 2) return Number(args[0]) + Number(args[1]);
for (var r=0, i=0; i< args.length; i++)
r += Number(args[i]);
return r;
};
dict['*'] = function() {
var args = arguments[0].split(' ');
//if (args.length == 2) return args[0] * args[1];
for (var r=1, i=0; i< args.length; i++)
if (args[i] !== '')
r *= args[i];
return r;
};
dict['-'] = function () { // (- 1 2 3 4) -> 1-2-3-4
var args = arguments[0].split(' ');
//if (args.length == 2) return args[0] - args[1];
var r = args[0];
if (args.length == 1)
r = -r; // case (- 1) -> -1
else
for (var i=1; i< args.length; i++)
r -= args[i];
return r;
};
dict['/'] = function () { // (/ 1 2 3 4) -> 1/2/3/4
var args = arguments[0].split(' ');
//if (args.length == 2) return args[0] / args[1];
var r = args[0];
if (args.length == 1)
r = 1/r; // case (/ 2) -> 1/2
else
for (var i=1; i< args.length; i++)
if (args[i] !== '')
r /= args[i];
return r;
};
dict['%'] = function() {
var args = arguments[0].split(' ');
return parseFloat(args[0]) % parseFloat(args[1])
};
// JS MATH OBJECT FUNCTIONS
var mathfns = // one argument
['abs', 'acos', 'asin', 'atan', 'atan2', 'ceil', 'cos', 'exp', 'floor',
'log', 'random', 'round', 'sin', 'sqrt', 'tan'];
for (var i=0; i< mathfns.length; i++) {
dict[mathfns[i]] = Math[mathfns[i]]
}
// two or more arguments
dict['pow'] = function () {
var args = arguments[0].split(' ');
return Math.pow(parseFloat(args[0]),parseFloat(args[1]))
};
dict['min'] = function () {
var args = arguments[0].split(' ');
return Math.min.apply(Math, args);
};
dict['max'] = function () {
var args = arguments[0].split(' ');
return Math.max.apply(Math, args);
};
dict['PI'] = function () { return Math.PI };
dict['E'] = function () { return Math.E };
dict['date'] = function () { return ALPHAWIKI.getTime() };
//---------------------------------------------------------------------------------//
// A SET OF HTML and MATHML TAGS
dict['@'] = function () { // catch HTML attributes (and CSS rules)
return '@@' + arguments[0] + '@@'
};
var attribute_extract = function ( attr, key ) {
var rex = new RegExp( key + '=\"[^\"]*?\"', 'g' ); // catch key="value"
var id = attr.match( rex );
if (id == null) return 'null';
var rex = new RegExp( key + '=\"', 'g' );
return id[0].replace( rex, '' ).replace( '\"', ''); // return value
};
var htmltags =
['div','span','a','ul','ol','li','dl','dt','dd','table','tr','td',
'h1','h2','h3','h4','h5','h6','p','b','i','u','pre','center','blockquote',
'sup','sub','del','code','img','textarea','embed','canvas','audio','video','source',
/*
'math','mrow','mfrac','mo','mi','mn','msup',
'msub','msubsup','msqrt','munder','mover','munderover',
*/
'svg','line','rect','circle','polyline','path','text','g',
'animateMotion','mpath','use','textPath', 'image', 'clipPath'];
for (var i=0; i< htmltags.length; i++) {
dict[htmltags[i]] = function(tag) {
return function() {
var attr = arguments[0].match( /@@[\s\S]*?@@/ );
if (attr == null)
return '<'+tag+'>'+arguments[0]+'</'+tag+'>';
arguments[0] = arguments[0].replace( attr[0], '' ).trim();
attr = attr[0].replace(/^@@/, '').replace(/@@$/, '');
return '<'+tag+' '+attr+'>'+arguments[0]+'</'+tag+'>';
}
}(htmltags[i]);
}
dict['br'] = function () { return '<br />' };
dict['hr'] = function () { return '<hr />' };
// _ulxx|_olxx as alternatives to {ul {li ...}...} and {ol {li ...}...}
// they are handled in pre-processing and post-processing phases
dict['_ul'] = function () {
var args = supertrim(arguments[0]).split(' ');
return '<ul><li>' + args.join(' ') + '</li></ul>';
};
dict['__ul'] = function () {
var args = supertrim(arguments[0]).split(' ');
var delta = 'style="margin-left:' +args.shift() + 'px;"';
return '<ul><li '+ delta + '>' + args.join(' ') + '</li></ul>';
};
// _olxx can't be nested, use the standard syntax instead
dict['_ol'] = function () {
var args = supertrim(arguments[0]).split(' ');
return '<ol><li>' + args.join(' ') + '</li></ol>';
};
dict['__ol'] = function () {
var args = supertrim(arguments[0]).split(' ');
var delta = 'style="margin-left:' +args.shift() + 'px;"';
return '<ol><li '+ delta + '>' + args.join(' ') + '</li></ol>';
};
// CONTROLLED (mas o meno) and EXTENDED HTML TAGS
dict['iframe'] = function() {
// {iframe {@ src=".." height=".." width=".."}}
var args = arguments[0];
// !!!!! uncomment the 2 following lines for a better security !!!!
// if (args.match( 'http://' )) // try to prevent cross_scripting
// return 'Sorry, external sources are not authorized in iframes!';
var attr = args.match( /@@[\s\S]*?@@/ );
if (attr == null) return 'oops';
attr = attr[0].replace(/^@@/, '').replace(/@@$/, ''); // clean attributes
return '<iframe ' + attr + ' ></iframe>';
};
dict['input'] = function () {
// {input {@ type="a_type" value="val" onevent="°° JS exprs °°"}}
var args = arguments[0];
if (args.match( 'http://' )) // try to prevent cross_scripting
return 'Sorry, external sources are not authorized in inputs!';
if (args.match( /type\s*=\s*("|')\s*file\s*("|')/ ))
return 'Sorry, type="file" is not allowed';
var attr = args.match( /@@[\s\S]*?@@/ ); // any whitespace or not -> all
if (attr == null) return 'oops';
attr = attr[0].replace(/^@@/, '').replace(/@@$/, ''); // clean attributes
return '<input ' + attr + ' />';
};
dict['script'] = function (){ // {script °° code °°}
var args = arguments[0];
if (args.match( 'http://' )) // try to prevent cross_scripting
return 'Sorry, external sources are not authorized in scripts!';
var script = show_braces(args);
var code = (function () {
var js = document.createElement('script');
js.innerHTML = script;
document.head.appendChild( js );
document.head.removeChild( js );
})();
return '';
};
dict['style'] = function (){ // {style °° code °°}
var args = arguments[0];
if (args.match( 'http://' )) // try to prevent cross_scripting
return 'Sorry, external sources are not authorized in styles!';
var style = show_braces(args);
var code = (function () {
var cs = document.createElement('style');
cs.innerHTML = style;
document.head.appendChild( cs );
// document.head.removeChild( cs ); don't do that !
})();
return '';
};
dict['mailto'] = function () { // {mailto john•martin_at_free•fr}
var args = arguments[0];
var mail = args.replace(/•/g, '.').replace(/_at_/, '@');
return '<a href="mailto:'+mail+'">'+args+'</a>';
};
var note_number = 0; // global number for notes
dict['note'] = function () { // {note a_word and any text}
var args = arguments[0].split(' ');
var note = args.shift();
var rd = '_' + note_number++;
return '<a href="javascript:ALPHAWIKI.toggle_display(\''
+ rd + '\');">' + note + '</a>'
+ '<span class="note" id="' + rd + '" >'
+ args.join( ' ' ) + '</span>';
};
dict['note_start'] = function () { // {note_start an_ID any text}
var args = arguments[0].split(' ');
var note_id = args.shift();
return '<a href="javascript:ALPHAWIKI.toggle_display(\''
+ note_id + '\');">' + args.join( ' ') + '</a>';
};
dict['note_end'] = function () { // {note_end {@ id="ID" style="style"} text}
var args = arguments[0];
var attr = args.match( /@@[\s\S]*?@@/ ); // any whitespace or not -> all
if (attr == null) return 'oops';
args = args.replace( attr[0], '' ).trim(); // extract attributes
attr = attr[0].replace(/^@@/, '').replace(/@@$/, ''); // clean attributes
return '<div class="note" ' + attr + '>' + args + '</div>';
};
dict['back'] = function () { // {back texte }
var args = arguments[0];
return '<a href="javascript:history.go(-1);">' + args + '</a>';
};
dict['post'] = function () { // obsolete, only for retro-compatibility
var args = arguments[0];
return '<div class="post"> post from : ' + args + '</div>';
};
dict['drag'] = function () { // {drag}
// CAUTION : div parent must have a defined position, top and left
return '<div style="cursor:move;background:red; '
+ 'width:10px; height:10px; line-height:20px; border:1px solid black;"'
+ 'onmousedown="ALPHAWIKI.beginDrag( this.parentNode, event );"> </div>';
};
dict['listing'] = function () { // {picots left top width angle opacity pre}
var args = arguments[0].split(' ');
var str = "position:absolute;"
+ "box-shadow:0 0 8px black;padding:5px 5px 5px 10px;"
+ "color:#800; line-height:1.0em;"
+ " background:url('skins/dot.jpg') repeat-y,"
+ " url('skins/dot.jpg') repeat-y 100% white;"
+ "left:"+args[0]+"px; top:"+args[1]+"px; width:"+args[2]+"px;"
+ "-webkit-transform:rotate("+args[3]+"deg);"
+ " -moz-transform:rotate("+args[3]+"deg);"
+ " transform:rotate("+args[3]+"deg);";
if (args[4] !== undefined) str += "opacity:"+args[4]+";";
if (args[5] !== undefined) str += "white-space:pre-wrap;";
return '{@ style="' + str + '"}{drag}';
};
// works with moduli in this file: SHOW, LIGHTBOX, FORUM, SECTIONEDIT
dict['show'] = function () { // use the lightbox.js and lightbox.css files
// {show {@ src="s" height="h" width="w" title="some text"}}
var args = arguments[0];
var attr = args.match( /@@[\s\S]*?@@/ );
if (attr == null) return 'oops';
attr = attr[0].replace(/^@@/, '').replace(/@@$/, ''); // clean attributes
var s = attribute_extract( attr, 'src' );
var h = attribute_extract( attr, 'height' );
var w = attribute_extract( attr, 'width' );
var t = attribute_extract( attr, 'title' );
return SHOW.build( s, t, h, w );
};
dict['lightbox'] = function () {
// {lightbox (@ height="h_start" width="w_end") (img txt) .. (img txt) }
var h1 = 30, h2 = 30; // thumb_preview_height, thumb_display_height
var args = arguments[0];
var attr = args.match( /@@[\s\S]*?@@/ );
if (attr == null) return 'oops';
args = args.replace( attr[0], '' ).trim(); // extract attributes
attr = attr[0].replace(/^@@/, '').replace(/@@$/, ''); // clean attributes
var h_start = attribute_extract( attr, 'height' );
var w_end = attribute_extract( attr, 'width' );
var picts = [];
var m = args.match( /\(([^\)]*?)\)/g ); // [ (adresse un texte) ]
if (m == null) return 'waiting for some (pict text) ... (pict text) ';
for (var i=0; i<m.length; i++) { // m[i] = "( adresse un texte )"
m[i] = m[i].replace( /^\(/, '' ).replace( /\)$/, '' );
var tab = m[i].split( ' ' ); // tab = [adresse, un, texte]
var img = tab.shift().replace( /^\(/, '' ); // adresse
var txt = tab.join( ' ' ).replace( /\)$/, '' ); // "un texte"
picts[i] = [img, txt];
}
return LIGHTBOX.build( picts, h1, h_start, h2, w_end );
};
// added 2015/12/19
dict['minibox'] = function() {
return MINIBOX.build( supertrim(arguments[0]) )
};
dict['forum'] = function () { // {forum name}, see FORUM
var nom = arguments[0] || '#forum#';
return FORUM.create( nom );
};
dict['editable'] = function () { // {editable num ..}, see SECTIONEDIT
return SECTIONEDIT.create( arguments[0] );
};
// works with modulus LAMBDALISP in the plugins folder
dict['lisp'] = function () { // {lisp lambdalisp expression}, see LAMBDALISP
return LAMBDALISP.parser( arguments[0] ).evaluation;
};
// works with modulus LAMBDASHEET in the plugins folder
dict['lc'] = function () { // {lc row column}, see LAMBDASHEET
var args = arguments[0].split(' ');
return LAMBDASHEET.get_val( parseInt(args[0]), parseInt(args[1]) )
};
dict['sheet'] = function () { // {lc rowMax, colMax}, see LAMBDASHEET
var args = arguments[0].split(' ');
var jmax = args[0]; // || 12;
var imax = args[1]; // || 4;
return LAMBDASHEET.build( jmax ,imax );
};
dict['require'] = function() { // {include wikipage}, NEW 20140824
var page = arguments[0], xmlHttp;
if (window.XMLHttpRequest)
var xmlHttp = new XMLHttpRequest();
else if (window.ActiveXObject)
var xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
xmlHttp.open('GET', 'pages/'+page+'.txt', true);
xmlHttp.send(null);
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4) {
var outer_code = show_braces( xmlHttp.responseText ); // if hidden
LAMBDATALK.evaluate( outer_code ); // extend the dict, unused return value
var page_code = getId('page_textarea').value;
page_code = page_code.replace( /\{require /g, '{div {@ style="display:none"} ' );
getId('page_view').innerHTML = LAMBDATALK.evaluate( page_code ).val;
}
}
return '';
};
/*
// An alternative version of require using a module.
dict['require'] = function() { // {require someCode}
return REQUIRE.require( arguments[0] ); // it's better to use include
};
var REQUIRE = (function() {
var once = true;
var require = function (mylib) {
var mystyle = "display:none; width:0; height:0";
return '<iframe id ="' + mylib + '" src="?view=' + mylib
+ '" style="'+mystyle+'" onload="REQUIRE.do_stuff(\''+mylib+'\')"></iframe>'
};
var do_stuff = function(mylib) {
if (!once) return;
var mylib_content = getId(mylib).contentWindow.document.body.innerHTML;
LAMBDATALK.evaluate( mylib_content );
var input = getId('page_textarea').value;
var _input = input.replace( '{require ', '{div {@ style="display:none"} ' );
var output = LAMBDATALK.evaluate( _input );
getId('page_view').innerHTML = output.val;
once = false;
};
return {require:require, do_stuff:do_stuff}
}()); // end of REQUIRE modulus
*/
// minimum turtle drawing (added 2016/02/10)
// T.init, T.move and T.turn are sugar syntax for "x0 y0 a0", "Md", "Ta"
// T.draw returns "x0 y0 a0 M100 T90 ..." to the SVG polyline points attribute