'''`[yieldto]`''', a [Tcl Commands%|%built-in] Tcl command, [yield%|%yields], replacing the current execution chain with the execution of another command. [[This wiki page has a capital letter in its name for historical reasons.]] ** Documentation ** [http://www.tcl.tk/man/tcl/TclCmd/coroutine.htm%|%official reference]: ** Synopsis ** : '''yieldto''' ''command'' ?''arg …''? *** Exceptions *** : '''`TCL COROUTINE ILLEGAL_YIELD`''' — if called from an illegal context (i.e., not in a coroutine). : '''`TCL COROUTINE CANT_YIELD`''' — there is a coroutine context, but a non-NRE-aware C command is gumming up the works. ** Description ** `[yieldto]` has the same relation to `[yield]` as does `[tailcall]` to `[return]`. The following two commands are equivalent in that they yield the same value to the same caller, but different in that `yield` causes the coroutine command to accept one argument the next time it is called, and `yieldto` causes the coroutine command to accept multiple arguments the next time it is called: ====== yieldto string cat $result yield $result ====== Whereas `[tailcall]` replaces the current [stack frame] with the execution of a new command, `[yieldto]` replaces the entire execution chain of the current [coroutine] context, [yield%|%yielding] at the same time so that the coroutine context may subsequently be re-entered. Since the execution of ''command'' replaces the current execution chain, the caller of ''command'' is effectively whatever entered the replaced coroutine context. ''Command'' is resolved prior the suspension in the context of the current coroutine, and often refers to another coroutine, although it may refer to any command. `yieldto` may only be called from within a [coroutine] context. It is an error to call it from elsewhere. In contrast to `[yield]`, which causes the coroutine context command to accept only one argument the next time it is called, `yieldto` causes the coroutine context command to accept multiple arguments. When resumed, `yieldto` returns the ''list'' of arguments passed to the coroutine context command. ** Example: Multiple Arguments ** ====== proc accumulate op { set agreduce 0 while 1 { set agreduce [$op $agreduce {*}[yieldto lindex $agreduce]] } } ====== ======none % coroutine cumsum accumulate ::tcl::mathop::+ 0 % cumsum 1 2 3 6 % cumsum 7 8 9 30 ====== ** Example: the Caller of ''command'' is Whatever Entered the Coroutine Context** In this example, `p1` is the effective caller of `[return]`, and the result of `p1` is `intermission`. The coroutine is suspended until it is entered again: ====== proc p1 {} { set res {one two three} coroutine c1 apply {{} { yield yieldto return intermission return {the end} }} c1 puts {execution never makes it to here} } ====== ======none % p1 intermission % c1 the end ====== ** A Conversation with [MS] ** The following conversation with [MS], [Tcl Chatroom], 2014-09-25, was very enlightening for me. So preserving for posterity. ====== [18:55] apn miguel, the inject worked fine [18:56] apn You can even do multiple injects though the injected code cannot inject itself for the next call (only tried it to see what would happen) [18:59] miguel apn: by design you can only inject code into a sleeping coro ... head hurts imagining how to insure the alternative works properly [19:04] miguel ... so, if you really need it, you can easily build an [autoinject] out of [yieldto], [info coroutine] and [inject] [19:07] apn I have not progressed to yieldto yet or have a use case for it that is obvious (to me) [19:07] miguel well, autoinject would be a use case [19:08] * jima neither has "visualized" yieldto [19:08] miguel yieldto is to yield as tailcall is to return [19:08] apn Kind of get that, but not quite where it might be used [19:08] apn other than autoinject [19:10] miguel if you want to "yield" with a non-OK code, you can do eg 'yieldto return -code continue' [19:10] miguel ... the coro yields, but the coro's caller sees a continue return [19:12] apn So for example if I want to return a -break from a Tk bind callback script that invoked a coro ? [19:13] miguel (more examples abound, symmetric coroutines among them) [19:13] apn I was actually wondering about that this afternoon experimenting with integrating Tk with a coro based fiber package I wrote [19:14] * miguel answers a generic "yes", without actually being sure about what the question was [19:15] apn Something like [19:15] apn bind MyTkTag <> "do something; break" [19:15] apn If instead, I was to call a coro like [19:16] apn bind MyTkTag <> "mycoro %W" [19:16] apn and wanted mycoro to return a break [19:16] apn so further bound scripts would not get execututed [19:16] apn whatever execututed means [19:17] apn If mycoro was a normal proc, it could do a [return -code break] [19:17] miguel ok - if the coro should go to sleep (yield), then it should the above trick of yieldto'ing to [break] [19:18] miguel ... if it should die after doing its stuff, [return -code break] is a possibility (with the appropriate -level if it is returning from some nested proc call) [19:19] apn I was thinking of the first case [19:20] miguel [yieldto break] should do it ... or [yieldto return -code break] 19:25] miguel apn: [yieldto] yields to another command, it doesn't have to be another coro. It just means 'put the present coro to sleep, remove it from Tcl's and C call stacks, and run this other command in it's place (without the coro's caller ever nticing a thing)' [19:26] miguel ... some kind of delegation - let my minion do the job, it's siesta time for me [19:26] apn So what this other command returns is what the original caller of the coro sees ? Cool! [19:27] apn (as the return value I mean) [19:27] miguel yup ... that's the tailcall-like aspect [19:27] apn *now* I get it ====== *** Historical *** New experimental command added in ::[tcl::unsupported] on 2009-12-07. : '''[tcl::unsupported]::yieldTo''' ''command'' ?''arg ...''? Suspends the current [coroutine] and makes the current coroutine's caller invoke ''command'' (with the optional ''arg''s). ''Command'' is resolved prior the suspension in the context of the current coroutine, and can refer to another coroutine (though this is not required). May only be called from within a [coroutine]; it is an error to call it from elsewhere. Exceptions: : '''TCL COROUTINE ILLEGAL_YIELD''' — if called from an illegal context (i.e., not in a coroutine). Docs forthcoming, for now just the tclcore thread at [http://aspn.activestate.com/ASPN/Mail/Message/tcl-core/3789015] ---- [AMG]: Why is this command named with an internal capital letter? All other built-in Tcl commands (as opposed to utility procs) are named with multiple words (or abbreviations thereof) jammed together with no capitals or underscores. Examples abound: `[bgerror]`, `[fblocked]`, `[foreach]`, `[gets]`, `[lappend]`, `[regexp]`, `[uplevel]`, and `[vwait]`. [MS]: no special reason [CRC]: From the thread, it appears that the author of this code just likes, or is used to, camel case. In the ensuing discussion it was referred to as "yieldto". Not being a fan of camel case myself, I hope that if it gets incorporated, it is "yieldto", or "yield -target" as [DKF] suggests. [DGP]: FWIW, there are precedents in the other direction as well: [pkg_mkIndex], [tcl_findLibrary], [tcl_endOfWord], etc. [AMG]: Those are the utility procs I was referring to. ----- [jbr]: I'm wondering why we are polluting the global namespace with yield variants. Don't people already have complaints about the many list commands and the file io commands not being grouped together? [AMG]: Same question. Some time ago there was a discussion on tcl-core regarding `[yield]`, `yieldTo`, and `[yieldm]`. I don't recall how it was resolved, or even if it was resolved at all. I advocated unifying these three commands into a single [[yield]] command that takes options. In addition to cleaning up the global namespace, this would close the gap between `yieldTo` and `[yieldm]`: how do you instruct the current coroutine's caller to invoke a command, while making the current coroutine's resume command accept any number of arguments? <> Command