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
|
## -- Tcl Module -- -*- tcl -*-
# # ## ### ##### ######## #############
# @@ Meta Begin
# Package coroutine 1.4
# Meta platform tcl
# Meta require {Tcl 8.6}
# Meta license BSD
# Meta as::author {Andreas Kupries}
# Meta as::author {Colin Macleod}
# Meta as::author {Colin McCormack}
# Meta as::author {Donal Fellows}
# Meta as::author {Kevin Kenny}
# Meta as::author {Neil Madden}
# Meta as::author {Peter Spjuth}
# Meta as::origin http://wiki.tcl.tk/21555
# Meta summary Coroutine Event and Channel Support
# Meta description This package provides coroutine-aware
# Meta description implementations of various event- and
# Meta description channel related commands. It can be
# Meta description in multiple modes: (1) Call the
# Meta description commands through their ensemble, in
# Meta description code which is explicitly written for
# Meta description use within coroutines. (2) Import
# Meta description the commands into a namespace, either
# Meta description directly, or through 'namespace path'.
# Meta description This allows the use from within code
# Meta description which is not coroutine-aware per se
# Meta description and restricted to specific namespaces.
# Meta description A more agressive form of making code
# Meta description coroutine-oblivious than (2) above is
# Meta description available through the package
# Meta description coroutine::auto, which intercepts
# Meta description the relevant builtin commands and changes
# Meta description their implementation dependending on the
# Meta description context they are run in, i.e. inside or
# Meta description outside of a coroutine.
# @@ Meta End
# Copyright (c) 2009,2014-2015 Andreas Kupries
# Copyright (c) 2009 Colin Macleod
# Copyright (c) 2009 Colin McCormack
# Copyright (c) 2009 Donal Fellows
# Copyright (c) 2009 Kevin Kenny
# Copyright (c) 2009 Neil Madden
# Copyright (c) 2009 Peter Spjuth
# # ## ### ##### ######## #############
## Requisites, and ensemble setup.
package require Tcl 8.6 9
namespace eval ::coroutine::util {
namespace export \
create global after exit vwait update gets read puts socket await
namespace ensemble create
}
# # ## ### ##### ######## #############
## API. Spawn coroutines, automatic naming
## (like thread::create).
proc ::coroutine::util::create {args} {
::coroutine [ID] {*}$args
}
# # ## ### ##### ######## #############
## API.
#
# global (coroutine globals (like thread global storage))
# after (synchronous).
# exit
# update ?idletasks? [1]
# vwait
# gets [1]
# read [1]
# puts [1]
# socket [1]
#
# [1] These commands call on their builtin counterparts to get some of
# their functionality (like proper error messages for syntax errors).
# - -- --- ----- -------- -------------
proc ::coroutine::util::global {args} {
# Frame #1 is the coroutine-specific stack frame at its
# bottom. Variables there are out of view of the main code, and
# can be made visible in the entire coroutine underneath.
# Ticket [bf8b80af]. Nothing needs to be done when the command is
# invoked by the main procedure of the coroutine. Such code
# already runs in frame #1, i.e. the variables are already in
# scope, automatically.
if {[info level] < 2} {
return
}
set cmd [list upvar #1]
foreach var $args {
lappend cmd $var $var
}
tailcall {*}$cmd
}
# - -- --- ----- -------- -------------
proc ::coroutine::util::after delay {
::after $delay [list [info coroutine]]
yield
return
}
# - -- --- ----- -------- -------------
proc ::coroutine::util::exit {{status 0}} {
return -level [info level] $status
}
# - -- --- ----- -------- -------------
proc ::coroutine::util::vwait varname {
upvar 1 $varname var
set callback [list [namespace current]::VWaitTrace [info coroutine]]
# Step 1. Wait for a write to the variable, using a trace to
# restart the coroutine
trace add variable var write $callback
yield
trace remove variable var write $callback
# Step 2. To prevent the next section of the coroutine code from
# running entirely within the variable trace (*) we now use an
# idle handler to defer it until the trace is definitely
# done. This trick by Peter Spjuth.
#
# (*) At this point we are in VWaitTrace running the coroutine.
::after idle [list [info coroutine]]
yield
return
}
proc ::coroutine::util::VWaitTrace {coroutine args} {
$coroutine
return
}
# - -- --- ----- -------- -------------
proc ::coroutine::util::update {{what {}}} {
if {$what eq {idletasks}} {
::after idle [list [info coroutine]]
} elseif {$what ne {}} {
# Force proper error message for bad call.
tailcall ::tcl::update $what
} else {
::after 0 [list [info coroutine]]
}
yield
return
}
# - -- --- ----- -------- -------------
proc ::coroutine::util::gets args {
# Process arguments.
# Acceptable syntax:
# * gets CHAN ?VARNAME?
if {[llength $args] == 2} {
# gets CHAN VARNAME
lassign $args chan varname
upvar 1 $varname line
} elseif {[llength $args] == 1} {
# gets CHAN
lassign $args chan
} else {
# not enough, or too many arguments (0, or > 2): Calling the
# builtin gets command with the bogus arguments gives us the
# necessary error with the proper message.
tailcall ::chan gets {*}$args
}
# Loop until we have a complete line. Yield to the event loop
# where necessary. During
set blocking [::chan configure $chan -blocking]
set readable [::chan event $chan readable]
::chan event $chan readable [list [info coroutine]]
::chan configure $chan -blocking 0
try {
while 1 {
try {
set result [::chan gets $chan line]
} on error {result opts} {
return -code $result -options $opts
}
if {[::chan blocked $chan]} {
yield
} else {
if {[llength $args] == 2} {
return $result
} else {
return $line
}
}
}
} finally {
::chan configure $chan -blocking $blocking
::chan event $chan readable $readable
}
}
proc ::coroutine::util::gets_safety {chan limit varname {timeout 120000}} {
# Process arguments.
# Acceptable syntax:
# * gets CHAN ?VARNAME?
# Loop until we have a complete line. Yield to the event loop
# where necessary. During
upvar 1 $varname line
set blocking [::chan configure $chan -blocking]
::chan configure $chan -blocking 0
set readable [::chan event $chan readable]
::chan event $chan readable [list [info coroutine] readable]
try {
while 1 {
if {[::chan pending input $chan] >= $limit} {
error {Too many notes, Mozart. Too many notes}
}
try {
set result [::chan gets $chan line]
} on error {result opts} {
return -code $result -options $opts
}
if {[::chan blocked $chan]} {
set timeoutevent [::after $timeout [list [info coroutine] timeout]]
set event [yield]
if {$event eq {timeout}} {
error {Connection Timed Out}
}
::after cancel $timeoutevent
} else {
return $result
}
}
} finally {
::chan configure $chan -blocking $blocking
::chan event $chan readable $readable
}
}
# - -- --- ----- -------- -------------
proc ::coroutine::util::read args {
# Process arguments.
# Acceptable syntax:
# * read ?-nonewline ? CHAN
# * read CHAN ?n?
if {[llength $args] > 2} {
# Calling the builtin read command with the bogus arguments
# gives us the necessary error with the proper message.
::chan read {*}$args
return
}
set total Inf ; # Number of characters to read. Here: Until eof.
set chop no ; # Boolean flag. Determines if we have to trim a
# # \n from the end of the read string.
if {[llength $args] == 2} {
lassign $args a b
if {$a eq {-nonewline}} {
set chan $b
set chop yes
} else {
lassign $args chan total
}
} else {
lassign $args chan
}
# Run the read loop. Yield to the event loop where
# necessary. Differentiate between loop until eof, and loop until
# n characters have been read (or eof reached).
set buf {}
set blocking [::chan configure $chan -blocking]
set readable [::chan event $chan readable]
::chan event $chan readable [list [info coroutine]]
::chan configure $chan -blocking 0
try {
if {$total eq {Inf}} {
# Loop until eof.
while 1 {
if {[::chan eof $chan]} {
break
} elseif {[::chan blocked $chan]} {
yield
}
try {
set result [::chan read $chan]
} on error {result opts} {
return -code $result -options $opts
}
append buf $result
}
} else {
# Loop until total characters have been read, or eof found,
# whichever is first.
set left $total
while 1 {
if {[::chan eof $chan]} {
break
} elseif {[::chan blocked $chan]} {
yield
}
try {
set result [::chan read $chan $left]
} on error {result opts} {
return -code $result -options $opts
}
append buf $result
incr left -[string length $result]
if {!$left} {
break
}
}
}
} finally {
::chan configure $chan -blocking $blocking
::chan event $chan readable $readable
}
if {$chop && [string index $buf end] eq "\n"} {
set buf [string range $buf 0 end-1]
}
return $buf
}
# - -- --- ----- -------- -------------
## Yields until the channel is writable before actually writing, as
## suggested by the documentation for non-blocking puts
proc ::coroutine::util::puts args {
# Process arguments.
# Acceptable syntax:
# * puts ?-nonewline? ?CHAN? string
switch [llength $args] {
1 {
set ch stdout
}
2 {
set ch [lindex $args 0]
if {[string match {-*} $ch]} {
if {$ch ne {-nonewline}} {
# Force proper error message for bad call
tailcall ::chan puts {*}$args
}
set ch stdout
}
}
3 {
lassign $args opt ch
if {$opt ne {-nonewline}} {
# Force proper error message for bad call
tailcall ::chan puts {*}$args
}
}
default {
# Force proper error message for bad call
tailcall ::chan puts {*}$args
}
}
set blocking [::chan configure $ch -blocking]
::chan event $ch writable [info coroutine]
yield
::chan event $ch writable {}
try {
::chan puts {*}$args
} on error {result opts} {
return -code $result -options $opts
} finally {
::chan configure $ch -blocking $blocking
}
return
}
# - -- --- ----- -------- -------------
## Does a non-blocking connect in the background and yields until finished.
proc ::coroutine::util::socket args {
# Process arguments.
# Acceptable syntax:
# * socket ?options? host port
if {[lsearch -exact $args -server] >= 0} {
error "[namespace current]::socket cannot be used for server sockets."
}
set s [::socket -async {*}$args]
::chan event $s writable [info coroutine]
while {[::chan configure $s -connecting]} {
yield
}
::chan event $s writable {}
set errmsg [::chan configure $s -error]
if {$errmsg ne {}} {
::chan close $s
error $errmsg
}
return $s
}
# - -- --- ----- -------- -------------
## This goes beyond the builtin vwait, wait for multiple variables,
## result is the name of the variable which was written.
## This code mainly by Neil Madden.
proc ::coroutine::util::await args {
set callback [list [namespace current]::AWaitSignal [info coroutine]]
# Step 1. Wait for a write to any of the variable, using a trace
# to restart the coroutine, and the variable written to is
# propagated into it.
foreach varName $args {
upvar 1 $varName var
trace add variable var write $callback
}
set choice [yield]
foreach varName $args {
#checker exclude warnShadowVar
upvar 1 $varName var
trace remove variable var write $callback
}
# Step 2. To prevent the next section of the coroutine code from
# running entirely within the variable trace (*) we now use an
# idle handler to defer it until the trace is definitely
# done. This trick by Peter Spjuth.
#
# (*) At this point we are in AWaitSignal running the coroutine.
::after idle [list [info coroutine]]
yield
return $choice
}
proc ::coroutine::util::AWaitSignal {coroutine var index op} {
if {$op ne {write}} return
set fullvar $var
if {$index ne {}} {append fullvar ($index)}
$coroutine $fullvar
}
# # ## ### ##### ######## #############
## Internal (package specific) commands
proc ::coroutine::util::ID {} {
variable counter
return [namespace current]::C[incr counter]
}
# # ## ### ##### ######## #############
## Internal (package specific) state
namespace eval ::coroutine::util {
#checker exclude warnShadowVar
variable counter 0
}
# # ## ### ##### ######## #############
## Ready
package provide coroutine 1.4
return
|