/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtQml module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** 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 ** 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. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ****************************************************************************/ #ifndef QV4DEBUGGER_H #define QV4DEBUGGER_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qv4datacollector.h" #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QV4DebugJob; class QV4DataCollector; class QV4Debugger : public QV4::Debugging::Debugger { Q_OBJECT public: struct BreakPoint { BreakPoint(const QString &fileName, int line); QString fileName; int lineNumber; }; enum State { Running, Paused }; enum Speed { FullThrottle = 0, StepOut, StepOver, StepIn, NotStepping = FullThrottle }; enum PauseReason { PauseRequest, BreakPointHit, Throwing, Step }; QV4Debugger(QV4::ExecutionEngine *engine); QV4::ExecutionEngine *engine() const; const QV4DataCollector *collector() const; QV4DataCollector *collector(); void pause(); void resume(Speed speed); State state() const; void addBreakPoint(const QString &fileName, int lineNumber, const QString &condition = QString()); void removeBreakPoint(const QString &fileName, int lineNumber); void setBreakOnThrow(bool onoff); void clearPauseRequest(); // used for testing struct ExecutionState { QString fileName; int lineNumber; }; ExecutionState currentExecutionState() const; QVector stackTrace(int frameLimit = -1) const; QVector getScopeTypes(int frame = 0) const; QV4::Function *getFunction() const; void runInEngine(QV4DebugJob *job); // compile-time interface void maybeBreakAtInstruction() override; // execution hooks void enteringFunction() override; void leavingFunction(const QV4::ReturnedValue &retVal) override; void aboutToThrow() override; bool pauseAtNextOpportunity() const override; signals: void debuggerPaused(QV4Debugger *self, QV4Debugger::PauseReason reason); void scheduleJob(); private: // requires lock to be held void pauseAndWait(PauseReason reason); bool reallyHitTheBreakPoint(const QString &filename, int linenr); void runInEngine_havingLock(QV4DebugJob *job); void runJobUnpaused(); QV4::ExecutionEngine *m_engine; QV4::CppStackFrame *m_currentFrame = 0; QMutex m_lock; QWaitCondition m_runningCondition; State m_state; Speed m_stepping; bool m_pauseRequested; bool m_haveBreakPoints; bool m_breakOnThrow; QHash m_breakPoints; QV4::PersistentValue m_returnedValue; QV4DebugJob *m_gatherSources; QV4DebugJob *m_runningJob; QV4DataCollector m_collector; QWaitCondition m_jobIsRunning; }; QT_END_NAMESPACE Q_DECLARE_METATYPE(QV4Debugger::PauseReason) Q_DECLARE_METATYPE(QV4Debugger*) #endif // QV4DEBUGGER_H