美文网首页区块链研习社
比特币源码研读3-程序入口函数解析(2)

比特币源码研读3-程序入口函数解析(2)

作者: Jacky_2c9f | 来源:发表于2017-09-24 17:18 被阅读0次

    这一节主要讲解比特币使用信号/槽通信的相关知识。

    // Connect bitcoind signal handlers

    noui_connect();

    Path:bitcoin\src\noui.cpp

    void noui_connect()

    {

    // Connect bitcoind signal handlers

    uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox);

    uiInterface.ThreadSafeQuestion.connect(noui_ThreadSafeQuestion);

    uiInterface.InitMessage.connect(noui_InitMessage);

    }

    这段代码的作用:实现子线程与主线程的消息处理功能,包括以下三种:

    1. 消息弹出框提示信息、

    2. 用户询问的交互信息

    3. 程序初始化过程的信息。

    逐个分析,首先,uiInterface是在src\ui_interface.h文件的最后声明的,该变量为全局变量:

    extern CClientUIInterface uiInterface;

    uiInterface是在src\ui_interface.cpp文件里面定义的:

    CClientUIInterface uiInterface;

    中间的ThreadSafeMessageBox、ThreadSafeQuestion、InitMessage是定义在ui_interface.h文件中的三个信号量boost::signals2::signal

    signals2基于Boost的另一个信号库signals,实现了线程安全的观察者模式。在signals2库中,其被称为信号/插槽机制(signals and slots,另有说法为时间处理机制,event/event handler),一个信号关联了多个插槽,当信号发出时,所有关联它的插槽都会被调用。

    三个信号量的定义内容如下:

    Path: bitcoin\src\ui_interface.h

    /** Show message box. */    

    boost::signals2::signal<bool (const std::string& message, const std::string& caption, unsigned int style),  boost::signals2::last_value<bool> > ThreadSafeMessageBox;

    /** If possible, ask the user a question. If not, falls back to ThreadSafeMessageBox(noninteractive_message, caption, style) and returns false. */

    boost::signals2::signal <bool (const std::string& message, const std::string& noninteractive_message, const std::string& caption, unsigned int style), boost::signals2::last_value<bool> > ThreadSafeQuestion;

    /** Progress message during initialization. */

    boost::signals2::signal<void (const std::string &message)>  InitMessage;

    以第一个为例,<>里面的bool表示返回值是布尔类型,形参分别为std::string&类型的message和std::string&类型的caption以及无符号int类型的style,返回类型为boost::signals2::last_value回到src\noui.cpp中,对比下槽函数的定义是一样的:

    static bool noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, unsigned int style)

    tips: 当进行信号和槽函数定义,即使用SIGNAL()和SLOT()时只能用变量类型,不能出现变量名。

    connect函数

    connect()函数是signal的插槽管理操作函数,它把插槽连接到信号上,相当于为信号(事件)增加了一个处理器。

    连接成功则返回一个connection对象,可对连接进行断开、重连、测试连接状态等操作。

    参考:http://blog.csdn.net/zengraoli/article/details/9697841

    说下信号和槽的概念,信号:一般是用来传参或者是一种逻辑的调用者。槽:是用来接收并处理信号的函数,完成信号想要实现的功能。

    举个例子,比如你在网页上点击提交按钮的时候就触发一个信号,该操作信号就会被传递到所有绑定该信号的控件上,接着由对应的控件函数进行响应,完成提交的功能。

    参考:http://www.jianshu.com/p/4fc762796f83 

    作者:区块链研习社源码研读班 Jacky

    相关文章

      网友评论

        本文标题:比特币源码研读3-程序入口函数解析(2)

        本文链接:https://www.haomeiwen.com/subject/izyisxtx.html