Chromium Code Reviews| Index: test/inspector-protocol/inspector-impl.cc |
| diff --git a/test/inspector-protocol/inspector-impl.cc b/test/inspector-protocol/inspector-impl.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6aafadf449e2532ee4da6d40ca9be6921740e296 |
| --- /dev/null |
| +++ b/test/inspector-protocol/inspector-impl.cc |
| @@ -0,0 +1,146 @@ |
| +// 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-protocol/inspector-impl.h" |
| + |
| +#include "include/v8.h" |
| +#include "src/inspector/string-16.h" |
| + |
| +namespace { |
| + |
| +const int kInspectorClientIndex = v8::Context::kDebugIdIndex + 1; |
| + |
| +class ChannelImpl final : public v8_inspector::V8Inspector::Channel { |
| + public: |
| + explicit ChannelImpl(InspectorClientImpl::FrontendChannel* frontend_channel) |
| + : frontend_channel_(frontend_channel) {} |
| + virtual ~ChannelImpl() {} |
| + |
| + private: |
| + void sendProtocolResponse(int callId, |
| + const v8_inspector::StringView& message) override { |
| + frontend_channel_->SendMessageToFrontend(message); |
| + } |
| + void sendProtocolNotification( |
| + const v8_inspector::StringView& message) override { |
| + frontend_channel_->SendMessageToFrontend(message); |
| + } |
| + void flushProtocolNotifications() override {} |
| + |
| + InspectorClientImpl::FrontendChannel* frontend_channel_; |
| + DISALLOW_COPY_AND_ASSIGN(ChannelImpl); |
| +}; |
| + |
| +} // namespace |
| + |
| +class ConnectTask : public TaskRunner::Task { |
| + public: |
| + ConnectTask(InspectorClientImpl* client, v8::base::Semaphore* ready_semaphore) |
| + : client_(client), ready_semaphore_(ready_semaphore) {} |
| + virtual ~ConnectTask() {} |
| + |
| + bool is_inspector_task() final { return true; } |
| + |
| + void Run(v8::Isolate* isolate, |
| + const v8::Global<v8::Context>& global_context) { |
| + v8::HandleScope handle_scope(isolate); |
| + v8::Local<v8::Context> context = global_context.Get(isolate); |
| + client_->connect(context); |
| + if (ready_semaphore_) ready_semaphore_->Signal(); |
| + } |
| + |
| + private: |
| + InspectorClientImpl* client_; |
| + v8::base::Semaphore* ready_semaphore_; |
| +}; |
| + |
| +InspectorClientImpl::InspectorClientImpl(TaskRunner* task_runner, |
| + FrontendChannel* frontend_channel, |
| + v8::base::Semaphore* ready_semaphore) |
| + : isolate_(nullptr), |
| + task_runner_(task_runner), |
| + frontend_channel_(frontend_channel) { |
| + task_runner_->Append(new ConnectTask(this, ready_semaphore)); |
| +} |
| + |
| +InspectorClientImpl::~InspectorClientImpl() {} |
| + |
| +void InspectorClientImpl::connect(v8::Local<v8::Context> context) { |
| + isolate_ = context->GetIsolate(); |
| + channel_.reset(new ChannelImpl(frontend_channel_)); |
| + |
| + inspector_ = v8_inspector::V8Inspector::create(isolate_, this); |
| + session_ = inspector_->connect(1, channel_.get(), v8_inspector::StringView()); |
| + |
| + context->SetAlignedPointerInEmbedderData(kInspectorClientIndex, this); |
| + inspector_->contextCreated( |
| + v8_inspector::V8ContextInfo(context, 1, v8_inspector::StringView())); |
| + context_.Reset(isolate_, context); |
| +} |
| + |
| +v8::Local<v8::Context> InspectorClientImpl::ensureDefaultContextInGroup(int) { |
| + CHECK(isolate_); |
| + return context_.Get(isolate_); |
| +} |
| + |
| +double InspectorClientImpl::currentTimeMS() { |
| + return v8::base::OS::TimeCurrentMillis(); |
| +} |
| + |
| +void InspectorClientImpl::runMessageLoopOnPause(int) { |
| + task_runner_->RunMessageLoop(true); |
| +} |
| + |
| +void InspectorClientImpl::quitMessageLoopOnPause() { |
| + task_runner_->QuitMessageLoop(); |
| +} |
| + |
| +v8_inspector::V8InspectorSession* InspectorClientImpl::SessionFromContext( |
| + v8::Local<v8::Context> context) { |
| + InspectorClientImpl* inspector_client = static_cast<InspectorClientImpl*>( |
| + context->GetAlignedPointerFromEmbedderData(kInspectorClientIndex)); |
| + CHECK(inspector_client); |
| + return inspector_client->session_.get(); |
| +} |
| + |
| +class ProcessMessageOnBackend : public TaskRunner::Task { |
| + public: |
| + ProcessMessageOnBackend(const std::string& message) : message_(message) {} |
| + |
| + bool is_inspector_task() final { return true; } |
| + |
| + void Run(v8::Isolate* isolate, |
| + const v8::Global<v8::Context>& global_context) override { |
| + v8_inspector::V8InspectorSession* session = nullptr; |
| + { |
| + v8::HandleScope handle_scope(isolate); |
| + v8::Local<v8::Context> context = global_context.Get(isolate); |
| + session = InspectorClientImpl::SessionFromContext(context); |
| + CHECK(session); |
| + } |
| + v8_inspector::StringView message_view( |
| + reinterpret_cast<const uint8_t*>(message_.data()), message_.length()); |
| + session->dispatchProtocolMessage(message_view); |
| + } |
| + |
| + private: |
| + std::string message_; |
|
dgozman
2016/09/28 16:10:57
String16?
kozy
2016/09/28 17:03:03
Done.
|
| +}; |
| + |
| +TaskRunner* FrontendExtension::backend_task_runner_ = nullptr; |
| + |
| +v8::Local<v8::FunctionTemplate> FrontendExtension::GetNativeFunctionTemplate( |
| + v8::Isolate* isolate, v8::Local<v8::String> name) { |
| + return v8::FunctionTemplate::New(isolate, |
| + FrontendExtension::SendMessageToBackend); |
| +} |
| + |
| +void FrontendExtension::SendMessageToBackend( |
| + const v8::FunctionCallbackInfo<v8::Value>& args) { |
| + CHECK(backend_task_runner_); |
| + CHECK(args.Length() == 1 && args[0]->IsString()); |
| + std::string message = |
| + *v8::String::Utf8Value(v8::Local<v8::String>::Cast(args[0])); |
| + backend_task_runner_->Append(new ProcessMessageOnBackend(message)); |
| +} |