Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 1 | //===-- GDBRemoteClientBase.h -----------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef liblldb_GDBRemoteClientBase_h_ |
| 11 | #define liblldb_GDBRemoteClientBase_h_ |
| 12 | |
| 13 | #include "GDBRemoteCommunication.h" |
| 14 | |
| 15 | #include <condition_variable> |
| 16 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 17 | namespace lldb_private { |
| 18 | namespace process_gdb_remote { |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 19 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 20 | class GDBRemoteClientBase : public GDBRemoteCommunication { |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 21 | public: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 22 | struct ContinueDelegate { |
| 23 | virtual ~ContinueDelegate(); |
| 24 | virtual void HandleAsyncStdout(llvm::StringRef out) = 0; |
| 25 | virtual void HandleAsyncMisc(llvm::StringRef data) = 0; |
| 26 | virtual void HandleStopReply() = 0; |
Todd Fiala | 7593001 | 2016-08-19 04:21:48 +0000 | [diff] [blame] | 27 | |
Todd Fiala | fcdb1af | 2016-09-10 00:06:29 +0000 | [diff] [blame] | 28 | // ========================================================================= |
| 29 | /// Process asynchronously-received structured data. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 30 | /// |
Todd Fiala | fcdb1af | 2016-09-10 00:06:29 +0000 | [diff] [blame] | 31 | /// @param[in] data |
| 32 | /// The complete data packet, expected to start with JSON-async. |
| 33 | // ========================================================================= |
| 34 | virtual void HandleAsyncStructuredDataPacket(llvm::StringRef data) = 0; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 35 | }; |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 36 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 37 | GDBRemoteClientBase(const char *comm_name, const char *listener_name); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 38 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 39 | bool SendAsyncSignal(int signo); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 40 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 41 | bool Interrupt(); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 42 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 43 | lldb::StateType SendContinuePacketAndWaitForResponse( |
| 44 | ContinueDelegate &delegate, const UnixSignals &signals, |
| 45 | llvm::StringRef payload, StringExtractorGDBRemote &response); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 46 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 47 | PacketResult SendPacketAndWaitForResponse(llvm::StringRef payload, |
| 48 | StringExtractorGDBRemote &response, |
| 49 | bool send_async); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 50 | |
Pavel Labath | 7da8475 | 2018-01-10 14:39:08 +0000 | [diff] [blame^] | 51 | PacketResult SendPacketAndReceiveResponseWithOutputSupport( |
| 52 | llvm::StringRef payload, StringExtractorGDBRemote &response, |
| 53 | bool send_async, |
| 54 | llvm::function_ref<void(llvm::StringRef)> output_callback); |
| 55 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 56 | bool SendvContPacket(llvm::StringRef payload, |
| 57 | StringExtractorGDBRemote &response); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 58 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 59 | class Lock { |
| 60 | public: |
| 61 | Lock(GDBRemoteClientBase &comm, bool interrupt); |
| 62 | ~Lock(); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 63 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 64 | explicit operator bool() { return m_acquired; } |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 65 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 66 | // Whether we had to interrupt the continue thread to acquire the |
| 67 | // connection. |
| 68 | bool DidInterrupt() const { return m_did_interrupt; } |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 69 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 70 | private: |
| 71 | std::unique_lock<std::recursive_mutex> m_async_lock; |
| 72 | GDBRemoteClientBase &m_comm; |
| 73 | bool m_acquired; |
| 74 | bool m_did_interrupt; |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 75 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 76 | void SyncWithContinueThread(bool interrupt); |
| 77 | }; |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 78 | |
| 79 | protected: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 80 | PacketResult |
| 81 | SendPacketAndWaitForResponseNoLock(llvm::StringRef payload, |
| 82 | StringExtractorGDBRemote &response); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 83 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 84 | virtual void OnRunPacketSent(bool first); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 85 | |
| 86 | private: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 87 | // Variables handling synchronization between the Continue thread and any |
| 88 | // other threads |
| 89 | // wishing to send packets over the connection. Either the continue thread has |
| 90 | // control over |
| 91 | // the connection (m_is_running == true) or the connection is free for an |
| 92 | // arbitrary number of |
| 93 | // other senders to take which indicate their interest by incrementing |
| 94 | // m_async_count. |
| 95 | // Semantics of individual states: |
| 96 | // - m_continue_packet == false, m_async_count == 0: connection is free |
| 97 | // - m_continue_packet == true, m_async_count == 0: only continue thread is |
| 98 | // present |
| 99 | // - m_continue_packet == true, m_async_count > 0: continue thread has |
| 100 | // control, async threads |
| 101 | // should interrupt it and wait for it to set m_continue_packet to false |
| 102 | // - m_continue_packet == false, m_async_count > 0: async threads have |
| 103 | // control, continue |
| 104 | // thread needs to wait for them to finish (m_async_count goes down to 0). |
| 105 | std::mutex m_mutex; |
| 106 | std::condition_variable m_cv; |
| 107 | // Packet with which to resume after an async interrupt. Can be changed by an |
| 108 | // async thread |
| 109 | // e.g. to inject a signal. |
| 110 | std::string m_continue_packet; |
| 111 | // When was the interrupt packet sent. Used to make sure we time out if the |
| 112 | // stub does not |
| 113 | // respond to interrupt requests. |
| 114 | std::chrono::time_point<std::chrono::steady_clock> m_interrupt_time; |
| 115 | uint32_t m_async_count; |
| 116 | bool m_is_running; |
| 117 | bool m_should_stop; // Whether we should resume after a stop. |
| 118 | // end of continue thread synchronization block |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 119 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 120 | // This handles the synchronization between individual async threads. For now |
| 121 | // they just use a |
| 122 | // simple mutex. |
| 123 | std::recursive_mutex m_async_mutex; |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 124 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 125 | bool ShouldStop(const UnixSignals &signals, |
| 126 | StringExtractorGDBRemote &response); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 127 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 128 | class ContinueLock { |
| 129 | public: |
| 130 | enum class LockResult { Success, Cancelled, Failed }; |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 131 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 132 | explicit ContinueLock(GDBRemoteClientBase &comm); |
| 133 | ~ContinueLock(); |
| 134 | explicit operator bool() { return m_acquired; } |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 135 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 136 | LockResult lock(); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 137 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 138 | void unlock(); |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 139 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 140 | private: |
| 141 | GDBRemoteClientBase &m_comm; |
| 142 | bool m_acquired; |
| 143 | }; |
Pavel Labath | 8c1b6bd | 2016-08-09 12:04:46 +0000 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | } // namespace process_gdb_remote |
| 147 | } // namespace lldb_private |
| 148 | |
| 149 | #endif // liblldb_GDBRemoteCommunicationClient_h_ |