关于信号和槽有一个非常精炼的C++实现,作者是Sarah Thompson,该实现只有一个头文件sigslot.h,跨平台且线程安全。
在WebRTC中,sigslot .h是其基础的事件处理框架, 在多个模块的消息通知,响应处理中被使用。
sigslot.h的使用方法如下所示:
- #include "sigslot.h"
- #include <string>
- #include <stdio.h>
- #include <iostream>
- #include <windows.h>
- using namespace sigslot;
- using namespace std;
- class CSender
- {
- public:
- sigslot::signal2<string, int> m_pfnsigDanger;
- void Panic()
- {
- static int nVal = 0;
- char szVal[20] = { 0 };
- sprintf_s(szVal,20, "help--%d", nVal);
- m_pfnsigDanger(szVal, nVal++);
- }
- };
- class CReceiver :public sigslot::has_slots<>
- {
- public:
- void OnDanger(string strMsg, int nVal)
- {
- //printf("%s ==> %d", strMsg.c_str(), nVal);
- cout << strMsg.c_str() << " ==> " << nVal << endl;
- }
- };
- int main()
- {
- CSender sender;
- CReceiver recever;
- cout << "create object ok..." << endl;
- sender.m_pfnsigDanger.connect(&recever, &CReceiver::OnDanger);
- cout << "connect succ!" << endl;
- while (1)
- {
- cout << "in while..." << endl;
- sender.Panic();
- Sleep(2000);
- cout << "end of sleep" << endl;
- }
- return 0;
- }
需要注意的是,如果在Qt工程中使用sigslot.h,sigslot.h中的emit函数名会和Qt中的emit宏冲突,修改方法有两个,一是将sigslot.h的emit改成其他名字,二是在.pro文件中添加DEFINES+=QT_NO_EMIT,禁用Qt的emit宏。
参考链接:http://blog.csdn.net/u014338577/article/details/47127405
http://blog.csdn.net/caoshangpa/article/details/54088313