I'm so sick of the pass-callback-data-as-void*-struct anti-pattern. Boost bind solves it nicely, but is an unacceptable dependency. What's a lightweight alternative? How would I write it myself as simply as possible?
|
|
I'm not familiar with boost:bind, but is it something like this?
Output --
|
|||||
|
|
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 |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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:
|
||||
|
|
|
People defending boost::binds speed have probably never written low latency trading systems or high speed graphics libraries. For functions/delegates, See http://www.codeproject.com/KB/cpp/fastdelegate2.aspx for a useful comparison. Ciao. |
|||
|
|
|
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"). |
|||||||||
|