Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(642)

Unified Diff: ppapi/proxy/plugin_main_nacl.cc

Issue 10912011: Change NaCl IPC PPAPI proxy startup to support a NaCl-Browser process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/nacl/nacl_listener.cc ('k') | ppapi/proxy/ppapi_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/plugin_main_nacl.cc
===================================================================
--- ppapi/proxy/plugin_main_nacl.cc (revision 154143)
+++ ppapi/proxy/plugin_main_nacl.cc (working copy)
@@ -23,6 +23,7 @@
#include "ppapi/c/ppp_instance.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/plugin_globals.h"
+#include "ppapi/proxy/plugin_proxy_delegate.h"
#include "ppapi/shared_impl/ppb_audio_shared.h"
#if defined(IPC_MESSAGE_LOG_ENABLED)
@@ -36,60 +37,48 @@
using ppapi::proxy::PluginDispatcher;
using ppapi::proxy::PluginGlobals;
+using ppapi::proxy::PluginProxyDelegate;
+using ppapi::proxy::ProxyChannel;
+using ppapi::proxy::SerializedHandle;
namespace {
-// Copied from src/content/ppapi_plugin/ppapi_thread. This is a minimal
-// implementation to get us started.
-class PluginDispatcherDelegate : public PluginDispatcher::PluginDelegate {
+// This class manages communication between the plugin and the browser, and
+// manages the PluginDispatcher instances for communication between the plugin
+// and the renderer.
+class PpapiDispatcher : public ProxyChannel,
+ public PluginDispatcher::PluginDelegate,
+ public PluginProxyDelegate {
public:
- explicit PluginDispatcherDelegate(
- scoped_refptr<base::MessageLoopProxy> io_loop)
- : message_loop_(io_loop),
- shutdown_event_(true, false) {
- }
+ explicit PpapiDispatcher(scoped_refptr<base::MessageLoopProxy> io_loop);
- virtual base::MessageLoopProxy* GetIPCMessageLoop() OVERRIDE {
- return message_loop_.get();
- }
-
- virtual base::WaitableEvent* GetShutdownEvent() OVERRIDE {
- return &shutdown_event_;
- }
-
+ // PluginDispatcher::PluginDelegate implementation.
+ virtual base::MessageLoopProxy* GetIPCMessageLoop() OVERRIDE;
+ virtual base::WaitableEvent* GetShutdownEvent() OVERRIDE;
virtual IPC::PlatformFileForTransit ShareHandleWithRemote(
base::PlatformFile handle,
const IPC::SyncChannel& channel,
- bool should_close_source) OVERRIDE {
- return IPC::InvalidPlatformFileForTransit();
- }
+ bool should_close_source) OVERRIDE;
+ virtual std::set<PP_Instance>* GetGloballySeenInstanceIDSet() OVERRIDE;
+ virtual uint32 Register(PluginDispatcher* plugin_dispatcher) OVERRIDE;
+ virtual void Unregister(uint32 plugin_dispatcher_id) OVERRIDE;
- virtual std::set<PP_Instance>* GetGloballySeenInstanceIDSet() OVERRIDE {
- return &instances_;
- }
+ // PluginProxyDelegate implementation.
+ virtual bool SendToBrowser(IPC::Message* msg) OVERRIDE;
+ virtual IPC::Sender* GetBrowserSender() OVERRIDE;
+ virtual std::string GetUILanguage() OVERRIDE;
+ virtual void PreCacheFont(const void* logfontw) OVERRIDE;
+ virtual void SetActiveURL(const std::string& url) OVERRIDE;
- virtual uint32 Register(PluginDispatcher* plugin_dispatcher) OVERRIDE {
- if (!plugin_dispatcher ||
- plugin_dispatchers_.size() >= std::numeric_limits<uint32>::max()) {
- return 0;
- }
+ // IPC::Listener implementation.
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- uint32 id = 0;
- do {
- // Although it is unlikely, make sure that we won't cause any trouble when
- // the counter overflows.
- id = next_plugin_dispatcher_id_++;
- } while (id == 0 ||
- plugin_dispatchers_.find(id) != plugin_dispatchers_.end());
- plugin_dispatchers_[id] = plugin_dispatcher;
- return id;
- }
+ private:
+ void OnMsgCreateNaClChannel(int renderer_id,
+ bool incognito,
+ SerializedHandle handle);
+ void OnPluginDispatcherMessageReceived(const IPC::Message& msg);
- virtual void Unregister(uint32 plugin_dispatcher_id) OVERRIDE {
- plugin_dispatchers_.erase(plugin_dispatcher_id);
- }
-
- private:
std::set<PP_Instance> instances_;
std::map<uint32, PluginDispatcher*> plugin_dispatchers_;
uint32 next_plugin_dispatcher_id_;
@@ -97,6 +86,113 @@
base::WaitableEvent shutdown_event_;
};
+PpapiDispatcher::PpapiDispatcher(scoped_refptr<base::MessageLoopProxy> io_loop)
+ : message_loop_(io_loop),
+ shutdown_event_(true, false) {
+ IPC::ChannelHandle channel_handle(
+ "NaCl IPC", base::FileDescriptor(NACL_IPC_FD, false));
+ InitWithChannel(this, channel_handle, false); // Channel is server.
+}
+
+base::MessageLoopProxy* PpapiDispatcher::GetIPCMessageLoop() {
+ return message_loop_.get();
+}
+
+base::WaitableEvent* PpapiDispatcher::GetShutdownEvent() {
+ return &shutdown_event_;
+}
+
+IPC::PlatformFileForTransit PpapiDispatcher::ShareHandleWithRemote(
+ base::PlatformFile handle,
+ const IPC::SyncChannel& channel,
+ bool should_close_source) {
+ return IPC::InvalidPlatformFileForTransit();
+}
+
+std::set<PP_Instance>* PpapiDispatcher::GetGloballySeenInstanceIDSet() {
+ return &instances_;
+}
+
+uint32 PpapiDispatcher::Register(PluginDispatcher* plugin_dispatcher) {
+ if (!plugin_dispatcher ||
+ plugin_dispatchers_.size() >= std::numeric_limits<uint32>::max()) {
+ return 0;
+ }
+
+ uint32 id = 0;
+ do {
+ // Although it is unlikely, make sure that we won't cause any trouble
+ // when the counter overflows.
+ id = next_plugin_dispatcher_id_++;
+ } while (id == 0 ||
+ plugin_dispatchers_.find(id) != plugin_dispatchers_.end());
+ plugin_dispatchers_[id] = plugin_dispatcher;
+ return id;
+}
+
+void PpapiDispatcher::Unregister(uint32 plugin_dispatcher_id) {
+ plugin_dispatchers_.erase(plugin_dispatcher_id);
+}
+
+bool PpapiDispatcher::SendToBrowser(IPC::Message* msg) {
+ Send(msg);
+}
+
+IPC::Sender* PpapiDispatcher::GetBrowserSender() {
+ return this;
+}
+
+std::string PpapiDispatcher::GetUILanguage() {
+ NOTIMPLEMENTED();
+ return std::string();
+}
+
+void PpapiDispatcher::PreCacheFont(const void* logfontw) {
+ NOTIMPLEMENTED();
+}
+
+void PpapiDispatcher::SetActiveURL(const std::string& url) {
+ NOTIMPLEMENTED();
+}
+
+bool PpapiDispatcher::OnMessageReceived(const IPC::Message& msg) {
+ IPC_BEGIN_MESSAGE_MAP(PpapiDispatcher, msg)
+ IPC_MESSAGE_HANDLER(PpapiMsg_CreateNaClChannel,
+ OnMsgCreateNaClChannel)
+ IPC_END_MESSAGE_MAP()
+ return true;
+}
+
+void PpapiDispatcher::OnMsgCreateNaClChannel(int renderer_id,
+ bool incognito,
+ SerializedHandle handle) {
+ PluginDispatcher* dispatcher =
+ new PluginDispatcher(::PPP_GetInterface, incognito);
+ // The channel handle's true name is not revealed here.
+ IPC::ChannelHandle channel_handle("nacl", handle.descriptor());
+ if (!dispatcher->InitPluginWithChannel(this, channel_handle, false)) {
+ delete dispatcher;
+ return;
+ }
+ // From here, the dispatcher will manage its own lifetime according to the
+ // lifetime of the attached channel.
+}
+
+void PpapiDispatcher::OnPluginDispatcherMessageReceived(
+ const IPC::Message& msg) {
+ // The first parameter should be a plugin dispatcher ID.
+ PickleIterator iter(msg);
+ uint32 id = 0;
+ if (!msg.ReadUInt32(&iter, &id)) {
+ NOTREACHED();
+ return;
+ }
+ std::map<uint32, ppapi::proxy::PluginDispatcher*>::iterator dispatcher =
+ plugin_dispatchers_.find(id);
+ if (dispatcher != plugin_dispatchers_.end())
+ dispatcher->second->OnMessageReceived(msg);
+}
+
} // namespace
void PpapiPluginRegisterThreadCreator(
@@ -127,14 +223,8 @@
if (error)
return error;
- PluginDispatcherDelegate delegate(io_thread.message_loop_proxy());
+ PpapiDispatcher ppapi_dispatcher(io_thread.message_loop_proxy());
- // TODO(dmichael) Figure out how to determine if we're in incognito
- PluginDispatcher dispatcher(::PPP_GetInterface, false /* incognito */);
- IPC::ChannelHandle channel_handle("NaCl IPC",
- base::FileDescriptor(NACL_IPC_FD, false));
- dispatcher.InitPluginWithChannel(&delegate, channel_handle, false);
-
loop.Run();
return 0;
}
« no previous file with comments | « chrome/nacl/nacl_listener.cc ('k') | ppapi/proxy/ppapi_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698