Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keep a copy of each engine's description that can be accessed outside the engine's UI thread #6885

Merged
merged 1 commit into from
Nov 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion lib/ui/ui_dart_state.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ void UIDartState::DidSetIsolate() {
// main.dart$main-1234
debug_name << advisory_script_uri_ << "$" << advisory_script_entrypoint_
<< "-" << main_port_;
debug_name_ = debug_name.str();
SetDebugName(debug_name.str());
}

void UIDartState::SetDebugName(const std::string debug_name) {
debug_name_ = debug_name;
if (window_)
window_->client()->UpdateIsolateDescription(debug_name_, main_port_);
}

UIDartState* UIDartState::Current() {
Expand All @@ -63,6 +69,8 @@ UIDartState* UIDartState::Current() {

void UIDartState::SetWindow(std::unique_ptr<Window> window) {
window_ = std::move(window);
if (window_)
window_->client()->UpdateIsolateDescription(debug_name_, main_port_);
}

const TaskRunners& UIDartState::GetTaskRunners() const {
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/ui_dart_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class UIDartState : public tonic::DartState {

Dart_Port main_port() const { return main_port_; }

void set_debug_name(const std::string name) { debug_name_ = name; }
void SetDebugName(const std::string name);

const std::string& debug_name() const { return debug_name_; }

Expand Down
2 changes: 1 addition & 1 deletion lib/ui/window/window.cc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void SetIsolateDebugName(Dart_NativeArguments args) {
Dart_ThrowException(exception);
return;
}
UIDartState::Current()->window()->client()->SetIsolateDebugName(name);
UIDartState::Current()->SetDebugName(name);
}

Dart_Handle SendPlatformMessage(Dart_Handle window,
Expand Down
3 changes: 2 additions & 1 deletion lib/ui/window/window.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ class WindowClient {
virtual void Render(Scene* scene) = 0;
virtual void UpdateSemantics(SemanticsUpdate* update) = 0;
virtual void HandlePlatformMessage(fml::RefPtr<PlatformMessage> message) = 0;
virtual void SetIsolateDebugName(const std::string isolateName) = 0;
virtual FontCollection& GetFontCollection() = 0;
virtual void UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) = 0;

protected:
virtual ~WindowClient();
Expand Down
13 changes: 5 additions & 8 deletions runtime/runtime_controller.cc
Original file line number Diff line number Diff line change
Expand Up @@ -267,18 +267,15 @@ void RuntimeController::HandlePlatformMessage(
client_.HandlePlatformMessage(std::move(message));
}

void RuntimeController::SetIsolateDebugName(const std::string name) {
std::shared_ptr<DartIsolate> root_isolate = root_isolate_.lock();
if (!root_isolate) {
return;
}
root_isolate->set_debug_name(name);
}

FontCollection& RuntimeController::GetFontCollection() {
return client_.GetFontCollection();
}

void RuntimeController::UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) {
client_.UpdateIsolateDescription(isolate_name, isolate_port);
}

Dart_Port RuntimeController::GetMainPort() {
std::shared_ptr<DartIsolate> root_isolate = root_isolate_.lock();
return root_isolate ? root_isolate->main_port() : ILLEGAL_PORT;
Expand Down
5 changes: 3 additions & 2 deletions runtime/runtime_controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,11 @@ class RuntimeController final : public WindowClient {
void HandlePlatformMessage(fml::RefPtr<PlatformMessage> message) override;

// |blink::WindowClient|
void SetIsolateDebugName(const std::string name) override;
FontCollection& GetFontCollection() override;

// |blink::WindowClient|
FontCollection& GetFontCollection() override;
void UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) override;

FML_DISALLOW_COPY_AND_ASSIGN(RuntimeController);
};
Expand Down
3 changes: 3 additions & 0 deletions runtime/runtime_delegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ class RuntimeDelegate {

virtual FontCollection& GetFontCollection() = 0;

virtual void UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) = 0;

protected:
virtual ~RuntimeDelegate();
};
Expand Down
36 changes: 16 additions & 20 deletions runtime/service_protocol.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,25 @@ ServiceProtocol::~ServiceProtocol() {
ToggleHooks(false);
}

void ServiceProtocol::AddHandler(Handler* handler) {
void ServiceProtocol::AddHandler(Handler* handler,
Handler::Description description) {
std::lock_guard<std::mutex> lock(handlers_mutex_);
handlers_.emplace(handler);
handlers_.emplace(handler, description);
}

void ServiceProtocol::RemoveHandler(Handler* handler) {
std::lock_guard<std::mutex> lock(handlers_mutex_);
handlers_.erase(handler);
}

void ServiceProtocol::SetHandlerDescription(Handler* handler,
Handler::Description description) {
std::lock_guard<std::mutex> lock(handlers_mutex_);
auto it = handlers_.find(handler);
if (it != handlers_.end())
chinmaygarde marked this conversation as resolved.
Show resolved Hide resolved
it->second = description;
}

void ServiceProtocol::ToggleHooks(bool set) {
for (const auto& endpoint : endpoints_) {
Dart_RegisterIsolateServiceRequestCallback(
Expand Down Expand Up @@ -191,7 +200,8 @@ bool ServiceProtocol::HandleMessage(fml::StringView method,
if (method == kScreenshotExtensionName ||
method == kScreenshotSkpExtensionName ||
method == kFlushUIThreadTasksExtensionName) {
return HandleMessageOnHandler(*handlers_.begin(), method, params, response);
return HandleMessageOnHandler(handlers_.begin()->first, method, params,
response);
}

WriteServerErrorResponse(
Expand Down Expand Up @@ -239,23 +249,9 @@ bool ServiceProtocol::HandleListViewsMethod(
// Collect handler descriptions on their respective task runners.
std::lock_guard<std::mutex> lock(handlers_mutex_);
std::vector<std::pair<intptr_t, Handler::Description>> descriptions;
for (auto* const handler : handlers_) {
fml::AutoResetWaitableEvent latch;
Handler::Description description;

fml::TaskRunner::RunNowOrPostTask(
handler->GetServiceProtocolHandlerTaskRunner(
kListViewsExtensionName), // task runner
[&latch, //
&description, //
&handler //
]() {
description = handler->GetServiceProtocolDescription();
latch.Signal();
});
latch.Wait();
descriptions.emplace_back(std::make_pair<intptr_t, Handler::Description>(
reinterpret_cast<intptr_t>(handler), std::move(description)));
for (const auto& handler : handlers_) {
descriptions.emplace_back(reinterpret_cast<intptr_t>(handler.first),
handler.second);
}

auto& allocator = response.GetAllocator();
Expand Down
7 changes: 5 additions & 2 deletions runtime/service_protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,17 @@ class ServiceProtocol {

void ToggleHooks(bool set);

void AddHandler(Handler* handler);
void AddHandler(Handler* handler, Handler::Description description);

void RemoveHandler(Handler* handler);

void SetHandlerDescription(Handler* handler,
Handler::Description description);

private:
const std::set<fml::StringView> endpoints_;
mutable std::mutex handlers_mutex_;
std::set<Handler*> handlers_;
std::map<Handler*, Handler::Description> handlers_;

FML_WARN_UNUSED_RESULT
static bool HandleMessage(const char* method,
Expand Down
5 changes: 5 additions & 0 deletions shell/common/engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,11 @@ void Engine::HandlePlatformMessage(
}
}

void Engine::UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) {
delegate_.UpdateIsolateDescription(isolate_name, isolate_port);
}

blink::FontCollection& Engine::GetFontCollection() {
return font_collection_;
}
Expand Down
7 changes: 7 additions & 0 deletions shell/common/engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ class Engine final : public blink::RuntimeDelegate {
fml::RefPtr<blink::PlatformMessage> message) = 0;

virtual void OnPreEngineRestart() = 0;

virtual void UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) = 0;
};

Engine(Delegate& delegate,
Expand Down Expand Up @@ -142,6 +145,10 @@ class Engine final : public blink::RuntimeDelegate {
void HandlePlatformMessage(
fml::RefPtr<blink::PlatformMessage> message) override;

// |blink::RuntimeDelegate|
void UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) override;

void StopAnimator();

void StartAnimatorIfPossible();
Expand Down
11 changes: 10 additions & 1 deletion shell/common/shell.cc
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ bool Shell::Setup(std::unique_ptr<PlatformView> platform_view,
is_setup_ = true;

if (auto vm = blink::DartVM::ForProcessIfInitialized()) {
vm->GetServiceProtocol().AddHandler(this);
vm->GetServiceProtocol().AddHandler(this, GetServiceProtocolDescription());
}

PersistentCache::GetCacheForProcess()->AddWorkerTaskRunner(
Expand Down Expand Up @@ -749,6 +749,15 @@ void Shell::OnPreEngineRestart() {
latch.Wait();
}

// |shell::Engine::Delegate|
void Shell::UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) {
if (auto vm = blink::DartVM::ForProcessIfInitialized()) {
Handler::Description description(isolate_port, isolate_name);
vm->GetServiceProtocol().SetHandlerDescription(this, description);
}
}

// |blink::ServiceProtocol::Handler|
fml::RefPtr<fml::TaskRunner> Shell::GetServiceProtocolHandlerTaskRunner(
fml::StringView method) const {
Expand Down
4 changes: 4 additions & 0 deletions shell/common/shell.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ class Shell final : public PlatformView::Delegate,
// |shell::Engine::Delegate|
void OnPreEngineRestart() override;

// |shell::Engine::Delegate|
void UpdateIsolateDescription(const std::string isolate_name,
int64_t isolate_port) override;

// |blink::ServiceProtocol::Handler|
fml::RefPtr<fml::TaskRunner> GetServiceProtocolHandlerTaskRunner(
fml::StringView method) const override;
Expand Down