Restore editor text upon AdapterInputConnection is recreated.
[chromium-blink-merge.git] / ipc / ipc_channel_proxy.h
blobdca8c977302975e5fe9a0bf8c7dc188004d97121
1 // Copyright (c) 2012 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.
5 #ifndef IPC_IPC_CHANNEL_PROXY_H_
6 #define IPC_IPC_CHANNEL_PROXY_H_
8 #include <vector>
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/synchronization/lock.h"
13 #include "base/threading/non_thread_safe.h"
14 #include "ipc/ipc_channel.h"
15 #include "ipc/ipc_channel_handle.h"
16 #include "ipc/ipc_listener.h"
17 #include "ipc/ipc_sender.h"
19 namespace base {
20 class SingleThreadTaskRunner;
23 namespace IPC {
25 class SendCallbackHelper;
27 //-----------------------------------------------------------------------------
28 // IPC::ChannelProxy
30 // This class is a helper class that is useful when you wish to run an IPC
31 // channel on a background thread. It provides you with the option of either
32 // handling IPC messages on that background thread or having them dispatched to
33 // your main thread (the thread on which the IPC::ChannelProxy is created).
35 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel.
36 // When you send a message to an IPC::ChannelProxy, the message is routed to
37 // the background thread, where it is then passed to the IPC::Channel's Send
38 // method. This means that you can send a message from your thread and your
39 // message will be sent over the IPC channel when possible instead of being
40 // delayed until your thread returns to its message loop. (Often IPC messages
41 // will queue up on the IPC::Channel when there is a lot of traffic, and the
42 // channel will not get cycles to flush its message queue until the thread, on
43 // which it is running, returns to its message loop.)
45 // An IPC::ChannelProxy can have a MessageFilter associated with it, which will
46 // be notified of incoming messages on the IPC::Channel's thread. This gives
47 // the consumer of IPC::ChannelProxy the ability to respond to incoming
48 // messages on this background thread instead of on their own thread, which may
49 // be bogged down with other processing. The result can be greatly improved
50 // latency for messages that can be handled on a background thread.
52 // The consumer of IPC::ChannelProxy is responsible for allocating the Thread
53 // instance where the IPC::Channel will be created and operated.
55 class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
56 public:
58 // A class that receives messages on the thread where the IPC channel is
59 // running. It can choose to prevent the default action for an IPC message.
60 class IPC_EXPORT MessageFilter
61 : public base::RefCountedThreadSafe<MessageFilter> {
62 public:
63 MessageFilter();
65 // Called on the background thread to provide the filter with access to the
66 // channel. Called when the IPC channel is initialized or when AddFilter
67 // is called if the channel is already initialized.
68 virtual void OnFilterAdded(Channel* channel);
70 // Called on the background thread when the filter has been removed from
71 // the ChannelProxy and when the Channel is closing. After a filter is
72 // removed, it will not be called again.
73 virtual void OnFilterRemoved();
75 // Called to inform the filter that the IPC channel is connected and we
76 // have received the internal Hello message from the peer.
77 virtual void OnChannelConnected(int32 peer_pid);
79 // Called when there is an error on the channel, typically that the channel
80 // has been closed.
81 virtual void OnChannelError();
83 // Called to inform the filter that the IPC channel will be destroyed.
84 // OnFilterRemoved is called immediately after this.
85 virtual void OnChannelClosing();
87 // Return true to indicate that the message was handled, or false to let
88 // the message be handled in the default way.
89 virtual bool OnMessageReceived(const Message& message);
91 // Called to query the Message classes supported by the filter. Return
92 // false to indicate that all message types should reach the filter, or true
93 // if the resulting contents of |supported_message_classes| may be used to
94 // selectively offer messages of a particular class to the filter.
95 virtual bool GetSupportedMessageClasses(
96 std::vector<uint32>* supported_message_classes) const;
98 protected:
99 virtual ~MessageFilter();
101 private:
102 friend class base::RefCountedThreadSafe<MessageFilter>;
105 // Initializes a channel proxy. The channel_handle and mode parameters are
106 // passed directly to the underlying IPC::Channel. The listener is called on
107 // the thread that creates the ChannelProxy. The filter's OnMessageReceived
108 // method is called on the thread where the IPC::Channel is running. The
109 // filter may be null if the consumer is not interested in handling messages
110 // on the background thread. Any message not handled by the filter will be
111 // dispatched to the listener. The given task runner correspond to a thread
112 // on which IPC::Channel is created and used (e.g. IO thread).
113 ChannelProxy(const IPC::ChannelHandle& channel_handle,
114 Channel::Mode mode,
115 Listener* listener,
116 base::SingleThreadTaskRunner* ipc_task_runner);
118 virtual ~ChannelProxy();
120 // Initializes the channel proxy. Only call this once to initialize a channel
121 // proxy that was not initialized in its constructor. If create_pipe_now is
122 // true, the pipe is created synchronously. Otherwise it's created on the IO
123 // thread.
124 void Init(const IPC::ChannelHandle& channel_handle, Channel::Mode mode,
125 bool create_pipe_now);
127 // Close the IPC::Channel. This operation completes asynchronously, once the
128 // background thread processes the command to close the channel. It is ok to
129 // call this method multiple times. Redundant calls are ignored.
131 // WARNING: The MessageFilter object held by the ChannelProxy is also
132 // released asynchronously, and it may in fact have its final reference
133 // released on the background thread. The caller should be careful to deal
134 // with / allow for this possibility.
135 void Close();
137 // Send a message asynchronously. The message is routed to the background
138 // thread where it is passed to the IPC::Channel's Send method.
139 virtual bool Send(Message* message) OVERRIDE;
141 // Used to intercept messages as they are received on the background thread.
143 // Ordinarily, messages sent to the ChannelProxy are routed to the matching
144 // listener on the worker thread. This API allows code to intercept messages
145 // before they are sent to the worker thread.
146 // If you call this before the target process is launched, then you're
147 // guaranteed to not miss any messages. But if you call this anytime after,
148 // then some messages might be missed since the filter is added internally on
149 // the IO thread.
150 void AddFilter(MessageFilter* filter);
151 void RemoveFilter(MessageFilter* filter);
153 // Called to clear the pointer to the IPC task runner when it's going away.
154 void ClearIPCTaskRunner();
156 // Get the process ID for the connected peer.
157 // Returns base::kNullProcessId if the peer is not connected yet.
158 base::ProcessId peer_pid() const { return context_->peer_pid_; }
160 #if defined(OS_POSIX) && !defined(OS_NACL)
161 // Calls through to the underlying channel's methods.
162 int GetClientFileDescriptor();
163 int TakeClientFileDescriptor();
164 bool GetPeerEuid(uid_t* peer_euid) const;
165 #endif // defined(OS_POSIX)
167 protected:
168 class Context;
169 // A subclass uses this constructor if it needs to add more information
170 // to the internal state.
171 ChannelProxy(Context* context);
173 // Used internally to hold state that is referenced on the IPC thread.
174 class Context : public base::RefCountedThreadSafe<Context>,
175 public Listener {
176 public:
177 Context(Listener* listener, base::SingleThreadTaskRunner* ipc_thread);
178 void ClearIPCTaskRunner();
179 base::SingleThreadTaskRunner* ipc_task_runner() const {
180 return ipc_task_runner_.get();
182 const std::string& channel_id() const { return channel_id_; }
184 // Dispatches a message on the listener thread.
185 void OnDispatchMessage(const Message& message);
187 protected:
188 friend class base::RefCountedThreadSafe<Context>;
189 virtual ~Context();
191 // IPC::Listener methods:
192 virtual bool OnMessageReceived(const Message& message) OVERRIDE;
193 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
194 virtual void OnChannelError() OVERRIDE;
196 // Like OnMessageReceived but doesn't try the filters.
197 bool OnMessageReceivedNoFilter(const Message& message);
199 // Gives the filters a chance at processing |message|.
200 // Returns true if the message was processed, false otherwise.
201 bool TryFilters(const Message& message);
203 // Like Open and Close, but called on the IPC thread.
204 virtual void OnChannelOpened();
205 virtual void OnChannelClosed();
207 // Called on the consumers thread when the ChannelProxy is closed. At that
208 // point the consumer is telling us that they don't want to receive any
209 // more messages, so we honor that wish by forgetting them!
210 virtual void Clear();
212 private:
213 friend class ChannelProxy;
214 friend class SendCallbackHelper;
216 // Create the Channel
217 void CreateChannel(const IPC::ChannelHandle& channel_handle,
218 const Channel::Mode& mode);
220 // Methods called on the IO thread.
221 void OnSendMessage(scoped_ptr<Message> message_ptr);
222 void OnAddFilter();
223 void OnRemoveFilter(MessageFilter* filter);
225 // Methods called on the listener thread.
226 void AddFilter(MessageFilter* filter);
227 void OnDispatchConnected();
228 void OnDispatchError();
230 scoped_refptr<base::SingleThreadTaskRunner> listener_task_runner_;
231 Listener* listener_;
233 // List of filters. This is only accessed on the IPC thread.
234 std::vector<scoped_refptr<MessageFilter> > filters_;
235 scoped_refptr<base::SingleThreadTaskRunner> ipc_task_runner_;
236 scoped_ptr<Channel> channel_;
237 std::string channel_id_;
238 bool channel_connected_called_;
240 // Routes a given message to a proper subset of |filters_|, depending
241 // on which message classes a filter might support.
242 class MessageFilterRouter;
243 scoped_ptr<MessageFilterRouter> message_filter_router_;
245 // Holds filters between the AddFilter call on the listerner thread and the
246 // IPC thread when they're added to filters_.
247 std::vector<scoped_refptr<MessageFilter> > pending_filters_;
248 // Lock for pending_filters_.
249 base::Lock pending_filters_lock_;
251 // Cached copy of the peer process ID. Set on IPC but read on both IPC and
252 // listener threads.
253 base::ProcessId peer_pid_;
256 Context* context() { return context_.get(); }
258 private:
259 friend class SendCallbackHelper;
261 // By maintaining this indirection (ref-counted) to our internal state, we
262 // can safely be destroyed while the background thread continues to do stuff
263 // that involves this data.
264 scoped_refptr<Context> context_;
266 // Whether the channel has been initialized.
267 bool did_init_;
270 } // namespace IPC
272 #endif // IPC_IPC_CHANNEL_PROXY_H_