/usr/share/tcltk/tcllib1.16/treeql/treeql84.tcl is in tcllib 1.16-dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # treeql.tcl
# A generic tree query language in snit
#
# Copyright 2004 Colin McCormack.
# You are permitted to use this code under the same license as tcl.
#
# 20040930 Colin McCormack - initial release to tcllib
#
# RCS: @(#) $Id: treeql84.tcl,v 1.10 2007/06/23 03:39:34 andreas_kupries Exp $
package require Tcl 8.4
package require snit
package require struct::list
package require struct::set
snit::type ::treeql {
variable nodes ;# set of all nodes
variable tree ;# tree over which nodes are defined
variable query ;# full query - ie: 'parent' of this treeql object
# low level accessor to tree
method treeObj {} {
return $tree
}
# apply the [$tree cmd {*}$args] form to each node
# returns the list of results of application
method apply {cmd args} {
set result {}
foreach node $nodes {
if {[catch {
eval [list $tree] $cmd [list $node] $args
} application]} {
upvar ::errorInfo eo
puts stderr "apply: $tree $cmd $node $args -> $application - $eo"
} else {
#puts stderr "Apply: $tree $cmd $node $args -> $application"
foreach a $application {lappend result $a}
}
}
return $result
}
# filter nodes by [$tree cmd {*}$args]
# returns the list of results of application when application is non nil
method filter {cmd args} {
set result {}
foreach node $nodes {
if {[catch {
eval [list $tree] $cmd [list $node] $args
} application]} {
upvar ::errorInfo eo
puts stderr "filter: $tree $cmd $node $args -> $application - $eo"
} else {
#puts stderr "Filter: $tree $cmd $node $args -> $application"
if {$application != {}} {
lappend result $application
}
}
}
return $result
}
# filter nodes by the predicate [$tree cmd {*}$args]
# returns the list of results of application when application is true
method bool {cmd args} {
#puts stderr "Bool: $tree $cmd - $args"
#set result [::struct::list filter $nodes [list $tree $cmd {*}$args]]
#puts stderr "Bool: $tree $cmd - $nodes - $args -> $result"
#return $result
# replaced by tcllib's list filter
set result {}
foreach node $nodes {
if {[catch {
eval [list $tree] $cmd [list $node] $args
} application]} {
upvar ::errorInfo eo
puts stderr "filter: $tree $cmd $node $args -> $application - $eo"
} else {
#puts stderr "bool: $tree $cmd $node $args -> $application - [$tree dump $node]"
if {$application} {
lappend result $node
}
}
}
return $result
}
# applyself - map cmd on $self to each node, discarding null results
method applyself {cmd args} {
set result {}
foreach node $nodes {
if {[catch {
eval [list $query] $cmd [list $node] $args
} application]} {
upvar ::errorInfo eo
puts stderr "applyself: $tree $cmd $node $args -> $application - $eo"
} else {
if {[llength $application]} {
foreach a $application {lappend result $a}
}
}
}
return $result
}
# mapself - map cmd on $self to each node
method mapself {cmd args} {
set result {}
foreach node $nodes {
if {[catch {
eval [list $query] $cmd [list $node] $args
} application]} {
upvar ::errorInfo eo
puts stderr "mapself: $tree $cmd $node $args -> $application - $eo"
} else {
#puts stderr "Mapself: $query $cmd $node $args -> $application"
lappend result $application
}
}
return $result
}
# shim to perform operation $op on attribute $attr of $node
method do_attr {node op attr} {
set attrv [$tree get $node $attr]
#puts stderr "$self do_attr node:'$node' op:'$op' attr:'$attr' attrv:'$attrv'"
return [eval [linsert $op end $attrv]]
}
# filter nodes by predicate [string $op] over attribute $attr
method stringP {op attr args} {
set n {}
set map [$self mapself do_attr [linsert $op 0 string] $attr]
foreach result $map node $nodes {
#puts stderr "$self stringP $op $attr -> $result - $node"
if {$result} {
lappend n $node
}
}
set nodes $n
return $args
}
# filter nodes by negated predicate [string $op] over attribute $attr
method stringNP {op attr args} {
set n {}
set map [$self mapself do_attr [linsert $op 0 string] $attr]
foreach result $map node $nodes {
if {!$result} {
lappend n $node
}
}
set nodes $n
return $args
}
# filter nodes by predicate [expr {*}$op] over attribute $attr
method exprP {op attr args} {
set n {}
set map [$self mapself do_attr [linsert $op 0 expr] $attr]
foreach result $map node $nodes {
if {$result} {
lappend n $node
}
}
set nodes $n
return $args
}
# filter nodes by predicate ![expr {*}$op] over attribute $attr
method exprNP {op attr args} {
set n {}
set map [$self mapself do_attr [linsert $op 0 expr] $attr]
foreach result $map node $nodes {
if {!$result} {
lappend n $node
}
}
set nodes $n
return $args
}
# shim to return string values of attributes matching $pattern of a given $node
method do_get {node pattern} {
set result {}
foreach key [$tree keys $node $pattern] {
set result [concat $result [$tree get $node $key]]
}
return $result
}
# Returns list of attribute values of attributes matching $pattern -
method get {pattern} {
set nodes [$self mapself do_get $pattern]
return {} ;# terminate query
}
# Returns list of attribute values of the current node, in an unspecified order.
method attlist {} {
$self get *
return {} ;# terminate query
}
# Returns list of lists of attributes of each node
method attrs {glob} {
set nodes [$self apply keys $glob]
return {} ;# terminate query
}
# shim to find node ancestors by repetitive [parent]
# as tcllib tree lacks this
method do_ancestors {node} {
set ancestors {}
set rootname [$tree rootname]
while {$node ne $rootname} {
lappend ancestors $node
set node [$tree parent $node]
}
lappend ancestors $rootname
return $ancestors
}
# path from node to root
method ancestors {args} {
set nodes [$self applyself do_ancestors]
return $args
}
# shim to find $node rootpath by repetitive [parent]
# as tcllib tree lacks this
method do_rootpath {node} {
set ancestors {}
set rootname [$tree rootname]
while {$node ne $rootname} {
lappend ancestors $node
set node [$tree parent $node]
}
lappend ancestors $rootname
return [::struct::list reverse $ancestors]
}
# path from root to node
method rootpath {args} {
set nodes [$self applyself do_rootpath]
return $args
}
# node parent
method parent {args} {
set nodes [$self apply parent]
return $args
}
# node children
method children {args} {
set nodes [$self apply children]
return $args
}
# previous sibling
method left {args} {
set nodes [$self apply previous]
return $args
}
# next sibling
method right {args} {
set nodes [$self apply next]
return $args
}
# shim to find left siblings of node, in order of occurrence
method do_previous* {node} {
if {$node == [$tree rootname]} {
set children $node
} else {
set children [$tree children [$tree parent $node]]
}
set index [expr {[lsearch $children $node] - 1}]
return [lrange $children 0 $index]
}
# previous siblings in reverse order
method prev {args} {
set nodes [::struct::list reverse [$self applyself do_previous*]]
return $args
}
# previous siblings in tree order
method esib {args} {
set nodes [$self applyself do_previous*]
return $args
}
# shim to find next siblings in tree order
method do_next* {node} {
if {$node == [$tree rootname]} {
set children $node
} else {
set children [$tree children [$tree parent $node]]
}
set index [expr {[lsearch $children $node] + 1}]
return [lrange $children $index end]
}
# next siblings in tree order
method next {args} {
set nodes [$self applyself do_next*]
return $args
}
# generates the tree root
method root {args} {
set nodes [$tree rootname]
return $args
}
# shim to calculate descendants
method do_subtree {node} {
set nodeset $node
set children [$tree children $node]
foreach child $children {
foreach d [$self do_subtree $child] {lappend nodeset $d}
}
#puts stderr "do_subtree $node -> $nodeset"
return $nodeset
}
# generates proper-descendants of nodes
method descendants {args} {
set desc {}
set nodeset {}
foreach node $nodes {
foreach d [lrange [$self do_subtree $node] 1 end] {lappend nodeset $d}
}
set nodes $nodeset
return $args
}
# generates all subtrees rooted at node
method subtree {args} {
set nodeset {}
foreach node $nodes {
foreach d [$self do_subtree $node] {lappend nodeset $d}
}
set nodes $nodeset
return $args
}
# generates all nodes in the tree
method tree {args} {
set nodes [$self do_subtree [$tree rootname]]
return $args
}
# generates all subtrees rooted at node
#method descendants {args} {
# set nodes [$tree apply descendants]
# return $args
#}
# flattened next subtrees
method forward {args} {
set nodes [$self applyself do_next*] ;# next siblings
$self descendants ;# their proper descendants
return $args
}
# synonym for [forward]
method later {args} {
$self forward
return $args
}
# flattened previous subtrees in tree order
method earlier {args} {
set nodes [$self applyself do_previous*] ;# all earlier siblings
$self descendants ;# their proper descendants
return $args
}
# flattened previous subtrees in reverse tree order
# FIXME - this isn't going to return things in the correct order
method backward {args} {
set nodes [$self applyself do_previous*] ;# all earlier siblings
$self subtree ;# their subtrees
set nodes [::struct::list reverse $nodes] ;# reverse order
return $args
}
# Returns the node type of nodes
method nodetype {} {
set nodes [$self apply get @type]
return {} ;# terminate query
}
# Reduce to nodes of @type $t
method oftype {t args} {
return [eval [linsert $args 0 $self stringP [list equal -nocase $t] @type]]
}
# Reduce to nodes not of @type $t
method nottype {t args} {
return [eval [linsert $args 0 $self stringNP [list equal -nocase $t] @type]]
}
# Reduce to nodes whose @type is one of $attrs
# @type values are assumed to be simple strings
method oftypes {attrs args} {
set n {}
foreach result [$self mapself do_attr list @type] node $nodes {
if {[lsearch $attrs $result] > -1} {
#puts stderr "$self oftypes '$attrs' -> $result - $node"
lappend n $node
}
}
set nodes $n
return $args
}
# Reduce to nodes with attribute $attr (can be a glob)
method hasatt {attr args} {
set nodes [$self bool keyexists $attr]
return $args
}
# Returns values of attribute attname
method attval {attname} {
$self hasatt $attname ;# only nodes with attribute
set nodes [$self apply get $attname] ;# get the attribute nodes
return {} ;# terminate query
}
# Reduce to nodes with attribute $attr of $value
method withatt {attr value args} {
$self hasatt $attr ;# only nodes with attribute
return [eval [linsert $args 0 $self stringP [list equal -nocase $value] $attr]]
}
# Reduce to nodes with attribute $attr of $value
method withatt! {attr val args} {
return [eval [linsert $args 0 $self stringP [list equal $val] $attr]]
}
# Reduce to nodes with attribute $attr value one of $vals
method attof {attr vals args} {
set result {}
foreach node $nodes {
set x [string tolower [[$self treeObj] get $node $attr]]
if {[lsearch $vals $x] != -1} {
lappend result $node
}
}
set nodes $result
return $args
}
# Reduce to nodes whose attribute $attr string matches $match
method attmatch {attr match args} {
$self stringP [linsert $match 0 match] $attr
return $args
}
# Side Effect: set attribute $attr to $val
method set {attr val args} {
$self apply set $attr $val
return $args
}
# Side Effect: unset attribute $attr
method unset {attr args} {
$self apply unset $attr
return $args
}
# apply string operation $op to attribute $attr on each node
method string {op attr} {
set nodes [$self mapself do_attr [linsert $op 0 string] $attr]
return {} ;# terminate query
}
# remove duplicate nodes, preserving order
method unique {args} {
set all {}
array set keys {}
foreach node $nodes {
if {![info exists keys($node)]} {
set keys($node) 1
lappend all $node
}
}
set nodes $all
return $args
}
# construct the set of nodes present in both $nodes and node set $and
method and {and args} {
set nodes [::struct::set intersect $and $nodes]
return $args
}
# return result of new query $query, preserving current node set
method subquery {args} {
set org $nodes ;# save current node set
set new [uplevel 1 [linsert $args 0 $query query]]
set nodes $org ;# restore old node set
return $new
}
# perform a subquery and and in the result
method andq {q args} {
$self and [uplevel 1 [linsert $q 0 $self subquery]]
return $args
}
# construct the set of nodes present in $nodes or node set $or
method or {or args} {
set nodes [::struct::set union $nodes $or]
$self unique
return $args
}
# perform a subquery and or in the result
method orq {q args} {
$self or [uplevel 1 [linsert $q 0 $self subquery]]
return $args
}
# construct the set of nodes present in $nodes but not node set $not
method not {not args} {
set nodes [::struct::set difference $nodes $not]
return $args
}
# perform a subquery and return the set of nodes not in the result
method notq {q args} {
$self not [uplevel 1 [linsert $q 0 $self subquery]]
return $args
}
# select the first of the nodes
method select {args} {
set nodes [lindex $nodes 0]
return $args
}
# perform a subquery then replace the nodeset
method transform {q var body args} {
upvar 1 $var iter
set new {}
foreach n [uplevel 1 [linsert $q 0 $self subquery]] {
set iter $n
switch -exact -- [catch {uplevel 1 $body} result] {
0 {
# ok
lappend new $result
}
1 {
# pass errors up
return -code error $result
}
2 {
# return
set nodes $result
return
}
3 {
# break
break
}
4 {
# continue
continue
}
}
}
set nodes $new
return $args
}
# replace the nodeset
method map {var body args} {
upvar 1 $var iter
set new {}
foreach n $nodes {
set iter $n
switch -exact -- [catch {uplevel 1 $body} result] {
0 {
# ok
lappend new $result
}
1 {
# pass errors up
return -code error $result
}
2 {
# return
set nodes $result
return
}
3 {
# break
break
}
4 {
# continue
continue
}
}
}
set nodes $new
return $args
}
# perform a subquery $query then map $body over results
method foreach {q var body args} {
upvar 1 $var iter
foreach n [uplevel 1 [linsert $q 0 $self subquery]] {
set iter $n
uplevel 1 $body
}
return $args
}
# perform a query, then evaluate $body
method with {q body args} {
# save current node set, implied reset
set org $nodes; set nodes {}
uplevel 1 [linsert $q 0 $self query]
set result [uplevel 1 $body]
# restore old node set
set new $nodes; set nodes $org
return $args
}
# map $body over $nodes
method over {var body args} {
upvar 1 $var iter
set result {}
foreach n $nodes {
set iter $n
uplevel 1 $body
}
return $args
}
# perform the query
method query {args} {
# iterate over the args, treating each as a method invocation
while {$args != {}} {
#puts stderr "query $self $args"
set args [uplevel 1 [linsert $args 0 $query]]
#puts stderr "-> $nodes"
}
return $nodes
}
# append the literal $val to node set
method quote {val args} {
lappend nodes $val
return $args
}
# replace the node set with the literal
method replace {val args} {
set nodes $val
return $args
}
# set nodeset to empty
method reset {args} {
set nodes {}
return $args
}
# delete all nodes in node set
method delete {args} {
foreach node $nodes {
$tree cut $node
}
set nodes {}
return $args
}
# return the node set
method result {} {
return $nodes
}
constructor {args} {
set query [from args -query ""]
if {$query == ""} {
set query $self
}
set nodes [from args -nodes {}]
set tree [from args -tree ""]
uplevel 1 [linsert $args 0 $self query]
}
# Return result, and destroy this query
# useful in constructing a sub-query
method discard {args} {
return [K [$self result] [$self destroy]]
}
proc K {x y} {
set x
}
}
|