Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With the changes made in C++11 (such as the inclusion of std::bind), is there a recommended way to implement a simple single-threaded observer pattern without dependence on anything external to the core language or standard library (like boost::signal)?

EDIT

If someone could post some code showing how dependence on boost::signal could be reduced using new language features, that would still be very useful.

share|improve this question
3  
Make a vector of std::function? What is wrong with boost::signal that you would want to fix with C++11 features? – R. Martinho Fernandes Nov 27 '12 at 20:56
'recommended'... sounds like a poll :) – xtofl Nov 27 '12 at 20:57
2  
@xtofl I find questions asking for idioms very useful. – Luchian Grigore Nov 27 '12 at 20:57
2  
@Luchian not when they have random meaningless constraints like "without boost::signal". If you don't tell what the goals and constraints are, how can anyone write an answer that fulfills those goals while meeting the constraints? I mean, why can't I just answer: "do it like boost::signal"? – R. Martinho Fernandes Nov 27 '12 at 20:59
2  
@R.MartinhoFernandes I think that would be an acceptable answer. He didn't ask how to do it without mentioning boost, just that he didn't want the solution to require including third-party code. So, the answer "boost's boost::signal implementation is the right way to go" would work. – moswald Nov 27 '12 at 21:46
show 2 more comments

2 Answers

up vote 8 down vote accepted

I think that bind makes it easier to create slots (cfr. the 'preferred' syntax vs. the 'portable' syntax - that's all going away). The observer management, however, is not becoming less complex.

But as @R. Martinho Fernandes mentions: an std::vector<std::function< r(a1) > > is now easily created without the hassle for an (artificial) 'pure virtual' interface class.


Upon request: an idea on connection management - probably full of bugs, but you'll get the idea:

// note that the Func parameter is something
// like std::function< void(int,int) > or whatever, greatly simplified
// by the C++11 standard
template<typename Func>
struct signal {
  typedef int Key; // 
  Key nextKey;
  std::map<Key,Func> connections;

  // note that connection management is the same in C++03 or C++11
  // (until a better idea arises)
  template<typename FuncLike>
  key connect( FuncLike f ) {
     Key k=nextKey++;
     connections[k]=f;
     return k;
  }

  void disconnect(Key k){
     connections.erase(k);
  }

  // note: variadic template syntax to be reviewed 
  // (not the main focus of this post)
  typename Func::return_value call(Func::Args... args){
     // supposing no subcription changes within call:
     for(auto connection, connections){
        (*connection.second)(...args);
     }
  }
};

Usage:

signal<function<void(int,int)>> xychanged;

void dump(int x, int y) { cout << x << ", " << y << endl; }

struct XY { int x, y; } xy;

auto dumpkey=xychanged.connect(dump);
auto lambdakey=xychanged.connect([&xy](int x, int y){ xy.x=x; xy.y=y; });

xychanged.call(1,2);
share|improve this answer
3  
Listener/Observer has two parts -- how to send the message (which std::function does fine), and how to detach after you no longer want to hear messages. That second part is a bit of a headache to do. – Yakk Nov 27 '12 at 22:56
@Yakk: indeed. boost::signal returns a connection object which you can use. – xtofl Nov 28 '12 at 10:55
@xtofl - can you post a simple code example showing how you can do this depending on boost signal "as little as possible" (i.e. maybe just using it for attach/detach functionality). I am curious. – learnvst Nov 28 '12 at 13:04
Maybe a shared_ptr<function<Message>>, with the convention that nobody but one owner keeps an actual shared_ptr around for more than the length of calling it? (Ie, broadcaster keeps a weak_ptr) – Yakk Nov 28 '12 at 15:16
2  
@BЈовић: I chose map to be able to lookup the connection when disconnecting. If you can provide similar functionality with list, go ahead. – xtofl Nov 29 '12 at 9:43
show 4 more comments

I have had a go at this myself also. My efforts can be found at this gist, which will continue to evolve . . .

https://gist.github.com/4172757

I use a different style, more similar to the change notifications in JUCE than BOOST signals. Connection management is done using some lambda syntax that does some capture by copy. It is working well so far.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.