GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: inspector/main_thread_interface.cc Lines: 157 158 99.4 %
Date: 2022-09-18 04:22:26 Branches: 25 36 69.4 %

Line Branch Exec Source
1
#include "main_thread_interface.h"
2
3
#include "env-inl.h"
4
#include "node_mutex.h"
5
#include "v8-inspector.h"
6
#include "util-inl.h"
7
8
#include <unicode/unistr.h>
9
10
#include <functional>
11
#include <memory>
12
13
namespace node {
14
namespace inspector {
15
namespace {
16
17
using v8_inspector::StringBuffer;
18
using v8_inspector::StringView;
19
20
template <typename T>
21
class DeletableWrapper : public Deletable {
22
 public:
23
96
  explicit DeletableWrapper(std::unique_ptr<T> object)
24
96
                        : object_(std::move(object)) {}
25
96
  ~DeletableWrapper() override = default;
26
27
1942
  static T* get(MainThreadInterface* thread, int id) {
28
    return
29
1942
        static_cast<DeletableWrapper<T>*>(thread->GetObject(id))->object_.get();
30
  }
31
32
 private:
33
  std::unique_ptr<T> object_;
34
};
35
36
template <typename T>
37
96
std::unique_ptr<Deletable> WrapInDeletable(std::unique_ptr<T> object) {
38
  return std::unique_ptr<DeletableWrapper<T>>(
39
96
      new DeletableWrapper<T>(std::move(object)));
40
}
41
42
template <typename Factory>
43
class CreateObjectRequest : public Request {
44
 public:
45
33
  CreateObjectRequest(int object_id, Factory factory)
46
33
                      : object_id_(object_id), factory_(std::move(factory)) {}
47
48
33
  void Call(MainThreadInterface* thread) override {
49
33
    thread->AddObject(object_id_, WrapInDeletable(factory_(thread)));
50
33
  }
51
52
 private:
53
  int object_id_;
54
  Factory factory_;
55
};
56
57
template <typename Factory>
58
33
std::unique_ptr<Request> NewCreateRequest(int object_id, Factory factory) {
59
  return std::unique_ptr<Request>(
60
33
      new CreateObjectRequest<Factory>(object_id, std::move(factory)));
61
}
62
63
class DeleteRequest : public Request {
64
 public:
65
48
  explicit DeleteRequest(int object_id) : object_id_(object_id) {}
66
67
35
  void Call(MainThreadInterface* thread) override {
68
35
    thread->RemoveObject(object_id_);
69
35
  }
70
71
 private:
72
  int object_id_;
73
};
74
75
template <typename Target, typename Fn>
76
class CallRequest : public Request {
77
 public:
78
1942
  CallRequest(int id, Fn fn) : id_(id), fn_(std::move(fn)) {}
79
80
1942
  void Call(MainThreadInterface* thread) override {
81
1942
    fn_(DeletableWrapper<Target>::get(thread, id_));
82
1942
  }
83
84
 private:
85
  int id_;
86
  Fn fn_;
87
};
88
89
template <typename T>
90
class AnotherThreadObjectReference {
91
 public:
92
96
  AnotherThreadObjectReference(
93
      std::shared_ptr<MainThreadHandle> thread, int object_id)
94
96
      : thread_(thread), object_id_(object_id) {}
95
96
  template <typename Factory>
97
33
  AnotherThreadObjectReference(
98
      std::shared_ptr<MainThreadHandle> thread, Factory factory)
99
33
      : AnotherThreadObjectReference(thread, thread->newObjectId()) {
100
33
    thread_->Post(NewCreateRequest(object_id_, std::move(factory)));
101
33
  }
102
  AnotherThreadObjectReference(AnotherThreadObjectReference&) = delete;
103
104
96
  ~AnotherThreadObjectReference() {
105
    // Disappearing thread may cause a memory leak
106
96
    thread_->Post(std::make_unique<DeleteRequest>(object_id_));
107
96
  }
108
109
  template <typename Fn>
110
1942
  void Call(Fn fn) const {
111
    using Request = CallRequest<T, Fn>;
112
5826
    thread_->Post(std::unique_ptr<Request>(
113
3884
        new Request(object_id_, std::move(fn))));
114
1942
  }
115
116
  template <typename Arg>
117
378
  void Call(void (T::*fn)(Arg), Arg argument) const {
118
378
    Call(std::bind(Apply<Arg>, std::placeholders::_1, fn, std::move(argument)));
119
378
  }
120
121
 private:
122
  // This has to use non-const reference to support std::bind with non-copyable
123
  // types
124
  template <typename Argument>
125
378
  static void Apply(T* target, void (T::*fn)(Argument),
126
    /* NOLINT (runtime/references) */ Argument& argument) {
127
378
    (target->*fn)(std::move(argument));
128
378
  }
129
130
  std::shared_ptr<MainThreadHandle> thread_;
131
  const int object_id_;
132
};
133
134
class MainThreadSessionState {
135
 public:
136
33
  MainThreadSessionState(MainThreadInterface* thread, bool prevent_shutdown)
137
33
                         : thread_(thread),
138
33
                           prevent_shutdown_(prevent_shutdown) {}
139
140
33
  static std::unique_ptr<MainThreadSessionState> Create(
141
      MainThreadInterface* thread, bool prevent_shutdown) {
142
33
    return std::make_unique<MainThreadSessionState>(thread, prevent_shutdown);
143
  }
144
145
33
  void Connect(std::unique_ptr<InspectorSessionDelegate> delegate) {
146
33
    Agent* agent = thread_->inspector_agent();
147
33
    if (agent != nullptr)
148
33
      session_ = agent->Connect(std::move(delegate), prevent_shutdown_);
149
33
  }
150
151
156
  void Dispatch(std::unique_ptr<StringBuffer> message) {
152
156
    session_->Dispatch(message->string());
153
156
  }
154
155
 private:
156
  MainThreadInterface* thread_;
157
  bool prevent_shutdown_;
158
  std::unique_ptr<InspectorSession> session_;
159
};
160
161
class CrossThreadInspectorSession : public InspectorSession {
162
 public:
163
33
  CrossThreadInspectorSession(
164
      int id,
165
      std::shared_ptr<MainThreadHandle> thread,
166
      std::unique_ptr<InspectorSessionDelegate> delegate,
167
      bool prevent_shutdown)
168
99
      : state_(thread, std::bind(MainThreadSessionState::Create,
169
                                 std::placeholders::_1,
170
33
                                 prevent_shutdown)) {
171
33
    state_.Call(&MainThreadSessionState::Connect, std::move(delegate));
172
33
  }
173
174
156
  void Dispatch(const StringView& message) override {
175
156
    state_.Call(&MainThreadSessionState::Dispatch,
176
312
                StringBuffer::create(message));
177
156
  }
178
179
 private:
180
  AnotherThreadObjectReference<MainThreadSessionState> state_;
181
};
182
183
class ThreadSafeDelegate : public InspectorSessionDelegate {
184
 public:
185
15
  ThreadSafeDelegate(std::shared_ptr<MainThreadHandle> thread, int object_id)
186
15
                     : thread_(thread), delegate_(thread, object_id) {}
187
188
782
  void SendMessageToFrontend(const v8_inspector::StringView& message) override {
189
782
    delegate_.Call(
190
        [m = StringBuffer::create(message)]
191
782
        (InspectorSessionDelegate* delegate) {
192
782
      delegate->SendMessageToFrontend(m->string());
193
782
    });
194
782
  }
195
196
 private:
197
  std::shared_ptr<MainThreadHandle> thread_;
198
  AnotherThreadObjectReference<InspectorSessionDelegate> delegate_;
199
};
200
}  // namespace
201
202
203
6292
MainThreadInterface::MainThreadInterface(Agent* agent) : agent_(agent) {}
204
205
5628
MainThreadInterface::~MainThreadInterface() {
206
5628
  if (handle_)
207
5628
    handle_->Reset();
208
5628
}
209
210
10922
void MainThreadInterface::Post(std::unique_ptr<Request> request) {
211
10922
  CHECK_NOT_NULL(agent_);
212
21844
  Mutex::ScopedLock scoped_lock(requests_lock_);
213
10922
  bool needs_notify = requests_.empty();
214
10922
  requests_.push_back(std::move(request));
215
10922
  if (needs_notify) {
216
10753
    std::weak_ptr<MainThreadInterface> weak_self {shared_from_this()};
217
10753
    agent_->env()->RequestInterrupt([weak_self](Environment*) {
218
10748
      if (auto iface = weak_self.lock()) iface->DispatchMessages();
219
10748
    });
220
  }
221
10922
  incoming_message_cond_.Broadcast(scoped_lock);
222
10922
}
223
224
119
bool MainThreadInterface::WaitForFrontendEvent() {
225
  // We allow DispatchMessages reentry as we enter the pause. This is important
226
  // to support debugging the code invoked by an inspector call, such
227
  // as Runtime.evaluate
228
119
  dispatching_messages_ = false;
229
119
  if (dispatching_message_queue_.empty()) {
230
238
    Mutex::ScopedLock scoped_lock(requests_lock_);
231
238
    while (requests_.empty()) incoming_message_cond_.Wait(scoped_lock);
232
  }
233
119
  return true;
234
}
235
236
10748
void MainThreadInterface::DispatchMessages() {
237
10748
  if (dispatching_messages_)
238
83
    return;
239
10665
  dispatching_messages_ = true;
240
10665
  bool had_messages = false;
241
21413
  do {
242
21413
    if (dispatching_message_queue_.empty()) {
243
42826
      Mutex::ScopedLock scoped_lock(requests_lock_);
244
21413
      requests_.swap(dispatching_message_queue_);
245
    }
246
21413
    had_messages = !dispatching_message_queue_.empty();
247
32312
    while (!dispatching_message_queue_.empty()) {
248
10899
      MessageQueue::value_type task;
249
10899
      std::swap(dispatching_message_queue_.front(), task);
250
10899
      dispatching_message_queue_.pop_front();
251
252
21798
      v8::SealHandleScope seal_handle_scope(agent_->env()->isolate());
253
10899
      task->Call(this);
254
    }
255
  } while (had_messages);
256
10665
  dispatching_messages_ = false;
257
}
258
259
13670
std::shared_ptr<MainThreadHandle> MainThreadInterface::GetHandle() {
260
13670
  if (handle_ == nullptr)
261
6292
    handle_ = std::make_shared<MainThreadHandle>(this);
262
13670
  return handle_;
263
}
264
265
7313
void MainThreadInterface::AddObject(int id,
266
                                    std::unique_ptr<Deletable> object) {
267
7313
  CHECK_NOT_NULL(object);
268
7313
  managed_objects_[id] = std::move(object);
269
7313
}
270
271
966
void MainThreadInterface::RemoveObject(int id) {
272
966
  CHECK_EQ(1, managed_objects_.erase(id));
273
966
}
274
275
971
Deletable* MainThreadInterface::GetObject(int id) {
276
971
  Deletable* pointer = GetObjectIfExists(id);
277
  // This would mean the object is requested after it was disposed, which is
278
  // a coding error.
279
971
  CHECK_NOT_NULL(pointer);
280
971
  return pointer;
281
}
282
283
975
Deletable* MainThreadInterface::GetObjectIfExists(int id) {
284
975
  auto iterator = managed_objects_.find(id);
285
975
  if (iterator == managed_objects_.end()) {
286
    return nullptr;
287
  }
288
975
  return iterator->second.get();
289
}
290
291
80507
std::unique_ptr<StringBuffer> Utf8ToStringView(const std::string& message) {
292
  icu::UnicodeString utf16 = icu::UnicodeString::fromUTF8(
293
161014
      icu::StringPiece(message.data(), message.length()));
294
80507
  StringView view(reinterpret_cast<const uint16_t*>(utf16.getBuffer()),
295
80507
                  utf16.length());
296
80507
  return StringBuffer::create(view);
297
}
298
299
33
std::unique_ptr<InspectorSession> MainThreadHandle::Connect(
300
    std::unique_ptr<InspectorSessionDelegate> delegate,
301
    bool prevent_shutdown) {
302
  return std::unique_ptr<InspectorSession>(
303
33
      new CrossThreadInspectorSession(++next_session_id_,
304
66
                                      shared_from_this(),
305
33
                                      std::move(delegate),
306
33
                                      prevent_shutdown));
307
}
308
309
16603
bool MainThreadHandle::Post(std::unique_ptr<Request> request) {
310
33206
  Mutex::ScopedLock scoped_lock(block_lock_);
311
16603
  if (!main_thread_)
312
5681
    return false;
313
10922
  main_thread_->Post(std::move(request));
314
10922
  return true;
315
}
316
317
5628
void MainThreadHandle::Reset() {
318
5628
  Mutex::ScopedLock scoped_lock(block_lock_);
319
5628
  main_thread_ = nullptr;
320
5628
}
321
322
std::unique_ptr<InspectorSessionDelegate>
323
15
MainThreadHandle::MakeDelegateThreadSafe(
324
    std::unique_ptr<InspectorSessionDelegate> delegate) {
325
15
  int id = newObjectId();
326
15
  main_thread_->AddObject(id, WrapInDeletable(std::move(delegate)));
327
  return std::unique_ptr<InspectorSessionDelegate>(
328
15
      new ThreadSafeDelegate(shared_from_this(), id));
329
}
330
331
721
bool MainThreadHandle::Expired() {
332
721
  Mutex::ScopedLock scoped_lock(block_lock_);
333
721
  return main_thread_ == nullptr;
334
}
335
}  // namespace inspector
336
}  // namespace node