Is there an easy way to unroll the stack in Tcl?
I have this strange problem where I have to get back to a particular stack frame, literally. I can get all the frame information using info command, but to actually get to a particular frame I will have to set some local variables in the each procedure and check them accordingly. I was wondering if there is an easier way.
|
|
||||
|
If you need to get code to do a non-local return (i.e., skipping back several levels) you can do this from 8.5 onwards with the
This works by throwing a special kind of exception; the details are quite hidden. Alternatively, you can also use With older Tcl versions, the simplest mechanism is to use |
|||
|
|
|
Short answer is that you'd probably be better of rethinking your design. Longer answer is that the only real way (I can think of) to do this is to throw an error and catch it back up at the level you need to stop it at. Other than, of course, the less flame-worthy way of checking variables all the way up the call stack. Using errors for control flow, however, is... bad form. |
|||
|
|
|
If you're willing to be bleeding-edge, coroutines (available in 8.6) might meet your needs. Otherwise, what you might try is to note the level of the routine you need to get to when you're there (i.e., set a global variable to [info level]), and then in the deeper proc, [uplevel] to that absolute stack frame. Something like
(untested) |
|||
|
uplevelwith an integer argument larger than 1, or switching to 8.6 (which is actually a stackless Tcl implementation under the covers, a colossal change that it's taken quite a long time to bed in properly). – Donal Fellows Apr 6 '12 at 5:34