//===-- ProcessWindows.h ----------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef liblldb_Plugins_Process_Windows_ProcessWindows_H_ #define liblldb_Plugins_Process_Windows_ProcessWindows_H_ // C Includes // C++ Includes #include #include #include // Other libraries and framework includes #include "ForwardDecl.h" #include "IDebugDelegate.h" #include "lldb/lldb-forward.h" #include "lldb/Core/Error.h" #include "lldb/Host/HostThread.h" #include "lldb/Target/Process.h" class ProcessMonitor; namespace lldb_private { class ProcessWindowsData; } class ProcessWindows : public lldb_private::Process, public lldb_private::IDebugDelegate { public: //------------------------------------------------------------------ // Static functions. //------------------------------------------------------------------ static lldb::ProcessSP CreateInstance(lldb_private::Target& target, lldb_private::Listener &listener, const lldb_private::FileSpec *); static void Initialize(); static void Terminate(); static lldb_private::ConstString GetPluginNameStatic(); static const char * GetPluginDescriptionStatic(); //------------------------------------------------------------------ // Constructors and destructors //------------------------------------------------------------------ ProcessWindows(lldb_private::Target& target, lldb_private::Listener &listener); ~ProcessWindows(); virtual lldb_private::Error DoDetach(bool keep_stopped); virtual bool DetachRequiresHalt() { return true; } virtual bool UpdateThreadList(lldb_private::ThreadList &old_thread_list, lldb_private::ThreadList &new_thread_list); virtual lldb_private::Error DoLaunch (lldb_private::Module *exe_module, lldb_private::ProcessLaunchInfo &launch_info); virtual lldb_private::Error DoResume (); //------------------------------------------------------------------ // PluginInterface protocol //------------------------------------------------------------------ virtual lldb_private::ConstString GetPluginName(); virtual uint32_t GetPluginVersion(); virtual void GetPluginCommandHelp(const char *command, lldb_private::Stream *strm); virtual lldb_private::Error ExecutePluginCommand(lldb_private::Args &command, lldb_private::Stream *strm); virtual lldb_private::Log * EnablePluginLogging(lldb_private::Stream *strm, lldb_private::Args &command); virtual bool CanDebug(lldb_private::Target &target, bool plugin_specified_by_name); virtual lldb_private::Error DoDestroy (); virtual void RefreshStateAfterStop (); virtual bool IsAlive (); virtual size_t DoReadMemory(lldb::addr_t vm_addr, void *buf, size_t size, lldb_private::Error &error); // IDebugDelegate overrides. virtual void OnExitProcess(uint32_t exit_code) override; virtual void OnDebuggerConnected(lldb::addr_t image_base) override; virtual ExceptionResult OnDebugException(bool first_chance, const lldb_private::ExceptionRecord &record) override; virtual void OnCreateThread(const lldb_private::HostThread &thread) override; virtual void OnExitThread(const lldb_private::HostThread &thread) override; virtual void OnLoadDll(const lldb_private::ModuleSpec &module_spec, lldb::addr_t module_addr) override; virtual void OnUnloadDll(lldb::addr_t module_addr) override; virtual void OnDebugString(const std::string &string) override; virtual void OnDebuggerError(const lldb_private::Error &error, uint32_t type) override; private: // Data for the active debugging session. std::unique_ptr m_session_data; }; #endif // liblldb_Plugins_Process_Windows_ProcessWindows_H_