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
|
#
# exmh_background.tcl --
# Periodic background processing
#
# Copyright (c) 1993 Xerox Corporation.
# Use and copying of this software and preparation of derivative works based
# upon this software are permitted. Any distribution of this software or
# derivative works must comply with all applicable United States export
# control laws. This software is made available AS IS, and Xerox Corporation
# makes no warranty about the software, its performance or its conformity to
# any specification.
# Background processing
proc Background_Init {} {
global exmh env background
if ![info exists env(MAIL)] {
set spool /usr/spool/mail/$env(USER)
} else {
set spool $env(MAIL)
}
Preferences_Add "Background Processing" \
"A second process is used to perform various background tasks for Exmh. These options control its behavior." \
[list \
{ exmh(bgAsync) bgAsync ON {Separate background process}
"This setting determines whether or not the background
processing is done in a separate process or not. A
separate process causes less interference with the user
interface, but might take up more machine resources."} \
{ exmh(sendHack) sendHack ON {Keep xhost list clear}
"The Tk send command will stop working if hosts are added to
your xhost list, even if you are using Xauthority. This option
replaces the send command with a version that clears out the
xhost list if hosts are found on it."} \
{ exmh(background) bgAction {CHOICE off count msgchk flist inc hook} {Background processing}
"exmh can periodically do some things for you:
count - count new messages sitting in your spool file.
msgchk - run the MH msgchk program.
flist - check for new mail in all folders.
inc - just like clicking the Inc button yourself.
hook - suppply your own Hook_Background procedure.
off - do nothing in the background."} \
{ exmh(bgPeriod) bgPeriod 10 {Period (minutes)}
"How often to do background task"} \
{exmh(bgNews) bgNews OFF {Background News Retrieval}
"Retrieve News via NNTP in the background. See the Preferences for
NNTP support for more information"} \
{ exmh(bgNewsPeriod) bgNewsPeriod 60 {Period (minutes)}
"How often to do background News Retrieval"} \
[list exmh(spool) bgSpool $spool {Mail spool pathname} \
"Pathname for the mail spool file that gets new messages."] \
]
# due to a TK bug I cannot trace the radio button variable directly.
# I can hack around it by tracing the bgPeriod, which is always
# set by Preferences because it is an entry
trace variable exmh(bgPeriod) w BackgroundFixup
if {$exmh(bgPeriod) <= 0} {
set exmh(bgPeriod) 10
}
set exmh(lastBackground) $exmh(background)
set exmh(timeSinceBgNews) -1
if {0} {
if [catch {User_Layout} err] {
puts stderr "User_Layout: $err"
}
}
set background(lastMsgChk) {}
set exmh(sendErrors) 0
if {$exmh(sendHack)} {
source $exmh(library)/send.tcl
}
}
proc Background_Startup {} {
global exmh inc
if [info exists exmh(interp)] {
# Already in the background interpreter.
# Invoked because the style of background processing changed
Background_DoPeriodic
return
}
if [info exists exmh(bgInterp)] {
if {[catch {send $exmh(bgInterp) {Background_Startup}}] == 0} {
# Background interp already running
return
}
}
Background_Cleanup ;# In case the bg process is really there anyway
if {! $exmh(bgAsync) } {
# Do not run a separate process
Background_DoPeriodic
return
}
global mh_path argv0 wish
set prog ${argv0}-bg
Exmh_Status "Starting: $prog"
set cmd [list exec $wish -f $prog [winfo name .] $exmh(library) $mh_path &]
if [catch {
set pid [eval $cmd]
set exmh(bgPid) $pid
Exmh_Debug Background_Startup $exmh(background) pid $pid
after [expr 10*1000*60] BackgroundCheckup
} err] {
Exmh_Status "exmh-bg error: $err"
Background_DoPeriodic
}
}
proc BackgroundCheckup {} {
global exmh
Exmh_Debug BackgroundCheckup
if [BgLostPid $exmh(bgPid) exmh-bg] {
catch {unset exmh(bgInterp)}
Exmh_Debug Restarting exmh-bg
Background_Startup
} else {
after [expr 10*1000*60] BackgroundCheckup
}
}
proc Background_Register { bgInterp {bgPid junk} } {
# Invoked by the background interpreter so we can talk back to it
global exmh
set exmh(bgInterp) $bgInterp
if {$bgPid != "junk"} {
set exmh(bgPid) $bgPid
}
Exmh_Debug "Background interp is $bgInterp, pid $exmh(bgPid)"
# Bundle up some parameters that could be overridden on the
# command line and so won't get picked up from the Xresources
set exmh(pid) [pid] ;# TCL 7.* dependent
foreach varname {exmh(background) exmh(bgPeriod) exmh(pid)} {
lappend results [list $varname [set $varname]]
}
return $results
}
proc Background_Cleanup {} {
global exmh bgaction
if [catch {send $exmh(bgInterp) Exmhbg_Done [winfo name .]}] {
catch {exec kill $exmh(bgPid)}
}
catch {
foreach action [array names bgaction] {
BackgroundComplete $action
}
}
foreach interp [winfo interps] {
if {[string match $exmh(name)-bg* $interp]} {
catch {send $interp Exmhbg_Done [winfo name .]}
}
}
}
proc Background_DoPeriodic {} {
global exmh
Exmh_Debug Background_DoPeriodic $exmh(background)
switch -- $exmh(background) {
"count" { set bgProc BackgroundCount }
"msgchk" { set bgProc BackgroundMsgChk }
"inc" { set bgProc BackgroundInc }
"flist" { set bgProc BackgroundFlist }
"hook" {
set bgProc [info commands Hook_Background]
if {[string length $bgProc] == 0} {
Exmh_Status "Hook_Background undefined (hook background option)"
set exmh(background) off
}
}
default { set bgProc {} }
}
if {[string length $bgProc] != 0} {
if [catch $bgProc err] {
Exmh_Debug "DoPeriodic" $bgProc $err
}
}
if {$exmh(bgNews)} {
if {(($exmh(timeSinceBgNews) == -1) ||
($exmh(timeSinceBgNews) > ($exmh(bgNewsPeriod) * 60)))} {
GetNews
set exmh(timeSinceBgNews) 0
}
incr exmh(timeSinceBgNews) [expr int($exmh(bgPeriod) * 60)]
}
after [expr int($exmh(bgPeriod)*1000*60)] Background_DoPeriodic
}
proc Background_Off {} {
global exmh
set exmh(background) {}
}
proc BackgroundFixup { args } {
global exmh
Exmh_Debug BackgroundFixup $exmh(lastBackground) $exmh(background)
if {[catch {expr $exmh(bgPeriod)*1000*60}] ||
($exmh(bgPeriod) <= 0)} {
set exmh(bgPeriod) 10
}
if {$exmh(background) != $exmh(lastBackground)} {
Background_Startup
set exmh(lastBackground) $exmh(background)
}
}
proc BackgroundMsgChk {} {
global exmh env background
set result [Mh_MsgChk]
if {$result != $background(lastMsgChk)} {
BgRPC BackgroundMsgChkInner $result
Exmh_Status $result
set background(lastMsgChk) $result
}
}
proc BackgroundMsgChkInner {result} {
global background exmh
Exmh_Status $result
set background(lastMsgChk) $result
switch -glob -- $result {
"You have*" {set exmh(numUnInced) "Some"; Flag_Spooled}
"You don't*" {set exmh(numUnInced) 0; Flag_NoSpooled}
}
}
proc BackgroundCount {} {
global exmh env
if ![catch {Mh_MsgCount $exmh(spool)} newmsgs] {
BgRPC BackgroundNewMsgs [string trim $newmsgs]
}
}
proc BackgroundNewMsgs { N } {
global exmh
if ![info exists exmh(numUnInced)] {
set exmh(numUnInced) 0
}
if {$N > 0} {
if {$N == 1} {
set msg "msg"
} else {
set msg "msgs"
}
set exmh(numUnInced) $N
Exmh_Status "You have $N spooled $msg"
Flag_Spooled
} else {
Flag_NoSpooled
if {$exmh(numUnInced) > 0} {
Exmh_Status ""
}
set exmh(numUnInced) $N
}
}
proc BackgroundInc {} {
Inc
}
proc BackgroundFlist {} {
Flist_FindSeqs ;# Update folder highlights
BgRPC Inc_PresortFinish ;# Update scan listing
}
# Invoke something in the background interpreter, if it exists
proc BgAction { tag args } {
global exmh
Exmh_Debug BgAction $tag $args
Audit "$tag $args"
if [info exists exmh(bgInterp)] {
BackgroundPending $tag ;# Register outstanding request
if ![catch {
send $exmh(bgInterp) [list after 1 [list BgProcess $tag $args]]
} err] {
return
}
BackgroundComplete $tag
Exmh_Debug BgAction $err
}
eval $args
foreach cmd [info commands Hook_Bg$tag*] {
$cmd
}
}
# Run something in the background and report back to the front end
proc BgProcess { tag cmd } {
global exmh
if [catch $cmd err] {
Exmh_Status $err
}
if [catch {send $exmh(interp) [list BackgroundComplete $tag]} err ] {
catch {puts stderr "exmh-bg: BackgroundComplete($tag) failed: $err"}
Exmh_Status $err
}
}
# Invoke a routine in the UI interpreter, if it exists, else ourselves.
# If there is no separate background process, then
# exmh(interp) does not exist, and we just eval the command
# in the current process, which is already the UI.
proc BgRPC { args } {
global exmh
if [info exists exmh(dead)] {
return
}
set check [info exists exmh(pid)]
if [info exists exmh(interp)] {
# Send command to main, front-end interpreter
set fail {}
# if {$check && [BgLostPid $exmh(pid) exmh]} {
# # Front-end died or may have restarted - bail out
# set fail "process $exmh(pid)"
# } else {
if [catch {send $exmh(interp) $args} err] {
switch -- $err {
{remote\ interpreter\ did\ not\ respond} {
if {$check && [BgLostPid $exmh(pid) exmh]} {
set fail "process $exmh(pid)"
}
}
{no\ registered\ interpeter*} {
set fail "interp $exmh(interp)"
}
{no\ application\ named*} {
set fail "interp $exmh(interp)"
}
default {
catch {puts stderr "exmh-bg: send error from command \"$args\", error \"$err\""}
#puts stderr "BgRPC: $args: $err"
}
}
} else {
return $err
}
# }
if {"$fail" != ""} {
unset exmh(interp)
catch {puts stderr "exmh-bg: lost UI $fail"}
exit
}
} else {
# Eval in main, front-end interpreter
uplevel #0 $args
}
}
proc BgLostPid { pid {name notused} } {
global exmh ps
if [catch {PsByID $pid} err] {
catch {puts stderr "BgLostPid $ps(cmd) $ps(pflag) $pid: $err"}
return 1
} else {
foreach line [split $err \n] {
if {[string compare [lindex $line 0] $pid] == 0} {
return 0
}
}
catch {puts stderr "BgLostPid pid $pid: cannot find in ps output"}
return 1
}
}
proc BgLostPidOld { pid {name notused} } {
if [catch {exec ps $pid} err] {
if [string match {[Uu]sage:*} $err] {
return [catch {exec ps -p $pid}]
} else {
return 1
}
} else {
foreach line [split $err \n] {
if {[string compare [lindex $line 0] $pid] == 0} {
return 0
}
}
return 1
}
}
# Improved version of BgLostPid thanks to Scott Hammond
if {0} {
set ps ps
set ps_opt ""
proc BgLostPidClever { pid {name notused} } {
global ps ps_opt
if [catch "exec $ps $ps_opt $pid" err] {
#puts stderr "ps error: $err"
if [string match {[Uu]sage:*} $err] {
# got usage, so ps must be right, -p should also be right
set ps_opt "-p"
return [catch {exec $ps -p $pid}]
} elseif [string match {*can't find controlling terminal} $err] {
if {"$ps" == "ps"} {
set ps "/bin/ps"
} elseif {"$ps" == "/bin/ps"} {
set ps "/usr/ucb/ps"
} else {
return 1
}
return [BgLostPid $pid $name]
} else {
return 1
}
} else {
foreach line [split $err \n] {
if {[string compare [lindex $line 0] $pid] == 0} {
return 0
}
}
return 1
}
}
}
proc Background_Preferences {} {
# Tell the background interpreter to update its per-user settings
global exmh
if [info exists exmh(bgInterp)] {
catch {send $exmh(bgInterp) [list Preferences_Reset]}
}
}
proc BackgroundPending { action } {
global bgaction
set bgaction($action) 1
Exmh_Debug BackgroundPending $action
}
proc BackgroundComplete { action } {
global bgaction
catch {unset bgaction($action)}
Exmh_Debug BackgroundComplete $action
if [regexp {Refile (.*)} $action x folder] {
global exmh
if {[string compare $exmh(folder) $folder] == 0} {
Exmh_Status "Updating scan listing"
Scan_FolderUpdate $folder
}
}
if {[Background_Outstanding] == {}} {
Exmh_Status "background actions complete"
}
foreach cmd [info commands Hook_Bg$action*] {
$cmd
}
}
proc Background_Outstanding {} {
global bgaction background
if [catch {array names bgaction} actions] {
set actions {}
}
if {$actions == {}} {
set background(complete) 1
catch {destroy .ftoc.t.abort}
}
return $actions
}
proc Background_Wait {} {
global background
set background(complete) 0
set pending [Background_Outstanding]
if {$pending != {}} {
Exmh_Status "waiting... $pending"
catch {
button .ftoc.t.abort -text "Don't Wait" -command Background_Reset
place .ftoc.t.abort -relx .5 -rely .5 -anchor c
}
tkwait variable background(complete)
catch {destroy .ftoc.t.abort}
}
}
proc Background_Reset {} {
global bgaction
foreach act [array names bgaction] {
Exmh_Status "Clearing $act"
}
unset bgaction
Background_Outstanding
}
|