提升信号2会产生不可复制的错误

时间:2015-12-15 21:53:38

标签: c++ multithreading boost signals boost-signals2

我目前正在开发一个C ++应用程序,我需要创建一个将boost信号发送到另一个类的模块。我使用Document-View示例作为我的应用程序的基础(http://www.boost.org/doc/libs/1_55_0/doc/html/signals2/tutorial.html#signals2.tutorial.document-view),但我一直收到错误:

for /F "delims=" %%I in ("change.log") do (move "%%~I" "\path\to\destination\")

这让我完全陷入困境 - 错误实际发生在哪里?

构建日志如下:

Error   1   error C2280: boost::noncopyable_::noncopyable::noncopyable(const   boost::noncopyable_::noncopyable &)' : attempting to reference a deleted function

我的主要功能相当简单 - 我构建了一个GUI,一个用于与GUI通信的模型(TrialModel),一个每500毫秒计数+1的简单逻辑和一个出站逻辑适配器,可通过来自的boost信号2库访问逻辑。

1>------ Build started: Project: 32BitTrial, Configuration: Debug Win32 ------
1>  InboundLogicAdaptor.cpp
1>  main.cpp
1>C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\xlocmon(232): error C2280: 'boost::noncopyable_::noncopyable::noncopyable(const boost::noncopyable_::noncopyable &)' : attempting to reference a deleted function
1>          C:\boost_1_58_0\boost/core/noncopyable.hpp(34) : see declaration of 'boost::noncopyable_::noncopyable::noncopyable'
1>          This diagnostic occurred in the compiler generated function 'boost::signals2::signal_base::signal_base(const boost::signals2::signal_base &)'
1>  OutboundLogicAdaptor.cpp
1>  TrialLogic.cpp
1>  Generating Code...
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

逻辑类定义一个信号,该信号具有一个参数(整数)和一个用作线程的operator()。

TrialLogic.h:

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    TrialModel m;

    Trial w(0, &m);
    w.show();


    TrialLogic logic;

    OutboundLogicAdaptor adaptor(&m, logic);

    boost::thread t(logic);

    a.exec();

    t.join();

    return 1;

}

和代码本身:

#pragma once

#include <boost\thread.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost\signals2.hpp>



class TrialLogic
{
public:
    typedef boost::signals2::signal<void(int x)> signal_t;

    void operator()();
    TrialLogic();
    ~TrialLogic();

    boost::signals2::connection connect(const signal_t::slot_type &subscriber);

    void doubleIncrementSlot();

private:

    void emitSignal();

    signal_t signal;

    int testNum;

};

最后,接收信号的适配器 -

#include "TrialLogic.h"

TrialLogic::TrialLogic()
{   
    testNum = 0;
}


TrialLogic::~TrialLogic()
{
}

boost::signals2::connection TrialLogic::connect(const signal_t::slot_type &subscriber){
    return signal.connect(subscriber);
}

void TrialLogic::operator()(){
    boost::this_thread::sleep(boost::posix_time::milliseconds(500));
    testNum++;
    emitSignal();

}

void TrialLogic::emitSignal(){
    signal_t(testNum);
}

从我的第一次检查中我找不到任何我做错的事,但显然我的代码存在严重错误。我非常确定问题不在GUI方面,因为我实际上并没有使用任何增强功能,而且在我尝试将系统绑定在一起之前它运行良好。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

以下是失败的原因:

您的TrialLogic类中包含boost.signal类型的成员,此类型不可复制(它继承自signal_base,继承自nocopyable) 。这使得类TrialLogic本身不可复制。但是你想在这里复制它:

TrialLogic logic;
boost::thread t(logic);

Boost.thread按值接受参数,因此您正在尝试复制不可复制的内容,并且编译器会感到不安。

至于解决方案,最简单的似乎是:不是在operator()上定义TrialLogic,而是定义一个函数,而不是传递该函数以及指向逻辑类的指针或引用。这样的事情:

class TrialLogic
{
...
void launch() {
    boost::this_thread::sleep(boost::posix_time::milliseconds(500));
    testNum++;
    emitSignal();
}
};
...
// in main
boost::thread(&TrialLogic::launch, &logic);

最后,但并非最不重要,我不建议使用boost :: thread。 C ++ 11线程支持是完全可操作的,而boost :: thread并没有真正增加任何好处。