morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 1 | // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef IPC_IPC_CHANNEL_MOJO_H_ |
| 6 | #define IPC_IPC_CHANNEL_MOJO_H_ |
| 7 | |
| 8 | #include <vector> |
| 9 | |
| 10 | #include "base/memory/scoped_ptr.h" |
| 11 | #include "base/memory/scoped_vector.h" |
| 12 | #include "base/memory/weak_ptr.h" |
| 13 | #include "ipc/ipc_channel.h" |
| 14 | #include "ipc/ipc_channel_factory.h" |
| 15 | #include "ipc/ipc_export.h" |
| 16 | #include "ipc/mojo/ipc_message_pipe_reader.h" |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 17 | #include "ipc/mojo/ipc_mojo_bootstrap.h" |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 18 | #include "mojo/public/cpp/system/core.h" |
| 19 | |
| 20 | namespace mojo { |
| 21 | namespace embedder { |
| 22 | struct ChannelInfo; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | namespace IPC { |
| 27 | |
morrita | 42bda25 | 2014-09-12 04:06:29 +0900 | [diff] [blame] | 28 | namespace internal { |
| 29 | class ControlReader; |
| 30 | class ServerControlReader; |
| 31 | class ClientControlReader; |
| 32 | class MessageReader; |
| 33 | } |
| 34 | |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 35 | // Mojo-based IPC::Channel implementation over a platform handle. |
| 36 | // |
| 37 | // ChannelMojo builds Mojo MessagePipe using underlying pipe given by |
| 38 | // "bootstrap" IPC::Channel which creates and owns platform pipe like |
| 39 | // named socket. The bootstrap Channel is used only for establishing |
| 40 | // the underlying connection. ChannelMojo takes its handle over once |
| 41 | // the it is made and puts MessagePipe on it. |
| 42 | // |
| 43 | // ChannelMojo has a couple of MessagePipes: |
| 44 | // |
| 45 | // * The first MessagePipe, which is built on top of bootstrap handle, |
| 46 | // is the "control" pipe. It is used to communicate out-of-band |
| 47 | // control messages that aren't visible from IPC::Listener. |
| 48 | // |
| 49 | // * The second MessagePipe, which is created by the server channel |
| 50 | // and sent to client Channel over the control pipe, is used |
| 51 | // to send IPC::Messages as an IPC::Sender. |
| 52 | // |
| 53 | // TODO(morrita): Extract handle creation part of IPC::Channel into |
| 54 | // separate class to clarify what ChannelMojo relies |
| 55 | // on. |
| 56 | // TODO(morrita): Add APIs to create extra MessagePipes to let |
| 57 | // Mojo-based objects talk over this Channel. |
| 58 | // |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 59 | class IPC_MOJO_EXPORT ChannelMojo : public Channel, |
| 60 | public MojoBootstrap::Delegate { |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 61 | public: |
morrita | 98b6e4a | 2014-09-26 12:20:48 +0900 | [diff] [blame] | 62 | class Delegate { |
| 63 | public: |
| 64 | virtual ~Delegate() {} |
| 65 | virtual base::WeakPtr<Delegate> ToWeakPtr() = 0; |
| 66 | virtual scoped_refptr<base::TaskRunner> GetIOTaskRunner() = 0; |
| 67 | virtual void OnChannelCreated(base::WeakPtr<ChannelMojo> channel) = 0; |
| 68 | }; |
| 69 | |
morrita | 952f465 | 2014-10-21 10:16:35 +0900 | [diff] [blame] | 70 | // True if ChannelMojo should be used regardless of the flag. |
| 71 | static bool ShouldBeUsed(); |
| 72 | |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 73 | // Create ChannelMojo. A bootstrap channel is created as well. |
morrita | 98b6e4a | 2014-09-26 12:20:48 +0900 | [diff] [blame] | 74 | // |host| must not be null for server channels. |
| 75 | static scoped_ptr<ChannelMojo> Create(Delegate* delegate, |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 76 | const ChannelHandle& channel_handle, |
| 77 | Mode mode, |
| 78 | Listener* listener); |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 79 | |
| 80 | // Create a factory object for ChannelMojo. |
| 81 | // The factory is used to create Mojo-based ChannelProxy family. |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 82 | // |host| must not be null. |
| 83 | static scoped_ptr<ChannelFactory> CreateServerFactory( |
morrita | 98b6e4a | 2014-09-26 12:20:48 +0900 | [diff] [blame] | 84 | Delegate* delegate, |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 85 | const ChannelHandle& channel_handle); |
| 86 | |
| 87 | static scoped_ptr<ChannelFactory> CreateClientFactory( |
| 88 | const ChannelHandle& channel_handle); |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 89 | |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame^] | 90 | ~ChannelMojo() override; |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 91 | |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 92 | // ChannelMojoHost tells the client handle using this API. |
| 93 | void OnClientLaunched(base::ProcessHandle handle); |
| 94 | |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 95 | // Channel implementation |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame^] | 96 | bool Connect() override; |
| 97 | void Close() override; |
| 98 | bool Send(Message* message) override; |
| 99 | base::ProcessId GetPeerPID() const override; |
| 100 | base::ProcessId GetSelfPID() const override; |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 101 | |
| 102 | #if defined(OS_POSIX) && !defined(OS_NACL) |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame^] | 103 | int GetClientFileDescriptor() const override; |
| 104 | base::ScopedFD TakeClientFileDescriptor() override; |
morrita | 42bda25 | 2014-09-12 04:06:29 +0900 | [diff] [blame] | 105 | |
| 106 | // These access protected API of IPC::Message, which has ChannelMojo |
| 107 | // as a friend class. |
| 108 | static MojoResult WriteToFileDescriptorSet( |
| 109 | const std::vector<MojoHandle>& handle_buffer, |
| 110 | Message* message); |
morrita | ab20725 | 2014-09-25 05:11:45 +0900 | [diff] [blame] | 111 | static MojoResult ReadFromFileDescriptorSet(Message* message, |
morrita | 42bda25 | 2014-09-12 04:06:29 +0900 | [diff] [blame] | 112 | std::vector<MojoHandle>* handles); |
| 113 | |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 114 | #endif // defined(OS_POSIX) && !defined(OS_NACL) |
| 115 | |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 116 | // MojoBootstrapDelegate implementation |
dcheng | ef7721a | 2014-10-22 11:29:52 +0900 | [diff] [blame^] | 117 | void OnPipeAvailable(mojo::embedder::ScopedPlatformHandle handle) override; |
| 118 | void OnBootstrapError() override; |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 119 | |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 120 | // Called from MessagePipeReader implementations |
| 121 | void OnMessageReceived(Message& message); |
| 122 | void OnConnected(mojo::ScopedMessagePipeHandle pipe); |
| 123 | void OnPipeClosed(internal::MessagePipeReader* reader); |
| 124 | void OnPipeError(internal::MessagePipeReader* reader); |
| 125 | void set_peer_pid(base::ProcessId pid) { peer_pid_ = pid; } |
| 126 | |
morrita | 42bda25 | 2014-09-12 04:06:29 +0900 | [diff] [blame] | 127 | protected: |
morrita | 98b6e4a | 2014-09-26 12:20:48 +0900 | [diff] [blame] | 128 | ChannelMojo(Delegate* delegate, |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 129 | const ChannelHandle& channel_handle, |
morrita | 42bda25 | 2014-09-12 04:06:29 +0900 | [diff] [blame] | 130 | Mode mode, |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 131 | Listener* listener); |
morrita | 42bda25 | 2014-09-12 04:06:29 +0900 | [diff] [blame] | 132 | |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 133 | private: |
| 134 | struct ChannelInfoDeleter { |
| 135 | void operator()(mojo::embedder::ChannelInfo* ptr) const; |
| 136 | }; |
| 137 | |
| 138 | // ChannelMojo needs to kill its MessagePipeReader in delayed manner |
| 139 | // because the channel wants to kill these readers during the |
| 140 | // notifications invoked by them. |
| 141 | typedef internal::MessagePipeReader::DelayedDeleter ReaderDeleter; |
| 142 | |
morrita | 98b6e4a | 2014-09-26 12:20:48 +0900 | [diff] [blame] | 143 | void InitDelegate(ChannelMojo::Delegate* delegate); |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 144 | void InitControlReader(mojo::embedder::ScopedPlatformHandle handle); |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 145 | |
morrita | 7c48ab8 | 2014-09-24 06:16:00 +0900 | [diff] [blame] | 146 | scoped_ptr<MojoBootstrap> bootstrap_; |
morrita | 98b6e4a | 2014-09-26 12:20:48 +0900 | [diff] [blame] | 147 | base::WeakPtr<Delegate> delegate_; |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 148 | Mode mode_; |
| 149 | Listener* listener_; |
| 150 | base::ProcessId peer_pid_; |
| 151 | scoped_ptr<mojo::embedder::ChannelInfo, |
| 152 | ChannelInfoDeleter> channel_info_; |
| 153 | |
morrita | 42bda25 | 2014-09-12 04:06:29 +0900 | [diff] [blame] | 154 | scoped_ptr<internal::ControlReader, ReaderDeleter> control_reader_; |
| 155 | scoped_ptr<internal::MessageReader, ReaderDeleter> message_reader_; |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 156 | ScopedVector<Message> pending_messages_; |
| 157 | |
anujk.sharma | 8461adf | 2014-08-28 15:49:02 +0900 | [diff] [blame] | 158 | base::WeakPtrFactory<ChannelMojo> weak_factory_; |
| 159 | |
morrita@chromium.org | 15996aa | 2014-08-05 08:44:17 +0900 | [diff] [blame] | 160 | DISALLOW_COPY_AND_ASSIGN(ChannelMojo); |
| 161 | }; |
| 162 | |
| 163 | } // namespace IPC |
| 164 | |
| 165 | #endif // IPC_IPC_CHANNEL_MOJO_H_ |