/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** 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. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef DEBUGGER_LLDBENGINE_GUEST_H #define DEBUGGER_LLDBENGINE_GUEST_H #include "ipcengineguest.h" #include #include #include #include #include #if defined(HAVE_LLDB_PRIVATE) #include "pygdbmiemu.h" #endif Q_DECLARE_METATYPE (lldb::SBListener *) Q_DECLARE_METATYPE (lldb::SBEvent *) namespace Debugger { namespace Internal { class LldbEventListener : public QObject { Q_OBJECT public slots: void listen(lldb::SBListener *listener); signals: // lldb API uses non thread safe implicit sharing with no explicit copy feature // additionally the scope is undefined, hence this signal needs to be connected BlockingQueued // whutever, works for now. void lldbEvent(lldb::SBEvent *ev); }; class LldbEngineGuest : public IPCEngineGuest { Q_OBJECT public: explicit LldbEngineGuest(); ~LldbEngineGuest(); void nuke(); void setupEngine(); void setupInferior(const QString &executable, const QStringList &arguments, const QStringList &environment); void runEngine(); void shutdownInferior(); void shutdownEngine(); void detachDebugger(); void executeStep(); void executeStepOut() ; void executeNext(); void executeStepI(); void executeNextI(); void continueInferior(); void interruptInferior(); void executeRunToLine(const ContextData &data); void executeRunToFunction(const QString &functionName); void executeJumpToLine(const ContextData &data); void activateFrame(qint64); void selectThread(qint64); void disassemble(quint64 pc); void addBreakpoint(BreakpointModelId id, const BreakpointParameters &bp); void removeBreakpoint(BreakpointModelId id); void changeBreakpoint(BreakpointModelId id, const BreakpointParameters &bp); void requestUpdateWatchData(const WatchData &data, const WatchUpdateFlags &flags); void fetchFrameSource(qint64 frame); private: bool m_running; QList m_arguments; QList m_environment; QThread m_wThread; LldbEventListener *m_worker; lldb::SBDebugger *m_lldb; lldb::SBTarget *m_target; lldb::SBProcess *m_process; lldb::SBListener *m_listener; lldb::SBFrame m_currentFrame; lldb::SBThread m_currentThread; bool m_relistFrames; QHash m_localesCache; QHash m_breakpoints; QHash m_frame_to_file; void updateThreads(); void getWatchDataR(lldb::SBValue v, int level, const QByteArray &p_iname, QList &wd); #if defined(HAVE_LLDB_PRIVATE) PythonLLDBToGdbMiHack * py; #endif private slots: void lldbEvent(lldb::SBEvent *ev); }; } // namespace Internal } // namespace Debugger #endif // DEBUGGER_LLDBENGINE_H #define SYNC_INFERIOR