12

我有一个QByteArray存储从 GPS 接收到的数据,它是部分二进制和部分 ASCII。我想知道调试建议知道收到了什么,所以我写了qDebug这样的:

//QByteArray buffer;
//...
qDebug() << "GNSS msg (" << buffer.size() << "): " << buffer;

我在控制台收到这样的消息:

GNSS msg ( 1774 ): "ygnnsdgk...(many data)..PR085hlHJGOLH
(more data into a new line, which is OK because it is a new GNSS sentence and
probably has a \n at the end of each one) blablabla...

但突然间我得到了一个新的打印迭代。数据还没有被删除,它已经被附加了。所以新的消息大小例如 3204,明显比以前的打印大。但它的打印结果完全相同(但括号中的新尺寸为 3204)。没有新数据被打印出来,就像之前的消息一样:

GNSS msg ( 3204 ): "ygnnsdgk...(many data)..PR085hlHJGOLH
(more data into a new line, which is OK because it is a new GNSS sentence and
probably has a \n at the end of each one) blablabla...

我想qDebug停止打印是因为它有一个限制,或者因为它到达了一个终止字符或类似的东西,但我只是在猜测。

对这种行为有任何帮助或解释吗?

4

1 回答 1

23

解决方案/解决方法:

实际上, 的qDebug()输出在一个字符QByteArray处被截断。'\0'这与 QByteArray 无关;你甚至不能使用 qDebug() 输出一个 '\0' 字符。有关说明,请参见下文。

QByteArray buffer;
buffer.append("hello");
buffer.append('\0');
buffer.append("world");

qDebug() << "GNSS msg (" << buffer.size() << "): " << buffer;

输出:

GNSS msg ( 11 ):  "hello

甚至以下任何参数都被忽略:

qDebug() << "hello" << '\0' << "world";

输出:

hello

您可以通过在调试它们之前替换字节数组中的特殊字符来解决这个“问题”:

QByteArray dbg = buffer;   // create a copy to not alter the buffer itself
dbg.replace('\\', "\\\\"); // escape the backslash itself
dbg.replace('\0', "\\0");  // get rid of 0 characters
dbg.replace('"', "\\\"");  // more special characters as you like

qDebug() << "GNSS msg (" << buffer.size() << "): " << dbg; // not dbg.size()!

输出:

GNSS msg ( 11 ):  "hello\0world" 

那么为什么会这样呢?为什么我不能'\0'使用 qDebug() 输出?

让我们深入研究 Qt 内部代码以了解其qDebug()作用。以下代码片段来自 Qt 4.8.0 源代码。

当您这样做时会调用此方法qDebug() << buffer

inline QDebug &operator<<(const QByteArray & t) {
    stream->ts  << '\"' << t << '\"'; return maybeSpace();
}

以上stream->ts是 type QTextStream,它将转换QByteArray为 a QString

QTextStream &QTextStream::operator<<(const QByteArray &array)
{
    Q_D(QTextStream);
    CHECK_VALID_STREAM(*this);
    // Here, Qt constructs a QString from the binary data. Until now,
    // the '\0' and following data is still captured.
    d->putString(QString::fromAscii(array.constData(), array.length()));
    return *this;
}

如您所见,d->putString(QString)被调用(类型d是文本流的内部私有类),它write(QString)在对等宽字段进行一些填充后调用。我跳过了的代码,putString(QString)直接跳转到d->write(QString),定义是这样的:

inline void QTextStreamPrivate::write(const QString &data)
{
    if (string) {
        string->append(data);
    } else {
        writeBuffer += data;
        if (writeBuffer.size() > QTEXTSTREAM_BUFFERSIZE)
            flushWriteBuffer();
    }
}

如您所见,QTextStreamPrivate有一个缓冲区。此缓冲区的类型为QString. 那么当缓冲区最终打印在终端上时会发生什么?为此,我们必须找出当您的qDebug()语句完成并将缓冲区传递给消息处理程序时会发生什么,默认情况下,消息处理程序会在终端上打印缓冲区。这发生在QDebug类的析构函数中,其定义如下:

inline ~QDebug() {
   if (!--stream->ref) {
      if(stream->message_output) {
         QT_TRY {
            qt_message_output(stream->type, stream->buffer.toLocal8Bit().data());
         } QT_CATCH(std::bad_alloc&) { /* We're out of memory - give up. */ }
      }
      delete stream;
   }
}

所以这里是非二进制安全的部分。Qt 获取文本缓冲区,将其转换为“本地 8 位”二进制表示(到目前为止,AFAIK 我们应该仍然拥有我们想要调试的二进制数据)。

但随后将其传递给消息处理程序,而无需额外指定二进制数据的长度。正如您应该知道的,不可能找出也应该能够容纳'\0'字符的 C 字符串的长度。(这就是为什么QString::fromAscii()在上面的代码中需要额外的长度参数来保证二进制安全。)

因此,如果您想处理'\0'字符,即使编写自己的消息处理程序也无法解决问题,因为您无法知道长度。悲伤,但真实。

于 2012-06-06T13:02:00.050 回答