2022-01-30 18:32:39 +08:00
|
|
|
#ifndef GDBPROCESS_H
|
|
|
|
#define GDBPROCESS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <qcoreapplication.h>
|
|
|
|
#include <qfile.h>
|
|
|
|
#include <qregexp.h>
|
2022-02-03 22:14:14 +08:00
|
|
|
#include <qdebug.h>
|
|
|
|
#include <QTime>
|
2022-01-30 18:32:39 +08:00
|
|
|
|
|
|
|
class GDBProcess : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit GDBProcess(QObject *parent = nullptr);
|
|
|
|
~GDBProcess();
|
|
|
|
QString runCmd(const QString &cmd);
|
|
|
|
void start();
|
|
|
|
void stop();
|
|
|
|
void connectToRemote(const QString &addr);
|
|
|
|
void disconnectFromRemote();
|
|
|
|
void setTempSymbolFileName(const QString &name);
|
|
|
|
void loadSymbolFile(const QString &path);
|
|
|
|
void unloadSymbolFile();
|
|
|
|
void setDisplayList(QStringList &list);
|
|
|
|
QString captureValueFromDisplay(const QString &rawDisplay,const QString &name);
|
|
|
|
bool getDoubleFromDisplayValue(const QString &rawValue,double &result);
|
2022-02-18 22:36:23 +08:00
|
|
|
QList<uint> getUintArrayFromDisplay(const QString &rawDisplay);
|
2022-01-30 18:32:39 +08:00
|
|
|
void setVarValue(const QString &varFullName,double value);
|
|
|
|
bool checkExpandableType(const QString &varFullName);
|
|
|
|
QStringList getVarListFromRawOutput(const QString &rawVarList);
|
|
|
|
void removeInnerSection(QString &raw,int offset);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QProcess *process;
|
|
|
|
QString tempSymbolFileName;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GDBPROCESS_H
|