forked from qt-creator/qt-creator
Try to find qobject_p.h, if it exists and use its structures to determine the child offset.
217 lines
6.7 KiB
C++
217 lines
6.7 KiB
C++
/**************************************************************************
|
|
**
|
|
** This file is part of Qt Creator
|
|
**
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
**
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
**
|
|
** Commercial Usage
|
|
**
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and Nokia.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
**
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** If you are unsure which license is appropriate for your use, please
|
|
** contact the sales department at qt-sales@nokia.com.
|
|
**
|
|
**************************************************************************/
|
|
|
|
#ifndef WATCHUTILS_H
|
|
#define WATCHUTILS_H
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QMap>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QDebug;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Debugger {
|
|
namespace Internal {
|
|
|
|
class WatchData;
|
|
|
|
QString dotEscape(QString str);
|
|
QString currentTime();
|
|
bool isSkippableFunction(const QString &funcName, const QString &fileName);
|
|
bool isLeavableFunction(const QString &funcName, const QString &fileName);
|
|
|
|
inline bool isNameChar(char c)
|
|
{
|
|
// could be 'stopped' or 'shlibs-added'
|
|
return (c >= 'a' && c <= 'z') || c == '-';
|
|
}
|
|
|
|
bool hasLetterOrNumber(const QString &exp);
|
|
bool hasSideEffects(const QString &exp);
|
|
bool isKeyWord(const QString &exp);
|
|
bool isPointerType(const QString &type);
|
|
bool isAccessSpecifier(const QString &str);
|
|
bool startsWithDigit(const QString &str);
|
|
QString stripPointerType(QString type);
|
|
QString gdbQuoteTypes(const QString &type);
|
|
bool extractTemplate(const QString &type, QString *tmplate, QString *inner);
|
|
QString extractTypeFromPTypeOutput(const QString &str);
|
|
bool isIntOrFloatType(const QString &type);
|
|
QString sizeofTypeExpression(const QString &type);
|
|
|
|
// Decode string data as returned by the dumper helpers.
|
|
QString decodeData(const QByteArray &baIn, int encoding);
|
|
|
|
// Result of a dumper call.
|
|
struct QtDumperResult
|
|
{
|
|
struct Child {
|
|
Child();
|
|
|
|
int valueEncoded;
|
|
int childCount;
|
|
bool valuedisabled;
|
|
QString name;
|
|
QString address;
|
|
QString exp;
|
|
QString type;
|
|
QByteArray value;
|
|
};
|
|
|
|
QtDumperResult();
|
|
void clear();
|
|
QList<WatchData> toWatchData(int source = 0) const;
|
|
|
|
QString iname;
|
|
QString address;
|
|
QString type;
|
|
QString displayedType;
|
|
QByteArray value;
|
|
int valueEncoded;
|
|
bool valuedisabled;
|
|
int childCount;
|
|
bool internal;
|
|
QString childType;
|
|
QList <Child> children;
|
|
};
|
|
|
|
QDebug operator<<(QDebug in, const QtDumperResult &d);
|
|
|
|
/* Attempt to put common code of the dumper handling into a helper
|
|
* class.
|
|
* "Custom dumper" is a library compiled against the current
|
|
* Qt containing functions to evaluate values of Qt classes
|
|
* (such as QString, taking pointers to their addresses).
|
|
* The library must be loaded into the debuggee.
|
|
* It provides a function that takes input from an input buffer
|
|
* and some parameters and writes output into an output buffer.
|
|
* Parameter 1 is the protocol:
|
|
* 1) Query. Fills output buffer with known types, Qt version and namespace.
|
|
* This information is parsed and stored by this class (special type
|
|
* enumeration).
|
|
* 2) Evaluate symbol, taking address and some additional parameters
|
|
* depending on type. */
|
|
|
|
class QtDumperHelper
|
|
{
|
|
public:
|
|
enum Debugger {
|
|
GdbDebugger, // Can evalulate expressions in function calls
|
|
CdbDebugger // Can only handle scalar, simple types in function calls
|
|
};
|
|
|
|
enum Type {
|
|
UnknownType,
|
|
SupportedType, // A type that requires no special handling by the dumper
|
|
// Below types require special handling
|
|
QObjectType, QWidgetType, QObjectSlotType, QObjectSignalType,
|
|
QVectorType, QMapType, QMultiMapType, QMapNodeType,
|
|
StdVectorType, StdDequeType, StdSetType, StdMapType, StdStackType,
|
|
StdStringType
|
|
};
|
|
|
|
// Type/Parameter struct required for building a value query
|
|
struct TypeData {
|
|
TypeData();
|
|
void clear();
|
|
|
|
Type type;
|
|
bool isTemplate;
|
|
QString tmplate;
|
|
QString inner;
|
|
};
|
|
|
|
QtDumperHelper();
|
|
void clear();
|
|
|
|
int typeCount() const;
|
|
// Look up a simple, non-template type
|
|
Type simpleType(const QString &simpleType) const;
|
|
// Look up a (potentially) template type and fill parameter struct
|
|
TypeData typeData(const QString &typeName) const;
|
|
Type type(const QString &typeName) const;
|
|
|
|
int qtVersion() const;
|
|
QString qtVersionString() const;
|
|
void setQtVersion(int v);
|
|
void setQtVersion(const QString &v);
|
|
|
|
QString qtNamespace() const;
|
|
void setQtNamespace(const QString &qtNamespace);
|
|
|
|
// Complete parse of "query" (protocol 1) response from debuggee buffer.
|
|
// 'data' excludes the leading indicator character.
|
|
bool parseQuery(const char *data, Debugger debugger);
|
|
// Set up from pre-parsed type list
|
|
void parseQueryTypes(const QStringList &l, Debugger debugger);
|
|
|
|
// Determine the parameters required for an "evaluate" (protocol 2) call
|
|
void evaluationParameters(const WatchData &data,
|
|
const TypeData &td,
|
|
Debugger debugger,
|
|
QByteArray *inBuffer,
|
|
QStringList *extraParameters) const;
|
|
|
|
// Parse the value response (protocol 2) from debuggee buffer.
|
|
// 'data' excludes the leading indicator character.
|
|
static bool parseValue(const char *data, QtDumperResult *r);
|
|
|
|
static bool needsExpressionSyntax(Type t);
|
|
|
|
QString toString(bool debug = false) const;
|
|
|
|
void addSize(const QString &name, int size);
|
|
|
|
private:
|
|
typedef QMap<QString, Type> NameTypeMap;
|
|
typedef QMap<QString, int> SizeCache;
|
|
|
|
// Look up a simple (namespace) type
|
|
static Type specialType(QString s);
|
|
QString evaluationSizeofTypeExpression(const QString &typeName, Debugger d) const;
|
|
|
|
const QString m_stdAllocatorPrefix;
|
|
|
|
NameTypeMap m_nameTypeMap;
|
|
SizeCache m_sizeCache;
|
|
int m_intSize;
|
|
int m_pointerSize;
|
|
int m_stdAllocatorSize;
|
|
int m_qtVersion;
|
|
QString m_qtNamespace;
|
|
};
|
|
|
|
QDebug operator<<(QDebug in, const QtDumperHelper::TypeData &d);
|
|
|
|
} // namespace Internal
|
|
} // namespace Debugger
|
|
|
|
#endif // WATCHUTILS_H
|