I'm so sick of the pass-callback-data-as-void*-struct anti-pattern. Boost bind solves it nicely, but its far to heavy for us to use (high performance 3d game library). What's a lightweight alternative? How would I write it myself as simply as possible?
|
1
|
|||||
|
|
|
I'm not familiar with boost:bind, but is it something like this?
Output --
|
||||
|
|
|
A common C++ idiom is to use functors (i.e. objects that override operator()). The point is that you use a single object to encapsulate both the code to be called back, and the data on which that code will act. Whether the functor is hand-rolled, or generated using boost::bind and/or <functional>, probably doesn't make a whole lot of difference to runtime overhead. So instead of:
do:
Then the caller does:
Obviously if you prefer, you can make the members private and pass them in to a constructor rather than using the initializer list. If you're worried about templates (for instance, if funcThatNeedsCallback is a lot of code which gets duplicated), then use an abstract class to define a virtual method which the parameter must have, and use that method as the callback:
|
|||
|
|
|
|
First, I question your assertion that it's far too heavy for you to use. Second, roll your own template, if you need to control the behavior. Third, if you're afraid of rolling your own template, I question your ability to judge that |
||
|
|
|
Boost::bind just provides a functor. This functor wraps a (functor or function pointer) and a parameter. If you want to build your own functor just create a class that defines operator(). |
||
|
|
|
|
Boost.Function improved performance dramatically as of around 1.34 when used together with boost::bind. If you profiled with an old boost version, maybe do it again with a more recent one. See this mailing list message: http://lists.boost.org/Archives/boost/2006/01/98993.php. |
||
|
|
|
|
i understand teh premature optimization argument. I would happily use boost.bind. this choice has been made by someone else. |
||
|
|
|
|
onebyone, I don't like the whole functor-owns-args pattern, way too much boilerplate. I like eduffy's answer, is it possible to expand it to work with an arbitrary number of parameters? but, I am willing to provide a couple copies of that template for different number of arguments. it would certainly automate the functor creation boilerplate. |
||||||
|
|
|
Check out the fast delegate by Don Clugston. It's supposedly the fastest delegate you can find on most current platforms (compiles down to 2 assembly instructions.) Version 1.4+ gains some Boost.Bind compatibility. |
||
|
|
|
|
There is libsigc++. The license is LGPL, but the implementation is about what Boost.Signal does (I'm reading "too heavyweight" to mean "installing all of Boost is too heavyweight" not "Boost.Signal is too slow"). |
||
|
|
