gpt4 book ai didi

c++ - qDebug 没有打印包含二进制数据的完整 QByteArray

转载 作者:IT老高 更新时间:2023-10-28 23:12:24 26 4
gpt4 key购买 nike

我有一个 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 停止打印是因为它有一个限制,或者因为它到达了一个终止字符或类似的东西,但我只是在猜测。

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

最佳答案

解决方案/解决方法:

确实,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以上是 QTextStream 类型, 它转换QByteArray变成 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的类型是文本流的内部私有(private)类),它调用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 我们应该仍然拥有我们想要调试的二进制数据)。

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

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

关于c++ - qDebug 没有打印包含二进制数据的完整 QByteArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10913155/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com