Working with TCL and I'd like to implement something like the Strategy Pattern. I want to pass in the "strategy" for printing output in a TCL function, so I can easily switch between printing to the screen and printing to a log file. What's the best way to do this in TCL?
|
|
|||
|
|
|
TCL allows you to store the name of a procedure in a variable and then call the procedure using that variable; so
will call the proc A and print out Hello |
||
|
|
|
|
How about using variable functions? I don't remember much TCL (it's been a while...) but maybe one of these would do what you need:
If i'm wrong, anyone is free to correct me. |
|||
|
|
|
A slightly expanded example of what was listed above that might illustrate the Strategy Pattern more clearly:
|
||
|
|
|
|
In addition to the answer showing how you assign a procedure to a variable, you can also pass the name of a procedure as an argument to another procedure. Here's a simple example:
This will print a = 1 and b = 1 |
||
|
|
|
|
To clarify why Jackson's method works, remember that in TCL, everything is a string. Whether you are working with a literal string, a function, a variable, or whatever it may be, everything is a string. You can pass a "function pointer" just like you can a "data pointer": simply use the object's name with no leading "$". |
||
|
|
|
|
Aside from using a proc, you could actually use a code block instead. There are a few variations on this. first is the most obvious, just
This works, but there are a few downsides. First the obvious, both pieces of code must collude to using a common naming for the arguments. This replaces one namespace headache (procs) with another (locals), and this is arguably actually worse. Less obvious is that eval deliberately interprets its argument without compiling bytecode. This is because it is assumed that eval will be called with dynamically generated, usually unique arguments, and compiling to bytecode would be inefficient if the bytecode would only be used once, relative to just interpreting the block immediately. This is easier to fix, so here's the idiom:
This doesn't help at all with the yuckiness of passing arguments to the block with local variables. There are a lot of ways around that, such as doing substitutions in the same way tk does substitutions on command arguments with
On the off chance that the arguments being passed don't change very much, this works well in terms of bytecode compilation. If on the other hand, the argument changes often, you should use Fortunately, tcl 8.5 has true anonymous functions, using the
|
||||
|
|
|
|
|||
|
|
