2016-09-30 15:52:31 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "test/inspector/task-runner.h"
|
|
|
|
|
|
|
|
#if !defined(_WIN32) && !defined(_WIN64)
|
|
|
|
#include <unistd.h> // NOLINT
|
|
|
|
#endif // !defined(_WIN32) && !defined(_WIN64)
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void ReportUncaughtException(v8::Isolate* isolate,
|
|
|
|
const v8::TryCatch& try_catch) {
|
|
|
|
CHECK(try_catch.HasCaught());
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
std::string message = *v8::String::Utf8Value(try_catch.Message()->Get());
|
2017-05-18 23:11:20 +00:00
|
|
|
int line = try_catch.Message()
|
|
|
|
->GetLineNumber(isolate->GetCurrentContext())
|
|
|
|
.FromJust();
|
|
|
|
std::string source_line =
|
|
|
|
*v8::String::Utf8Value(try_catch.Message()
|
|
|
|
->GetSourceLine(isolate->GetCurrentContext())
|
|
|
|
.ToLocalChecked());
|
|
|
|
fprintf(stderr, "Unhandle exception: %s @%s[%d]\n", message.data(),
|
|
|
|
source_line.data(), line);
|
2016-09-30 15:52:31 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 00:19:41 +00:00
|
|
|
v8::internal::Vector<uint16_t> ToVector(v8::Local<v8::String> str) {
|
|
|
|
v8::internal::Vector<uint16_t> buffer =
|
|
|
|
v8::internal::Vector<uint16_t>::New(str->Length());
|
|
|
|
str->Write(buffer.start(), 0, str->Length());
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2016-09-30 15:52:31 +00:00
|
|
|
} // namespace
|
|
|
|
|
2017-05-16 23:14:46 +00:00
|
|
|
TaskRunner::TaskRunner(IsolateData::SetupGlobalTasks setup_global_tasks,
|
|
|
|
bool catch_exceptions,
|
|
|
|
v8::base::Semaphore* ready_semaphore,
|
2017-05-18 23:11:20 +00:00
|
|
|
v8::StartupData* startup_data,
|
2017-05-22 00:48:27 +00:00
|
|
|
IsolateData::FrontendChannel* channel)
|
2017-05-16 23:14:46 +00:00
|
|
|
: Thread(Options("Task Runner")),
|
|
|
|
setup_global_tasks_(std::move(setup_global_tasks)),
|
|
|
|
startup_data_(startup_data),
|
2017-05-18 23:11:20 +00:00
|
|
|
channel_(channel),
|
2017-05-16 23:14:46 +00:00
|
|
|
catch_exceptions_(catch_exceptions),
|
|
|
|
ready_semaphore_(ready_semaphore),
|
|
|
|
data_(nullptr),
|
|
|
|
process_queue_semaphore_(0),
|
|
|
|
nested_loop_count_(0) {
|
|
|
|
Start();
|
2016-09-30 15:52:31 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 23:14:46 +00:00
|
|
|
TaskRunner::~TaskRunner() { Join(); }
|
|
|
|
|
2016-09-30 15:52:31 +00:00
|
|
|
void TaskRunner::Run() {
|
2017-05-18 23:11:20 +00:00
|
|
|
data_.reset(new IsolateData(this, std::move(setup_global_tasks_),
|
|
|
|
startup_data_, channel_));
|
2017-05-16 23:14:46 +00:00
|
|
|
if (ready_semaphore_) ready_semaphore_->Signal();
|
2016-09-30 15:52:31 +00:00
|
|
|
RunMessageLoop(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskRunner::RunMessageLoop(bool only_protocol) {
|
|
|
|
int loop_number = ++nested_loop_count_;
|
2016-10-19 02:04:34 +00:00
|
|
|
while (nested_loop_count_ == loop_number && !is_terminated_.Value()) {
|
2016-09-30 15:52:31 +00:00
|
|
|
TaskRunner::Task* task = GetNext(only_protocol);
|
2016-10-19 02:04:34 +00:00
|
|
|
if (!task) return;
|
2017-05-16 23:14:46 +00:00
|
|
|
v8::Isolate::Scope isolate_scope(isolate());
|
2016-10-05 15:07:57 +00:00
|
|
|
if (catch_exceptions_) {
|
2017-05-16 23:14:46 +00:00
|
|
|
v8::TryCatch try_catch(isolate());
|
2017-05-18 23:11:20 +00:00
|
|
|
task->RunOnIsolate(data_.get());
|
2016-10-05 15:07:57 +00:00
|
|
|
delete task;
|
|
|
|
if (try_catch.HasCaught()) {
|
2017-05-16 23:14:46 +00:00
|
|
|
ReportUncaughtException(isolate(), try_catch);
|
2016-10-05 15:07:57 +00:00
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
_exit(0);
|
|
|
|
}
|
|
|
|
} else {
|
2017-05-18 23:11:20 +00:00
|
|
|
task->RunOnIsolate(data_.get());
|
2016-10-05 15:07:57 +00:00
|
|
|
delete task;
|
2016-09-30 15:52:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskRunner::QuitMessageLoop() {
|
|
|
|
DCHECK(nested_loop_count_ > 0);
|
|
|
|
--nested_loop_count_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TaskRunner::Append(Task* task) {
|
|
|
|
queue_.Enqueue(task);
|
|
|
|
process_queue_semaphore_.Signal();
|
|
|
|
}
|
|
|
|
|
2016-10-19 02:04:34 +00:00
|
|
|
void TaskRunner::Terminate() {
|
|
|
|
is_terminated_.Increment(1);
|
|
|
|
process_queue_semaphore_.Signal();
|
|
|
|
}
|
|
|
|
|
2016-09-30 15:52:31 +00:00
|
|
|
TaskRunner::Task* TaskRunner::GetNext(bool only_protocol) {
|
|
|
|
for (;;) {
|
2016-10-19 02:04:34 +00:00
|
|
|
if (is_terminated_.Value()) return nullptr;
|
2016-09-30 15:52:31 +00:00
|
|
|
if (only_protocol) {
|
|
|
|
Task* task = nullptr;
|
|
|
|
if (queue_.Dequeue(&task)) {
|
|
|
|
if (task->is_inspector_task()) return task;
|
|
|
|
deffered_queue_.Enqueue(task);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Task* task = nullptr;
|
|
|
|
if (deffered_queue_.Dequeue(&task)) return task;
|
|
|
|
if (queue_.Dequeue(&task)) return task;
|
|
|
|
}
|
|
|
|
process_queue_semaphore_.Wait();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-05-18 23:11:20 +00:00
|
|
|
AsyncTask::AsyncTask(IsolateData* data, const char* task_name)
|
|
|
|
: instrumenting_(data && task_name) {
|
|
|
|
if (!instrumenting_) return;
|
2017-05-22 00:48:27 +00:00
|
|
|
data->inspector()->asyncTaskScheduled(
|
2017-05-18 23:11:20 +00:00
|
|
|
v8_inspector::StringView(reinterpret_cast<const uint8_t*>(task_name),
|
|
|
|
strlen(task_name)),
|
|
|
|
this, false);
|
2016-12-13 19:40:14 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 20:38:33 +00:00
|
|
|
void AsyncTask::Run() {
|
2017-05-22 00:48:27 +00:00
|
|
|
if (instrumenting_) data()->inspector()->asyncTaskStarted(this);
|
2017-05-16 20:38:33 +00:00
|
|
|
AsyncRun();
|
2017-05-22 00:48:27 +00:00
|
|
|
if (instrumenting_) data()->inspector()->asyncTaskFinished(this);
|
2016-12-13 19:40:14 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 21:16:41 +00:00
|
|
|
ExecuteStringTask::ExecuteStringTask(
|
2017-05-18 23:11:20 +00:00
|
|
|
IsolateData* data, int context_group_id, const char* task_name,
|
2016-11-04 19:59:11 +00:00
|
|
|
const v8::internal::Vector<uint16_t>& expression,
|
|
|
|
v8::Local<v8::String> name, v8::Local<v8::Integer> line_offset,
|
2017-05-18 23:11:20 +00:00
|
|
|
v8::Local<v8::Integer> column_offset, v8::Local<v8::Boolean> is_module)
|
|
|
|
: AsyncTask(data, task_name),
|
2016-12-13 19:40:14 +00:00
|
|
|
expression_(expression),
|
2016-11-04 19:59:11 +00:00
|
|
|
name_(ToVector(name)),
|
|
|
|
line_offset_(line_offset.As<v8::Int32>()->Value()),
|
2017-01-31 00:19:41 +00:00
|
|
|
column_offset_(column_offset.As<v8::Int32>()->Value()),
|
2017-05-18 23:11:20 +00:00
|
|
|
is_module_(is_module->Value()),
|
|
|
|
context_group_id_(context_group_id) {}
|
2016-09-30 15:52:31 +00:00
|
|
|
|
2016-10-07 21:16:41 +00:00
|
|
|
ExecuteStringTask::ExecuteStringTask(
|
2017-05-18 23:11:20 +00:00
|
|
|
const v8::internal::Vector<const char>& expression, int context_group_id)
|
|
|
|
: AsyncTask(nullptr, nullptr),
|
|
|
|
expression_utf8_(expression),
|
|
|
|
context_group_id_(context_group_id) {}
|
2016-10-07 21:16:41 +00:00
|
|
|
|
2017-05-16 20:38:33 +00:00
|
|
|
void ExecuteStringTask::AsyncRun() {
|
|
|
|
v8::MicrotasksScope microtasks_scope(isolate(),
|
2016-09-30 15:52:31 +00:00
|
|
|
v8::MicrotasksScope::kRunMicrotasks);
|
2017-05-16 20:38:33 +00:00
|
|
|
v8::HandleScope handle_scope(isolate());
|
2017-05-18 23:11:20 +00:00
|
|
|
v8::Local<v8::Context> context = data()->GetContext(context_group_id_);
|
2017-05-16 20:38:33 +00:00
|
|
|
v8::Context::Scope context_scope(context);
|
2016-09-30 15:52:31 +00:00
|
|
|
|
2016-11-04 19:59:11 +00:00
|
|
|
v8::Local<v8::String> name =
|
2017-05-16 20:38:33 +00:00
|
|
|
v8::String::NewFromTwoByte(isolate(), name_.start(),
|
2016-11-04 19:59:11 +00:00
|
|
|
v8::NewStringType::kNormal, name_.length())
|
|
|
|
.ToLocalChecked();
|
2017-05-16 20:38:33 +00:00
|
|
|
v8::Local<v8::Integer> line_offset =
|
|
|
|
v8::Integer::New(isolate(), line_offset_);
|
2016-11-04 19:59:11 +00:00
|
|
|
v8::Local<v8::Integer> column_offset =
|
2017-05-16 20:38:33 +00:00
|
|
|
v8::Integer::New(isolate(), column_offset_);
|
2016-11-04 19:59:11 +00:00
|
|
|
|
2017-01-31 00:19:41 +00:00
|
|
|
v8::ScriptOrigin origin(
|
|
|
|
name, line_offset, column_offset,
|
|
|
|
/* resource_is_shared_cross_origin */ v8::Local<v8::Boolean>(),
|
|
|
|
/* script_id */ v8::Local<v8::Integer>(),
|
|
|
|
/* source_map_url */ v8::Local<v8::Value>(),
|
|
|
|
/* resource_is_opaque */ v8::Local<v8::Boolean>(),
|
|
|
|
/* is_wasm */ v8::Local<v8::Boolean>(),
|
2017-05-16 20:38:33 +00:00
|
|
|
v8::Boolean::New(isolate(), is_module_));
|
2016-10-07 21:16:41 +00:00
|
|
|
v8::Local<v8::String> source;
|
|
|
|
if (expression_.length()) {
|
2017-05-16 20:38:33 +00:00
|
|
|
source = v8::String::NewFromTwoByte(isolate(), expression_.start(),
|
2016-10-07 21:16:41 +00:00
|
|
|
v8::NewStringType::kNormal,
|
|
|
|
expression_.length())
|
|
|
|
.ToLocalChecked();
|
|
|
|
} else {
|
2017-05-16 20:38:33 +00:00
|
|
|
source = v8::String::NewFromUtf8(isolate(), expression_utf8_.start(),
|
2016-10-07 21:16:41 +00:00
|
|
|
v8::NewStringType::kNormal,
|
|
|
|
expression_utf8_.length())
|
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
2016-09-30 15:52:31 +00:00
|
|
|
|
|
|
|
v8::ScriptCompiler::Source scriptSource(source, origin);
|
2017-01-31 00:19:41 +00:00
|
|
|
if (!is_module_) {
|
|
|
|
v8::Local<v8::Script> script;
|
2017-05-16 20:38:33 +00:00
|
|
|
if (!v8::ScriptCompiler::Compile(context, &scriptSource).ToLocal(&script))
|
2017-01-31 00:19:41 +00:00
|
|
|
return;
|
|
|
|
v8::MaybeLocal<v8::Value> result;
|
2017-05-16 20:38:33 +00:00
|
|
|
result = script->Run(context);
|
2017-01-31 00:19:41 +00:00
|
|
|
} else {
|
2017-05-18 23:11:20 +00:00
|
|
|
data()->RegisterModule(context, name_, &scriptSource);
|
2017-01-31 00:19:41 +00:00
|
|
|
}
|
2016-09-30 15:52:31 +00:00
|
|
|
}
|