/usr/share/saods9/src/backup.tcl is in saods9-data 7.2+dfsg-4.
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 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | # Copyright (C) 1999-2012
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc BackupDialog {} {
set fn [SaveFileDialog backupfbox]
if {[string length $fn] != 0} {
Backup $fn
}
}
proc Backup {fn} {
global ds9
global current
switch $ds9(wm) {
x11 -
aqua {}
win32 {set fn [file normalize [file nativename $fn]]}
}
# script, always overwrite if present
if {[catch {set ch [open $fn w]}]} {
Error [msgcat::mc {An error has occurred during backup}]
return
}
# aux directory, create if needed
set dir "${fn}.dir"
if [file exists $dir] {
if {![file isdirectory $dir]} {
Error [msgcat::mc {An error has occurred during backup}]
return
}
} else {
if [catch {file mkdir $dir}] {
Error [msgcat::mc {An error has occurred during backup}]
return
}
}
# update any tags
if {$current(frame) != {}} {
$current(frame) colorbar tag "\{[$current(colorbar) get tag]\}"
}
# check for newer backup version
puts $ch "global ds9"
puts $ch "set vv [lindex $ds9(version) 0]"
puts $ch "\# this is a check for to ensure a match between the"
puts $ch "\# current ds9 version matches the prefs version"
puts $ch "switch -- \[string compare \$vv \[lindex \$ds9(version)\ 0\]\] {"
puts $ch " -1 {"
puts $ch " if {\[tk_messageBox -type yesno -icon question -message \[msgcat::mc {DS9 has detected an older backup file, do you wish to continue?}\]\] == {no}} {"
puts $ch " return"
puts $ch " }"
puts $ch " }"
puts $ch " 0 {}"
puts $ch " 1 {"
puts $ch " tk_messageBox -type ok -icon warning -message \[msgcat::mc {DS9 has detected a newer version of a backup file and therefore will not process this file.}\]"
puts $ch " return"
puts $ch " }"
puts $ch "}"
# and file find proc
puts $ch "proc BackupFindFile {varname} {"
puts $ch " upvar \$varname var"
puts $ch ""
puts $ch " set id \[string first \"\\\[\" \$var(file,name)\]"
puts $ch " if {\$id > 0} {"
puts $ch " set fn \[string range \$var(file,name) 0 \[expr \$id-1\]\]"
puts $ch " set ext \[string range \$var(file,name) \$id end\]"
puts $ch " } else {"
puts $ch " set fn \$var(file,name)"
puts $ch " set ext {}"
puts $ch " }"
puts $ch ""
puts $ch " if {!\[file exists \$fn\]} {"
puts $ch " Error \"\[msgcat::mc {Unable to load}\] \$fn\""
puts $ch " global fitsfbox"
puts $ch " set fn \[OpenFileDialog fitsfbox\]"
puts $ch " if {\$fn == {}} {"
puts $ch " Error \[msgcat::mc {An error has occurred during restore}\]"
puts $ch " return 0"
puts $ch " }"
puts $ch " if {!\[file exists \$fn\]} {"
puts $ch " Error \[msgcat::mc {An error has occurred during restore}\]"
puts $ch " return 0"
puts $ch " }"
puts $ch " set var(file,name) \"\$fn\$ext\""
puts $ch " }"
puts $ch ""
puts $ch " return 1"
puts $ch "}"
# Panner
PannerBackup $ch
# Colorbar
ColorbarBackupCmaps $ch $dir
switch -- $ds9(visual) {
pseudocolor {
ColorbarBackup $ch colorbar
}
truecolor {
ColorbarBackup $ch colorbar
ColorbarBackup $ch colorbarrgb
}
}
# Frames
foreach ff $ds9(frames) {
if {![$ff has iis]} {
BackupFrame $ch $ff $dir
}
}
# Geometry
BackupGUI $ch
# all done
close $ch
}
proc RestoreDialog {} {
set fn [OpenFileDialog backupfbox]
if {[string length $fn] != 0} {
Restore $fn
}
}
proc Restore {fn} {
global ds9
if {[string length $fn] == 0} {
return
}
switch $ds9(wm) {
x11 -
aqua {}
win32 {set fn [file normalize [file nativename $fn]]}
}
# clear all frames
DeleteAllFrames
# kill all dialogs
foreach dlg [list dtwomass dsao deso dstsci dfirst dnvss dskyview] {
global $dlg
if [array exists $dlg] {
ARDestroy $dlg
}
}
# kill all cats
global icat
foreach varname $icat(cats) {
CATDestroy $varname
}
# kill all plots
global iap
foreach varname $iap(windows) {
PlotDestroy $varname
}
set dir [file dirname $fn]
set ffn [lindex [file split $fn] end]
set cd [pwd]
cd $dir
# fix a problem with 6.1.2
global prefs
set rr $prefs(version)
# and load the world
if {[catch {source $ffn}]} {
Error [msgcat::mc {An error has occurred during restore}]
global debug
if {$debug(tcl,restore)} {
global errorInfo
puts stderr "$errorInfo"
}
return
}
# historical note, vv contains version number of save set originator
if {![info exists vv]} {
set vv [lindex $ds9(version) 0]
}
# fix 6.1.2
if {$vv == {6.1.2}} {
set prefs(version) $rr
}
# fix any prefs
FixPrefs $vv
# return to start dir
cd $cd
# and update it
UpdateGraphGrid
LayoutOrient
UpdateActiveFrames
ChangeMode
UpdateDS9
}
proc BackupFrame {ch which dir} {
set fdir [file join $dir $which]
set rdir "./[lindex [file split $dir] end]/$which"
# create dir if needed
if {![file isdirectory $fdir]} {
if [catch {file mkdir $fdir}] {
Error [msgcat::mc {An error has occurred during backup}]
return
}
}
# frame
set type [$which get type]
puts $ch "CreateNameNumberFrame $which $type"
switch -- $type {
base {BackupFrameLoad $ch $which $fdir $rdir {}}
3d {
BackupFrameLoad $ch $which $fdir $rdir {}
puts $ch "3DDialog"
}
rgb {
foreach cc {{} red green blue} {
BackupFrameLoad $ch $which $fdir $rdir $cc
}
puts $ch "RGBDialog"
}
}
MagnifierFrameBackup $ch $which
ColorFrameBackup $ch $which
ColormapFrameBackup $ch $which
DS9Backup $ch $which
CubeBackup $ch $which
RGBBackup $ch $which
3DBackup $ch $which
BinBackup $ch $which
ScaleBackup $ch $which
PanZoomBackup $ch $which
CropBackup $ch $which
MarkerBackup $ch $which $fdir $rdir
CentroidBackup $ch $which
WCSBackup $ch $which $fdir $rdir
MaskBackup $ch $which
SmoothBackup $ch $which
ContourBackup $ch $which $fdir $rdir
GridBackup $ch $which
CATBackup $ch $which $fdir $rdir
}
proc BackupFrameLoad {ch which fdir rdir channel} {
set base $which$channel
set seq 1
set varname $base
global $varname
if {![info exists $varname]} {
# special case
set varname "$base.$seq"
global $varname
}
while {[info exists $varname]} {
if {$channel != {}} {
puts $ch "$which rgb channel $channel"
}
array set param [array get $varname]
switch $param(load,type) {
mmap -
mmapincr -
smmap -
shared -
sshared {
if {![BackupFrameLoadMMap param $fdir $rdir]} {
Error [msgcat::mc {An error has occurred during backup}]
return
}
}
alloc -
allocgz {
if {![BackupFrameLoadMMap param $fdir $rdir]} {
BackupFrameLoadAlloc $which param $fdir $rdir
}
}
channel -
socket -
socketgz -
var {BackupFrameLoadAlloc $which param $fdir $rdir}
photo {
if {[BackupFrameLoadMMap param $fdir $rdir]} {
puts $ch "global bcktmp"
puts $ch "if {\[catch {image create photo -file $param(file,name)} bcktmp\]} {"
puts $ch "Error \[msgcat::mc {An error has occurred during restore}\]"
puts $ch "return"
puts $ch "}"
} else {
BackupFrameLoadAlloc $which param $fdir $rdir
}
}
}
puts $ch "global loadParam"
puts $ch "array set loadParam \[list [array get param]\]"
switch $param(load,type) {
photo {
puts $ch "set loadParam(var,name) \$bcktmp"
}
}
puts $ch "if \[BackupFindFile loadParam\] {"
puts $ch " ProcessLoad"
puts $ch "}"
switch $param(load,type) {
photo {
puts $ch "image delete \$bcktmp"
}
}
incr seq
set varname "$base.$seq"
global $varname
}
}
proc BackupFrameLoadMMap {varname fdir rdir} {
upvar $varname param
global pds9
set id [string first "\[" $param(file,name)]
if {$id > 0} {
set fn [string range $param(file,name) 0 [expr $id-1]]
set ext [string range $param(file,name) $id end]
} else {
set fn $param(file,name)
set ext {}
}
if {![file exists $fn]} {
return 0
}
# special case, we use 'stdin' for input from stdin, ignore
if {$fn == {stdin}} {
return 0
}
if {$pds9(backup)} {
# look for sym links
switch [file type $fn] {
file {}
link {set fn [file readlink $fn]}
default {
return 0
}
}
set src [lindex [file split $fn] end]
if {![file exists [file join $fdir $src]]} {
if {[catch {file copy $fn $fdir}]} {
return 0
}
}
set param(file,name) "$rdir/[lindex [file split $fn] end]$ext"
} else {
if {[file pathtype $param(file,name)] == {relative}} {
set param(file,name) [file join [pwd] $param(file,name)]
}
}
return 1
}
proc BackupFrameLoadAlloc {which varname fdir rdir} {
upvar $varname param
set ff [$which get fits file name root base]
set id [string first "\[" $ff]
if {$id > 0} {
set fn [string range $ff 0 [expr $id-1]]
} else {
set fn $ff
}
if {$ff == {}} {
set ff ds9.fits
set fn ds9.fits
}
set ffn [file join $fdir $fn]
switch $param(file,type) {
fits {
switch $param(file,mode) {
{} {
if [$which has fits bin] {
$which save fits table file \"$ffn\"
} else {
$which save fits image file \"$ffn\"
}
}
{rgb cube} {$which save fits rgb cube file \"$ffn\"}
{rgb image} {$which save fits rgb image file \"$ffn\"}
{ext cube} {$which save fits image file \"$ffn\"}
default {
if {[string range $param(file,mode) 0 5] == {mosaic}} {
$which save fits mosaic image file "\{$ffn\}"
}
}
}
}
array {
switch $param(file,mode) {
{} {$which save fits image file \"$ffn\"}
{rgb cube} {$which save fits rgb cube file \"$ffn\"}
}
}
nrrd {$which save fits image file \"$ffn\"}
photo {
switch -- [$which get type] {
base -
3d {$which save fits image file \"$ffn\"}
rgb {
$which save fits rgb cube file \"$ffn\"
set param(file,mode) {rgb cube}
}
}
}
}
set param(load,type) mmapincr
set param(file,type) fits
# use $fn as we are not saving multiple extentions if present
set param(file,name) "[file join $rdir $fn]"
}
proc BackupGUI {ch} {
# Basic
global pds9
puts $ch "global pds9"
puts $ch "array set pds9 \{ [array get pds9] \}"
global current
puts $ch "global current"
puts $ch "array set current \{ [array get current] \}"
global pcurrent
puts $ch "global pcurrent"
puts $ch "array set pcurrent \{ [array get pcurrent] \}"
global view
puts $ch "global view"
puts $ch "array set view \{ [array get view] \}"
global pview
puts $ch "global pview"
puts $ch "array set pview \{ [array get pview] \}"
global canvas
puts $ch "global canvas"
puts $ch "array set canvas \{ [array get canvas] \}"
global phttp
puts $ch "global phttp"
puts $ch "array set phttp \{ [array get phttp] \}"
global pbuttons
puts $ch "global pbuttons"
puts $ch "array set pbuttons \{ [array get pbuttons] \}"
global ppanner
puts $ch "global ppanner"
puts $ch "array set ppanner \{ [array get ppanner] \}"
global pmagnifier
puts $ch "global pmagnifier"
puts $ch "array set pmagnifier \{ [array get pmagnifier] \}"
global colorbar
puts $ch "global colorbar"
puts $ch "array set colorbar \{ [array get colorbar] \}"
global saveimage
puts $ch "global saveimage"
puts $ch "array set saveimage \{ [array get saveimage] \}"
# don't save prefs(version), keep the current, not the save set version
# removed after 6.1.2
# global prefs
# puts $ch "global prefs"
# puts $ch "array set prefs \{ [array get prefs] \}"
global debug
puts $ch "global debug"
puts $ch "array set debug \{ [array get debug] \}"
# File
global ps
puts $ch "global ps"
puts $ch "array set ps \{ [array get ps] \}"
global pps
puts $ch "global pps"
puts $ch "array set pps \{ [array get pps] \}"
# Frame
global rgb
puts $ch "global rgb"
puts $ch "array set rgb \{ [array get rgb] \}"
global threed
puts $ch "global threed"
puts $ch "array set threed \{ [array get threed] \}"
global blink
puts $ch "global blink"
puts $ch "array set blink \{ [array get blink] \}"
global pblink
puts $ch "global pblink"
puts $ch "array set pblink \{ [array get pblink] \}"
global tile
puts $ch "global tile"
puts $ch "array set tile \{ [array get tile] \}"
global ptile
puts $ch "global ptile"
puts $ch "array set ptile \{ [array get ptile] \}"
global crosshair
puts $ch "global crosshair"
puts $ch "array set crosshair \{ [array get crosshair] \}"
global cube
puts $ch "global cube"
puts $ch "array set cube \{ [array get cube] \}"
# Bin
global bin
puts $ch "global bin"
puts $ch "array set bin \{ [array get bin] \}"
global pbin
puts $ch "global pbin"
puts $ch "array set pbin \{ [array get pbin] \}"
# Zoom
global panzoom
puts $ch "global panzoom"
puts $ch "array set panzoom \{ [array get panzoom] \}"
global ppanzoom
puts $ch "global ppanzoom"
puts $ch "array set ppanzoom \{ [array get ppanzoom] \}"
# Crop
global crop
puts $ch "global crop"
puts $ch "array set crop \{ [array get crop] \}"
# Scale
global scale
puts $ch "global scale"
puts $ch "array set scale \{ [array get scale] \}"
global pscale
puts $ch "global pscale"
puts $ch "array set pscale \{ [array get pscale] \}"
global minmax
puts $ch "global minmax"
puts $ch "array set minmax \{ [array get minmax] \}"
global pminmax
puts $ch "global pminmax"
puts $ch "array set pminmax \{ [array get pminmax] \}"
global zscale
puts $ch "global zscale"
puts $ch "array set zscale \{ [array get zscale] \}"
global pzscale
puts $ch "global pzscale"
puts $ch "array set pzscale \{ [array get pzscale] \}"
# Region
global marker
puts $ch "global marker"
puts $ch "array set marker \{ [array get marker] \}"
global pmarker
puts $ch "global pmarker"
puts $ch "array set pmarker \{ [array get pmarker] \}"
global centroid
puts $ch "global centroid"
puts $ch "array set centroid \{ [array get centroid] \}"
# WCS
global wcs
puts $ch "global wcs"
puts $ch "array set wcs \{ [array get wcs] \}"
global pwcs
puts $ch "global pwcs"
puts $ch "array set pwcs \{ [array get pwcs] \}"
# Analysis
global pgraph
puts $ch "global pgraph"
puts $ch "array set pgraph \{ [array get pgraph] \}"
global pcoord
puts $ch "global pcoord"
puts $ch "array set pcoord \{ [array get pcoord] \}"
global pexamine
puts $ch "global pexamine"
puts $ch "array set pexamine \{ [array get pexamine] \}"
global pixel
puts $ch "global pixel"
puts $ch "array set pixel \{ [array get pixel] \}"
global mask
puts $ch "global mask"
puts $ch "array set mask \{ [array get mask] \}"
global pmask
puts $ch "global pmask"
puts $ch "array set pmask \{ [array get pmask] \}"
global contour
puts $ch "global contour"
puts $ch "array set contour \{ [array get contour] \}"
global pcontour
puts $ch "global pcontour"
puts $ch "array set pcontour \{ [array get pcontour] \}"
global grid
puts $ch "global grid"
puts $ch "array set grid \{ [array get grid] \}"
global smooth
puts $ch "global smooth"
puts $ch "array set smooth \{ [array get smooth] \}"
global psmooth
puts $ch "global psmooth"
puts $ch "array set psmooth \{ [array get psmooth] \}"
global nres
puts $ch "global nres"
puts $ch "array set nres \{ [array get nres] \}"
global pnres
puts $ch "global pnres"
puts $ch "array set pnres \{ [array get pnres] \}"
global sao
puts $ch "global sao"
puts $ch "array set sao \{ [array get sao] \}"
global eso
puts $ch "global eso"
puts $ch "array set eso \{ [array get eso] \}"
global stsci
puts $ch "global stsci"
puts $ch "array set stsci \{ [array get stsci] \}"
global twomass
puts $ch "global twomass"
puts $ch "array set twomass \{ [array get twomass] \}"
global first
puts $ch "global first"
puts $ch "array set first \{ [array get first] \}"
global nvss
puts $ch "global nvss"
puts $ch "array set nvss \{ [array get nvss] \}"
global skyview
puts $ch "global skyview"
puts $ch "array set skyview \{ [array get skyview] \}"
global cat
puts $ch "global cat"
puts $ch "array set cat \{ [array get cat] \}"
global pcat
puts $ch "global pcat"
puts $ch "array set pcat \{ [array get pcat] \}"
global pvo
puts $ch "global pvo"
puts $ch "array set pvo \{ [array get pvo] \}"
global pap
puts $ch "global pap"
puts $ch "array set pap \{ [array get pap] \}"
global panalysis
puts $ch "global panalysis"
puts $ch "array set panalysis \{ [array get panalysis] \}"
global active
puts $ch "global active"
puts $ch "array set active \{ [array get active] \}"
}
proc ProcessBackupCmd {varname iname} {
upvar $varname var
upvar $iname i
set fn [lindex $var $i]
if {$fn != {}} {
FileLast backupfbox $fn
Backup $fn
} else {
Error [msgcat::mc {Unable to open file}]
}
}
proc ProcessRestoreCmd {varname iname} {
upvar $varname var
upvar $iname i
set fn [lindex $var $i]
if {$fn != {}} {
FileLast backupfbox $fn
Restore $fn
} else {
Error [msgcat::mc {Unable to open file}]
}
}
|