Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / content / child / child_thread_impl.h
blob3e644ab638a507006e2f92858f389a55688559b6
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 CONTENT_CHILD_CHILD_THREAD_IMPL_H_
6 #define CONTENT_CHILD_CHILD_THREAD_IMPL_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/shared_memory.h"
13 #include "base/memory/weak_ptr.h"
14 #include "base/power_monitor/power_monitor.h"
15 #include "base/sequenced_task_runner.h"
16 #include "base/tracked_objects.h"
17 #include "content/child/mojo/mojo_application.h"
18 #include "content/common/content_export.h"
19 #include "content/common/message_router.h"
20 #include "content/public/child/child_thread.h"
21 #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED.
23 namespace base {
24 class MessageLoop;
26 namespace trace_event {
27 class TraceMemoryController;
28 } // namespace trace_event
29 } // namespace base
31 namespace IPC {
32 class AttachmentBrokerUnprivileged;
33 class MessageFilter;
34 class ScopedIPCSupport;
35 class SyncChannel;
36 class SyncMessageFilter;
37 } // namespace IPC
39 namespace blink {
40 class WebFrame;
41 } // namespace blink
43 namespace content {
44 class ChildMessageFilter;
45 class ChildDiscardableSharedMemoryManager;
46 class ChildGpuMemoryBufferManager;
47 class ChildHistogramMessageFilter;
48 class ChildResourceMessageFilter;
49 class ChildSharedBitmapManager;
50 class FileSystemDispatcher;
51 class InProcessChildThreadParams;
52 class NotificationDispatcher;
53 class PushDispatcher;
54 class ServiceWorkerMessageFilter;
55 class QuotaDispatcher;
56 class QuotaMessageFilter;
57 class ResourceDispatcher;
58 class ThreadSafeSender;
59 class WebSocketDispatcher;
60 struct RequestInfo;
62 // The main thread of a child process derives from this class.
63 class CONTENT_EXPORT ChildThreadImpl
64 : public IPC::Listener,
65 virtual public ChildThread {
66 public:
67 struct CONTENT_EXPORT Options;
69 // Creates the thread.
70 ChildThreadImpl();
71 // Allow to be used for single-process mode and for in process gpu mode via
72 // options.
73 explicit ChildThreadImpl(const Options& options);
74 // ChildProcess::main_thread() is reset after Shutdown(), and before the
75 // destructor, so any subsystem that relies on ChildProcess::main_thread()
76 // must be terminated before Shutdown returns. In particular, if a subsystem
77 // has a thread that post tasks to ChildProcess::main_thread(), that thread
78 // should be joined in Shutdown().
79 ~ChildThreadImpl() override;
80 virtual void Shutdown();
82 // IPC::Sender implementation:
83 bool Send(IPC::Message* msg) override;
85 // ChildThread implementation:
86 #if defined(OS_WIN)
87 void PreCacheFont(const LOGFONT& log_font) override;
88 void ReleaseCachedFonts() override;
89 #endif
91 IPC::SyncChannel* channel() { return channel_.get(); }
93 MessageRouter* GetRouter();
95 // Allocates a block of shared memory of the given size. Returns NULL on
96 // failure.
97 // Note: On posix, this requires a sync IPC to the browser process,
98 // but on windows the child process directly allocates the block.
99 scoped_ptr<base::SharedMemory> AllocateSharedMemory(size_t buf_size);
101 // A static variant that can be called on background threads provided
102 // the |sender| passed in is safe to use on background threads.
103 static scoped_ptr<base::SharedMemory> AllocateSharedMemory(
104 size_t buf_size,
105 IPC::Sender* sender);
107 ChildSharedBitmapManager* shared_bitmap_manager() const {
108 return shared_bitmap_manager_.get();
111 ChildGpuMemoryBufferManager* gpu_memory_buffer_manager() const {
112 return gpu_memory_buffer_manager_.get();
115 ChildDiscardableSharedMemoryManager* discardable_shared_memory_manager()
116 const {
117 return discardable_shared_memory_manager_.get();
120 ResourceDispatcher* resource_dispatcher() const {
121 return resource_dispatcher_.get();
124 WebSocketDispatcher* websocket_dispatcher() const {
125 return websocket_dispatcher_.get();
128 FileSystemDispatcher* file_system_dispatcher() const {
129 return file_system_dispatcher_.get();
132 QuotaDispatcher* quota_dispatcher() const {
133 return quota_dispatcher_.get();
136 NotificationDispatcher* notification_dispatcher() const {
137 return notification_dispatcher_.get();
140 PushDispatcher* push_dispatcher() const {
141 return push_dispatcher_.get();
144 IPC::SyncMessageFilter* sync_message_filter() const {
145 return sync_message_filter_.get();
148 // The getter should only be called on the main thread, however the
149 // IPC::Sender it returns may be safely called on any thread including
150 // the main thread.
151 ThreadSafeSender* thread_safe_sender() const {
152 return thread_safe_sender_.get();
155 ChildHistogramMessageFilter* child_histogram_message_filter() const {
156 return histogram_message_filter_.get();
159 ServiceWorkerMessageFilter* service_worker_message_filter() const {
160 return service_worker_message_filter_.get();
163 QuotaMessageFilter* quota_message_filter() const {
164 return quota_message_filter_.get();
167 ChildResourceMessageFilter* child_resource_message_filter() const {
168 return resource_message_filter_.get();
171 base::MessageLoop* message_loop() const { return message_loop_; }
173 // Returns the one child thread. Can only be called on the main thread.
174 static ChildThreadImpl* current();
176 #if defined(OS_ANDROID)
177 // Called on Android's service thread to shutdown the main thread of this
178 // process.
179 static void ShutdownThread();
180 #endif
182 ServiceRegistry* service_registry() const {
183 return mojo_application_->service_registry();
186 protected:
187 friend class ChildProcess;
189 // Called when the process refcount is 0.
190 void OnProcessFinalRelease();
192 virtual bool OnControlMessageReceived(const IPC::Message& msg);
193 virtual void OnProcessBackgrounded(bool backgrounded);
195 void set_on_channel_error_called(bool on_channel_error_called) {
196 on_channel_error_called_ = on_channel_error_called;
199 // IPC::Listener implementation:
200 bool OnMessageReceived(const IPC::Message& msg) override;
201 void OnChannelConnected(int32 peer_pid) override;
202 void OnChannelError() override;
204 bool IsInBrowserProcess() const;
205 scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner();
207 private:
208 class ChildThreadMessageRouter : public MessageRouter {
209 public:
210 // |sender| must outlive this object.
211 explicit ChildThreadMessageRouter(IPC::Sender* sender);
212 bool Send(IPC::Message* msg) override;
214 private:
215 IPC::Sender* const sender_;
218 void Init(const Options& options);
220 // We create the channel first without connecting it so we can add filters
221 // prior to any messages being received, then connect it afterwards.
222 void ConnectChannel(bool use_mojo_channel);
224 // IPC message handlers.
225 void OnShutdown();
226 void OnSetProfilerStatus(tracked_objects::ThreadData::Status status);
227 void OnGetChildProfilerData(int sequence_number, int current_profiling_phase);
228 void OnProfilingPhaseCompleted(int profiling_phase);
229 #ifdef IPC_MESSAGE_LOG_ENABLED
230 void OnSetIPCLoggingEnabled(bool enable);
231 #endif
232 #if defined(USE_TCMALLOC)
233 void OnGetTcmallocStats();
234 #endif
236 void EnsureConnected();
238 scoped_ptr<MojoApplication> mojo_application_;
240 std::string channel_name_;
241 scoped_ptr<IPC::AttachmentBrokerUnprivileged> attachment_broker_;
242 scoped_ptr<IPC::SyncChannel> channel_;
244 // Allows threads other than the main thread to send sync messages.
245 scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_;
247 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
249 // Implements message routing functionality to the consumers of
250 // ChildThreadImpl.
251 ChildThreadMessageRouter router_;
253 // Handles resource loads for this process.
254 scoped_ptr<ResourceDispatcher> resource_dispatcher_;
256 scoped_ptr<WebSocketDispatcher> websocket_dispatcher_;
258 // The OnChannelError() callback was invoked - the channel is dead, don't
259 // attempt to communicate.
260 bool on_channel_error_called_;
262 base::MessageLoop* message_loop_;
264 scoped_ptr<FileSystemDispatcher> file_system_dispatcher_;
266 scoped_ptr<QuotaDispatcher> quota_dispatcher_;
268 scoped_refptr<ChildHistogramMessageFilter> histogram_message_filter_;
270 scoped_refptr<ChildResourceMessageFilter> resource_message_filter_;
272 scoped_refptr<ServiceWorkerMessageFilter> service_worker_message_filter_;
274 scoped_refptr<QuotaMessageFilter> quota_message_filter_;
276 scoped_refptr<NotificationDispatcher> notification_dispatcher_;
278 scoped_refptr<PushDispatcher> push_dispatcher_;
280 scoped_ptr<ChildSharedBitmapManager> shared_bitmap_manager_;
282 scoped_ptr<ChildGpuMemoryBufferManager> gpu_memory_buffer_manager_;
284 scoped_ptr<ChildDiscardableSharedMemoryManager>
285 discardable_shared_memory_manager_;
287 // Observes the trace event system. When tracing is enabled, optionally
288 // starts profiling the tcmalloc heap.
289 scoped_ptr<base::trace_event::TraceMemoryController> trace_memory_controller_;
291 scoped_ptr<base::PowerMonitor> power_monitor_;
293 scoped_refptr<ChildMessageFilter> geofencing_message_filter_;
295 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner_;
297 base::WeakPtrFactory<ChildThreadImpl> channel_connected_factory_;
299 DISALLOW_COPY_AND_ASSIGN(ChildThreadImpl);
302 struct ChildThreadImpl::Options {
303 ~Options();
305 class Builder;
307 std::string channel_name;
308 bool use_mojo_channel;
309 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner;
310 std::vector<IPC::MessageFilter*> startup_filters;
312 private:
313 Options();
316 class ChildThreadImpl::Options::Builder {
317 public:
318 Builder();
320 Builder& InBrowserProcess(const InProcessChildThreadParams& params);
321 Builder& UseMojoChannel(bool use_mojo_channel);
322 Builder& WithChannelName(const std::string& channel_name);
323 Builder& AddStartupFilter(IPC::MessageFilter* filter);
325 Options Build();
327 private:
328 struct Options options_;
330 DISALLOW_COPY_AND_ASSIGN(Builder);
333 } // namespace content
335 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_