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"
|
|
|
|
|
2016-12-13 19:40:14 +00:00
|
|
|
#include "test/inspector/inspector-impl.h"
|
|
|
|
|
2016-09-30 15:52:31 +00:00
|
|
|
#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());
|
|
|
|
fprintf(stderr, "Unhandle exception: %s\n", message.data());
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
v8::StartupData* startup_data)
|
|
|
|
: Thread(Options("Task Runner")),
|
|
|
|
setup_global_tasks_(std::move(setup_global_tasks)),
|
|
|
|
startup_data_(startup_data),
|
|
|
|
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-16 23:14:46 +00:00
|
|
|
data_.reset(
|
|
|
|
new IsolateData(this, std::move(setup_global_tasks_), startup_data_));
|
|
|
|
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate());
|
|
|
|
v8::HandleScope handle_scope(isolate());
|
|
|
|
default_context_group_id_ = data_->CreateContextGroup();
|
|
|
|
|
|
|
|
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-16 20:38:33 +00:00
|
|
|
task->RunOnTaskRunner(this);
|
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-16 20:38:33 +00:00
|
|
|
task->RunOnTaskRunner(this);
|
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;
|
|
|
|
}
|
|
|
|
|
2016-12-13 19:40:14 +00:00
|
|
|
AsyncTask::AsyncTask(const char* task_name,
|
|
|
|
v8_inspector::V8Inspector* inspector)
|
|
|
|
: inspector_(task_name ? inspector : nullptr) {
|
|
|
|
if (inspector_) {
|
|
|
|
inspector_->asyncTaskScheduled(
|
|
|
|
v8_inspector::StringView(reinterpret_cast<const uint8_t*>(task_name),
|
|
|
|
strlen(task_name)),
|
|
|
|
this, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-16 20:38:33 +00:00
|
|
|
void AsyncTask::Run() {
|
2016-12-13 19:40:14 +00:00
|
|
|
if (inspector_) inspector_->asyncTaskStarted(this);
|
2017-05-16 20:38:33 +00:00
|
|
|
AsyncRun();
|
2016-12-13 19:40:14 +00:00
|
|
|
if (inspector_) inspector_->asyncTaskFinished(this);
|
|
|
|
}
|
|
|
|
|
2016-10-07 21:16:41 +00:00
|
|
|
ExecuteStringTask::ExecuteStringTask(
|
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-01-31 00:19:41 +00:00
|
|
|
v8::Local<v8::Integer> column_offset, v8::Local<v8::Boolean> is_module,
|
|
|
|
const char* task_name, v8_inspector::V8Inspector* inspector)
|
2016-12-13 19:40:14 +00:00
|
|
|
: AsyncTask(task_name, inspector),
|
|
|
|
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()),
|
|
|
|
is_module_(is_module->Value()) {}
|
2016-09-30 15:52:31 +00:00
|
|
|
|
2016-10-07 21:16:41 +00:00
|
|
|
ExecuteStringTask::ExecuteStringTask(
|
|
|
|
const v8::internal::Vector<const char>& expression)
|
2017-01-31 00:19:41 +00:00
|
|
|
: AsyncTask(nullptr, nullptr), expression_utf8_(expression) {}
|
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());
|
|
|
|
v8::Local<v8::Context> context = default_context();
|
|
|
|
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-16 23:14:46 +00:00
|
|
|
IsolateData::FromContext(context)->RegisterModule(context, name_,
|
|
|
|
&scriptSource);
|
2017-01-31 00:19:41 +00:00
|
|
|
}
|
2016-09-30 15:52:31 +00:00
|
|
|
}
|