2016-10-02 18:10:27 +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.
|
|
|
|
|
|
|
|
#if !defined(_WIN32) && !defined(_WIN64)
|
|
|
|
#include <unistd.h> // NOLINT
|
|
|
|
#endif // !defined(_WIN32) && !defined(_WIN64)
|
|
|
|
|
2016-10-13 20:31:17 +00:00
|
|
|
#include <locale.h>
|
|
|
|
|
2016-10-02 18:10:27 +00:00
|
|
|
#include "include/libplatform/libplatform.h"
|
|
|
|
#include "include/v8.h"
|
|
|
|
|
|
|
|
#include "src/base/platform/platform.h"
|
|
|
|
#include "src/flags.h"
|
2016-12-18 17:04:40 +00:00
|
|
|
#include "src/inspector/test-interface.h"
|
2016-10-02 18:10:27 +00:00
|
|
|
#include "src/utils.h"
|
|
|
|
#include "src/vector.h"
|
|
|
|
|
|
|
|
#include "test/inspector/inspector-impl.h"
|
|
|
|
#include "test/inspector/task-runner.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-10-19 02:04:34 +00:00
|
|
|
std::vector<TaskRunner*> task_runners;
|
|
|
|
|
|
|
|
void Terminate() {
|
|
|
|
for (size_t i = 0; i < task_runners.size(); ++i) {
|
|
|
|
task_runners[i]->Terminate();
|
|
|
|
task_runners[i]->Join();
|
|
|
|
}
|
|
|
|
std::vector<TaskRunner*> empty;
|
|
|
|
task_runners.swap(empty);
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:10:27 +00:00
|
|
|
void Exit() {
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
2016-10-19 02:04:34 +00:00
|
|
|
Terminate();
|
2016-10-02 18:10:27 +00:00
|
|
|
}
|
|
|
|
|
2016-11-04 19:59:11 +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-10-02 18:10:27 +00:00
|
|
|
class UtilsExtension : public v8::Extension {
|
|
|
|
public:
|
|
|
|
UtilsExtension()
|
|
|
|
: v8::Extension("v8_inspector/utils",
|
2016-10-13 20:31:17 +00:00
|
|
|
"native function print();"
|
|
|
|
"native function quit();"
|
2016-10-18 09:58:20 +00:00
|
|
|
"native function setlocale();"
|
2016-11-04 19:59:11 +00:00
|
|
|
"native function load();"
|
2017-01-17 20:21:38 +00:00
|
|
|
"native function compileAndRunWithOrigin();"
|
2017-01-18 16:57:00 +00:00
|
|
|
"native function setCurrentTimeMSForTest();"
|
|
|
|
"native function schedulePauseOnNextStatement();"
|
|
|
|
"native function cancelPauseOnNextStatement();") {}
|
2016-10-02 18:10:27 +00:00
|
|
|
virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::String> name) {
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
if (name->Equals(context, v8::String::NewFromUtf8(
|
|
|
|
isolate, "print", v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate, UtilsExtension::Print);
|
|
|
|
} else if (name->Equals(context,
|
|
|
|
v8::String::NewFromUtf8(isolate, "quit",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate, UtilsExtension::Quit);
|
2016-10-13 20:31:17 +00:00
|
|
|
} else if (name->Equals(context,
|
|
|
|
v8::String::NewFromUtf8(isolate, "setlocale",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate, UtilsExtension::SetLocale);
|
2016-10-18 09:58:20 +00:00
|
|
|
} else if (name->Equals(context,
|
|
|
|
v8::String::NewFromUtf8(isolate, "load",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate, UtilsExtension::Load);
|
2016-11-04 19:59:11 +00:00
|
|
|
} else if (name->Equals(context, v8::String::NewFromUtf8(
|
|
|
|
isolate, "compileAndRunWithOrigin",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate,
|
|
|
|
UtilsExtension::CompileAndRunWithOrigin);
|
2017-01-17 20:21:38 +00:00
|
|
|
} else if (name->Equals(context, v8::String::NewFromUtf8(
|
|
|
|
isolate, "setCurrentTimeMSForTest",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate,
|
|
|
|
UtilsExtension::SetCurrentTimeMSForTest);
|
2017-01-18 16:57:00 +00:00
|
|
|
} else if (name->Equals(context,
|
|
|
|
v8::String::NewFromUtf8(
|
|
|
|
isolate, "schedulePauseOnNextStatement",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(
|
|
|
|
isolate, UtilsExtension::SchedulePauseOnNextStatement);
|
|
|
|
} else if (name->Equals(context, v8::String::NewFromUtf8(
|
|
|
|
isolate, "cancelPauseOnNextStatement",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(
|
|
|
|
isolate, UtilsExtension::CancelPauseOnNextStatement);
|
2016-10-02 18:10:27 +00:00
|
|
|
}
|
|
|
|
return v8::Local<v8::FunctionTemplate>();
|
|
|
|
}
|
|
|
|
|
2016-11-04 19:59:11 +00:00
|
|
|
static void set_backend_task_runner(TaskRunner* runner) {
|
|
|
|
backend_runner_ = runner;
|
|
|
|
}
|
|
|
|
|
2017-01-17 20:21:38 +00:00
|
|
|
static void set_inspector_client(InspectorClientImpl* client) {
|
|
|
|
inspector_client_ = client;
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:10:27 +00:00
|
|
|
private:
|
2016-11-04 19:59:11 +00:00
|
|
|
static TaskRunner* backend_runner_;
|
2017-01-17 20:21:38 +00:00
|
|
|
static InspectorClientImpl* inspector_client_;
|
2016-11-04 19:59:11 +00:00
|
|
|
|
2016-10-02 18:10:27 +00:00
|
|
|
static void Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
for (int i = 0; i < args.Length(); i++) {
|
|
|
|
v8::HandleScope handle_scope(args.GetIsolate());
|
|
|
|
if (i != 0) {
|
|
|
|
printf(" ");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicitly catch potential exceptions in toString().
|
|
|
|
v8::TryCatch try_catch(args.GetIsolate());
|
|
|
|
v8::Local<v8::Value> arg = args[i];
|
|
|
|
v8::Local<v8::String> str_obj;
|
|
|
|
|
|
|
|
if (arg->IsSymbol()) {
|
|
|
|
arg = v8::Local<v8::Symbol>::Cast(arg)->Name();
|
|
|
|
}
|
|
|
|
if (!arg->ToString(args.GetIsolate()->GetCurrentContext())
|
|
|
|
.ToLocal(&str_obj)) {
|
|
|
|
try_catch.ReThrow();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::String::Utf8Value str(str_obj);
|
|
|
|
int n =
|
|
|
|
static_cast<int>(fwrite(*str, sizeof(**str), str.length(), stdout));
|
|
|
|
if (n != str.length()) {
|
|
|
|
printf("Error in fwrite\n");
|
|
|
|
Quit(args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Quit(const v8::FunctionCallbackInfo<v8::Value>& args) { Exit(); }
|
2016-10-13 20:31:17 +00:00
|
|
|
|
|
|
|
static void SetLocale(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 1 || !args[0]->IsString()) {
|
|
|
|
fprintf(stderr, "Internal error: setlocale get one string argument.");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
v8::String::Utf8Value str(args[0]);
|
|
|
|
setlocale(LC_NUMERIC, *str);
|
|
|
|
}
|
2016-10-18 09:58:20 +00:00
|
|
|
|
|
|
|
static void Load(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 1 || !args[0]->IsString()) {
|
|
|
|
fprintf(stderr, "Internal error: load gets one string argument.");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
v8::String::Utf8Value str(args[0]);
|
|
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
|
|
bool exists = false;
|
|
|
|
std::string filename(*str, str.length());
|
|
|
|
v8::internal::Vector<const char> chars =
|
|
|
|
v8::internal::ReadFile(filename.c_str(), &exists);
|
|
|
|
if (!exists) {
|
|
|
|
isolate->ThrowException(
|
|
|
|
v8::String::NewFromUtf8(isolate, "Error loading file",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ExecuteStringTask task(chars);
|
|
|
|
v8::Global<v8::Context> context(isolate, isolate->GetCurrentContext());
|
|
|
|
task.Run(isolate, context);
|
|
|
|
}
|
2016-11-04 19:59:11 +00:00
|
|
|
|
|
|
|
static void CompileAndRunWithOrigin(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2017-01-31 00:19:41 +00:00
|
|
|
if (args.Length() != 5 || !args[0]->IsString() || !args[1]->IsString() ||
|
|
|
|
!args[2]->IsInt32() || !args[3]->IsInt32() || !args[4]->IsBoolean()) {
|
2016-11-04 19:59:11 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"Internal error: compileAndRunWithOrigin(source, name, line, "
|
2017-01-31 00:19:41 +00:00
|
|
|
"column, is_module).");
|
2016-11-04 19:59:11 +00:00
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
backend_runner_->Append(new ExecuteStringTask(
|
|
|
|
ToVector(args[0].As<v8::String>()), args[1].As<v8::String>(),
|
2017-01-31 00:19:41 +00:00
|
|
|
args[2].As<v8::Int32>(), args[3].As<v8::Int32>(),
|
|
|
|
args[4].As<v8::Boolean>(), nullptr, nullptr));
|
2016-11-04 19:59:11 +00:00
|
|
|
}
|
2017-01-17 20:21:38 +00:00
|
|
|
|
|
|
|
static void SetCurrentTimeMSForTest(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 1 || !args[0]->IsNumber()) {
|
|
|
|
fprintf(stderr, "Internal error: setCurrentTimeMSForTest(time).");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
inspector_client_->setCurrentTimeMSForTest(
|
|
|
|
args[0].As<v8::Number>()->Value());
|
|
|
|
}
|
2017-01-18 16:57:00 +00:00
|
|
|
|
|
|
|
static void SchedulePauseOnNextStatement(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 2 || !args[0]->IsString() || !args[1]->IsString()) {
|
|
|
|
fprintf(
|
|
|
|
stderr,
|
|
|
|
"Internal error: schedulePauseOnNextStatement('reason', 'details').");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
v8::internal::Vector<uint16_t> reason = ToVector(args[0].As<v8::String>());
|
|
|
|
v8_inspector::StringView reason_view(reason.start(), reason.length());
|
|
|
|
v8::internal::Vector<uint16_t> details = ToVector(args[1].As<v8::String>());
|
|
|
|
v8_inspector::StringView details_view(details.start(), details.length());
|
|
|
|
inspector_client_->session()->schedulePauseOnNextStatement(reason_view,
|
|
|
|
details_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void CancelPauseOnNextStatement(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 0) {
|
|
|
|
fprintf(stderr, "Internal error: cancelPauseOnNextStatement().");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
inspector_client_->session()->cancelPauseOnNextStatement();
|
|
|
|
}
|
2016-10-02 18:10:27 +00:00
|
|
|
};
|
|
|
|
|
2016-11-04 19:59:11 +00:00
|
|
|
TaskRunner* UtilsExtension::backend_runner_ = nullptr;
|
2017-01-17 20:21:38 +00:00
|
|
|
InspectorClientImpl* UtilsExtension::inspector_client_ = nullptr;
|
2016-11-04 19:59:11 +00:00
|
|
|
|
2016-12-13 19:40:14 +00:00
|
|
|
class SetTimeoutTask : public AsyncTask {
|
2016-10-02 18:10:27 +00:00
|
|
|
public:
|
2016-12-13 19:40:14 +00:00
|
|
|
SetTimeoutTask(v8::Isolate* isolate, v8::Local<v8::Function> function,
|
|
|
|
const char* task_name, v8_inspector::V8Inspector* inspector)
|
|
|
|
: AsyncTask(task_name, inspector), function_(isolate, function) {}
|
2016-10-02 18:10:27 +00:00
|
|
|
virtual ~SetTimeoutTask() {}
|
|
|
|
|
|
|
|
bool is_inspector_task() final { return false; }
|
|
|
|
|
2016-12-13 19:40:14 +00:00
|
|
|
void AsyncRun(v8::Isolate* isolate,
|
|
|
|
const v8::Global<v8::Context>& global_context) override {
|
2016-10-02 18:10:27 +00:00
|
|
|
v8::MicrotasksScope microtasks_scope(isolate,
|
|
|
|
v8::MicrotasksScope::kRunMicrotasks);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Local<v8::Context> context = global_context.Get(isolate);
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
|
|
|
|
v8::Local<v8::Function> function = function_.Get(isolate);
|
|
|
|
v8::MaybeLocal<v8::Value> result;
|
|
|
|
v8_inspector::V8Inspector* inspector =
|
|
|
|
InspectorClientImpl::InspectorFromContext(context);
|
|
|
|
if (inspector) inspector->willExecuteScript(context, function->ScriptId());
|
|
|
|
result = function->Call(context, context->Global(), 0, nullptr);
|
|
|
|
if (inspector) inspector->didExecuteScript(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
v8::Global<v8::Function> function_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SetTimeoutExtension : public v8::Extension {
|
|
|
|
public:
|
|
|
|
SetTimeoutExtension()
|
|
|
|
: v8::Extension("v8_inspector/setTimeout",
|
|
|
|
"native function setTimeout();") {}
|
|
|
|
|
|
|
|
virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::String> name) {
|
|
|
|
return v8::FunctionTemplate::New(isolate, SetTimeoutExtension::SetTimeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void SetTimeout(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2016-10-05 15:07:57 +00:00
|
|
|
if (args.Length() != 2 || !args[1]->IsNumber() ||
|
|
|
|
(!args[0]->IsFunction() && !args[0]->IsString()) ||
|
2016-10-02 18:10:27 +00:00
|
|
|
args[1].As<v8::Number>()->Value() != 0.0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Internal error: only setTimeout(function, 0) is supported.");
|
|
|
|
Exit();
|
|
|
|
}
|
2016-11-04 19:59:11 +00:00
|
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
2016-12-13 19:40:14 +00:00
|
|
|
std::unique_ptr<TaskRunner::Task> task;
|
|
|
|
v8_inspector::V8Inspector* inspector =
|
|
|
|
InspectorClientImpl::InspectorFromContext(context);
|
2016-10-05 15:07:57 +00:00
|
|
|
if (args[0]->IsFunction()) {
|
2016-12-13 19:40:14 +00:00
|
|
|
task.reset(new SetTimeoutTask(isolate,
|
|
|
|
v8::Local<v8::Function>::Cast(args[0]),
|
|
|
|
"setTimeout", inspector));
|
2016-11-04 19:59:11 +00:00
|
|
|
} else {
|
2016-12-13 19:40:14 +00:00
|
|
|
task.reset(new ExecuteStringTask(
|
2016-11-04 19:59:11 +00:00
|
|
|
ToVector(args[0].As<v8::String>()), v8::String::Empty(isolate),
|
2016-12-13 19:40:14 +00:00
|
|
|
v8::Integer::New(isolate, 0), v8::Integer::New(isolate, 0),
|
2017-01-31 00:19:41 +00:00
|
|
|
v8::Boolean::New(isolate, false), "setTimeout", inspector));
|
2016-10-05 15:07:57 +00:00
|
|
|
}
|
2016-12-13 19:40:14 +00:00
|
|
|
TaskRunner::FromContext(context)->Append(task.release());
|
2016-10-02 18:10:27 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-02-04 01:21:58 +00:00
|
|
|
bool StrictAccessCheck(v8::Local<v8::Context> accessing_context,
|
|
|
|
v8::Local<v8::Object> accessed_object,
|
|
|
|
v8::Local<v8::Value> data) {
|
|
|
|
CHECK(accessing_context.IsEmpty());
|
|
|
|
return accessing_context.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2016-10-26 20:26:56 +00:00
|
|
|
class InspectorExtension : public v8::Extension {
|
|
|
|
public:
|
|
|
|
InspectorExtension()
|
|
|
|
: v8::Extension("v8_inspector/inspector",
|
|
|
|
"native function attachInspector();"
|
2016-12-18 17:04:40 +00:00
|
|
|
"native function detachInspector();"
|
2017-01-18 16:57:00 +00:00
|
|
|
"native function setMaxAsyncTaskStacks();"
|
2017-02-04 01:21:58 +00:00
|
|
|
"native function breakProgram();"
|
2017-02-08 01:42:54 +00:00
|
|
|
"native function createObjectWithStrictCheck();"
|
|
|
|
"native function callWithScheduledBreak();") {}
|
2016-10-26 20:26:56 +00:00
|
|
|
|
|
|
|
virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::String> name) {
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
if (name->Equals(context,
|
|
|
|
v8::String::NewFromUtf8(isolate, "attachInspector",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate, InspectorExtension::Attach);
|
|
|
|
} else if (name->Equals(context,
|
|
|
|
v8::String::NewFromUtf8(isolate, "detachInspector",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate, InspectorExtension::Detach);
|
2016-12-18 17:04:40 +00:00
|
|
|
} else if (name->Equals(context, v8::String::NewFromUtf8(
|
|
|
|
isolate, "setMaxAsyncTaskStacks",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(
|
|
|
|
isolate, InspectorExtension::SetMaxAsyncTaskStacks);
|
2017-01-18 16:57:00 +00:00
|
|
|
} else if (name->Equals(context,
|
|
|
|
v8::String::NewFromUtf8(isolate, "breakProgram",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(isolate,
|
|
|
|
InspectorExtension::BreakProgram);
|
2017-02-04 01:21:58 +00:00
|
|
|
} else if (name->Equals(context, v8::String::NewFromUtf8(
|
|
|
|
isolate, "createObjectWithStrictCheck",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(
|
|
|
|
isolate, InspectorExtension::CreateObjectWithStrictCheck);
|
2017-02-08 01:42:54 +00:00
|
|
|
} else if (name->Equals(context, v8::String::NewFromUtf8(
|
|
|
|
isolate, "callWithScheduledBreak",
|
|
|
|
v8::NewStringType::kNormal)
|
|
|
|
.ToLocalChecked())
|
|
|
|
.FromJust()) {
|
|
|
|
return v8::FunctionTemplate::New(
|
|
|
|
isolate, InspectorExtension::CallWithScheduledBreak);
|
2016-10-26 20:26:56 +00:00
|
|
|
}
|
|
|
|
return v8::Local<v8::FunctionTemplate>();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void Attach(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
v8_inspector::V8Inspector* inspector =
|
|
|
|
InspectorClientImpl::InspectorFromContext(context);
|
|
|
|
if (!inspector) {
|
|
|
|
fprintf(stderr, "Inspector client not found - cannot attach!");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
inspector->contextCreated(
|
|
|
|
v8_inspector::V8ContextInfo(context, 1, v8_inspector::StringView()));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Detach(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
|
|
|
v8_inspector::V8Inspector* inspector =
|
|
|
|
InspectorClientImpl::InspectorFromContext(context);
|
|
|
|
if (!inspector) {
|
|
|
|
fprintf(stderr, "Inspector client not found - cannot detach!");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
inspector->contextDestroyed(context);
|
|
|
|
}
|
2016-12-18 17:04:40 +00:00
|
|
|
|
|
|
|
static void SetMaxAsyncTaskStacks(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 1 || !args[0]->IsInt32()) {
|
|
|
|
fprintf(stderr, "Internal error: setMaxAsyncTaskStacks(max).");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
v8_inspector::V8Inspector* inspector =
|
|
|
|
InspectorClientImpl::InspectorFromContext(
|
|
|
|
args.GetIsolate()->GetCurrentContext());
|
|
|
|
CHECK(inspector);
|
|
|
|
v8_inspector::SetMaxAsyncTaskStacksForTest(
|
|
|
|
inspector, args[0].As<v8::Int32>()->Value());
|
|
|
|
}
|
2017-01-18 16:57:00 +00:00
|
|
|
|
|
|
|
static void BreakProgram(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 2 || !args[0]->IsString() || !args[1]->IsString()) {
|
|
|
|
fprintf(stderr, "Internal error: breakProgram('reason', 'details').");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
v8_inspector::V8InspectorSession* session =
|
|
|
|
InspectorClientImpl::SessionFromContext(
|
|
|
|
args.GetIsolate()->GetCurrentContext());
|
|
|
|
CHECK(session);
|
|
|
|
|
|
|
|
v8::internal::Vector<uint16_t> reason = ToVector(args[0].As<v8::String>());
|
|
|
|
v8_inspector::StringView reason_view(reason.start(), reason.length());
|
|
|
|
v8::internal::Vector<uint16_t> details = ToVector(args[1].As<v8::String>());
|
|
|
|
v8_inspector::StringView details_view(details.start(), details.length());
|
|
|
|
session->breakProgram(reason_view, details_view);
|
|
|
|
}
|
2017-02-04 01:21:58 +00:00
|
|
|
|
|
|
|
static void CreateObjectWithStrictCheck(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 0) {
|
|
|
|
fprintf(stderr, "Internal error: createObjectWithStrictCheck().");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
v8::Local<v8::ObjectTemplate> templ =
|
|
|
|
v8::ObjectTemplate::New(args.GetIsolate());
|
|
|
|
templ->SetAccessCheckCallback(&StrictAccessCheck);
|
|
|
|
args.GetReturnValue().Set(
|
|
|
|
templ->NewInstance(args.GetIsolate()->GetCurrentContext())
|
|
|
|
.ToLocalChecked());
|
|
|
|
}
|
2017-02-08 01:42:54 +00:00
|
|
|
|
|
|
|
static void CallWithScheduledBreak(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
|
|
|
if (args.Length() != 3 || !args[0]->IsFunction() || !args[1]->IsString() ||
|
|
|
|
!args[2]->IsString()) {
|
|
|
|
fprintf(stderr, "Internal error: breakProgram('reason', 'details').");
|
|
|
|
Exit();
|
|
|
|
}
|
|
|
|
v8_inspector::V8InspectorSession* session =
|
|
|
|
InspectorClientImpl::SessionFromContext(
|
|
|
|
args.GetIsolate()->GetCurrentContext());
|
|
|
|
CHECK(session);
|
|
|
|
|
|
|
|
v8::internal::Vector<uint16_t> reason = ToVector(args[1].As<v8::String>());
|
|
|
|
v8_inspector::StringView reason_view(reason.start(), reason.length());
|
|
|
|
v8::internal::Vector<uint16_t> details = ToVector(args[2].As<v8::String>());
|
|
|
|
v8_inspector::StringView details_view(details.start(), details.length());
|
|
|
|
session->schedulePauseOnNextStatement(reason_view, details_view);
|
|
|
|
v8::Local<v8::Context> context = args.GetIsolate()->GetCurrentContext();
|
|
|
|
v8::MaybeLocal<v8::Value> result;
|
|
|
|
result = args[0].As<v8::Function>()->Call(context, context->Global(), 0,
|
|
|
|
nullptr);
|
|
|
|
session->cancelPauseOnNextStatement();
|
|
|
|
}
|
2016-10-26 20:26:56 +00:00
|
|
|
};
|
|
|
|
|
2016-10-07 21:16:41 +00:00
|
|
|
v8::Local<v8::String> ToString(v8::Isolate* isolate,
|
|
|
|
const v8_inspector::StringView& string) {
|
2016-10-02 18:10:27 +00:00
|
|
|
if (string.is8Bit())
|
2016-10-07 21:16:41 +00:00
|
|
|
return v8::String::NewFromOneByte(isolate, string.characters8(),
|
|
|
|
v8::NewStringType::kNormal,
|
2016-10-07 22:15:43 +00:00
|
|
|
static_cast<int>(string.length()))
|
2016-10-07 21:16:41 +00:00
|
|
|
.ToLocalChecked();
|
|
|
|
else
|
|
|
|
return v8::String::NewFromTwoByte(isolate, string.characters16(),
|
|
|
|
v8::NewStringType::kNormal,
|
2016-10-07 22:15:43 +00:00
|
|
|
static_cast<int>(string.length()))
|
2016-10-07 21:16:41 +00:00
|
|
|
.ToLocalChecked();
|
2016-10-02 18:10:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class FrontendChannelImpl : public InspectorClientImpl::FrontendChannel {
|
|
|
|
public:
|
|
|
|
explicit FrontendChannelImpl(TaskRunner* frontend_task_runner)
|
|
|
|
: frontend_task_runner_(frontend_task_runner) {}
|
|
|
|
virtual ~FrontendChannelImpl() {}
|
|
|
|
|
|
|
|
void SendMessageToFrontend(const v8_inspector::StringView& message) final {
|
2016-10-07 21:16:41 +00:00
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
|
|
v8::HandleScope scope(v8::Isolate::GetCurrent());
|
|
|
|
|
|
|
|
v8::Local<v8::String> prefix =
|
|
|
|
v8::String::NewFromUtf8(isolate, "InspectorTest._dispatchMessage(",
|
|
|
|
v8::NewStringType::kInternalized)
|
|
|
|
.ToLocalChecked();
|
|
|
|
v8::Local<v8::String> message_string = ToString(isolate, message);
|
|
|
|
v8::Local<v8::String> suffix =
|
|
|
|
v8::String::NewFromUtf8(isolate, ")", v8::NewStringType::kInternalized)
|
|
|
|
.ToLocalChecked();
|
|
|
|
|
|
|
|
v8::Local<v8::String> result = v8::String::Concat(prefix, message_string);
|
|
|
|
result = v8::String::Concat(result, suffix);
|
|
|
|
|
2017-01-31 00:19:41 +00:00
|
|
|
frontend_task_runner_->Append(new ExecuteStringTask(
|
|
|
|
ToVector(result), v8::String::Empty(isolate),
|
|
|
|
v8::Integer::New(isolate, 0), v8::Integer::New(isolate, 0),
|
|
|
|
v8::Boolean::New(isolate, false), nullptr, nullptr));
|
2016-10-02 18:10:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
TaskRunner* frontend_task_runner_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
v8::V8::InitializeICUDefaultLocation(argv[0]);
|
|
|
|
v8::Platform* platform = v8::platform::CreateDefaultPlatform();
|
|
|
|
v8::V8::InitializePlatform(platform);
|
2016-10-18 20:07:41 +00:00
|
|
|
v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
|
2016-10-02 18:10:27 +00:00
|
|
|
v8::V8::InitializeExternalStartupData(argv[0]);
|
|
|
|
v8::V8::Initialize();
|
|
|
|
|
|
|
|
SetTimeoutExtension set_timeout_extension;
|
|
|
|
v8::RegisterExtension(&set_timeout_extension);
|
2016-10-26 20:26:56 +00:00
|
|
|
InspectorExtension inspector_extension;
|
|
|
|
v8::RegisterExtension(&inspector_extension);
|
2016-10-02 18:10:27 +00:00
|
|
|
UtilsExtension utils_extension;
|
|
|
|
v8::RegisterExtension(&utils_extension);
|
|
|
|
SendMessageToBackendExtension send_message_to_backend_extension;
|
|
|
|
v8::RegisterExtension(&send_message_to_backend_extension);
|
|
|
|
|
|
|
|
v8::base::Semaphore ready_semaphore(0);
|
|
|
|
|
2016-10-26 20:26:56 +00:00
|
|
|
const char* backend_extensions[] = {"v8_inspector/setTimeout",
|
|
|
|
"v8_inspector/inspector"};
|
2016-10-02 18:10:27 +00:00
|
|
|
v8::ExtensionConfiguration backend_configuration(
|
|
|
|
arraysize(backend_extensions), backend_extensions);
|
2016-10-05 15:07:57 +00:00
|
|
|
TaskRunner backend_runner(&backend_configuration, false, &ready_semaphore);
|
2016-10-02 18:10:27 +00:00
|
|
|
ready_semaphore.Wait();
|
|
|
|
SendMessageToBackendExtension::set_backend_task_runner(&backend_runner);
|
2016-11-04 19:59:11 +00:00
|
|
|
UtilsExtension::set_backend_task_runner(&backend_runner);
|
2016-10-02 18:10:27 +00:00
|
|
|
|
|
|
|
const char* frontend_extensions[] = {"v8_inspector/utils",
|
|
|
|
"v8_inspector/frontend"};
|
|
|
|
v8::ExtensionConfiguration frontend_configuration(
|
|
|
|
arraysize(frontend_extensions), frontend_extensions);
|
2016-10-05 15:07:57 +00:00
|
|
|
TaskRunner frontend_runner(&frontend_configuration, true, &ready_semaphore);
|
2016-10-02 18:10:27 +00:00
|
|
|
ready_semaphore.Wait();
|
|
|
|
|
|
|
|
FrontendChannelImpl frontend_channel(&frontend_runner);
|
|
|
|
InspectorClientImpl inspector_client(&backend_runner, &frontend_channel,
|
|
|
|
&ready_semaphore);
|
|
|
|
ready_semaphore.Wait();
|
2017-01-17 20:21:38 +00:00
|
|
|
UtilsExtension::set_inspector_client(&inspector_client);
|
2016-10-02 18:10:27 +00:00
|
|
|
|
2016-10-19 02:04:34 +00:00
|
|
|
task_runners.push_back(&frontend_runner);
|
|
|
|
task_runners.push_back(&backend_runner);
|
|
|
|
|
2016-10-02 18:10:27 +00:00
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
|
|
if (argv[i][0] == '-') break;
|
|
|
|
|
|
|
|
bool exists = false;
|
|
|
|
v8::internal::Vector<const char> chars =
|
|
|
|
v8::internal::ReadFile(argv[i], &exists, true);
|
|
|
|
if (!exists) {
|
|
|
|
fprintf(stderr, "Internal error: script file doesn't exists: %s\n",
|
|
|
|
argv[i]);
|
|
|
|
Exit();
|
|
|
|
}
|
2016-10-07 21:16:41 +00:00
|
|
|
frontend_runner.Append(new ExecuteStringTask(chars));
|
2016-10-02 18:10:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
frontend_runner.Join();
|
2016-10-19 02:04:34 +00:00
|
|
|
backend_runner.Join();
|
2016-10-02 18:10:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|