LLDB mainline
SBEvent.cpp
Go to the documentation of this file.
1//===-- SBEvent.cpp -------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "lldb/API/SBEvent.h"
11#include "lldb/API/SBStream.h"
13
16#include "lldb/Target/Process.h"
18#include "lldb/Utility/Event.h"
19#include "lldb/Utility/Stream.h"
20
21using namespace lldb;
22using namespace lldb_private;
23
25
26SBEvent::SBEvent(uint32_t event_type, const char *cstr, uint32_t cstr_len)
27 : m_event_sp(new Event(
28 event_type, new EventDataBytes(llvm::StringRef(cstr, cstr_len)))),
29 m_opaque_ptr(m_event_sp.get()) {
30 LLDB_INSTRUMENT_VA(this, event_type, cstr, cstr_len);
31}
32
34 : m_event_sp(event_sp), m_opaque_ptr(event_sp.get()) {
35 LLDB_INSTRUMENT_VA(this, event_sp);
36}
37
38SBEvent::SBEvent(Event *event_ptr) : m_opaque_ptr(event_ptr) {
39 LLDB_INSTRUMENT_VA(this, event_ptr);
40}
41
43 : m_event_sp(rhs.m_event_sp), m_opaque_ptr(rhs.m_opaque_ptr) {
44 LLDB_INSTRUMENT_VA(this, rhs);
45}
46
48 LLDB_INSTRUMENT_VA(this, rhs);
49
50 if (this != &rhs) {
53 }
54 return *this;
55}
56
57SBEvent::~SBEvent() = default;
58
61
62 Event *lldb_event = get();
63 if (lldb_event) {
64 EventData *event_data = lldb_event->GetData();
65 if (event_data)
66 return ConstString(lldb_event->GetData()->GetFlavor()).GetCString();
67 }
68 return nullptr;
69}
70
71uint32_t SBEvent::GetType() const {
73
74 const Event *lldb_event = get();
75 uint32_t event_type = 0;
76 if (lldb_event)
77 event_type = lldb_event->GetType();
78
79
80 return event_type;
81}
82
85
86 SBBroadcaster broadcaster;
87 const Event *lldb_event = get();
88 if (lldb_event)
89 broadcaster.reset(lldb_event->GetBroadcaster(), false);
90 return broadcaster;
91}
92
93const char *SBEvent::GetBroadcasterClass() const {
95
96 const Event *lldb_event = get();
97 if (lldb_event)
98 return lldb_event->GetBroadcaster()->GetBroadcasterClass().AsCString();
99 else
100 return "unknown class";
101}
102
104 LLDB_INSTRUMENT_VA(this, broadcaster);
105
106 if (broadcaster)
107 return BroadcasterMatchesRef(*broadcaster);
108 return false;
109}
110
112 LLDB_INSTRUMENT_VA(this, broadcaster);
113
114 Event *lldb_event = get();
115 bool success = false;
116 if (lldb_event)
117 success = lldb_event->BroadcasterIs(broadcaster.get());
118
119
120 return success;
121}
122
124 LLDB_INSTRUMENT_VA(this);
125
126 Event *lldb_event = get();
127 if (lldb_event)
128 lldb_event->Clear();
129}
130
132
134 // There is a dangerous accessor call GetSharedPtr which can be used, so if
135 // we have anything valid in m_event_sp, we must use that since if it gets
136 // used by a function that puts something in there, then it won't update
137 // m_opaque_ptr...
138 if (m_event_sp)
139 m_opaque_ptr = m_event_sp.get();
140
141 return m_opaque_ptr;
142}
143
144void SBEvent::reset(EventSP &event_sp) {
145 m_event_sp = event_sp;
146 m_opaque_ptr = m_event_sp.get();
147}
148
149void SBEvent::reset(Event *event_ptr) {
150 m_opaque_ptr = event_ptr;
151 m_event_sp.reset();
152}
153
154bool SBEvent::IsValid() const {
155 LLDB_INSTRUMENT_VA(this);
156 return this->operator bool();
157}
158SBEvent::operator bool() const {
159 LLDB_INSTRUMENT_VA(this);
160
161 // Do NOT use m_opaque_ptr directly!!! Must use the SBEvent::get() accessor.
162 // See comments in SBEvent::get()....
163 return SBEvent::get() != nullptr;
164}
165
166const char *SBEvent::GetCStringFromEvent(const SBEvent &event) {
167 LLDB_INSTRUMENT_VA(event);
168
169 return ConstString(static_cast<const char *>(
171 .GetCString();
172}
173
175 LLDB_INSTRUMENT_VA(this, description);
176
177 Stream &strm = description.ref();
178
179 if (get()) {
180 m_opaque_ptr->Dump(&strm);
181 } else
182 strm.PutCString("No value");
183
184 return true;
185}
186
187bool SBEvent::GetDescription(SBStream &description) const {
188 LLDB_INSTRUMENT_VA(this, description);
189
190 Stream &strm = description.ref();
191
192 if (get()) {
193 m_opaque_ptr->Dump(&strm);
194 } else
195 strm.PutCString("No value");
196
197 return true;
198}
#define LLDB_INSTRUMENT_VA(...)
void reset(lldb_private::Broadcaster *broadcaster, bool owns)
lldb_private::Broadcaster * get() const
lldb_private::Event * m_opaque_ptr
Definition: SBEvent.h:92
uint32_t GetType() const
Definition: SBEvent.cpp:71
void Clear()
Definition: SBEvent.cpp:123
const char * GetDataFlavor()
Definition: SBEvent.cpp:59
bool GetDescription(lldb::SBStream &description)
Definition: SBEvent.cpp:174
lldb::EventSP m_event_sp
Definition: SBEvent.h:91
lldb_private::Event * get() const
Definition: SBEvent.cpp:133
bool BroadcasterMatchesPtr(const lldb::SBBroadcaster *broadcaster)
Definition: SBEvent.cpp:103
lldb::SBBroadcaster GetBroadcaster() const
Definition: SBEvent.cpp:83
bool BroadcasterMatchesRef(const lldb::SBBroadcaster &broadcaster)
Definition: SBEvent.cpp:111
const char * GetBroadcasterClass() const
Definition: SBEvent.cpp:93
void reset(lldb::EventSP &event_sp)
Definition: SBEvent.cpp:144
bool IsValid() const
Definition: SBEvent.cpp:154
static const char * GetCStringFromEvent(const lldb::SBEvent &event)
Definition: SBEvent.cpp:166
const SBEvent & operator=(const lldb::SBEvent &rhs)
Definition: SBEvent.cpp:47
lldb::EventSP & GetSP() const
Definition: SBEvent.cpp:131
lldb_private::Stream & ref()
Definition: SBStream.cpp:177
virtual ConstString & GetBroadcasterClass() const
This needs to be filled in if you are going to register the broadcaster with the broadcaster manager ...
A uniqued constant string class.
Definition: ConstString.h:40
const char * AsCString(const char *value_if_empty=nullptr) const
Get the string value as a C string.
Definition: ConstString.h:188
const char * GetCString() const
Get the string value as a C string.
Definition: ConstString.h:214
static const void * GetBytesFromEvent(const Event *event_ptr)
Definition: Event.cpp:140
virtual llvm::StringRef GetFlavor() const =0
EventData * GetData()
Definition: Event.h:189
bool BroadcasterIs(Broadcaster *broadcaster)
Definition: Event.h:208
uint32_t GetType() const
Definition: Event.h:195
void Dump(Stream *s) const
Definition: Event.cpp:50
Broadcaster * GetBroadcaster() const
Definition: Event.h:199
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Definition: Stream.cpp:65
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::Event > EventSP
Definition: lldb-forward.h:337
Definition: Debugger.h:53