2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 15:08:31 +01:00
|
|
|
|
2013-01-24 10:38:40 +01:00
|
|
|
#include "debuggerprotocol.h"
|
2008-12-09 16:18:28 +01:00
|
|
|
|
2013-01-24 11:19:15 +01:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QDateTime>
|
2012-04-17 08:01:25 +02:00
|
|
|
#include <QDebug>
|
2013-07-09 14:19:45 -07:00
|
|
|
#include <QHostAddress>
|
2014-01-08 14:10:56 +01:00
|
|
|
#include <QRegExp>
|
2013-11-30 23:46:25 +01:00
|
|
|
#include <QTimeZone>
|
2015-09-14 13:40:35 +02:00
|
|
|
#include <QJsonArray>
|
|
|
|
|
#include <QJsonDocument>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-04 20:49:40 +02:00
|
|
|
#include <ctype.h>
|
|
|
|
|
|
2014-01-08 14:10:56 +01:00
|
|
|
#define QTC_ASSERT_STRINGIFY_HELPER(x) #x
|
|
|
|
|
#define QTC_ASSERT_STRINGIFY(x) QTC_ASSERT_STRINGIFY_HELPER(x)
|
|
|
|
|
#define QTC_ASSERT_STRING(cond) qDebug("SOFT ASSERT: \"" cond"\" in file " __FILE__ ", line " QTC_ASSERT_STRINGIFY(__LINE__))
|
|
|
|
|
#define QTC_ASSERT(cond, action) if (cond) {} else { QTC_ASSERT_STRING(#cond); action; } do {} while (0)
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2013-06-20 12:14:30 +02:00
|
|
|
uchar fromhex(uchar c)
|
|
|
|
|
{
|
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
|
return c - '0';
|
|
|
|
|
if (c >= 'a' && c <= 'z')
|
|
|
|
|
return 10 + c - 'a';
|
|
|
|
|
if (c >= 'A' && c <= 'Z')
|
|
|
|
|
return 10 + c - 'A';
|
2013-12-05 23:29:37 -08:00
|
|
|
return UCHAR_MAX;
|
2013-06-20 12:14:30 +02:00
|
|
|
}
|
|
|
|
|
|
2010-02-10 13:51:42 +01:00
|
|
|
void skipCommas(const char *&from, const char *to)
|
|
|
|
|
{
|
|
|
|
|
while (*from == ',' && from != to)
|
|
|
|
|
++from;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-21 11:12:12 +01:00
|
|
|
void GdbMi::parseResultOrValue(const char *&from, const char *to)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-05-04 20:49:40 +02:00
|
|
|
while (from != to && isspace(*from))
|
2008-12-02 12:01:29 +01:00
|
|
|
++from;
|
|
|
|
|
|
2009-01-21 11:12:12 +01:00
|
|
|
//qDebug() << "parseResultOrValue: " << QByteArray(from, to - from);
|
2008-12-02 12:01:29 +01:00
|
|
|
parseValue(from, to);
|
|
|
|
|
if (isValid()) {
|
2009-05-18 14:15:25 +02:00
|
|
|
//qDebug() << "no valid result in " << QByteArray(from, to - from);
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (from == to || *from == '(')
|
|
|
|
|
return;
|
2009-01-21 11:12:12 +01:00
|
|
|
const char *ptr = from;
|
2015-10-08 16:19:57 +02:00
|
|
|
while (ptr < to && *ptr != '=' && *ptr != ':') {
|
2008-12-02 12:01:29 +01:00
|
|
|
//qDebug() << "adding" << QChar(*ptr) << "to name";
|
|
|
|
|
++ptr;
|
|
|
|
|
}
|
|
|
|
|
m_name = QByteArray(from, ptr - from);
|
|
|
|
|
from = ptr;
|
|
|
|
|
if (from < to && *from == '=') {
|
|
|
|
|
++from;
|
|
|
|
|
parseValue(from, to);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-21 11:12:12 +01:00
|
|
|
QByteArray GdbMi::parseCString(const char *&from, const char *to)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
QByteArray result;
|
2009-05-18 14:15:25 +02:00
|
|
|
//qDebug() << "parseCString: " << QByteArray(from, to - from);
|
2008-12-02 12:01:29 +01:00
|
|
|
if (*from != '"') {
|
|
|
|
|
qDebug() << "MI Parse Error, double quote expected";
|
2009-05-04 20:49:40 +02:00
|
|
|
++from; // So we don't hang
|
2008-12-02 12:01:29 +01:00
|
|
|
return QByteArray();
|
|
|
|
|
}
|
2009-01-21 11:12:12 +01:00
|
|
|
const char *ptr = from;
|
2008-12-02 12:01:29 +01:00
|
|
|
++ptr;
|
|
|
|
|
while (ptr < to) {
|
|
|
|
|
if (*ptr == '"') {
|
|
|
|
|
++ptr;
|
|
|
|
|
result = QByteArray(from + 1, ptr - from - 2);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-05-04 20:49:40 +02:00
|
|
|
if (*ptr == '\\') {
|
2008-12-02 12:01:29 +01:00
|
|
|
++ptr;
|
2009-05-04 20:49:40 +02:00
|
|
|
if (ptr == to) {
|
|
|
|
|
qDebug() << "MI Parse Error, unterminated backslash escape";
|
|
|
|
|
from = ptr; // So we don't hang
|
|
|
|
|
return QByteArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
++ptr;
|
|
|
|
|
}
|
2009-05-04 20:49:40 +02:00
|
|
|
from = ptr;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-04 20:49:40 +02:00
|
|
|
int idx = result.indexOf('\\');
|
|
|
|
|
if (idx >= 0) {
|
|
|
|
|
char *dst = result.data() + idx;
|
|
|
|
|
const char *src = dst + 1, *end = result.data() + result.length();
|
|
|
|
|
do {
|
|
|
|
|
char c = *src++;
|
|
|
|
|
switch (c) {
|
|
|
|
|
case 'a': *dst++ = '\a'; break;
|
|
|
|
|
case 'b': *dst++ = '\b'; break;
|
|
|
|
|
case 'f': *dst++ = '\f'; break;
|
|
|
|
|
case 'n': *dst++ = '\n'; break;
|
|
|
|
|
case 'r': *dst++ = '\r'; break;
|
|
|
|
|
case 't': *dst++ = '\t'; break;
|
|
|
|
|
case 'v': *dst++ = '\v'; break;
|
|
|
|
|
case '"': *dst++ = '"'; break;
|
|
|
|
|
case '\\': *dst++ = '\\'; break;
|
2013-06-20 12:14:30 +02:00
|
|
|
case 'x': {
|
|
|
|
|
c = *src++;
|
|
|
|
|
int chars = 0;
|
|
|
|
|
uchar prod = 0;
|
|
|
|
|
while (true) {
|
|
|
|
|
uchar val = fromhex(c);
|
2013-12-05 23:29:37 -08:00
|
|
|
if (val == UCHAR_MAX)
|
2013-06-20 12:14:30 +02:00
|
|
|
break;
|
|
|
|
|
prod = prod * 16 + val;
|
|
|
|
|
if (++chars == 3 || src == end)
|
|
|
|
|
break;
|
|
|
|
|
c = *src++;
|
|
|
|
|
}
|
|
|
|
|
if (!chars) {
|
|
|
|
|
qDebug() << "MI Parse Error, unrecognized hex escape";
|
|
|
|
|
return QByteArray();
|
|
|
|
|
}
|
|
|
|
|
*dst++ = prod;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-05-04 20:49:40 +02:00
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
int chars = 0;
|
|
|
|
|
uchar prod = 0;
|
|
|
|
|
forever {
|
|
|
|
|
if (c < '0' || c > '7') {
|
|
|
|
|
--src;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
prod = prod * 8 + c - '0';
|
|
|
|
|
if (++chars == 3 || src == end)
|
|
|
|
|
break;
|
|
|
|
|
c = *src++;
|
|
|
|
|
}
|
|
|
|
|
if (!chars) {
|
|
|
|
|
qDebug() << "MI Parse Error, unrecognized backslash escape";
|
|
|
|
|
return QByteArray();
|
|
|
|
|
}
|
|
|
|
|
*dst++ = prod;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (src != end) {
|
|
|
|
|
char c = *src++;
|
|
|
|
|
if (c == '\\')
|
|
|
|
|
break;
|
|
|
|
|
*dst++ = c;
|
|
|
|
|
}
|
|
|
|
|
} while (src != end);
|
|
|
|
|
*dst = 0;
|
|
|
|
|
result.truncate(dst - result.data());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-21 11:12:12 +01:00
|
|
|
void GdbMi::parseValue(const char *&from, const char *to)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-05-18 14:15:25 +02:00
|
|
|
//qDebug() << "parseValue: " << QByteArray(from, to - from);
|
2008-12-02 12:01:29 +01:00
|
|
|
switch (*from) {
|
2009-04-06 14:33:45 +02:00
|
|
|
case '{':
|
|
|
|
|
parseTuple(from, to);
|
|
|
|
|
break;
|
|
|
|
|
case '[':
|
|
|
|
|
parseList(from, to);
|
|
|
|
|
break;
|
|
|
|
|
case '"':
|
|
|
|
|
m_type = Const;
|
|
|
|
|
m_data = parseCString(from, to);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-01-21 11:12:12 +01:00
|
|
|
void GdbMi::parseTuple(const char *&from, const char *to)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-05-18 14:15:25 +02:00
|
|
|
//qDebug() << "parseTuple: " << QByteArray(from, to - from);
|
2013-01-24 11:19:15 +01:00
|
|
|
//QTC_CHECK(*from == '{');
|
2008-12-02 12:01:29 +01:00
|
|
|
++from;
|
|
|
|
|
parseTuple_helper(from, to);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-21 11:12:12 +01:00
|
|
|
void GdbMi::parseTuple_helper(const char *&from, const char *to)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-02-10 13:51:42 +01:00
|
|
|
skipCommas(from, to);
|
2009-05-18 14:15:25 +02:00
|
|
|
//qDebug() << "parseTuple_helper: " << QByteArray(from, to - from);
|
2008-12-02 12:01:29 +01:00
|
|
|
m_type = Tuple;
|
|
|
|
|
while (from < to) {
|
|
|
|
|
if (*from == '}') {
|
|
|
|
|
++from;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
GdbMi child;
|
|
|
|
|
child.parseResultOrValue(from, to);
|
|
|
|
|
//qDebug() << "\n=======\n" << qPrintable(child.toString()) << "\n========\n";
|
|
|
|
|
if (!child.isValid())
|
|
|
|
|
return;
|
2015-02-17 17:44:54 +01:00
|
|
|
m_children.push_back(child);
|
2010-02-10 13:51:42 +01:00
|
|
|
skipCommas(from, to);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-21 11:12:12 +01:00
|
|
|
void GdbMi::parseList(const char *&from, const char *to)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-05-18 14:15:25 +02:00
|
|
|
//qDebug() << "parseList: " << QByteArray(from, to - from);
|
2013-01-24 11:19:15 +01:00
|
|
|
//QTC_CHECK(*from == '[');
|
2008-12-02 12:01:29 +01:00
|
|
|
++from;
|
|
|
|
|
m_type = List;
|
2010-02-10 13:51:42 +01:00
|
|
|
skipCommas(from, to);
|
2008-12-02 12:01:29 +01:00
|
|
|
while (from < to) {
|
|
|
|
|
if (*from == ']') {
|
|
|
|
|
++from;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
GdbMi child;
|
|
|
|
|
child.parseResultOrValue(from, to);
|
|
|
|
|
if (child.isValid())
|
2015-02-17 17:44:54 +01:00
|
|
|
m_children.push_back(child);
|
2010-02-10 13:51:42 +01:00
|
|
|
skipCommas(from, to);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static QByteArray ind(int indent)
|
|
|
|
|
{
|
|
|
|
|
return QByteArray(2 * indent, ' ');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GdbMi::dumpChildren(QByteArray * str, bool multiline, int indent) const
|
|
|
|
|
{
|
2015-10-16 10:11:10 +02:00
|
|
|
for (int i = 0; i < m_children.size(); ++i) {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (i != 0) {
|
|
|
|
|
*str += ',';
|
|
|
|
|
if (multiline)
|
|
|
|
|
*str += '\n';
|
|
|
|
|
}
|
|
|
|
|
if (multiline)
|
|
|
|
|
*str += ind(indent);
|
|
|
|
|
*str += m_children.at(i).toString(multiline, indent);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-24 10:25:32 +02:00
|
|
|
QByteArray GdbMi::escapeCString(const QByteArray &ba)
|
2009-04-06 14:47:15 +02:00
|
|
|
{
|
2012-08-24 10:25:32 +02:00
|
|
|
QByteArray ret;
|
2009-05-04 20:49:40 +02:00
|
|
|
ret.reserve(ba.length() * 2);
|
|
|
|
|
for (int i = 0; i < ba.length(); ++i) {
|
2012-08-24 10:25:32 +02:00
|
|
|
const uchar c = ba.at(i);
|
2009-05-04 20:49:40 +02:00
|
|
|
switch (c) {
|
2012-08-24 10:25:32 +02:00
|
|
|
case '\\': ret += "\\\\"; break;
|
|
|
|
|
case '\a': ret += "\\a"; break;
|
|
|
|
|
case '\b': ret += "\\b"; break;
|
|
|
|
|
case '\f': ret += "\\f"; break;
|
|
|
|
|
case '\n': ret += "\\n"; break;
|
|
|
|
|
case '\r': ret += "\\r"; break;
|
|
|
|
|
case '\t': ret += "\\t"; break;
|
|
|
|
|
case '\v': ret += "\\v"; break;
|
|
|
|
|
case '"': ret += "\\\""; break;
|
2009-05-04 20:49:40 +02:00
|
|
|
default:
|
|
|
|
|
if (c < 32 || c == 127) {
|
2012-08-24 10:25:32 +02:00
|
|
|
ret += '\\';
|
|
|
|
|
ret += ('0' + (c >> 6));
|
|
|
|
|
ret += ('0' + ((c >> 3) & 7));
|
|
|
|
|
ret += ('0' + (c & 7));
|
2009-05-04 20:49:40 +02:00
|
|
|
} else {
|
2012-08-24 10:25:32 +02:00
|
|
|
ret += c;
|
2009-05-04 20:49:40 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
2009-04-06 14:47:15 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QByteArray GdbMi::toString(bool multiline, int indent) const
|
|
|
|
|
{
|
|
|
|
|
QByteArray result;
|
|
|
|
|
switch (m_type) {
|
2009-04-06 14:33:45 +02:00
|
|
|
case Invalid:
|
|
|
|
|
if (multiline)
|
|
|
|
|
result += ind(indent) + "Invalid\n";
|
|
|
|
|
else
|
|
|
|
|
result += "Invalid";
|
|
|
|
|
break;
|
2010-01-29 21:33:57 +01:00
|
|
|
case Const:
|
2009-04-06 14:33:45 +02:00
|
|
|
if (!m_name.isEmpty())
|
2010-02-02 17:09:41 +01:00
|
|
|
result += m_name + '=';
|
|
|
|
|
result += '"' + escapeCString(m_data) + '"';
|
2009-04-06 14:33:45 +02:00
|
|
|
break;
|
|
|
|
|
case Tuple:
|
|
|
|
|
if (!m_name.isEmpty())
|
2010-02-02 17:09:41 +01:00
|
|
|
result += m_name + '=';
|
2009-04-06 14:33:45 +02:00
|
|
|
if (multiline) {
|
|
|
|
|
result += "{\n";
|
|
|
|
|
dumpChildren(&result, multiline, indent + 1);
|
2010-02-02 17:09:41 +01:00
|
|
|
result += '\n' + ind(indent) + '}';
|
2009-04-06 14:33:45 +02:00
|
|
|
} else {
|
2010-02-02 17:09:41 +01:00
|
|
|
result += '{';
|
2009-04-06 14:33:45 +02:00
|
|
|
dumpChildren(&result, multiline, indent + 1);
|
2010-02-02 17:09:41 +01:00
|
|
|
result += '}';
|
2009-04-06 14:33:45 +02:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case List:
|
|
|
|
|
if (!m_name.isEmpty())
|
2010-02-02 17:09:41 +01:00
|
|
|
result += m_name + '=';
|
2009-04-06 14:33:45 +02:00
|
|
|
if (multiline) {
|
|
|
|
|
result += "[\n";
|
|
|
|
|
dumpChildren(&result, multiline, indent + 1);
|
2010-02-02 17:09:41 +01:00
|
|
|
result += '\n' + ind(indent) + ']';
|
2009-04-06 14:33:45 +02:00
|
|
|
} else {
|
2010-02-02 17:09:41 +01:00
|
|
|
result += '[';
|
2009-04-06 14:33:45 +02:00
|
|
|
dumpChildren(&result, multiline, indent + 1);
|
2010-02-02 17:09:41 +01:00
|
|
|
result += ']';
|
2009-04-06 14:33:45 +02:00
|
|
|
}
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GdbMi::fromString(const QByteArray &ba)
|
|
|
|
|
{
|
2009-01-21 11:12:12 +01:00
|
|
|
const char *from = ba.constBegin();
|
|
|
|
|
const char *to = ba.constEnd();
|
2008-12-02 12:01:29 +01:00
|
|
|
parseResultOrValue(from, to);
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-30 15:17:34 +01:00
|
|
|
void GdbMi::fromStringMultiple(const QByteArray &ba)
|
|
|
|
|
{
|
|
|
|
|
const char *from = ba.constBegin();
|
|
|
|
|
const char *to = ba.constEnd();
|
|
|
|
|
parseTuple_helper(from, to);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-26 08:39:40 +01:00
|
|
|
const GdbMi &GdbMi::operator[](const char *name) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2015-02-26 08:39:40 +01:00
|
|
|
static GdbMi empty;
|
2015-02-19 16:44:58 +01:00
|
|
|
for (int i = 0, n = int(m_children.size()); i < n; ++i)
|
2008-12-02 12:01:29 +01:00
|
|
|
if (m_children.at(i).m_name == name)
|
|
|
|
|
return m_children.at(i);
|
2015-02-26 08:39:40 +01:00
|
|
|
return empty;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2011-05-10 18:58:06 +02:00
|
|
|
qulonglong GdbMi::toAddress() const
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba = m_data;
|
|
|
|
|
if (ba.endsWith('L'))
|
|
|
|
|
ba.chop(1);
|
|
|
|
|
if (ba.startsWith('*') || ba.startsWith('@'))
|
|
|
|
|
ba = ba.mid(1);
|
2011-05-11 15:24:50 +02:00
|
|
|
return ba.toULongLong(0, 0);
|
2011-05-10 18:58:06 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2009-09-24 11:16:00 +02:00
|
|
|
// GdbResponse
|
2008-12-02 12:01:29 +01:00
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2015-02-05 15:47:07 +01:00
|
|
|
QByteArray DebuggerResponse::stringFromResultClass(ResultClass resultClass)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
switch (resultClass) {
|
2015-02-05 15:47:07 +01:00
|
|
|
case ResultDone: return "done";
|
|
|
|
|
case ResultRunning: return "running";
|
|
|
|
|
case ResultConnected: return "connected";
|
|
|
|
|
case ResultError: return "error";
|
|
|
|
|
case ResultExit: return "exit";
|
2008-12-02 12:01:29 +01:00
|
|
|
default: return "unknown";
|
|
|
|
|
}
|
2010-12-16 12:05:48 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2015-02-05 15:47:07 +01:00
|
|
|
QByteArray DebuggerResponse::toString() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
QByteArray result;
|
|
|
|
|
if (token != -1)
|
|
|
|
|
result = QByteArray::number(token);
|
|
|
|
|
result += '^';
|
|
|
|
|
result += stringFromResultClass(resultClass);
|
|
|
|
|
if (data.isValid())
|
|
|
|
|
result += ',' + data.toString();
|
|
|
|
|
result += '\n';
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-27 15:41:52 +02:00
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// GdbResponse
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2015-04-13 14:35:47 +02:00
|
|
|
// Tested in tests/auto/debugger/tst_gdb.cpp
|
|
|
|
|
|
2010-05-27 15:41:52 +02:00
|
|
|
void extractGdbVersion(const QString &msg,
|
2012-02-10 07:42:44 +01:00
|
|
|
int *gdbVersion, int *gdbBuildVersion, bool *isMacGdb, bool *isQnxGdb)
|
2010-05-27 15:41:52 +02:00
|
|
|
{
|
|
|
|
|
const QChar dot(QLatin1Char('.'));
|
|
|
|
|
|
2015-04-13 14:35:47 +02:00
|
|
|
const bool ignoreParenthesisContent = msg.contains(QLatin1String("rubenvb"))
|
|
|
|
|
|| msg.contains(QLatin1String("openSUSE"));
|
|
|
|
|
|
2013-06-04 08:44:10 +02:00
|
|
|
const QChar parOpen(QLatin1Char('('));
|
|
|
|
|
const QChar parClose(QLatin1Char(')'));
|
|
|
|
|
|
2010-05-27 15:41:52 +02:00
|
|
|
QString cleaned;
|
|
|
|
|
QString build;
|
|
|
|
|
bool inClean = true;
|
2013-06-04 08:44:10 +02:00
|
|
|
bool inParenthesis = false;
|
2010-05-27 15:41:52 +02:00
|
|
|
foreach (QChar c, msg) {
|
|
|
|
|
if (inClean && !cleaned.isEmpty() && c != dot && (c.isPunct() || c.isSpace()))
|
|
|
|
|
inClean = false;
|
2013-06-04 08:44:10 +02:00
|
|
|
if (ignoreParenthesisContent) {
|
|
|
|
|
if (!inParenthesis && c == parOpen)
|
|
|
|
|
inParenthesis = true;
|
|
|
|
|
if (inParenthesis && c == parClose)
|
|
|
|
|
inParenthesis = false;
|
|
|
|
|
if (inParenthesis)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2010-05-27 15:41:52 +02:00
|
|
|
if (inClean) {
|
|
|
|
|
if (c.isDigit())
|
|
|
|
|
cleaned.append(c);
|
|
|
|
|
else if (!cleaned.isEmpty() && !cleaned.endsWith(dot))
|
|
|
|
|
cleaned.append(dot);
|
|
|
|
|
} else {
|
|
|
|
|
if (c.isDigit())
|
|
|
|
|
build.append(c);
|
|
|
|
|
else if (!build.isEmpty() && !build.endsWith(dot))
|
|
|
|
|
build.append(dot);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*isMacGdb = msg.contains(QLatin1String("Apple version"));
|
2012-02-15 14:39:47 +01:00
|
|
|
*isQnxGdb = msg.contains(QLatin1String("qnx"));
|
2010-05-27 15:41:52 +02:00
|
|
|
|
|
|
|
|
*gdbVersion = 10000 * cleaned.section(dot, 0, 0).toInt()
|
|
|
|
|
+ 100 * cleaned.section(dot, 1, 1).toInt()
|
|
|
|
|
+ 1 * cleaned.section(dot, 2, 2).toInt();
|
|
|
|
|
if (cleaned.count(dot) >= 3)
|
|
|
|
|
*gdbBuildVersion = cleaned.section(dot, 3, 3).toInt();
|
|
|
|
|
else
|
|
|
|
|
*gdbBuildVersion = build.section(dot, 0, 0).toInt();
|
|
|
|
|
|
|
|
|
|
if (*isMacGdb)
|
|
|
|
|
*gdbBuildVersion = build.section(dot, 1, 1).toInt();
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-24 11:19:15 +01:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Decoding
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
static QString quoteUnprintableLatin1(const QByteArray &ba)
|
|
|
|
|
{
|
|
|
|
|
QString res;
|
|
|
|
|
char buf[10];
|
|
|
|
|
for (int i = 0, n = ba.size(); i != n; ++i) {
|
|
|
|
|
const unsigned char c = ba.at(i);
|
|
|
|
|
if (isprint(c)) {
|
|
|
|
|
res += QLatin1Char(c);
|
|
|
|
|
} else {
|
|
|
|
|
qsnprintf(buf, sizeof(buf) - 1, "\\%x", int(c));
|
|
|
|
|
res += QLatin1String(buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static QDate dateFromData(int jd)
|
|
|
|
|
{
|
|
|
|
|
return jd ? QDate::fromJulianDay(jd) : QDate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static QTime timeFromData(int ms)
|
|
|
|
|
{
|
|
|
|
|
return ms == -1 ? QTime() : QTime(0, 0, 0, 0).addMSecs(ms);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-30 23:46:25 +01:00
|
|
|
// Stolen and adapted from qdatetime.cpp
|
|
|
|
|
static void getDateTime(qint64 msecs, int status, QDate *date, QTime *time)
|
|
|
|
|
{
|
|
|
|
|
enum {
|
|
|
|
|
SECS_PER_DAY = 86400,
|
|
|
|
|
MSECS_PER_DAY = 86400000,
|
|
|
|
|
SECS_PER_HOUR = 3600,
|
|
|
|
|
MSECS_PER_HOUR = 3600000,
|
|
|
|
|
SECS_PER_MIN = 60,
|
|
|
|
|
MSECS_PER_MIN = 60000,
|
|
|
|
|
TIME_T_MAX = 2145916799, // int maximum 2037-12-31T23:59:59 UTC
|
|
|
|
|
JULIAN_DAY_FOR_EPOCH = 2440588 // result of julianDayFromDate(1970, 1, 1)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Status of date/time
|
|
|
|
|
enum StatusFlag {
|
|
|
|
|
NullDate = 0x01,
|
|
|
|
|
NullTime = 0x02,
|
|
|
|
|
ValidDate = 0x04,
|
|
|
|
|
ValidTime = 0x08,
|
|
|
|
|
ValidDateTime = 0x10,
|
|
|
|
|
TimeZoneCached = 0x20,
|
|
|
|
|
SetToStandardTime = 0x40,
|
|
|
|
|
SetToDaylightTime = 0x80
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
qint64 jd = JULIAN_DAY_FOR_EPOCH;
|
|
|
|
|
qint64 ds = 0;
|
|
|
|
|
|
|
|
|
|
if (qAbs(msecs) >= MSECS_PER_DAY) {
|
|
|
|
|
jd += (msecs / MSECS_PER_DAY);
|
|
|
|
|
msecs %= MSECS_PER_DAY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (msecs < 0) {
|
|
|
|
|
ds = MSECS_PER_DAY - msecs - 1;
|
|
|
|
|
jd -= ds / MSECS_PER_DAY;
|
|
|
|
|
ds = ds % MSECS_PER_DAY;
|
|
|
|
|
ds = MSECS_PER_DAY - ds - 1;
|
|
|
|
|
} else {
|
|
|
|
|
ds = msecs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*date = (status & NullDate) ? QDate() : QDate::fromJulianDay(jd);
|
|
|
|
|
*time = (status & NullTime) ? QTime() : QTime::fromMSecsSinceStartOfDay(ds);
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-11 13:28:21 +01:00
|
|
|
QString decodeData(const QByteArray &ba, const QByteArray &encoding)
|
|
|
|
|
{
|
|
|
|
|
if (encoding.isEmpty())
|
|
|
|
|
return quoteUnprintableLatin1(ba); // The common case.
|
|
|
|
|
|
|
|
|
|
if (encoding == "empty")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<empty>");
|
|
|
|
|
if (encoding == "minimumitemcount")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<at least %n items>", 0, ba.toInt());
|
|
|
|
|
if (encoding == "undefined")
|
|
|
|
|
return QLatin1String("Undefined");
|
|
|
|
|
if (encoding == "null")
|
|
|
|
|
return QLatin1String("Null");
|
|
|
|
|
if (encoding == "itemcount")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<%n items>", 0, ba.toInt());
|
|
|
|
|
if (encoding == "notaccessible")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<not accessible>");
|
|
|
|
|
if (encoding == "optimizedout")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<optimized out>");
|
|
|
|
|
if (encoding == "nullreference")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<null reference>");
|
|
|
|
|
if (encoding == "emptystructure")
|
|
|
|
|
return QLatin1String("{...}");
|
|
|
|
|
if (encoding == "uninitialized")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<uninitialized>");
|
|
|
|
|
if (encoding == "invalid")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<invalid>");
|
|
|
|
|
if (encoding == "notcallable")
|
|
|
|
|
return QCoreApplication::translate("Debugger::Internal::WatchHandler", "<not callable>");
|
|
|
|
|
|
|
|
|
|
DebuggerEncoding enc(encoding);
|
|
|
|
|
QString result;
|
|
|
|
|
switch (enc.type) {
|
|
|
|
|
case DebuggerEncoding::Unencoded: {
|
|
|
|
|
result = quoteUnprintableLatin1(ba);
|
|
|
|
|
break;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::HexEncodedLocal8Bit: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const QByteArray decodedBa = QByteArray::fromHex(ba);
|
2015-12-11 13:28:21 +01:00
|
|
|
result = QString::fromLocal8Bit(decodedBa.data(), decodedBa.size());
|
|
|
|
|
break;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::HexEncodedLatin1: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const QByteArray decodedBa = QByteArray::fromHex(ba);
|
2015-12-11 13:28:21 +01:00
|
|
|
result = QString::fromLatin1(decodedBa.data(), decodedBa.size());
|
|
|
|
|
break;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::HexEncodedUtf8: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const QByteArray decodedBa = QByteArray::fromHex(ba);
|
2015-12-11 13:28:21 +01:00
|
|
|
result = QString::fromUtf8(decodedBa.data(), decodedBa.size());
|
|
|
|
|
break;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::HexEncodedUtf16: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const QByteArray decodedBa = QByteArray::fromHex(ba);
|
2015-12-11 13:28:21 +01:00
|
|
|
result = QString::fromUtf16(reinterpret_cast<const ushort *>
|
2013-01-24 11:19:15 +01:00
|
|
|
(decodedBa.data()), decodedBa.size() / 2);
|
2015-12-11 13:28:21 +01:00
|
|
|
break;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::HexEncodedUcs4: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const QByteArray decodedBa = QByteArray::fromHex(ba);
|
2015-12-11 13:28:21 +01:00
|
|
|
result = QString::fromUcs4(reinterpret_cast<const uint *>
|
|
|
|
|
(decodedBa.data()), decodedBa.size() / 4);
|
|
|
|
|
break;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::JulianDate: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const QDate date = dateFromData(ba.toInt());
|
2013-11-11 14:19:00 +01:00
|
|
|
return date.isValid() ? date.toString(Qt::TextDate) : QLatin1String("(invalid)");
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::MillisecondsSinceMidnight: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const QTime time = timeFromData(ba.toInt());
|
2013-11-11 14:19:00 +01:00
|
|
|
return time.isValid() ? time.toString(Qt::TextDate) : QLatin1String("(invalid)");
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::JulianDateAndMillisecondsSinceMidnight: {
|
2013-01-24 11:19:15 +01:00
|
|
|
const int p = ba.indexOf('/');
|
|
|
|
|
const QDate date = dateFromData(ba.left(p).toInt());
|
|
|
|
|
const QTime time = timeFromData(ba.mid(p + 1 ).toInt());
|
2013-11-11 14:19:00 +01:00
|
|
|
const QDateTime dateTime = QDateTime(date, time);
|
|
|
|
|
return dateTime.isValid() ? dateTime.toString(Qt::TextDate) : QLatin1String("(invalid)");
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::HexEncodedUnsignedInteger:
|
|
|
|
|
case DebuggerEncoding::HexEncodedSignedInteger:
|
2015-08-12 11:26:10 +02:00
|
|
|
qDebug("not implemented"); // Only used in Arrays, see watchdata.cpp
|
|
|
|
|
return QString();
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::HexEncodedFloat: {
|
2015-08-12 11:26:10 +02:00
|
|
|
const QByteArray s = QByteArray::fromHex(ba);
|
2015-12-11 13:28:21 +01:00
|
|
|
if (enc.size == 4) {
|
|
|
|
|
union { char c[4]; float f; } u = { { s[3], s[2], s[1], s[0] } };
|
|
|
|
|
return QString::number(u.f);
|
|
|
|
|
}
|
|
|
|
|
if (enc.size == 8) {
|
|
|
|
|
union { char c[8]; double d; } u = { { s[7], s[6], s[5], s[4], s[3], s[2], s[1], s[0] } };
|
|
|
|
|
return QString::number(u.d);
|
|
|
|
|
}
|
2015-08-12 11:26:10 +02:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::IPv6AddressAndHexScopeId: { // 16 hex-encoded bytes, "%" and the string-encoded scope
|
2013-07-09 14:19:45 -07:00
|
|
|
const int p = ba.indexOf('%');
|
|
|
|
|
QHostAddress ip6(QString::fromLatin1(p == -1 ? ba : ba.left(p)));
|
|
|
|
|
if (ip6.isNull())
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
const QByteArray scopeId = p == -1 ? QByteArray() : QByteArray::fromHex(ba.mid(p + 1));
|
|
|
|
|
if (!scopeId.isEmpty())
|
|
|
|
|
ip6.setScopeId(QString::fromUtf16(reinterpret_cast<const ushort *>(scopeId.constData()),
|
|
|
|
|
scopeId.length() / 2));
|
|
|
|
|
return ip6.toString();
|
|
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
case DebuggerEncoding::DateTimeInternal: { // DateTimeInternal: msecs, spec, offset, tz, status
|
2013-11-30 23:46:25 +01:00
|
|
|
int p0 = ba.indexOf('/');
|
|
|
|
|
int p1 = ba.indexOf('/', p0 + 1);
|
|
|
|
|
int p2 = ba.indexOf('/', p1 + 1);
|
|
|
|
|
int p3 = ba.indexOf('/', p2 + 1);
|
|
|
|
|
|
|
|
|
|
qint64 msecs = ba.left(p0).toLongLong();
|
|
|
|
|
++p0;
|
|
|
|
|
Qt::TimeSpec spec = Qt::TimeSpec(ba.mid(p0, p1 - p0).toInt());
|
|
|
|
|
++p1;
|
|
|
|
|
qulonglong offset = ba.mid(p1, p2 - p1).toInt();
|
|
|
|
|
++p2;
|
|
|
|
|
QByteArray timeZoneId = QByteArray::fromHex(ba.mid(p2, p3 - p2));
|
|
|
|
|
++p3;
|
|
|
|
|
int status = ba.mid(p3).toInt();
|
|
|
|
|
|
|
|
|
|
QDate date;
|
|
|
|
|
QTime time;
|
|
|
|
|
getDateTime(msecs, status, &date, &time);
|
|
|
|
|
|
|
|
|
|
QDateTime dateTime;
|
|
|
|
|
if (spec == Qt::OffsetFromUTC) {
|
|
|
|
|
dateTime = QDateTime(date, time, spec, offset);
|
|
|
|
|
} else if (spec == Qt::TimeZone) {
|
|
|
|
|
if (!QTimeZone::isTimeZoneIdAvailable(timeZoneId))
|
|
|
|
|
return QLatin1String("<unavailable>");
|
|
|
|
|
dateTime = QDateTime(date, time, QTimeZone(timeZoneId));
|
|
|
|
|
} else {
|
|
|
|
|
dateTime = QDateTime(date, time, spec);
|
|
|
|
|
}
|
|
|
|
|
return dateTime.toString();
|
2013-10-22 13:51:35 +02:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
qDebug() << "ENCODING ERROR: " << enc.type;
|
|
|
|
|
return QCoreApplication::translate("Debugger", "<Encoding error>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (enc.quotes) {
|
|
|
|
|
const QChar doubleQuote(QLatin1Char('"'));
|
|
|
|
|
result = doubleQuote + result + doubleQuote;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
2015-12-11 13:28:21 +01:00
|
|
|
return result;
|
2013-01-24 11:19:15 +01:00
|
|
|
}
|
|
|
|
|
|
2015-02-02 12:47:51 +01:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// DebuggerCommand
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2015-09-14 13:40:35 +02:00
|
|
|
template<typename Value>
|
|
|
|
|
QJsonValue addToJsonObject(const QJsonValue &args, const char *name, const Value &value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
QTC_ASSERT(args.isObject() || args.isNull(), return args);
|
|
|
|
|
QJsonObject obj = args.toObject();
|
|
|
|
|
obj.insert(QLatin1String(name), value);
|
|
|
|
|
return obj;
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 14:39:59 +01:00
|
|
|
void DebuggerCommand::arg(const char *name, int value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
args = addToJsonObject(args, name, value);
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 14:39:59 +01:00
|
|
|
void DebuggerCommand::arg(const char *name, qlonglong value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
args = addToJsonObject(args, name, value);
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 14:39:59 +01:00
|
|
|
void DebuggerCommand::arg(const char *name, qulonglong value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
// gdb and lldb will correctly cast the value back to unsigned if needed, so this is no problem.
|
|
|
|
|
args = addToJsonObject(args, name, qint64(value));
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 14:39:59 +01:00
|
|
|
void DebuggerCommand::arg(const char *name, const QString &value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
args = addToJsonObject(args, name, value);
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 14:39:59 +01:00
|
|
|
void DebuggerCommand::arg(const char *name, const QByteArray &value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
args = addToJsonObject(args, name, QLatin1String(value));
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 14:39:59 +01:00
|
|
|
void DebuggerCommand::arg(const char *name, const char *value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
args = addToJsonObject(args, name, QLatin1String(value));
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-07-10 11:06:27 +02:00
|
|
|
void DebuggerCommand::arg(const char *name, const QList<int> &list)
|
|
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
QJsonArray numbers;
|
|
|
|
|
foreach (int item, list)
|
|
|
|
|
numbers.append(item);
|
|
|
|
|
args = addToJsonObject(args, name, numbers);
|
2015-07-10 11:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 14:39:59 +01:00
|
|
|
void DebuggerCommand::arg(const char *value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
QTC_ASSERT(args.isArray() || args.isNull(), return);
|
|
|
|
|
QJsonArray arr = args.toArray();
|
|
|
|
|
arr.append(QLatin1String(value));
|
|
|
|
|
args = arr;
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-11-24 11:10:00 +01:00
|
|
|
void DebuggerCommand::arg(const char *name, bool value)
|
|
|
|
|
{
|
|
|
|
|
args = addToJsonObject(args, name, value);
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-14 13:40:35 +02:00
|
|
|
void DebuggerCommand::arg(const char *name, const QJsonValue &value)
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
args = addToJsonObject(args, name, value);
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-11-30 14:49:18 +01:00
|
|
|
static QJsonValue translateJsonToPython(const QJsonValue &value)
|
|
|
|
|
{
|
2015-11-30 16:59:34 +01:00
|
|
|
// TODO: Verify that this covers all incompatibilities between python and json,
|
|
|
|
|
// e.g. number format and precision
|
|
|
|
|
|
2015-11-30 14:49:18 +01:00
|
|
|
switch (value.type()) {
|
2015-11-30 16:59:34 +01:00
|
|
|
// Undefined is not a problem as the JSON generator ignores that.
|
|
|
|
|
case QJsonValue::Null:
|
|
|
|
|
// Python doesn't understand "null"
|
|
|
|
|
return QJsonValue(0);
|
2015-11-30 14:49:18 +01:00
|
|
|
case QJsonValue::Bool:
|
|
|
|
|
// Python doesn't understand lowercase "true" or "false"
|
|
|
|
|
return QJsonValue(value.toBool() ? 1 : 0);
|
|
|
|
|
case QJsonValue::Object: {
|
|
|
|
|
QJsonObject object = value.toObject();
|
|
|
|
|
for (QJsonObject::iterator i = object.begin(); i != object.end(); ++i)
|
|
|
|
|
i.value() = translateJsonToPython(i.value());
|
|
|
|
|
return object;
|
|
|
|
|
}
|
|
|
|
|
case QJsonValue::Array: {
|
|
|
|
|
QJsonArray array = value.toArray();
|
|
|
|
|
for (QJsonArray::iterator i = array.begin(); i != array.end(); ++i)
|
|
|
|
|
*i = translateJsonToPython(*i);
|
|
|
|
|
return array;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-14 13:40:35 +02:00
|
|
|
QByteArray DebuggerCommand::argsToPython() const
|
2015-02-02 12:47:51 +01:00
|
|
|
{
|
2015-11-30 14:49:18 +01:00
|
|
|
QJsonValue pythonCompatible(translateJsonToPython(args));
|
|
|
|
|
if (pythonCompatible.isArray())
|
|
|
|
|
return QJsonDocument(pythonCompatible.toArray()).toJson(QJsonDocument::Compact);
|
2015-09-14 13:40:35 +02:00
|
|
|
else
|
2015-11-30 14:49:18 +01:00
|
|
|
return QJsonDocument(pythonCompatible.toObject()).toJson(QJsonDocument::Compact);
|
2015-02-02 12:47:51 +01:00
|
|
|
}
|
|
|
|
|
|
2015-09-14 13:40:35 +02:00
|
|
|
QByteArray DebuggerCommand::argsToString() const
|
2015-07-10 11:06:27 +02:00
|
|
|
{
|
2015-09-14 13:40:35 +02:00
|
|
|
return args.toString().toLatin1();
|
2015-07-10 11:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
2015-12-11 13:28:21 +01:00
|
|
|
DebuggerEncoding::DebuggerEncoding(const QByteArray &data)
|
|
|
|
|
{
|
|
|
|
|
const QByteArrayList l = data.split(':');
|
|
|
|
|
|
|
|
|
|
const QByteArray &t = l.at(0);
|
|
|
|
|
if (t == "latin1") {
|
|
|
|
|
type = HexEncodedLatin1;
|
|
|
|
|
size = 1;
|
|
|
|
|
quotes = true;
|
|
|
|
|
} else if (t == "local8bit") {
|
|
|
|
|
type = HexEncodedLocal8Bit;
|
|
|
|
|
size = 1;
|
|
|
|
|
quotes = true;
|
|
|
|
|
} else if (t == "utf8") {
|
|
|
|
|
type = HexEncodedUtf8;
|
|
|
|
|
size = 1;
|
|
|
|
|
quotes = true;
|
|
|
|
|
} else if (t == "utf16") {
|
|
|
|
|
type = HexEncodedUtf16;
|
|
|
|
|
size = 2;
|
|
|
|
|
quotes = true;
|
|
|
|
|
} else if (t == "ucs4") {
|
|
|
|
|
type = HexEncodedUcs4;
|
|
|
|
|
size = 4;
|
|
|
|
|
quotes = true;
|
|
|
|
|
} else if (t == "int") {
|
|
|
|
|
type = HexEncodedSignedInteger;
|
|
|
|
|
} else if (t == "uint") {
|
|
|
|
|
type = HexEncodedUnsignedInteger;
|
|
|
|
|
} else if (t == "float") {
|
|
|
|
|
type = HexEncodedFloat;
|
|
|
|
|
} else if (t == "juliandate") {
|
|
|
|
|
type = JulianDate;
|
|
|
|
|
} else if (t == "juliandateandmillisecondssincemidnight") {
|
|
|
|
|
type = JulianDateAndMillisecondsSinceMidnight;
|
|
|
|
|
} else if (t == "millisecondssincemidnight") {
|
|
|
|
|
type = MillisecondsSinceMidnight;
|
|
|
|
|
} else if (t == "ipv6addressandhexscopeid") {
|
|
|
|
|
type = IPv6AddressAndHexScopeId;
|
|
|
|
|
} else if (t == "datetimeinternal") {
|
|
|
|
|
type = DateTimeInternal;
|
|
|
|
|
} else if (!t.isEmpty()) {
|
|
|
|
|
qDebug() << "CANNOT DECODE ENCODING" << data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (l.size() >= 2)
|
|
|
|
|
size = l.at(1).toInt();
|
|
|
|
|
|
|
|
|
|
if (l.size() >= 3)
|
|
|
|
|
quotes = bool(l.at(2).toInt());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString DebuggerEncoding::toString() const
|
|
|
|
|
{
|
|
|
|
|
return QString::fromLatin1("%1:%2:%3").arg(type).arg(size).arg(quotes);
|
2015-10-08 16:19:57 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|