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
|
#
# Copyright (c) 1993-1995 Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the Computer Systems
# Engineering Group at Lawrence Berkeley Laboratory.
# 4. Neither the name of the University nor of the Laboratory may be used
# to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# @(#) $Header: /cs/research/mice/starship/src/local/CVS_repository/vic/ui-stats.tcl,v 1.1.1.1 1998/02/18 18:03:50 ucacsva Exp $ (LBL)
#
proc get-playout src {
set d [$src handler]
if { "$d" != "" } {
#XXX assume 8Khz */
return [expr [$d playout] >> 3]
}
return 0
}
proc create_stat_row { r name width cmd relief } {
set f [smallfont]
button $r.name -text $name -font $f -anchor w -width $width \
-command $cmd -pady 2 -padx 2 -borderwidth 2 \
-highlightthickness 0 -relief raised
label $r.smooth -font $f -anchor e -width 8 \
-relief $relief -borderwidth 1 -pady 1
label $r.diff -font $f -anchor e -width 8 \
-relief $relief -borderwidth 1 -pady 1
label $r.total -font $f -anchor e -width 8 \
-relief ridge -borderwidth 1 -pady 1
pack $r.name -anchor w -fill x -side left -pady 1 -padx 4
pack $r.smooth $r.diff $r.total \
-expand 1 -fill both -anchor e -side left
}
proc create_stats_panel { w stats } {
set f [smallfont]
set p $w.f
frame $p
set top [winfo toplevel $w]
set gain [resource statsFilter]
global rv_diff rv_smooth rv_list win_src
set r $p.legend
frame $r
label $r.smooth -font $f -anchor c -width 8 -text EWA \
-relief ridge -borderwidth 1
label $r.diff -font $f -anchor c -width 8 -text Delta \
-relief ridge -borderwidth 1
label $r.total -font $f -anchor c -width 8 -text Total \
-relief ridge -borderwidth 1
pack $r.total $r.diff $r.smooth -side right
pack $r -anchor e
#
# save list of stats because they might change and we want to
# remember the rate variables that we have created
#
set rv_list($top) $stats
set n [llength $stats]
set width 10
set i 0
while { $i < $n } {
set v [string len [lindex $stats $i]]
if { $v > $width } {
set width $v
}
incr i 2
}
set src $win_src($top)
set i 0
while { $i < $n } {
set name [lindex $stats $i]
incr i
set value [lindex $stats $i]
incr i
set id [string tolower $name]
set r $p.$id
frame $r
set gen "stat_generator \{$src stats\} $name"
set cmd "create_plot_window $src $name \{$gen\}"
create_stat_row $r $name $width $cmd ridge
pack $r -pady 0
set rv_diff($top:$id) $value
set rv_smooth($top:$id) $value
rate_variable rv_diff($top:$id) 1.0 "%.1f"
rate_variable rv_smooth($top:$id) $gain "%.1f"
}
#
# Special-case playout estimator since it's not a counter
#
if { $src != "session" } {
set r $p.playout
frame $r
set cmd "create_plot_window $src Playout \{get-playout $src\}"
create_stat_row $r Playout $width $cmd flat
pack $r -pady 0
}
global stat_window maxStat
set stat_window($top) $p
catch "unset maxStat($top)"
pack $w.f -anchor c
}
proc stats_changed { s1 s2 } {
set n [llength $s1]
if { $n != [llength $s2] } {
return 1
}
set i 0
while { $i < $n } {
if { [lindex $s1 $i] != [lindex $s2 $i] } {
return 1
}
incr i 2
}
return 0
}
proc stat_update w {
global stat_window rv_diff rv_smooth rv_list \
stat_method win_src
set stats [eval $stat_method($w)]
if [stats_changed $stats $rv_list($w)] {
unset_rvs $w
pack forget $w.frame
destroy $w.frame
frame $w.frame -borderwidth 2 -relief groove
create_stats_panel $w.frame $stats
pack $w.frame -after $w.title -expand 1 -fill x -anchor center
}
set p $stat_window($w)
set i 0
set n [llength $stats]
while { $i < $n } {
set id [string tolower [lindex $stats $i]]
incr i
set cntr [lindex $stats $i]
incr i
set rv_diff($w:$id) $cntr
set rv_smooth($w:$id) $cntr
$p.$id.total configure -text $cntr
$p.$id.diff configure -text $rv_diff($w:$id)
$p.$id.smooth configure -text $rv_smooth($w:$id)
}
if [winfo exists $p.playout.total] {
$p.playout.total configure -text [get-playout $win_src($w)]ms
}
}
proc info_update { w src } {
set decoder [$src handler]
set fmt [rtp_format $src]
if { $fmt == "" } { set fmt "?" }
$w.title.info configure -text [info_text $src]
set t [$src lastdata]
if { $t == "" } { set t "never" }
$w.title.timeData configure -text "last data $t"
set t [$src lastctrl]
if { $t == "" } { set t "never" }
$w.title.timeCtrl configure -text "last control $t"
foreach sdes [resource sdesList] {
$w.title.$sdes configure -text "$sdes: [$src sdes $sdes]"
}
$w.title.srcid configure -text "srcid: [$src srcid]/[$src addr]"
if { [$src srcid] != [$src ssrc] } {
if ![winfo exists $w.title.mixer] {
label $w.title.mixer -borderwidth 0 \
-font [smallfont] -anchor w
pack $w.title.mixer -after $w.title.srcid -fill x
}
$w.title.mixer configure -text "mixer: [$src ssrc]/[$src addr]"
} elseif [winfo exists $w.title.mixer] {
pack forget $w.title.mixer
destroy $w.title.mixer
}
set note [$src sdes note]
if { $note != "" } {
set bg [resource infoHighlightColor]
} else {
set bg [resource background]
}
$w.title.note configure -background $bg
}
#
# Unset all the rate variables associated with a window,
# so that the C storage is freed up
#
proc unset_rvs w {
global rv_list rv_diff rv_smooth
if [info exists rv_list($w)] {
set n [llength $rv_list($w)]
for { set i 0 } { $i < $n } { incr i 2 } {
set id [string tolower [lindex $rv_list($w) $i]]
unset rv_diff($w:$id) rv_smooth($w:$id)
}
unset rv_list($w)
}
}
proc stat_destroy w {
unset_rvs $w
destroy $w
global stat_method win_src
unset stat_method($w) win_src($w)
}
proc info_destroy { w src } {
global info_x info_y
set info_x($src) [winfo rootx $w]
set info_y($src) [winfo rooty $w]
destroy $w
}
proc create_stats_window { w src titleText method } {
if [winfo exists $w] {
stat_destroy $w
return
}
create_toplevel $w [getid $src]
set f [smallfont]
frame $w.title -borderwidth 2 -relief groove
label $w.title.main -borderwidth 0 -anchor w -text $titleText
label $w.title.name -borderwidth 0 -anchor w \
-textvariable src_nickname($src)
frame $w.frame -borderwidth 2 -relief groove
global win_src stat_method
set stat_method($w) $method
set win_src($w) $src
create_stats_panel $w.frame [eval $method]
pack $w.title.name -anchor w
pack $w.title.main -anchor w
pack $w.title -fill x
pack $w.frame -expand 1 -fill x -anchor center
wm geometry $w +[winfo pointerx .]+[winfo pointery .]
wm deiconify $w
# start up the timer
window_timer $w stat_update
button $w.dismiss -relief raised -font $f \
-command "stat_destroy $w" -text Dismiss
pack $w.dismiss -anchor c -pady 4
}
proc create_rtp_window src {
create_stats_window .rtp$src $src "RTP Statistics" "$src stats"
}
proc create_decoder_window src {
if { "[$src handler]" != "" } {
create_stats_window .decoder$src $src \
"Decoder Statistics" "\[$src handler\] stats"
} else {
open_dialog "no decoder stats yet"
}
}
#
# delete any windows bound to this source's decoder
#
proc destroy_decoder_stats src {
if [winfo exists .decoder$src] {
stat_destroy .decoder$src
}
}
#
# delete any windows bound to this source
# assumes destroy_decoder_stats has already taken
# care of decoder windows
#
proc destroy_rtp_stats src {
if [winfo exists .rtp$src] {
stat_destroy .rtp$src
}
if [winfo exists .info$src] {
info_destroy .info$src $src
}
global rv_plot win_src
foreach w [array names rv_plot] {
if { "$win_src($w)" == "$src" } {
plot_destroy $w
}
}
}
proc create_global_window {} {
set w .global
if [winfo exists $w] {
stat_destroy $w
return
}
create_toplevel $w "Session Stats"
set f [smallfont]
frame $w.title -borderwidth 2 -relief groove
label $w.title.main -borderwidth 0 -anchor w \
-text "Global Session Statistics"
frame $w.frame -borderwidth 2 -relief groove
global stat_method win_src
set stat_method($w) "session stats"
# hack
set win_src($w) session
create_stats_panel $w.frame [session stats]
pack $w.title.main -anchor w
pack $w.title -fill x
pack $w.frame -expand 1 -fill x -anchor center
wm geometry $w +[winfo pointerx .]+[winfo pointery .]
wm deiconify $w
# start up the timer
window_timer $w stat_update
button $w.dismiss -relief raised -font $f \
-command "stat_destroy $w" -text Dismiss
pack $w.dismiss -anchor c -pady 4
}
proc window_timer { w action } {
#XXX window can be deleted and recreated before old time dies
#XXX which gives us two active timers (I think)
if ![winfo exists $w] {
return
}
$action $w
after 1000 "window_timer $w $action"
}
proc has_src w {
global win_src
if [string compare $win_src($w) GLOBAL] {
return 1
} else {
return 0
}
}
proc stat_generator { method id } {
set stats [eval $method]
set k [lsearch -exact $stats $id]
return [lindex $stats [expr $k + 1]]
}
proc plot_get w {
global plot_generator
set v [eval $plot_generator($w)]
return $v
}
proc plot_update w {
global rv_plot
set rv_plot($w) [plot_get $w]
$w.frame.sc set $rv_plot($w)
}
proc plot_destroy w {
global win_src rv_plot plot_generator
unset win_src($w) plot_generator($w) rv_plot($w)
destroy $w
}
proc relabel_stripchart {w min max perDiv} {
$w configure -text " range $min to $max, $perDiv/div"
}
proc create_plot_window { src name generator } {
global win_src plot_generator
set id [string tolower $name]
set w .plot$src$id
#XXX
if [winfo exists $w] {
plot_destroy $w
return
}
set win_src($w) $src
set plot_generator($w) $generator
create_toplevel $w "plot window"
catch "wm resizable $w true false"
set f [smallfont]
frame $w.title -borderwidth 2 -relief groove
label $w.title.main -borderwidth 0 -anchor w -text $name
frame $w.frame -borderwidth 2 -relief groove
stripchart $w.frame.sc -max 200 -min 1 -stripwidth 1 -width 1 \
-autoscale 2 -rescale_command "relabel_stripchart $w.bf.lab" \
-relief groove -striprelief flat -tickcolor gray95 -hticks 30
pack $w.frame.sc -expand 1 -fill both
# force more reasonable initial size
frame $w.brace -width 250
pack $w.brace
if [has_src $w] {
label $w.title.name -borderwidth 0 -anchor w \
-textvariable src_nickname($src)
pack $w.title.name -anchor w
}
pack $w.title.main -anchor w
pack $w.title -fill x
pack $w.frame -expand 1 -fill both -anchor center
#
# create a new rate-variable. would be nice to just use
# rv_diff but the stat window that this plot comes from can
# be deleted while leaving this one in place.
# XXX hack: don't use a rate-variable for the playout estimator
# since we want actual value not differences
if { "$id" != "playout" } {
rate_variable rv_plot($w) 1.0 "%.1f"
}
wm geometry $w +[winfo pointerx .]+[winfo pointery .]
wm deiconify $w
# start up the timer
window_timer $w plot_update
frame $w.bf
label $w.bf.lab -borderwidth 0 -font $f -anchor w -text "No data"
pack $w.bf.lab -side left -expand 1 -fill x
button $w.bf.dismiss -relief raised -font $f -anchor e \
-command "plot_destroy $w" -text Dismiss
pack $w.bf.dismiss -side right -pady 4 -padx 4
pack $w.bf -expand 1 -fill x
}
#
# create a top-level window with summary statistics
# for the indicated source
#
proc create_info_window src {
set w .info$src
if [winfo exists $w] {
info_destroy $w $src
return
}
create_toplevel $w [getid $src]
set f [smallfont]
frame $w.title -borderwidth 2 -relief groove
label $w.title.name -borderwidth 0 -font $f -anchor w \
-textvariable src_nickname($src)
label $w.title.info -borderwidth 0 -font $f -anchor w \
-text [$src addr]
label $w.title.timeData -borderwidth 0 -font $f -anchor w
label $w.title.timeCtrl -borderwidth 0 -font $f -anchor w
frame $w.frame -borderwidth 2 -relief groove
pack $w.title.name $w.title.info -fill x
foreach sdes [resource sdesList] {
label $w.title.$sdes -borderwidth 0 -font $f -anchor w
pack $w.title.$sdes -fill x
}
label $w.title.srcid -borderwidth 0 -font $f -anchor w
pack $w.title.srcid -fill x
pack $w.title.timeData $w.title.timeCtrl -fill x
pack $w.title -fill x
set p $w.bot
frame $p
set m $p.mb.menu
menubutton $p.mb -text Stats... -menu $m -relief raised -width 8 \
-font $f
menu $m
$m add command -label RTP -command "create_rtp_window $src" -font $f
$m add command -label Decoder \
-command "create_decoder_window $src" -font $f
button $p.dismiss -relief raised -font $f \
-command "info_destroy $w $src" -text Dismiss
pack $p.mb -side left -padx 8
pack $p.dismiss -side right -padx 8
pack $p -anchor c -pady 4 -fill x
info_update $w $src
global info_x info_y
if [info exists info_x($src) ] {
set x $info_x($src)
set y $info_y($src)
} else {
set x [winfo pointerx .]
set y [winfo pointery .]
}
#
# Need to do an update so that $w gets laid out allowing us to
# look up its size. This is tricky because of a possible race:
# if the user releases the mouse, summary_window might get
# destroyed during the update idletasks. So we check
# that the window still exists before proceeeding.
#
update idletasks
if ![winfo exists $w] { return }
#
# Check if window goes off the bottom or right. Don't need
# to check top or left since upper-left corner is at mouse.
#
set right [expr [winfo screenwidth .] - [winfo reqwidth $w] - 5]
if { $x > $right } {
set x $right
}
set bot [expr [winfo screenheight .] - [winfo reqheight $w] - 5]
if { $y > $bot } {
set y $bot
}
wm geometry $w +$x+$y
wm deiconify $w
after 3000 "info_timer $w $src"
}
proc info_timer { w src } {
if ![winfo exists $w] {
return
}
info_update $w $src
after 3000 "info_timer $w $src"
}
proc create_mtrace_window {src dir} {
set w .mtrace$src
if ![winfo exists $w] {
create_toplevel $w "[getid $src] mtrace"
set f [smallfont]
frame $w.t
scrollbar $w.t.yscroll -command "$w.t.text yview" -relief sunken
scrollbar $w.t.xscroll -command "$w.t.text xview" -relief sunken \
-orient horiz
text $w.t.text -height 24 -width 80 -setgrid true -wrap none \
-font fixed -relief sunken -borderwidth 2 \
-xscrollcommand "$w.t.xscroll set" \
-yscrollcommand "$w.t.yscroll set"
pack $w.t.yscroll -side right -fill y
pack $w.t.xscroll -side bottom -fill x
pack $w.t.text -side left -padx 0 -pady 0 -fill both -expand yes
set p $w.b
frame $p
button $p.dismiss -relief raised -font $f \
-command "destroy $w" -text Dismiss
pack $p.dismiss -side right -padx 8
pack $w.t -side top -fill both -expand yes
pack $p -side bottom -pady 2 -fill x
wm geometry $w +[winfo pointerx .]+[winfo pointery .]
wm deiconify $w
update idletasks
if ![winfo exists $w] { return }
} else {
$w.t.text yview end
}
global V
if {$dir=="to"} {
set cmd "|mtrace [$V(data-net) interface] [$V(data-net) addr] [$src addr]"
} else {
set cmd "|mtrace [$src addr] [$V(data-net) addr]"
}
if [catch "open {$cmd} r" fd] {
$w.t.text insert end "mtrace error: $fd"
return
}
fconfigure $fd -blocking 0
fileevent $fd readable "read_mtrace $fd $w"
}
proc read_mtrace {fd w} {
if [winfo exists $w] {
$w.t.text insert end [read $fd]
$w.t.text yview end
if [eof $fd] {
fileevent $fd readable {}
catch "close $fd"
}
} else {
fileevent $fd readable {}
catch "close $fd"
}
}
proc build_info_menu {src m} {
menu $m
set f [smallfont]
$m add command -label "Site Info" \
-command "create_info_window $src" -font $f
$m add command -label "RTP Stats"\
-command "create_rtp_window $src" -font $f
$m add command -label "Decoder Stats" \
-command "create_decoder_window $src" -font $f
global V
if [$V(data-net) ismulticast] {
$m add command -label "Mtrace from" \
-command "create_mtrace_window $src from" -font $f
$m add command -label "Mtrace to" \
-command "create_mtrace_window $src to" -font $f
}
}
proc create_info_menu {src x y} {
set m .menu$src
if ![winfo exists $m] {
build_info_menu $src $m
}
tk_popup $m $x $y
}
|