如果使用QTextStream控制台(stdout) - 一切正常,但如果我编写自定义IODevice,则在qInstallMsgHandler()之后没有文本在控制台中
的main.cpp #include“remoteconsole.h”
#include <QCoreApplication>
#include <QDateTime>
#include <QTimer>
QTextStream *out;
void logOutput(QtMsgType type, const char *msg)
{
QString debugdate = QDateTime::currentDateTime().toString("yyyy.MM.dd hh:mm:ss.zzz");
*out << debugdate << " " << type << msg << endl;
}
int main(int argc, char *argv[])
{
int i;
QCoreApplication a(argc, argv);
RemoteConsole * remote = new RemoteConsole(&a);
QTextStream console((QIODevice *)remote);
out = &console;
qDebug() << "start qInstallMsgHandler";
qInstallMsgHandler(logOutput);
qDebug() << "end qInstallMsgHandler"<<endl;
for(i=0;i<10;i++){
qDebug() << i<<endl;
}
QTimer *timer = new QTimer();
a.connect(timer, SIGNAL(timeout()), &a, SLOT(quit()));
timer->start(5000);
a.exec();
return 0;
}
我在文件remoteconsole.h .cpp
中的IODevice实现#ifndef REMOTECONSOLE_H
#define REMOTECONSOLE_H
#include <QIODevice>
#include <QDebug>
class RemoteConsole: public QIODevice
{
Q_OBJECT
public:
RemoteConsole(QObject *parent);
~RemoteConsole();
private:
Q_DISABLE_COPY(RemoteConsole)
protected:
qint64 readData(char* data, qint64 maxSize);
qint64 writeData(const char* data, qint64 maxSize);
};
#endif // REMOTECONSOLE_H
#include "remoteconsole.h"
RemoteConsole::RemoteConsole(QObject* parent=0) :
QIODevice(parent)
{
}
RemoteConsole::~RemoteConsole(){}
qint64 RemoteConsole::readData(char *data, qint64 maxlen){
qDebug() << data <<endl;
return maxlen;
}
qint64 RemoteConsole::writeData(const char *data, qint64 len){
printf("writeData");
qDebug() << data <<endl;
return len;
}
将来我想用QTCPServer扩展这段代码,它通过telnet或nc将调试输出发送到连接到设备的客户端。
答案 0 :(得分:1)
在qInstallMsgHandler
调用后,您在控制台中没有收到任何文本,因为您将所有调试数据发送到RemoteConsole
对象。
此外,您的代码中还有其他一些问题。
QIODevice::open
,然后才能操作该设备。RemoteConsole::writeData
函数中,您将拥有无限循环,因为您在那里使用qDebug()
。 qDebug()
会致电logOutput
,再次致电RemoteConsole::writeData
。