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
|
namespace eval ::practcl {}
###
# Concatenate a file
###
proc ::practcl::cat fname {
if {![file exists $fname]} {
return
}
set fin [open $fname r]
set data [read $fin]
close $fin
return $data
}
###
# Strip the global comments from tcl code. Used to
# prevent the documentation markup comments from clogging
# up files intended for distribution in machine readable format.
###
proc ::practcl::docstrip text {
set result {}
foreach line [split $text \n] {
append thisline $line \n
if {![info complete $thisline]} continue
set outline $thisline
set thisline {}
if {[string trim $outline] eq {}} {
continue
}
if {[string index [string trim $outline] 0] eq "#"} continue
set cmd [string trim [lindex $outline 0] :]
if {$cmd eq "namespace" && [lindex $outline 1] eq "eval"} {
append result [list {*}[lrange $outline 0 end-1]] " " \{ \n [docstrip [lindex $outline end]]\} \n
continue
}
if {[string match "*::define" $cmd] && [llength $outline]==3} {
append result [list {*}[lrange $outline 0 end-1]] " " \{ \n [docstrip [lindex $outline end]]\} \n
continue
}
if {$cmd eq "oo::class" && [lindex $outline 1] eq "create"} {
append result [list {*}[lrange $outline 0 end-1]] " " \{ \n [docstrip [lindex $outline end]]\} \n
continue
}
append result $outline
}
return $result
}
###
# Append a line of text to a variable. Optionally apply a string mapping.
# argspec:
# map {mandatory 0 positional 1}
# text {mandatory 1 positional 1}
###
proc ::putb {buffername args} {
upvar 1 $buffername buffer
switch [llength $args] {
1 {
append buffer [lindex $args 0] \n
}
2 {
append buffer [string map {*}$args] \n
}
default {
error "usage: putb buffername ?map? string"
}
}
}
###
# Tool for build scripts to dynamically generate manual files from comments
# in source code files
# example:
# set authors {
# {John Doe} {jdoe@illustrious.edu}
# {Tom RichardHarry} {tomdickharry@illustrius.edu}
# }
# # Create the object
# ::practcl::doctool create AutoDoc
# set fout [open [file join $moddir module.tcl] w]
# foreach file [glob [file join $srcdir *.tcl]] {
# set content [::practcl::cat [file join $srcdir $file]]
# # Scan the file
# AutoDoc scan_text $content
# # Strip the comments from the distribution
# puts $fout [::practcl::docstrip $content]
# }
# # Write out the manual page
# set manout [open [file join $moddir module.man] w]
# dict set args header [string map $modmap [::practcl::cat [file join $srcdir manual.txt]]]
# dict set args footer [string map $modmap [::practcl::cat [file join $srcdir footer.txt]]]
# dict set args authors $authors
# puts $manout [AutoDoc manpage {*}$args]
# close $manout
###
::oo::class create ::practcl::doctool {
constructor {} {
my reset
}
###
# Process an argument list into an informational dict.
# This method also understands non-positional
# arguments expressed in the notation of Tip 471
# [uri https://core.tcl-lang.org/tips/doc/trunk/tip/479.md].
# [para]
# The output will be a dictionary of all of the fields and whether the fields
# are [const positional], [const mandatory], and whether they have a
# [const default] value.
# [para]
# example:
# my argspec {a b {c 10}}
#
# > a {positional 1 mandatory 1} b {positional 1 mandatory 1} c {positional 1 mandatory 0 default 10}
###
method argspec {argspec} {
set result [dict create]
foreach arg $argspec {
set name [lindex $arg 0]
dict set result $name positional 1
dict set result $name mandatory 1
if {$name in {args dictargs}} {
switch [llength $arg] {
1 {
dict set result $name mandatory 0
}
2 {
dict for {optname optinfo} [lindex $arg 1] {
set optname [string trim $optname -:]
dict set result $optname {positional 1 mandatory 0}
dict for {f v} $optinfo {
dict set result $optname [string trim $f -:] $v
}
}
}
default {
error "Bad argument"
}
}
} else {
switch [llength $arg] {
1 {
dict set result $name mandatory 1
}
2 {
dict set result $name mandatory 0
dict set result $name default [lindex $arg 1]
}
default {
error "Bad argument"
}
}
}
}
return $result
}
###
# Convert a block of comments into an informational dictionary.
# If lines in the comment start with a single word ending in a colon,
# all subsequent lines are appended to a dictionary field of that name.
# If no fields are given, all of the text is appended to the [const description]
# field.
# example:
# my comment {Does something cool}
# > description {Does something cool}
#
# my comment {
# title : Something really cool
# author : Sean Woods
# author : John Doe
# description :
# This does something really cool!
# }
# > description {This does something really cool!}
# title {Something really cool}
# author {Sean Woods
# John Doe}
###
method comment block {
set count 0
set field description
set result [dict create description {}]
foreach line [split $block \n] {
set sline [string trim $line]
set fwidx [string first " " $sline]
if {$fwidx < 0} {
set firstword [string range $sline 0 end]
set restline {}
} else {
set firstword [string range $sline 0 [expr {$fwidx-1}]]
set restline [string range $sline [expr {$fwidx+1}] end]
}
if {[string index $firstword end] eq ":"} {
set field [string tolower [string trim $firstword -:]]
switch $field {
dictargs -
arglist {
set field argspec
}
desc {
set field description
}
}
if {[string length $restline]} {
dict append result $field "$restline\n"
}
} else {
dict append result $field "$line\n"
}
}
return $result
}
method keyword.Annotation {resultvar commentblock type name body} {
upvar 1 $resultvar result
set name [string trim $name :]
if {[dict exists $result $type $name]} {
set info [dict get $result $type $name]
} else {
set info [my comment $commentblock]
}
foreach {f v} $body {
dict set info $f $v
}
dict set result $type $name $info
}
###
# Process an oo::objdefine call that modifies the class object
# itself
####
method keyword.Class {resultvar commentblock name body} {
upvar 1 $resultvar result
set name [string trim $name :]
if {[dict exists $result class $name]} {
set info [dict get $result class $name]
} else {
set info [my comment $commentblock]
}
set commentblock {}
foreach line [split $body \n] {
append thisline $line \n
if {![info complete $thisline]} continue
set thisline [string trim $thisline]
if {[string index $thisline 0] eq "#"} {
append commentblock [string trimleft $thisline #] \n
set thisline {}
continue
}
set cmd [string trim [lindex $thisline 0] ":"]
switch $cmd {
Option -
option {
my keyword.Annotation info $commentblock option [lindex $thisline 1] [lindex $thisline 2]
set commentblock {}
}
variable -
Variable {
my keyword.Annotation info $commentblock variable [lindex $thisline 1] [list type scaler default [lindex $thisline 2]]
set commentblock {}
}
Dict -
Array {
set iinfo [lindex $thisline 2]
dict set iinfo type [string tolower $cmd]
my keyword.Annotation info $commentblock variable [lindex $thisline 1] $iinfo
set commentblock {}
}
Componant -
Delegate {
my keyword.Annotation info $commentblock delegate [lindex $thisline 1] [lindex $thisline 2]
set commentblock {}
}
method -
Ensemble {
my keyword.Class_Method info $commentblock {*}[lrange $thisline 1 end-1]
set commentblock {}
}
}
set thisline {}
}
dict set result class $name $info
}
###
# Process an oo::define, clay::define, etc statement.
###
method keyword.class {resultvar commentblock name body} {
upvar 1 $resultvar result
set name [string trim $name :]
if {[dict exists $result class $name]} {
set info [dict get $result class $name]
} else {
set info [my comment $commentblock]
}
set commentblock {}
foreach line [split $body \n] {
append thisline $line \n
if {![info complete $thisline]} continue
set thisline [string trim $thisline]
if {[string index $thisline 0] eq "#"} {
append commentblock [string trimleft $thisline #] \n
set thisline {}
continue
}
set cmd [string trim [lindex $thisline 0] ":"]
switch $cmd {
Option -
option {
puts [list keyword.Annotation $cmd $thisline]
my keyword.Annotation info $commentblock option [lindex $thisline 1] [lindex $thisline 2]
set commentblock {}
}
variable -
Variable {
my keyword.Annotation info $commentblock variable [lindex $thisline 1] [list default [lindex $thisline 2]]
set commentblock {}
}
Dict -
Array {
set iinfo [lindex $thisline 2]
dict set iinfo type [string tolower $cmd]
my keyword.Annotation info $commentblock variable [lindex $thisline 1] $iinfo
set commentblock {}
}
Componant -
Delegate {
my keyword.Annotation info $commentblock delegate [lindex $thisline 1] [lindex $thisline 2]
set commentblock {}
}
superclass {
dict set info ancestors [lrange $thisline 1 end]
set commentblock {}
}
classmethod -
class_method -
Class_Method {
my keyword.Class_Method info $commentblock {*}[lrange $thisline 1 end-1]
set commentblock {}
}
destructor -
constructor {
my keyword.method info $commentblock {*}[lrange $thisline 0 end-1]
set commentblock {}
}
method -
Ensemble {
my keyword.method info $commentblock {*}[lrange $thisline 1 end-1]
set commentblock {}
}
}
set thisline {}
}
dict set result class $name $info
}
###
# Process a statement for a clay style class method
###
method keyword.Class_Method {resultvar commentblock name args} {
upvar 1 $resultvar result
set info [my comment $commentblock]
if {[dict exists $info show_body] && [dict get $info show_body]} {
dict set info internals [lindex $args end]
}
if {[dict exists $info ensemble]} {
dict for {method minfo} [dict get $info ensemble] {
dict set result Class_Method "${name} $method" $minfo
}
} else {
switch [llength $args] {
1 {
set argspec [lindex $args 0]
}
0 {
set argspec dictargs
#set body [lindex $args 0]
}
default {error "could not interpret method $name {*}$args"}
}
if {![dict exists $info argspec]} {
dict set info argspec [my argspec $argspec]
}
dict set result Class_Method [string trim $name :] $info
}
}
###
# Process a statement for a tcloo style object method
###
method keyword.method {resultvar commentblock name args} {
upvar 1 $resultvar result
set info [my comment $commentblock]
if {[dict exists $info show_body] && [dict get $info show_body]} {
dict set info internals [lindex $args end]
}
if {[dict exists $info ensemble]} {
dict for {method minfo} [dict get $info ensemble] {
dict set result method "\"${name} $method\"" $minfo
}
} else {
switch [llength $args] {
1 {
set argspec [lindex $args 0]
}
0 {
set argspec dictargs
#set body [lindex $args 0]
}
default {error "could not interpret method $name {*}$args"}
}
if {![dict exists $info argspec]} {
dict set info argspec [my argspec $argspec]
}
dict set result method "\"[split [string trim $name :] ::]\"" $info
}
}
###
# Process a proc statement
###
method keyword.proc {commentblock name argspec} {
set info [my comment $commentblock]
if {![dict exists $info argspec]} {
dict set info argspec [my argspec $argspec]
}
return $info
}
###
# Reset the state of the object and its embedded coroutine
###
method reset {} {
my variable coro
set coro [info object namespace [self]]::coro
oo::objdefine [self] forward coro $coro
if {[info command $coro] ne {}} {
rename $coro {}
}
coroutine $coro {*}[namespace code {my Main}]
}
###
# Main body of the embedded coroutine for the object
###
method Main {} {
my variable info
set info [dict create]
yield [info coroutine]
set thisline {}
set commentblock {}
set linec 0
while 1 {
set line [yield]
append thisline $line \n
if {![info complete $thisline]} continue
set thisline [string trim $thisline]
if {[string index $thisline 0] eq "#"} {
append commentblock [string trimleft $thisline #] \n
set thisline {}
continue
}
set cmd [string trim [lindex $thisline 0] ":"]
switch $cmd {
dictargs::proc {
set procinfo [my keyword.proc $commentblock [lindex $thisline 1] [list args [list dictargs [lindex $thisline 2]]]]
if {[dict exists $procinfo show_body] && [dict get $procinfo show_body]} {
dict set procinfo internals [lindex $thisline end]
}
dict set info proc [string trim [lindex $thisline 1] :] $procinfo
set commentblock {}
}
tcllib::PROC -
PROC -
Proc -
proc {
set procinfo [my keyword.proc $commentblock {*}[lrange $thisline 1 2]]
if {[dict exists $procinfo show_body] && [dict get $procinfo show_body]} {
dict set procinfo internals [lindex $thisline end]
}
dict set info proc [string trim [lindex $thisline 1] :] $procinfo
set commentblock {}
}
oo::objdefine {
if {[llength $thisline]==3} {
lassign $thisline tcmd name body
my keyword.Class info $commentblock $name $body
} else {
puts "Warning: bare oo::define in library"
}
}
oo::define {
if {[llength $thisline]==3} {
lassign $thisline tcmd name body
my keyword.class info $commentblock $name $body
} else {
puts "Warning: bare oo::define in library"
}
}
tao::define -
clay::define -
tool::define {
lassign $thisline tcmd name body
my keyword.class info $commentblock $name $body
set commentblock {}
}
oo::class {
lassign $thisline tcmd mthd name body
my keyword.class info $commentblock $name $body
set commentblock {}
}
default {
if {[lindex [split $cmd ::] end] eq "define"} {
lassign $thisline tcmd name body
my keyword.class info $commentblock $name $body
set commentblock {}
}
set commentblock {}
}
}
set thisline {}
}
}
###
# Generate the manual page text for a method or proc
###
method section.method {keyword method minfo} {
set result {}
set line "\[call $keyword \[cmd $method\]"
if {[dict exists $minfo argspec]} {
dict for {argname arginfo} [dict get $minfo argspec] {
set positional 1
set mandatory 1
set repeating 0
dict with arginfo {}
if {$mandatory==0} {
append line " \[opt \""
} else {
append line " "
}
if {$positional} {
append line "\[arg $argname"
} else {
append line "\[option \"$argname"
if {[dict exists $arginfo type]} {
append line " \[emph [dict get $arginfo type]\]"
} else {
append line " \[emph value\]"
}
append line "\""
}
append line "\]"
if {$mandatory==0} {
if {[dict exists $arginfo default]} {
append line " \[const \"[dict get $arginfo default]\"\]"
}
append line "\"\]"
}
if {$repeating} {
append line " \[opt \[option \"$argname...\"\]\]"
}
}
}
append line \]
putb result $line
if {[dict exists $minfo description]} {
putb result [dict get $minfo description]
}
if {[dict exists $minfo example]} {
putb result "\[para\]Example: \[example [list [dict get $minfo example]]\]"
}
if {[dict exists $minfo internals]} {
putb result "\[para\]Internals: \[example [list [dict get $minfo internals]]\]"
}
return $result
}
method section.annotation {type name iinfo} {
set result "\[call $type \[cmd $name\]\]"
if {[dict exists $iinfo description]} {
putb result [dict get $iinfo description]
}
if {[dict exists $iinfo example]} {
putb result "\[para\]Example: \[example [list [dict get $minfo example]]\]"
}
return $result
}
###
# Generate the manual page text for a class
###
method section.class {class_name class_info} {
set result {}
putb result "\[subsection \{Class $class_name\}\]"
if {[dict exists $class_info ancestors]} {
set line "\[emph \"ancestors\"\]:"
foreach {c} [dict get $class_info ancestors] {
append line " \[class [string trim $c :]\]"
}
putb result $line
putb result {[para]}
}
dict for {f v} $class_info {
if {$f in {Class_Method method description ancestors example option variable delegate}} continue
putb result "\[emph \"$f\"\]: $v"
putb result {[para]}
}
if {[dict exists $class_info example]} {
putb result "\[example \{[list [dict get $class_info example]]\}\]"
putb result {[para]}
}
if {[dict exists $class_info description]} {
putb result [dict get $class_info description]
putb result {[para]}
}
dict for {f v} $class_info {
if {$f ni {option variable delegate}} continue
putb result "\[class \{[string totitle $f]\}\]"
#putb result "Methods on the class object itself."
putb result {[list_begin definitions]}
dict for {item iinfo} [dict get $class_info $f] {
putb result [my section.annotation $f $item $iinfo]
}
putb result {[list_end]}
putb result {[para]}
}
if {[dict exists $class_info Class_Method]} {
putb result "\[class \{Class Methods\}\]"
#putb result "Methods on the class object itself."
putb result {[list_begin definitions]}
dict for {method minfo} [dict get $class_info Class_Method] {
putb result [my section.method classmethod $method $minfo]
}
putb result {[list_end]}
putb result {[para]}
}
if {[dict exists $class_info method]} {
putb result "\[class {Methods}\]"
putb result {[list_begin definitions]}
dict for {method minfo} [dict get $class_info method] {
putb result [my section.method method $method $minfo]
}
putb result {[list_end]}
putb result {[para]}
}
return $result
}
###
# Generate the manual page text for the commands section
###
method section.command {procinfo} {
set result {}
putb result "\[section \{Commands\}\]"
putb result {[list_begin definitions]}
dict for {method minfo} $procinfo {
putb result [my section.method proc $method $minfo]
}
putb result {[list_end]}
return $result
}
###
# Generate the manual page. Returns the completed text suitable for saving in .man file.
# The header argument is a block of doctools text to go in before the machine generated
# section. footer is a block of doctools text to go in after the machine generated
# section. authors is a list of individual authors and emails in the form of AUTHOR EMAIL ?AUTHOR EMAIL?...
#
# argspec:
# header {mandatory 0 positional 0}
# footer {mandatory 0 positional 0}
# authors {mandatory 0 positional 0 type list}
###
method manpage args {
my variable info
set map {%version% 0.0 %module% {Your_Module_Here}}
set result {}
set header {}
set footer {}
set authors {}
dict with args {}
dict set map %keyword% comment
putb result $map {[%keyword% {-*- tcl -*- doctools manpage}]
[vset PACKAGE_VERSION %version%]
[manpage_begin %module% n [vset PACKAGE_VERSION]]}
putb result $map $header
dict for {sec_type sec_info} $info {
switch $sec_type {
proc {
putb result [my section.command $sec_info]
}
class {
putb result "\[section Classes\]"
dict for {class_name class_info} $sec_info {
putb result [my section.class $class_name $class_info]
}
}
default {
putb result "\[section [list $sec_type $sec_name]\]"
if {[dict exists $sec_info description]} {
putb result [dict get $sec_info description]
}
}
}
}
if {[llength $authors]} {
putb result {[section AUTHORS]}
foreach {name email} $authors {
putb result "$name \[uri mailto:$email\]\[para\]"
}
}
putb result $footer
putb result {[manpage_end]}
return $result
}
# Scan a block of text
method scan_text {text} {
my variable linecount coro
set linecount 0
foreach line [split $text \n] {
incr linecount
$coro $line
}
}
# Scan a file of text
method scan_file {filename} {
my variable linecount coro
set fin [open $filename r]
set linecount 0
while {[gets $fin line]>=0} {
incr linecount
$coro $line
}
close $fin
}
}
|