blob: c1103e15bbbc2e19d402bb0107b5203f55b3c63e [file] [log] [blame]
// Copyright 2014 The Chromium 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 "content/browser/mojo/mojo_application_host.h"
#include <utility>
#include "build/build_config.h"
#include "content/common/mojo/mojo_messages.h"
#include "content/public/browser/browser_thread.h"
#include "ipc/ipc_sender.h"
#include "mojo/edk/embedder/platform_channel_pair.h"
namespace content {
namespace {
class ApplicationSetupImpl : public mojom::ApplicationSetup {
public:
ApplicationSetupImpl(ServiceRegistryImpl* service_registry,
mojo::InterfaceRequest<mojom::ApplicationSetup> request)
: binding_(this, std::move(request)),
service_registry_(service_registry) {}
~ApplicationSetupImpl() override {
}
private:
// mojom::ApplicationSetup implementation.
void ExchangeInterfaceProviders(
mojo::shell::mojom::InterfaceProviderRequest services,
mojo::shell::mojom::InterfaceProviderPtr exposed_services) override {
service_registry_->Bind(std::move(services));
service_registry_->BindRemoteServiceProvider(std::move(exposed_services));
}
mojo::Binding<mojom::ApplicationSetup> binding_;
ServiceRegistryImpl* service_registry_;
};
} // namespace
MojoApplicationHost::MojoApplicationHost() : did_activate_(false) {
#if defined(OS_ANDROID)
service_registry_android_ =
ServiceRegistryAndroid::Create(&service_registry_);
#endif
}
MojoApplicationHost::~MojoApplicationHost() {
}
bool MojoApplicationHost::Init() {
DCHECK(!client_handle_.is_valid()) << "Already initialized!";
mojo::edk::PlatformChannelPair channel_pair;
scoped_refptr<base::TaskRunner> io_task_runner;
if (io_task_runner_override_) {
io_task_runner = io_task_runner_override_;
} else {
io_task_runner =
BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::IO)
->task_runner();
}
// Forward this to the client once we know its process handle.
client_handle_ = channel_pair.PassClientHandle();
mojo::ScopedMessagePipeHandle pipe = channel_init_.Init(
channel_pair.PassServerHandle().release().handle, io_task_runner);
application_setup_.reset(new ApplicationSetupImpl(
&service_registry_,
mojo::MakeRequest<mojom::ApplicationSetup>(std::move(pipe))));
return true;
}
void MojoApplicationHost::Activate(IPC::Sender* sender,
base::ProcessHandle process_handle) {
DCHECK(!did_activate_);
DCHECK(client_handle_.is_valid());
base::PlatformFile client_file = client_handle_.release().handle;
did_activate_ = sender->Send(new MojoMsg_Activate(
IPC::GetPlatformFileForTransit(client_file, true)));
}
void MojoApplicationHost::OverrideIOTaskRunnerForTest(
scoped_refptr<base::TaskRunner> io_task_runner) {
io_task_runner_override_ = io_task_runner;
}
} // namespace content