标签:bug parent 关闭 article 发送 产生 处理 process 意思
引入
QTimer是Qt自带的定时器类,QTimer运行时是依赖于事件循环的,简单来说,在一个不开启事件循环(未调用exec() )的线程中,QTimer是无法使用的。通过分析Qt源码可发现,调用QTimer::start()后仅仅是在系统的定时器向量表中添加了一个定时器对象,但定时器并没有真正开启。定时器的开启需要通过processEvent()开始的一系列调用后才会真正得开启,这个过程中会处理定时器向量表中所有的定时器对象。那么实际exec()中也是在不断地调用processEvent()方法。
问题
在项目中可能会遇到某条常驻线程,run()中运行着一个处理事务的死循环,在死循环中若想直接使用QTimer来实现定时功能,那么是不行的。我自己的的项目中是为了实现串口读写的超时判断,所以需要用到定时器。
解决
网上可以搜到解决方案,并且很好用,但是存在问题。先说一下思路:
定时器对象需要在一个开启事件循环的线程中运行,那么通过moveToThread() 方法我们将它移至一个开启了事件循环的线程中运行就可以了。很happy,我们很快的封装了一个定时器类,包含了一个QTimer及QThread对象,直接使用QThread对象是因为我的Qt版本是4.8.3,run()不是纯虚函数,默认开启了事件循环。主要代码如下:
- #ifndef QCUSTOMTIMER_H
- #define QCUSTOMTIMER_H
-
- #include <QObject>
- #include <QTimer>
- #include <QThread>
-
- class QCustomTimer : public QObject
- {
- Q_OBJECT
- public:
- explicit QCustomTimer(QObject *parent = 0);
- ~QCustomTimer();
-
- private:
- QTimer *m_pTimer;
- QThread *m_pTimerThread;
-
- signals:
- void startSignal( int nMsc );
- void stopSignal();
- void TimeOut();
- void deletelater();
- public slots:
- void onTimer();
- public:
- void StartTimer( int nMsc );
- void StopTimer();
- void DeleteLater();
-
- };
-
- #endif // QCUSTOMTIMER_H
- #include "qcustomtimer.h"
-
- QCustomTimer::QCustomTimer(QObject *parent) :
- QObject(parent)
- {
- m_pTimer = new QTimer(0);
- m_pTimer->setSingleShot( true );
-
- m_pTimerThread->start();
-
- m_pTimer->moveToThread( m_pTimerThread );
-
- connect( m_pTimer, SIGNAL(timeout()), this, SLOT(onTimer()) , Qt::DirectConnection );
-
- connect( this, SIGNAL(startSignal(int)), m_pTimer, SLOT(start( int ) ), Qt::BlockingQueuedConnection );
-
- connect( this, SIGNAL(stopSignal()), m_pTimer, SLOT(stop()), Qt::BlockingQueuedConnection );
-
- connect( this, SIGNAL( deletelater() ), m_pTimer, SLOT(deleteLater()) );
- }
-
- QCustomTimer::~QCustomTimer()
- {
- StopTimer();
- DeleteLater();
- }
-
- void QCustomTimer::onTimer()
- {
- emit TimeOut();
- }
-
- void QCustomTimer::StartTimer(int nMsc)
- {
- emit startSignal(nMsc) ;
- }
-
- void QCustomTimer::StopTimer()
- {
- emit stopSignal();
- }
-
- void QCustomTimer::DeleteLater()
- {
- emit deletelater();
- }
实际在初步使用时,毫无问题,定时器正常触发。但是当非常频繁得创建及析构QCustomTimer对象时,则会出现崩溃等问题。比较惭愧,此问题困扰我很久,虽然最后解决了问题,但我仍然不知道是什么原因导致,若有大牛知道,请您一定要告诉我!!
下面说说上述的代码:
1. 调用moveToThread()方法后,定时器对象就属于子线程的了,那么要释放的话,按照文档来说要么是插入deleteLater()延时删除事件,要么是等run()函数返回前会将对象释放掉。上述代码中使用的是指针,不使用指针而使用成员变量的形式,我也尝试过,程序仍然会崩溃。
2. 多说一点,就是程序崩溃基本要几个小时才会崩,程序报错 “纯虚函数被调用”,针对这个线索google了很多资料,但是没有找到应对方案。
3. 猜测还是在高频使用的情况下,定时器对象及线程对象的析构出现了问题, 且deleteLater()无法解决。
我的解决方法,其实也不严谨,因为我并没有精确定位到BUG。我是将线程对象改为静态的,即去除了线程对象的析构,只需要正确析构掉定时器对象,这是deleteLater()就有了效果。代码如下:
- #ifndef QCUSTOMTIMER_H
- #define QCUSTOMTIMER_H
-
- #include <QObject>
- #include <QTimer>
- #include <QThread>
-
- class QCustomTimer : public QObject
- {
- Q_OBJECT
- public:
- explicit QCustomTimer(QObject *parent = 0);
- ~QCustomTimer();
-
- private:
- static QThread *m_pTimerThread;
- QTimer *m_pTimer;
-
- signals:
- void startSignal( int nMsc );
- void stopSignal();
- void TimeOut();
- void deletelater();
- public slots:
- void onTimer();
- public:
- void StartTimer( int nMsc );
- void StopTimer();
- void DeleteLater();
-
- };
-
- #endif // QCUSTOMTIMER_H
- #include "qcustomtimer.h"
-
- QThread* QCustomTimer::m_pTimerThread = NULL;
-
- QCustomTimer::QCustomTimer(QObject *parent) :
- QObject(parent)
- {
- if ( m_pTimerThread == NULL )
- {
-
-
-
- m_pTimerThread = new QThread;
- }
-
- m_pTimer = new QTimer(0);
- m_pTimer->setSingleShot( true );
-
- m_pTimerThread->start();
-
- m_pTimer->moveToThread( m_pTimerThread );
-
- connect( m_pTimer, SIGNAL(timeout()), this, SLOT(onTimer()) , Qt::DirectConnection );
-
- connect( this, SIGNAL(startSignal(int)), m_pTimer, SLOT(start( int ) ), Qt::BlockingQueuedConnection );
-
- connect( this, SIGNAL(stopSignal()), m_pTimer, SLOT(stop()), Qt::BlockingQueuedConnection );
-
- connect( this, SIGNAL( deletelater() ), m_pTimer, SLOT(deleteLater()) );
- }
-
- QCustomTimer::~QCustomTimer()
- {
- StopTimer();
- DeleteLater();
- }
-
- void QCustomTimer::onTimer()
- {
- emit TimeOut();
- }
-
- void QCustomTimer::StartTimer(int nMsc)
- {
- emit startSignal(nMsc) ;
- }
-
- void QCustomTimer::StopTimer()
- {
- emit stopSignal();
- }
-
- void QCustomTimer::DeleteLater()
- {
- emit deletelater();
- }
需要说明的就是静态线程的初始化位置,我的做法是个权宜之计,因工程中其他全局变量与定时器类产生了依赖关系,导致只能这样做。关于设计模式还是需要好好学习,避免这些糟糕的设计。
上述就是完整的代码,如果有bug或者问题,欢迎给我留言!!
http://blog.csdn.net/u013709994/article/details/22175919
在不开启事件循环的线程中使用QTimer(QThread::run函数自带事件循环,在构造函数里创建线程,是一种很有意思的线程用法) good
标签:bug parent 关闭 article 发送 产生 处理 process 意思
原文地址:http://www.cnblogs.com/findumars/p/6290769.html