Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updating practcl |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | practcl |
Files: | files | file ages | folders |
SHA3-256: |
d290270581534f6ee0c733885258f5eb |
User & Date: | hypnotoad 2018-07-13 18:51:16.007 |
Context
2018-07-13
| ||
18:51 | Pulling changes from trunk check-in: 19783bad7e user: hypnotoad tags: practcl | |
18:51 | Updating practcl check-in: d290270581 user: hypnotoad tags: practcl | |
2018-05-07
| ||
16:12 | Fix to practcl to handle compiling a tclkit with debugging symbols under MinGW cross compiles check-in: 5ab3f8defd user: hypnotoad tags: practcl | |
Changes
Changes to practcl.tcl.
1 2 3 4 5 6 | ### # Amalgamated package for practcl # Do not edit directly, tweak the source in src/ and rerun # build.tcl ### package require Tcl 8.5 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ### # Amalgamated package for practcl # Do not edit directly, tweak the source in src/ and rerun # build.tcl ### package require Tcl 8.5 package provide practcl 0.12 namespace eval ::practcl {} ### # START: httpwget/wget.tcl ### ### # Tool to download file from the web |
︙ | ︙ | |||
64 65 66 67 68 69 70 71 72 73 74 75 76 77 | close $tmpchan } ### # END: httpwget/wget.tcl ### ### # START: setup.tcl ### ### # Practcl # An object oriented templating system for stamping out Tcl API calls to C ### | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | close $tmpchan } ### # END: httpwget/wget.tcl ### ### # START: clay/build/procs.tcl ### ::namespace eval ::clay {} set ::clay::trace 0 ### # Global utilities ### if {[info commands ::ladd] eq {}} { proc ladd {varname args} { upvar 1 $varname var if ![info exists var] { set var {} } foreach item $args { if {$item in $var} continue lappend var $item } return $var } } if {[info command ::ldelete] eq {}} { proc ::ldelete {varname args} { upvar 1 $varname var if ![info exists var] { return } foreach item [lsort -unique $args] { while {[set i [lsearch $var $item]]>=0} { set var [lreplace $var $i $i] } } return $var } } if {[info command ::lrandom] eq {}} { proc ::lrandom list { set len [llength $list] set idx [expr int(rand()*$len)] return [lindex $list $idx] } } if {[::info commands ::tcl::dict::getnull] eq {}} { proc ::tcl::dict::getnull {dictionary args} { if {[exists $dictionary {*}$args]} { get $dictionary {*}$args } } namespace ensemble configure dict -map [dict replace\ [namespace ensemble configure dict -map] getnull ::tcl::dict::getnull] } 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" } } } namespace eval ::clay {} proc ::clay::ancestors args { set result {} set queue {} foreach class [lreverse $args] { lappend queue $class } # Rig things such that that the top superclasses # are evaluated first while {[llength $queue]} { set tqueue $queue set queue {} foreach qclass $tqueue { foreach aclass [::info class superclasses $qclass] { if { $aclass in $result } continue if { $aclass in $queue } continue lappend queue $aclass } } foreach item $tqueue { if { $item ni $result } { lappend result $item } } } return $result } proc ::clay::args_to_dict args { if {[llength $args]==1} { return [lindex $args 0] } return $args } proc ::clay::args_to_options args { set result {} foreach {var val} [args_to_dict {*}$args] { lappend result [string trimright [string trimleft $var -] :] $val } return $result } proc ::clay::dictmerge {varname args} { upvar 1 $varname result if {![info exists result]} { set result {} } switch [llength $args] { 0 { return } 1 { set result [_dictmerge $result [lindex $args 0]] return $result } 2 { lassign $args path value } default { # Merge b into a, and handle nested dicts appropriately set value [lindex $args end] set path [lrange $args 0 end-1] } } if {![dict exists $result {*}$path]} { dict set result {*}$path $value return $result } if {[string index [lindex $path end] end] ne "/"} { dict set result {*}$path $value return $result } ::dict for { k v } $value { # Element names that end in "/" are assumed to be branches if {[string index $k end] eq "/" && [::dict exists $result {*}$path $k]} { # key exists in a and b? let's see if both values are dicts # both are dicts, so merge the dicts set dvalue [::dict get $result {*}$path $k] if { [is_dict $dvalue] && [is_dict $v] } { ::dict set result {*}$path $k [_dictmerge $dvalue $v] } else { ::dict set result {*}$path $k $v } } else { ::dict set result {*}$path $k $v } } return $result } proc ::clay::_dictmerge {a b} { ::set result $a # Merge b into a, and handle nested dicts appropriately ::dict for { k v } $b { if {[string index $k end] ne "/"} { # Element names that do not end in "/" are assumed to be literals # or dict trees we intend to replace wholly ::dict set result $k $v } elseif { [::dict exists $result $k] } { # key exists in a and b? let's see if both values are dicts # both are dicts, so merge the dicts if { [is_dict [::dict get $result $k]] && [is_dict $v] } { ::dict set result $k [_dictmerge [::dict get $result $k] $v] } else { ::dict set result $k $v } } else { ::dict set result $k $v } } return $result } proc ::clay::dictputb {dict} { set result {} set level -1 _dictputb 0 $level result $dict return $result } proc ::clay::_dictputb {leaf level varname dict} { upvar 1 $varname result incr level foreach {field value} $dict { if {[string index $field end] eq "/"} { putb result "[string repeat " " $level]$field \{" _dictputb 0 $level result $value putb result "[string repeat " " $level]\}" } else { putb result "[string repeat " " $level][list $field $value]" } } } ### # topic: 4969d897a83d91a230a17f166dbcaede ### proc ::clay::dynamic_arguments {ensemble method arglist args} { set idx 0 set len [llength $args] if {$len > [llength $arglist]} { ### # Catch if the user supplies too many arguments ### set dargs 0 if {[lindex $arglist end] ni {args dictargs}} { return -code error -level 2 "Usage: $ensemble $method [string trim [dynamic_wrongargs_message $arglist]]" } } foreach argdef $arglist { if {$argdef eq "args"} { ### # Perform args processing in the style of tcl ### uplevel 1 [list set args [lrange $args $idx end]] break } if {$argdef eq "dictargs"} { ### # Perform args processing in the style of tcl ### uplevel 1 [list set args [lrange $args $idx end]] ### # Perform args processing in the style of clay ### set dictargs [::clay::args_to_options {*}[lrange $args $idx end]] uplevel 1 [list set dictargs $dictargs] break } if {$idx > $len} { ### # Catch if the user supplies too few arguments ### if {[llength $argdef]==1} { return -code error -level 2 "Usage: $ensemble $method [string trim [dynamic_wrongargs_message $arglist]]" } else { uplevel 1 [list set [lindex $argdef 0] [lindex $argdef 1]] } } else { uplevel 1 [list set [lindex $argdef 0] [lindex $args $idx]] } incr idx } } ### # topic: 53ab28ac5c6ee601fe1fe07b073be88e ### proc ::clay::dynamic_wrongargs_message {arglist} { set result "" set dargs 0 foreach argdef $arglist { if {$argdef in {args dictargs}} { set dargs 1 break } if {[llength $argdef]==1} { append result " $argdef" } else { append result " ?[lindex $argdef 0]?" } } if { $dargs } { append result " ?option value?..." } return $result } proc ::clay::is_dict { d } { # is it a dict, or can it be treated like one? if {[catch {::dict size $d} err]} { #::set ::errorInfo {} return 0 } return 1 } proc ::clay::is_null value { return [expr {$value in {{} NULL}}] } proc ::clay::leaf args { set marker [string index [lindex $args end] end] set result [path {*}${args}] if {$marker eq "/"} { return $result } return [list {*}[lrange $result 0 end-1] [string trim [string trim [lindex $result end]] /]] } proc ::clay::path args { set result {} foreach item $args { set item [string trim $item :./] foreach subitem [split $item /] { lappend result [string trim ${subitem}]/ } } return $result } proc ::clay::script_path {} { set path [file dirname [file join [pwd] [info script]]] return $path } proc ::clay::NSNormalize qualname { if {![string match ::* $qualname]} { set qualname ::clay::classes::$qualname } regsub -all {::+} $qualname "::" } proc ::clay::uuid_generate args { return [uuid::uuid generate] } namespace eval ::clay { variable core_classes {::oo::class ::oo::object} } ### # END: clay/build/procs.tcl ### ### # START: clay/build/class.tcl ### oo::define oo::class { method clay {submethod args} { my variable clay if {![info exists clay]} { set clay {} } switch $submethod { ancestors { tailcall ::clay::ancestors [self] } exists { set path [::clay::leaf {*}$args] if {![info exists clay]} { return 0 } return [dict exists $clay {*}$path] } dump { return $clay } getnull - get { if {[llength $args]==0} { return $clay } if {![dict exists $clay {*}$args]} { return {} } tailcall dict get $clay {*}$args } merge { foreach arg $args { ::clay::dictmerge clay {*}$arg } } search { foreach aclass [::clay::ancestors [self]] { if {[$aclass clay exists {*}$args]} { return [$aclass clay get {*}$args] } } } set { #puts [list [self] clay SET {*}$args] set value [lindex $args end] set path [::clay::leaf {*}[lrange $args 0 end-1]] ::clay::dictmerge clay {*}$path $value } default { dict $submethod clay {*}$args } } } } ### # END: clay/build/class.tcl ### ### # START: clay/build/object.tcl ### oo::define oo::object { ### # title: Provide access to clay data # format: markdown # description: # The *clay* method allows an object access # to a combination of its own clay data as # well as to that of its class ### method clay {submethod args} { my variable clay claycache clayorder if {![info exists clay]} {set clay {}} if {![info exists claycache]} {set claycache {}} if {![info exists clayorder] || [llength $clayorder]==0} { set clayorder [::clay::ancestors [info object class [self]] {*}[info object mixins [self]]] } if {$::clay::trace > 1} { puts [list [info object class [self]] / [self] clay $submethod {*}$args] } switch $submethod { ancestors { return $clayorder } cget { # Leaf searches return one data field at a time # Search in our local dict if {[dict exists $clay {*}$args]} { return [dict get $clay {*}$args] } # Search in our local cache if {[dict exists $claycache {*}$args]} { return [dict get $claycache {*}$args] } # Search in the in our list of classes for an answer foreach class $clayorder { if {[$class clay exists {*}$args]} { set value [$class clay get {*}$args] dict set claycache {*}$args $value return $value } if {[$class clay exists const/ {*}$args]} { set value [$class clay get const/ {*}$args] dict set claycache {*}$args $value return $value } if {[llength $args]==1} { set field [lindex $args 0] if {[$class clay exists public/ option/ ${field}/ default]} { set value [$class clay get public/ option/ ${field}/ default] dict set claycache {*}$args $value return $value } } } return {} } delegate { if {![dict exists $clay delegate/ <class>]} { dict set clay delegate/ <class> [info object class [self]] } if {[llength $args]==0} { return [dict get $clay delegate/] } if {[llength $args]==1} { set stub <[string trim [lindex $args 0] <>]> if {![dict exists $clay delegate/ $stub]} { return {} } return [dict get $clay delegate/ $stub] } if {([llength $args] % 2)} { error "Usage: delegate OR delegate stub OR delegate stub OBJECT ?stub OBJECT? ..." } foreach {stub object} $args { set stub <[string trim $stub <>]> dict set clay delegate/ $stub $object oo::objdefine [self] forward ${stub} $object oo::objdefine [self] export ${stub} } } dump { # Do a full dump of clay data set result $clay # Search in the in our list of classes for an answer foreach class $clayorder { ::clay::dictmerge result [$class clay dump] } return $result } ensemble_map { set ensemble [lindex $args 0] my variable claycache set mensemble [string trim $ensemble :/]/ if {[dict exists $claycache method_ensemble/ $mensemble]} { return [dict get $claycache method_ensemble/ $mensemble] } set emap [my clay get method_ensemble/ $mensemble] dict set claycache method_ensemble/ $mensemble $emap return $emap } eval { set script [lindex $args 0] set buffer {} set thisline {} foreach line [split $script \n] { append thisline $line if {![info complete $thisline]} { append thisline \n continue } set thisline [string trim $thisline] if {[string index $thisline 0] eq "#"} continue if {[string length $thisline]==0} continue if {[lindex $thisline 0] eq "my"} { # Line already calls out "my", accept verbatim append buffer $thisline \n } elseif {[string range $thisline 0 2] eq "::"} { # Fully qualified commands accepted verbatim append buffer $thisline \n } elseif { append buffer "my $thisline" \n } set thisline {} } eval $buffer } evolve { my Evolve } exists { # Leaf searches return one data field at a time # Search in our local dict if {[dict exists $clay {*}$args]} { return 1 } # Search in our local cache if {[dict exists $claycache {*}$args]} { return 2 } set count 2 # Search in the in our list of classes for an answer foreach class $clayorder { incr count if {[$class clay exists {*}$args]} { return $count } } return 0 } flush { set claycache {} set clayorder [::clay::ancestors [info object class [self]] {*}[info object mixins [self]]] } forward { oo::objdefine [self] forward {*}$args } getnull - get { set leaf [expr {[string index [lindex $args end] end] ne "/"}] #puts [list [self] clay get {*}$args (leaf: $leaf)] if {$leaf} { #puts [list EXISTS: (clay) [dict exists $clay {*}$args]] if {[dict exists $clay {*}$args]} { return [dict get $clay {*}$args] } # Search in our local cache #puts [list EXISTS: (claycache) [dict exists $claycache {*}$args]] if {[dict exists $claycache {*}$args]} { return [dict get $claycache {*}$args] } # Search in the in our list of classes for an answer foreach class $clayorder { if {[$class clay exists {*}$args]} { set value [$class clay get {*}$args] dict set claycache {*}$args $value return $value } } } else { set result {} # Leaf searches return one data field at a time # Search in our local dict if {[dict exists $clay {*}$args]} { set result [dict get $clay {*}$args] } # Search in the in our list of classes for an answer foreach class $clayorder { ::clay::dictmerge result [$class clay get {*}$args] } return $result } } leaf { # Leaf searches return one data field at a time # Search in our local dict if {[dict exists $clay {*}$args]} { return [dict get $clay {*}$args] } # Search in our local cache if {[dict exists $claycache {*}$args]} { return [dict get $claycache {*}$args] } # Search in the in our list of classes for an answer foreach class $clayorder { if {[$class clay exists {*}$args]} { set value [$class clay get {*}$args] dict set claycache {*}$args $value return $value } } } merge { foreach arg $args { ::clay::dictmerge clay {*}$arg } } mixin { ### # Mix in the class ### set prior [info object mixins [self]] set newmixin {} foreach item $args { lappend newmixin ::[string trimleft $item :] } set newmap $args foreach class $prior { if {$class ni $newmixin} { set script [$class clay search mixin/ unmap-script] if {[string length $script]} { if {[catch $script err errdat]} { puts stderr "[self] MIXIN ERROR POPPING $class:\n[dict get $errdat -errorinfo]" } } } } ::oo::objdefine [self] mixin {*}$args ### # Build a compsite map of all ensembles defined by the object's current # class as well as all of the classes being mixed in ### my Evolve foreach class $newmixin { if {$class ni $prior} { set script [$class clay search mixin/ map-script] if {[string length $script]} { if {[catch $script err errdat]} { puts stderr "[self] MIXIN ERROR PUSHING $class:\n[dict get $errdat -errorinfo]" } } } } foreach class $newmixin { set script [$class clay search mixin/ react-script] if {[string length $script]} { if {[catch $script err errdat]} { puts stderr "[self] MIXIN ERROR PEEKING $class:\n[dict get $errdat -errorinfo]" } break } } } mixinmap { foreach {slot classes} $args { dict set clay mixin/ $slot $classes } set claycache {} set classlist {} foreach {item class} [my clay get mixin/] { if {$class ne {}} { lappend classlist $class } } my clay mixin {*}$classlist } provenance { if {[dict exists $clay {*}$args]} { return self } foreach class $clayorder { if {[$class clay exists {*}$args]} { return $class } } return {} } replace { set clay [lindex $args 0] } source { source [lindex $args 0] } set { #puts [list [self] clay SET {*}$args] ::clay::dictmerge clay {*}$args } default { dict $submethod clay {*}$args } } } ### # React to a mixin ### method Evolve {} {} } ### # END: clay/build/object.tcl ### ### # START: setup.tcl ### ### # Practcl # An object oriented templating system for stamping out Tcl API calls to C ### |
︙ | ︙ | |||
1311 1312 1313 1314 1315 1316 1317 | } default { array $submethod define {*}$args } } } | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | | 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 | } default { array $submethod define {*}$args } } } method graft args { return [my clay delegate {*}$args] } method initialize {} {} method link {command args} { my variable links |
︙ | ︙ | |||
1522 1523 1524 1525 1526 1527 1528 | foreach {s c} $mixinslot { if {$c eq {}} continue lappend mixins $c } oo::objdefine [self] mixin {*}$mixins } | | < < | < < < < < < < | 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 | foreach {s c} $mixinslot { if {$c eq {}} continue lappend mixins $c } oo::objdefine [self] mixin {*}$mixins } method organ args { return [my clay delegate {*}$args] } method script script { eval $script } method select {} { |
︙ | ︙ | |||
1952 1953 1954 1955 1956 1957 1958 | method make-install DEST { set PWD [pwd] set builddir [my define get builddir] if {[my <project> define get LOCAL 0] || $DEST eq {}} { if {[file exists [file join $builddir make.tcl]]} { puts "[self] Local INSTALL (Practcl)" ::practcl::domake.tcl $builddir install | | | 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 | method make-install DEST { set PWD [pwd] set builddir [my define get builddir] if {[my <project> define get LOCAL 0] || $DEST eq {}} { if {[file exists [file join $builddir make.tcl]]} { puts "[self] Local INSTALL (Practcl)" ::practcl::domake.tcl $builddir install } elseif {[my define get broken_destroot 0] == 0} { puts "[self] Local INSTALL (TEA)" ::practcl::domake $builddir install } } else { if {[file exists [file join $builddir make.tcl]]} { # Practcl builds can inject right to where we need them puts "[self] VFS INSTALL $DEST (Practcl)" |
︙ | ︙ | |||
2716 2717 2718 2719 2720 2721 2722 | ### ::oo::class create ::practcl::object { superclass ::practcl::metaclass constructor {parent args} { my variable links define set organs [$parent child organs] | | | 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 | ### ::oo::class create ::practcl::object { superclass ::practcl::metaclass constructor {parent args} { my variable links define set organs [$parent child organs] my clay delegate {*}$organs array set define $organs array set define [$parent child define] array set links {} if {[llength $args]==1 && [file exists [lindex $args 0]]} { my define set filename [lindex $args 0] ::practcl::product select [self] } elseif {[llength $args] == 1} { |
︙ | ︙ | |||
4053 4054 4055 4056 4057 4058 4059 | ### ::oo::class create ::practcl::module { superclass ::practcl::object ::practcl::product.dynamic method _MorphPatterns {} { return {{@name@} {::practcl::module.@name@} ::practcl::module} } | | | | | | 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 | ### ::oo::class create ::practcl::module { superclass ::practcl::object ::practcl::product.dynamic method _MorphPatterns {} { return {{@name@} {::practcl::module.@name@} ::practcl::module} } method add args { my variable links set object [::practcl::object new [self] {*}$args] foreach linktype [$object linktype] { lappend links($linktype) $object } return $object } method install-headers args {} ### # Target handling ### method make {command args} { my variable make_object if {![info exists make_object]} { set make_object {} |
︙ | ︙ | |||
4166 4167 4168 4169 4170 4171 4172 | } task - target - add { set name [lindex $args 0] set info [uplevel #0 [list subst [lindex $args 1]]] set body [lindex $args 2] | | | 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 | } task - target - add { set name [lindex $args 0] set info [uplevel #0 [list subst [lindex $args 1]]] set body [lindex $args 2] set nspace [namespace current] if {[dict exist $make_object $name]} { set obj [dict get $$make_object $name] } else { set obj [::practcl::make_obj new [self] $name $info $body] dict set make_object $name $obj dict set target_make $name 0 |
︙ | ︙ | |||
4190 4191 4192 4193 4194 4195 4196 | return $obj } todo { foreach {name obj} $make_object { if {[$obj do]} { lappend result $name } | | | > | 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 | return $obj } todo { foreach {name obj} $make_object { if {[$obj do]} { lappend result $name } } } do { global CWD SRCDIR project SANDBOX foreach {name obj} $make_object { if {[$obj do]} { eval [$obj define get action] } } } } } method child which { switch $which { delegate - organs { return [list project [my define get project] module [self]] } } } ### |
︙ | ︙ | |||
4382 4383 4384 4385 4386 4387 4388 | lappend errs [dict get $errdat -errorinfo] } else { lappend errs $errdat } } } if {[llength $errs]} { | | | 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 | lappend errs [dict get $errdat -errorinfo] } else { lappend errs $errdat } } } if {[llength $errs]} { set logfile [file join $::CWD practcl.log] ::practcl::log $logfile "*** ERRORS ***" foreach {item trace} $errs { ::practcl::log $logfile "###\n# ERROR\n###\n$item" ::practcl::log $logfile "###\n# TRACE\n###\n$trace" } ::practcl::log $logfile "*** DEBUG INFO ***" ::practcl::log $logfile $::DEBUG_INFO |
︙ | ︙ | |||
4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 | } $tkobj define set config_opts $tk_config_opts $tkobj compile } method child which { switch $which { organs { # A library can be a project, it can be a module. Any # subordinate modules will indicate their existance return [list project [self] module [self]] } } } | > | 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 | } $tkobj define set config_opts $tk_config_opts $tkobj compile } method child which { switch $which { delegate - organs { # A library can be a project, it can be a module. Any # subordinate modules will indicate their existance return [list project [self] module [self]] } } } |
︙ | ︙ | |||
5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 | method BuildDir {PWD} { return [my define get srcdir] } method child which { switch $which { organs { # A library can be a project, it can be a module. Any # subordinate modules will indicate their existance return [list project [self] module [self]] } } } | > | 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 | method BuildDir {PWD} { return [my define get srcdir] } method child which { switch $which { delegate - organs { # A library can be a project, it can be a module. Any # subordinate modules will indicate their existance return [list project [self] module [self]] } } } |
︙ | ︙ | |||
5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 | method sources {} {} method update {} { my ScmUpdate } method unpack {} { ::practcl::distribution select [self] my Unpack ::practcl::toolset select [self] } } ### # Trivial implementations ### | > > | 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 | method sources {} {} method update {} { my ScmUpdate } method unpack {} { cd $::CWD ::practcl::distribution select [self] my Unpack ::practcl::toolset select [self] cd $::CWD } } ### # Trivial implementations ### |
︙ | ︙ |