-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsyntaxbuild.tcl
811 lines (755 loc) · 29.6 KB
/
syntaxbuild.tcl
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
# This script is intended to be run in a Tcl interpreter to extract
# information for the Nagelfar syntax checker.
#
# This file contains hardcoded syntax info for many commands that it
# adds to the resulting syntax database, plus it tries to extract info
# from the interpreter about things like subcommands.
# Autoload stuff to have them available
catch {parray} ; catch {tk_dialog} ; catch {package require msgcat}
foreach gurkmeja [array names auto_index] {
if {[info procs $gurkmeja] == ""} {
catch {eval $auto_index($gurkmeja)}
}
}
if {[info exists gurkmeja]} {
unset gurkmeja
}
# First get some data about the system
set ::kG [lsort [info globals]]
set ::kC [info commands]
foreach pat {{tcl::[a-z]*} {msgcat::[a-z]*} {oo::[a-z]*}} {
foreach p [info commands $pat] {
if {[string match ::* $p]} {
set p [string range $p 2 end]
}
lappend ::kC $p
}
}
# Collect exported namespace commands
if 0 { # Not working yet
set todo [namespace children ::]
while {[llength $todo] > 0} {
set ns [lindex $todo 0]
set todo [lrange $todo 1 end]
eval lappend todo [namespace children $ns]
set exports [namespace eval $ns {namespace export}]
foreach pat $exports {
foreach p [info commands ${ns}::$pat] {
# Do not include the first :: in the name
if {[string match ::* $p]} {
set p [string range $p 2 end]
}
lappend ::kC $p
}
}
}
}
# Function to get an option or subcommand list from an error message.
proc getSubCmds {args} {
catch {uplevel 1 $args} err
lappend regexps {option .* must be (.*)$}
lappend regexps {option .* should be one of (.*)$}
lappend regexps {bad .* must be (.*)$}
lappend regexps {: must be (.*)$}
lappend regexps {: should be (.*)$}
foreach re $regexps {
if {[regexp $re $err -> apa]} {
regsub -all {( or )|(, or )|(, )} $apa " " apa
return [lsort -dictionary [lrange $apa 0 end]]
}
}
#puts "Error '$err' from '$args'"
return {}
}
# Create a syntax description for a procedure
proc createSyntax {procName} {
set args [info args $procName]
set min 0
set unlim 0
if {[lindex $args end] == "args"} {
set unlim 1
}
set i 1
foreach a $args {
if {$a != "args"} {
if {![info default $procName $a dummy]} {
set min $i
}
}
incr i
}
if {$unlim} {
set result "r $min"
} elseif {$min == [llength $args]} {
set result $min
} else {
set result [list r $min [llength $args]]
}
return $result
}
proc markCmdAsKnown {args} {
foreach cmd $args {
if {[lsearch $::kC $cmd] == -1} {
lappend ::kC $cmd
}
}
}
# Build a syntax database and write it to a channel
proc buildDb {ch} {
set patch [info patchlevel]
set ver [package present Tcl]
puts $ch "# Automatically generated syntax database."
puts $ch ""
set useTk [expr {![catch {package present Tk}]}]
set dbstring "Tcl $patch $::tcl_platform(platform)"
if {$useTk} {
append dbstring ", Tk $::tk_patchLevel"
if {![catch {tk windowingsystem}]} {
append dbstring " [tk windowingsystem]"
}
}
# Below is the hardcoded syntax for many core commands.
# It is defined using the "language" below.
# TODO: Add all core commands.
# An entry should be a valid list of tokens as described below.
# If the first token ends with : it means that there are different
# syntax descriptions for different number of arguments.
# Any token ending with : starts a syntax for the number of arguments
# that the number preceding it says. A lone : starts the default syntax.
# Example "1: x 2: n n : e x*"
# If a token is an integer, just check the number of arguments against it.
# r min ?max? Specifies a range for number of arguments
# x Any
# o Option, i.e anything starting with -
# p Option+Any (p as in option Pair)
# s Subcommand
# d Definition. That arg defines a new command
# If followed by =cmd, it copies syntax from cmd.
# e Expression
# E Expression that should be in braces
# c Code, checked in surrounding context
# cg Code, checked in global context
# cn Code, checked in virtual namespace
# cl Code, checked in its own local context
# cv Code, checked in its own local context, preceded by variable list
# n, v and l all marks variable names. Those arguments will not be
# checked against known variables to detect missing $.
# n The variable does not have to exist, and is set by the command.
# v The variable must exist. It is not marked as set.
# l Does not have to exist. It will be marked as known, but not set.
# Modifiers that apply to some of the above
# ? Zero or One
# * Zero or more
# . One or nothing at all
# * after x swallows all the rest and must be last
# s may only have .
# e and c may not have any modifier
# If a syntax for a subcommand is defined, it is used to check the rest
# Syntax for Tcl core commands
set syntax(after) "r 1"
# FIXA: handle after's id/subcommand thing.
set syntax(append) "n x*"
set syntax(array) "s v x?"
set syntax(array\ exists) "l=array"
set syntax(array\ names) "v=array x? x?"
set syntax(array\ set) "n=array x"
set syntax(array\ size) "v=array"
set syntax(array\ statistics) "v=array"
set syntax(array\ unset) "l x?"
#set syntax(bgerror) 1
set syntax(binary) "s x*"
set syntax(binary\ scan) "x x n n*"
set syntax(break) 0
set syntax(case) "x*"
set syntax(catch) "c n?"
set syntax(cd) "r 0 1"
set syntax(clock) "s x*"
set syntax(clock\ clicks) "o?"
set syntax(clock\ format) "x p*"
set syntax(clock\ scan) "x p*"
set syntax(clock\ seconds) 0
set syntax(close) 1
set syntax(concat) "r 0"
set syntax(continue) 0
set syntax(encoding) "s x*"
set syntax(encoding\ convertfrom) "r 1 2"
set syntax(encoding\ convertto) "r 1 2"
set syntax(encoding\ names) 0
set syntax(encoding\ system) "r 0 1"
set syntax(eof) 1
set syntax(error) "r 1 3"
set special(eval) 1
set syntax(exec) "o* x x*"
set syntax(exit) "r 0 1"
set special(expr) 1
set syntax(fblocked) 1
set syntax(fconfigure) "x o. x. p*"
set syntax(fcopy) "x x p*"
set syntax(file) "s x*"
set syntax(file\ atime) "x x?"
set syntax(file\ attributes) "x o. x. p*"
set syntax(file\ channels) "x?"
set syntax(file\ copy) "o* x x x*"
set syntax(file\ delete) "o* x x*"
set syntax(file\ dirname) "x"
set syntax(file\ executable) "x"
set syntax(file\ exists) "x"
set syntax(file\ extension) "x"
set syntax(file\ isdirectory) "x"
set syntax(file\ isfile) "x"
set syntax(file\ join) "x x*"
set syntax(file\ link) "o? x x?"
set syntax(file\ lstat) "x n"
set syntax(file\ mkdir) "x x*"
set syntax(file\ mtime) "x x?"
set syntax(file\ nativename) "x"
set syntax(file\ normalize) "x"
set syntax(file\ owned) "x"
set syntax(file\ pathtype) "x"
set syntax(file\ readable) "x"
set syntax(file\ readlink) "x"
set syntax(file\ rename) "o* x x x*"
set syntax(file\ rootname) "x"
set syntax(file\ separator) "x?"
set syntax(file\ size) "x"
set syntax(file\ split) "x"
set syntax(file\ stat) "x n"
set syntax(file\ system) "x"
set syntax(file\ tail) "x"
set syntax(file\ type) "x"
set syntax(file\ volumes) 0
set syntax(file\ writable) "x"
set syntax(fileevent) "x x x?"
set syntax(flush) 1
set syntax(for) "c E c c"
set special(foreach) 1
set syntax(format) "r 1"
set syntax(gets) "x n?"
set syntax(glob) "o* x x*"
set special(global) 1
# "if" is handled specially, but is added here to not disturb header gen.
set syntax(if) "e c"
set syntax(incr) "v x?"
set syntax(info) "s x*" ;# FIXA: All subcommands
set syntax(info\ exists) "l"
set syntax(info\ default) "x x n"
# "interp" is handled specially
set syntax(interp) "s x*"
set syntax(interp\ invokehidden) "x o* x x*"
set syntax(join) "r 1 2"
set syntax(lappend) "n x*"
if {[catch {lindex apa 0 0}]} {
set syntax(lindex) 2 ;# Pre 8.4
} else {
set syntax(lindex) "r 2"
}
set syntax(linsert) "r 3"
set syntax(list) "r 0"
set syntax(llength) 1
set syntax(load) "r 1 3"
set syntax(lrange) 3
set syntax(lreplace) "r 3"
if {[catch {lsearch -all -glob apa bepa}]} {
set syntax(lsearch) "o? x x" ;# Pre 8.4
} else {
set syntax(lsearch) "o* x x"
}
set syntax(lset) "n x x x*"
set syntax(lsort) "o* x"
# "namespace" is handled specially
set syntax(namespace) "s x*" ;# FIXA: All subcommands
set syntax(namespace\ import) "o* x*"
set syntax(namespace\ which) "o* x?"
set option(namespace\ which) "-variable -command"
set option(namespace\ which\ -variable) v
set syntax(open) "r 1 3"
# "package" is handled specially
set syntax(package) "s x*" ;# FIXA: All subcommands
set syntax(pid) "r 0 1"
set syntax(proc) dp
set syntax(puts) "1: x : o? x x?"
set syntax(pwd) 0
set syntax(read) "r 1 2"
set syntax(regexp) "o* x x n*"
set syntax(regsub) "o* x x x n?"
set syntax(rename) 2 ;# Maybe treat rename specially?
set syntax(return) "p* x?"
set syntax(scan) "x x n*"
set syntax(seek) "r 2 3"
# "set" is handled specially
set syntax(set) "1: v=scalar : n=scalar x"
set syntax(socket) "r 2"
set syntax(source) 1
set syntax(split) "r 1 2"
set syntax(string) "s x x*"
set syntax(string\ bytelength) 1
set syntax(string\ compare) "o* x x"
set syntax(string\ equal) "o* x x"
set syntax(string\ first) "r 2 3"
set syntax(string\ index) 2
set syntax(string\ is) "s o* x"
set syntax(string\ last) "r 2 3"
set syntax(string\ length) 1
set syntax(string\ map) "o? x x"
set syntax(string\ match) "o? x x"
set syntax(string\ range) 3
set syntax(string\ repeat) 2
set syntax(string\ replace) "r 3 4"
set syntax(string\ tolower) "r 1 3"
set syntax(string\ totitle) "r 1 3"
set syntax(string\ toupper) "r 1 3"
set syntax(string\ trim) "r 1 2"
set syntax(string\ trimleft) "r 1 2"
set syntax(string\ trimright) "r 1 2"
set syntax(string\ wordend) 2
set syntax(string\ wordstart) 2
set syntax(subst) "o* x"
set special(switch) 1
set syntax(tell) 1
set syntax(time) "c x?"
set syntax(trace) "s x x*"
set syntax(trace\ add) "s x x x"
set syntax(trace\ add\ command) "x x c3"
set syntax(trace\ add\ execution) "x s c2"
set syntax(trace\ add\ execution\ leave) "c4"
set syntax(trace\ add\ execution\ leavestep) "c4"
set syntax(trace\ add\ variable) "v x c3"
set syntax(trace\ remove) "s x x x"
set syntax(trace\ remove\ command) "x x x"
set syntax(trace\ remove\ execution) "x x x"
set syntax(trace\ remove\ variable) "v x x"
set syntax(trace\ info) "s x x x"
set syntax(trace\ info\ command) "x"
set syntax(trace\ info\ execution) "x"
set syntax(trace\ info\ variable) "v"
set syntax(trace\ variable) "n x x"
set syntax(trace\ vinfo) "l"
set syntax(trace\ vdelete) "v x x"
set syntax(unset) "o* l l*"
set syntax(update) "s."
set special(uplevel) 1
set special(upvar) 1
set special(variable) 1
set syntax(vwait) "n"
set syntax(while) "E c"
# Things added in 8.5
if {[info commands dict] ne ""} {
set syntax(dict) "s x*"
set syntax(dict\ append) "n x x*"
set syntax(dict\ incr) "n x x*"
set syntax(dict\ filter) "x x x"
set syntax(dict\ lappend) "n x x*"
set syntax(dict\ set) "n x x*"
set syntax(dict\ unset) "n x x*"
# FIXA: handle this style:
set syntax(dict\ update) "n x x x* c"
set syntax(dict\ with) "n x* c"
# FIXA: handle variables in dict for
set syntax(dict\ for) "x x c"
# Initialising incr
set syntax(incr) "n x?"
set syntax(lassign) "x n n*"
set syntax(lrepeat) "r 2"
set syntax(lreverse) "1"
set syntax(string\ reverse) "1"
set syntax(unload) "o* x x*"
set syntax(chan) "s x*"
set syntax(chan\ blocked) "x"
set syntax(chan\ close) "x"
set syntax(chan\ configure) "x o. x. p*"
set syntax(chan\ copy) "x x p*"
set syntax(chan\ create) "x x"
set syntax(chan\ eof) "x"
set syntax(chan\ event) "x x cg?"
set syntax(chan\ flush) "x"
set syntax(chan\ gets) "x n?"
set syntax(chan\ names) "x?"
set syntax(chan\ pending) "x x"
set syntax(chan\ postevent) "x x"
set syntax(chan\ puts) "1: x : o? x x?"
set syntax(chan\ read) "x x?"
set syntax(chan\ seek) $syntax(seek)
set syntax(chan\ tell) $syntax(tell)
set syntax(chan\ truncate) "x x?"
set syntax(apply) "x x*"
set syntax(source) "p* x"
set option(interp\ invokehidden\ -namespace) 1
}
# Things added in 8.6
if {[info commands try] ne ""} {
# Changed commands
set syntax(catch) "c n? n?" ;# FIXA make a test for this
set syntax(close) "x x?"
set syntax(chan\ close) "x x?"
set syntax(dict\ filter) "x x x*"
# Do nothing gracefully
set syntax(file\ delete) "o* x*"
set syntax(file\ mkdir) "x*"
set syntax(glob) "o* x*"
set syntax(lassign) "x n*"
set syntax(linsert) "r 2"
set syntax(lrepeat) "r 1"
# New subcommands
set syntax(binary\ decode) "s x*"
set syntax(binary\ decode\ base64) "o* x"
set syntax(binary\ decode\ hex) "o* x"
set syntax(binary\ decode\ uuencode) "o* x"
set syntax(binary\ encode) "s x*"
set syntax(binary\ encode\ base64) "p* x"
set syntax(binary\ encode\ hex) "x"
set syntax(binary\ encode\ uuencode) "p* x"
set syntax(chan\ pipe) 0
set syntax(chan\ pop) "x"
set syntax(chan\ push) "x c"
set syntax(file\ tempfile) "n? x?*"
set syntax(info\ coroutine) 0
set syntax(interp\ cancel) "o* x? x?"
# New commands
set syntax(try) "r 0"
set syntax(throw) "2"
set syntax(coroutine) "x x x*"
set special(tailcall) 1
set special(next) 1
set syntax(yield) "x?"
set syntax(zlib) "s x*"
set syntax(zlib\ adler32) "x x?"
set syntax(zlib\ compress) "x x?"
set syntax(zlib\ crc32) "x x?"
set syntax(zlib\ decompress) "x x?"
set syntax(zlib\ deflate) "x x?"
set syntax(zlib\ gzip) "x p*"
set syntax(zlib\ gunzip) "x p*"
set syntax(zlib\ inflate) "x x?"
set syntax(zlib\ push) "s x*"
set syntax(zlib\ stream) "s x*"
set syntax(tcl::prefix) "s x*"
set syntax(tcl::prefix\ all) "x x"
set syntax(tcl::prefix\ longest) "x x"
set syntax(tcl::prefix\ match) "o* x x"
set option(tcl::prefix\ match\ -message) x
set option(tcl::prefix\ match\ -error) x
set syntax(oo::class) "s x*"
set syntax(oo::class\ create) "do=_stdclass_oo cn?"
set syntax(oo::class\ create::constructor) dk ;# Define constructor
set syntax(oo::class\ create::superclass) di ;# Define inheritance
set syntax(oo::class\ create::method) "dm" ;# Define method
set syntax(oo::class\ create::destructor) c
set syntax(_stdclass_oo) "s x*"
set subCmd(_stdclass_oo) "create new destroy variable"
set syntax(_stdclass_oo\ create) "dc=_obj,_stdclass_oo x?"
set return(_stdclass_oo\ create) _obj,_stdclass_oo
set syntax(_stdclass_oo\ new) 0
set return(_stdclass_oo\ new) _obj,_stdclass_oo
set syntax(_stdclass_oo\ destroy) 0
set syntax(_stdclass_oo\ variable) n*
set syntax(info\ object) "s x x*"
set syntax(info\ class) "s x x*"
set syntax(oo::copy) "x x?"
# FIXA: all oo::define
set syntax(oo::define) "2: x cn : x s x x*"
set syntax(oo::objdefine) "2: x cn : x s x x*"
set syntax(oo::define::method) "x cv"
set syntax(oo::objdefine::method) "x cv"
set syntax(oo::define\ method) "x cv"
set syntax(oo::objdefine\ method) "x cv"
set syntax(oo::define::constructor) "cv"
set syntax(oo::objdefine::constructor) "cv"
set syntax(oo::define\ constructor) "cv"
set syntax(oo::objdefine\ constructor) "cv"
set syntax(oo::define::denstructor) "cl"
set syntax(oo::objdefine::destructor) "cl"
set syntax(oo::define\ destructor) "cl"
set syntax(oo::objdefine\ destructor) "cl"
set syntax(oo::define::forward) "x x x*"
set syntax(oo::objdefine::forward) "x x x*"
set syntax(oo::define::unexport) "x x*"
set syntax(oo::objdefine::unexport) "x x*"
set syntax(oo::object) "s x*" ;# FIXA?
# Set up basic checking of self/my
set syntax(my) "s x*"
set syntax(my\ variable) "n*"
set syntax(self) "s?"
lappend ::kC self my
oo::class create miffo {
constructor {} {
upvar 1 subCmd subCmd
set subCmd(self) [getSubCmds self gurkmeja]
}
}
# Run constructor to get info about self
[miffo new] destroy
# New options
set option(lsort\ -stride) 1
}
# Some special Tcl commands
set syntax(dde) "o? s x*" ;# FIXA: is this correct?
set syntax(history) "s x*"
set syntax(parray) "v x?"
# FIXA: Type checking is still experimental
set return(linsert) list
set return(list) list
set return(llength) int
set return(lrange) list
set return(lreplace) list
set return(lsort) list
# Syntax for Tk commands
if {$useTk} {
set syntax(bell) "o* x*"
set syntax(bind) "x x? cg?"
set syntax(bindtags) "x x?"
set syntax(clipboard) "s x*"
set syntax(console) "r 1"
set syntax(destroy) "x*"
set syntax(event) "s x*"
set syntax(focus) "o? x?"
set syntax(font) "s x*"
set syntax(image) "s x*"
set syntax(grab) "x x*" ;# FIXA, how to check subcommands here?
set syntax(grid) "x x*" ;# FIXA, how to check subcommands here?
set syntax(lower) "x x?"
set syntax(option) "s x*"
set syntax(pack) "x x*"
set syntax(place) "x x*"
set syntax(raise) "x x?"
set syntax(selection) "s x*"
set syntax(send) "o* x x x*"
set syntax(tk) "s x*"
set syntax(tkwait) "s x"
set syntax(tkwait\ variable) "l" ;# Global variable?
set syntax(winfo) "s x x*"
set syntax(wm) "s x x*"
set syntax(tk_chooseColor) "p*"
set syntax(tk_chooseDirectory) "p*"
#set syntax(tk_dialog) "r 6"
set syntax(tk_getOpenFile) "p*"
set syntax(tk_getSaveFile) "p*"
set syntax(tk_messageBox) "p*"
set syntax(tk_popup) "r 3 4"
set syntax(.) "s x*"
set syntax(.\ configure) "o. x. p*"
set syntax(.\ cget) "o"
# FIXA: Starting on better Tk support
set classCmds {frame entry label button checkbutton radiobutton \
listbox labelframe spinbox panedwindow toplevel menu message \
scrollbar text canvas scale menubutton}
# Handle tk::xxx usage
foreach cmd $classCmds {
if {[info commands tk::$cmd] ne ""} {
lappend classCmds tk::$cmd
}
}
if {[info commands ttk::frame] ne ""} {
lappend classCmds ttk::scale ttk::label ttk::panedwindow
lappend classCmds ttk::separator ttk::menubutton
lappend classCmds ttk::entry ttk::radiobutton ttk::frame
lappend classCmds ttk::labelframe ttk::button ttk::sizegrip
lappend classCmds ttk::combobox ttk::notebook
lappend classCmds ttk::progressbar ttk::checkbutton
lappend classCmds ttk::treeview ttk::scrollbar
set syntax(ttk::style) "s x*"
set syntax(ttk::style\ configure) "x o. x. p*"
set syntax(ttk::style\ map) "x p*"
set syntax(ttk::style\ lookup) "r 2 4"
set syntax(ttk::style\ layout) "x x?"
set syntax(ttk::style\ element) "s x*"
set syntax(ttk::style\ element\ create) "x x x*"
set syntax(ttk::style\ element\ names) 0
set syntax(ttk::style\ element\ options) x
set syntax(ttk::style\ theme) "s x*"
set syntax(ttk::style\ theme\ create) "x p*"
set syntax(ttk::style\ theme\ settings) 2
set syntax(ttk::style\ theme\ names) 0
set syntax(ttk::style\ theme\ use) x
set syntax(ttk::themes) x?
set syntax(ttk::setTheme) x
markCmdAsKnown ttk::style ttk::themes ttk::setTheme
}
foreach class $classCmds {
destroy .w
if {[catch {$class .w}]} continue
markCmdAsKnown $class
set syntax($class) "x p*"
set return($class) _obj,$class
set option($class) {}
foreach opt [.w configure] {
set opt [lindex $opt 0]
lappend option($class) $opt
if {[string match *variable $opt]} {
set option($class\ $opt) n
set option(_obj,$class\ configure\ $opt) n
}
}
set syntax(_obj,$class) "s x*"
set subCmd(_obj,$class) [getSubCmds .w gurkmeja]
set syntax(_obj,$class\ configure) "o. x. p*"
set option(_obj,$class\ configure) $option($class)
set syntax(_obj,$class\ cget) "o"
set option(_obj,$class\ cget) $option($class)
switch $class {
listbox {
set syntax(_obj,$class\ selection) "s x x?"
set subCmd(_obj,$class\ selection) \
[getSubCmds .w selection gurkmeja 0]
}
}
}
set option(.\ configure) $option(toplevel)
set option(.\ cget) $option(toplevel)
}
# Build a database of options and subcommands
# subCmd(cmd) contains a list of all allowed subcommands
# Get subcommands for commands that can't use the standard loop below
set subCmd(wm) [getSubCmds wm gurkmeja .]
# Get subcommands for any commands defining "s"
foreach cmd [array names syntax] {
if {[info exists subCmd($cmd)]} continue
set syn $syntax($cmd)
set oi [lsearch -glob $syn "s*"]
if {$oi >= 0} {
set syn [lreplace $syn $oi $oi gurkmeja]
# If the subcmd is after a :, handle it
set ci [lsearch -exact $syn ":"]
if {$ci >= 0 && $ci < $oi} {
set syn [lrange $syn [expr {$ci + 1}] end]
}
set opts [eval getSubCmds $cmd $syn]
if {[llength $opts] > 0} {
set subCmd($cmd) $opts
#puts "AutoSub: $cmd $subCmd($cmd)"
} else {
#puts "Failed AutoSub: $cmd $syn"
}
}
}
# option(cmd) contains a list of all allowed options
# option(cmd subcmd) defines options for subcommands
# Get options for commands that can't use the standard loop below.
set option(switch) [getSubCmds switch -gurkmeja x x]
set option(fconfigure) [getSubCmds fconfigure stdin -gurkmeja]
set option(fcopy) [getSubCmds fcopy stdin stdout -gurkmeja x]
set option(unset) [list -nocomplain --]
set option(clock\ format) [getSubCmds clock format 1 -gurkmeja x]
# Add additonal fconfigure, known for serial channels
lappend option(fconfigure) -mode -handshake -queue -timeout -ttycontrol -ttystatus -xchar -pollinterval -sysbuffer -lasterror
# For socket channels
lappend option(fconfigure) -error -peername -sockname
set option(fconfigure) [lsort -uniq -dictionary $option(fconfigure)]
# Get options for any commands defining "o" or "p"
foreach cmd [array names syntax] {
if {[info exists option($cmd)]} continue
set syn $syntax($cmd)
if {[set i [lsearch -exact $syn ":"]] >= 0} {
# Handle a syn like "1: x : o? x x?"
# Just do the it the simple way of ignoring all but the last
set syn [lrange $syn [expr {$i + 1}] end]
}
set oi [lsearch -glob $syn "o*"]
if {$oi >= 0} {
set syn [lreplace $syn $oi $oi -gurkmeja]
}
set pi [lsearch -glob $syn "p*"]
if {$pi >= 0} {
set syn [lreplace $syn $pi $pi -gurkmeja apa]
}
if {$oi >= 0 || $pi >= 0} {
set opts [eval getSubCmds $cmd $syn]
if {[llength $opts] > 0} {
set option($cmd) $opts
#puts "Autoopt: $cmd $option($cmd)"
} else {
#puts "Failed Autoopt: $cmd"
}
}
}
# A fix since puts still gives an unhelpful error
if {![info exists option(puts)] || [lsearch $option(puts) "-nonewline"] < 0} {
set option(puts) [list -nonewline]
# Also chan puts if present
if {[info exists syntax(chan\ puts)]} {
set option(chan\ puts) [list -nonewline]
}
}
# The default for options is not to take a value unless 'p' is
# used in the syntax definition.
# If option(cmd opt) is set, the option is followed by a value.
# The value of option(cmd opt) may also be any of the syntax chars
# c/n/v/l and will be used to check the option.
set option(lsort\ -index) 1
set option(lsort\ -command) 1
set option(lsearch\ -index) 1
set option(lsearch\ -start) 1
set option(string\ is\ -failindex) n
set option(string\ compare\ -length) 1
set option(string\ equal\ -length) 1
set option(regexp\ -start) 1
set option(regsub\ -start) 1
set option(glob\ -directory) 1
set option(glob\ -path) 1
set option(glob\ -types) 1
set option(send\ -displayof) 1
# Clean up unused options
foreach item [array names option] {
if {[string match "-*" [lindex $item end]]} {
set opt [lindex $item end]
set cmd [lrange $item 0 end-1]
if {[lsearch -exact $option($cmd) $opt] < 0} {
#puts "Deleting option($item)"
unset option($item)
}
}
}
# Build syntax info for procs
foreach apa $::kC {
if {![info exists syntax($apa)]} {
# Is it a proc?
if {[info procs $apa] != ""} {
set syntax($apa) [createSyntax $apa]
} elseif {![info exists special($apa)]} {
# Debug helper
#puts "No syntax defined for cmd '$apa'"
}
}
}
# Output the data
puts $ch [list lappend ::dbInfo $dbstring]
puts $ch [list set ::dbTclVersion $::tcl_version]
puts $ch [list set ::knownGlobals $::kG]
puts $ch [list set ::knownCommands [lsort $::kC]]
foreach a {syntax return subCmd option} {
foreach i [lsort [array names $a]] {
set v [set ${a}($i)]
if {[llength $v] != 0} {
set first [lindex [split $i] 0]
if {![string match _* $first] && \
![string match *::* $first] && \
[lsearch $::kC $first] == -1} {
puts stderr "Skipping ${a}($i) since $i is not known."
} else {
puts $ch [list set ::${a}($i) $v]
}
}
}
puts $ch ""
}
}
# Build a syntax database and write it to a file
proc buildFile {filename} {
set ch [open $filename w]
buildDb $ch
close $ch
}
# This file can be sourced into an interactive interpreter.
# source syntaxbuild.tcl
# buildFile <filename>
if {[info exists tcl_interactive] && !$tcl_interactive} {
if {$argc == 0 && $tcl_platform(platform) == "windows"} {
set argc 1
set argv [list syntaxdb.tcl]
}
if {$argc == 0} {
buildDb stdout
} else {
buildFile [lindex $argv 0]
}
exit
}