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_PUBLIC_BROWSER_BROWSER_THREAD_H_
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_
10 #include "base/basictypes.h"
11 #include "base/callback.h"
12 #include "base/location.h"
13 #include "base/logging.h"
14 #include "base/message_loop/message_loop_proxy.h"
15 #include "base/task_runner_util.h"
16 #include "base/time/time.h"
17 #include "content/common/content_export.h"
21 class SequencedWorkerPool
;
27 class BrowserThreadDelegate
;
28 class BrowserThreadImpl
;
30 // Use DCHECK_CURRENTLY_ON(BrowserThread::ID) to assert that a function can only
31 // be called on the named BrowserThread.
32 #define DCHECK_CURRENTLY_ON(thread_identifier) \
33 (DCHECK(::content::BrowserThread::CurrentlyOn(thread_identifier)) \
34 << ::content::BrowserThread::GetDCheckCurrentlyOnErrorMessage( \
37 ///////////////////////////////////////////////////////////////////////////////
40 // Utility functions for threads that are known by a browser-wide
41 // name. For example, there is one IO thread for the entire browser
42 // process, and various pieces of code find it useful to retrieve a
43 // pointer to the IO thread's message loop.
45 // Invoke a task by thread ID:
47 // BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, task);
49 // The return value is false if the task couldn't be posted because the target
50 // thread doesn't exist. If this could lead to data loss, you need to check the
51 // result and restructure the code to ensure it doesn't occur.
53 // This class automatically handles the lifetime of different threads.
54 // It's always safe to call PostTask on any thread. If it's not yet created,
55 // the task is deleted. There are no race conditions. If the thread that the
56 // task is posted to is guaranteed to outlive the current thread, then no locks
57 // are used. You should never need to cache pointers to MessageLoops, since
58 // they're not thread safe.
59 class CONTENT_EXPORT BrowserThread
{
61 // An enumeration of the well-known threads.
62 // NOTE: threads must be listed in the order of their life-time, with each
63 // thread outliving every other thread below it.
65 // The main thread in the browser.
68 // This is the thread that interacts with the database.
71 // This is the thread that interacts with the file system.
74 // Used for file system operations that block user interactions.
75 // Responsiveness of this thread affect users.
78 // Used to launch and terminate Chrome processes.
81 // This is the thread to handle slow HTTP cache operations.
84 // This is the thread that processes non-blocking IO, i.e. IPC and network.
85 // Blocking IO should happen on other threads like DB, FILE,
86 // FILE_USER_BLOCKING and CACHE depending on the usage.
89 // NOTE: do not add new threads here that are only used by a small number of
90 // files. Instead you should just use a Thread class and pass its
91 // MessageLoopProxy around. Named threads there are only for threads that
92 // are used in many places.
94 // This identifier does not represent a thread. Instead it counts the
95 // number of well-known threads. Insert new well-known threads before this
100 // These are the same methods in message_loop.h, but are guaranteed to either
101 // get posted to the MessageLoop if it's still alive, or be deleted otherwise.
102 // They return true iff the thread existed and the task was posted. Note that
103 // even if the task is posted, there's no guarantee that it will run, since
104 // the target thread may already have a Quit message in its queue.
105 static bool PostTask(ID identifier
,
106 const tracked_objects::Location
& from_here
,
107 const base::Closure
& task
);
108 static bool PostDelayedTask(ID identifier
,
109 const tracked_objects::Location
& from_here
,
110 const base::Closure
& task
,
111 base::TimeDelta delay
);
112 static bool PostNonNestableTask(ID identifier
,
113 const tracked_objects::Location
& from_here
,
114 const base::Closure
& task
);
115 static bool PostNonNestableDelayedTask(
117 const tracked_objects::Location
& from_here
,
118 const base::Closure
& task
,
119 base::TimeDelta delay
);
121 static bool PostTaskAndReply(
123 const tracked_objects::Location
& from_here
,
124 const base::Closure
& task
,
125 const base::Closure
& reply
);
127 template <typename ReturnType
, typename ReplyArgType
>
128 static bool PostTaskAndReplyWithResult(
130 const tracked_objects::Location
& from_here
,
131 const base::Callback
<ReturnType(void)>& task
,
132 const base::Callback
<void(ReplyArgType
)>& reply
) {
133 scoped_refptr
<base::MessageLoopProxy
> message_loop_proxy
=
134 GetMessageLoopProxyForThread(identifier
);
135 return base::PostTaskAndReplyWithResult(
136 message_loop_proxy
.get(), from_here
, task
, reply
);
140 static bool DeleteSoon(ID identifier
,
141 const tracked_objects::Location
& from_here
,
143 return GetMessageLoopProxyForThread(identifier
)->DeleteSoon(
148 static bool ReleaseSoon(ID identifier
,
149 const tracked_objects::Location
& from_here
,
151 return GetMessageLoopProxyForThread(identifier
)->ReleaseSoon(
155 // Simplified wrappers for posting to the blocking thread pool. Use this
156 // for doing things like blocking I/O.
158 // The first variant will run the task in the pool with no sequencing
159 // semantics, so may get run in parallel with other posted tasks. The second
160 // variant will all post a task with no sequencing semantics, and will post a
161 // reply task to the origin TaskRunner upon completion. The third variant
162 // provides sequencing between tasks with the same sequence token name.
164 // These tasks are guaranteed to run before shutdown.
166 // If you need to provide different shutdown semantics (like you have
167 // something slow and noncritical that doesn't need to block shutdown),
168 // or you want to manually provide a sequence token (which saves a map
169 // lookup and is guaranteed unique without you having to come up with a
170 // unique string), you can access the sequenced worker pool directly via
171 // GetBlockingPool().
173 // If you need to PostTaskAndReplyWithResult, use
174 // base::PostTaskAndReplyWithResult() with GetBlockingPool() as the task
176 static bool PostBlockingPoolTask(const tracked_objects::Location
& from_here
,
177 const base::Closure
& task
);
178 static bool PostBlockingPoolTaskAndReply(
179 const tracked_objects::Location
& from_here
,
180 const base::Closure
& task
,
181 const base::Closure
& reply
);
182 static bool PostBlockingPoolSequencedTask(
183 const std::string
& sequence_token_name
,
184 const tracked_objects::Location
& from_here
,
185 const base::Closure
& task
);
187 // Returns the thread pool used for blocking file I/O. Use this object to
188 // perform random blocking operations such as file writes or querying the
190 static base::SequencedWorkerPool
* GetBlockingPool() WARN_UNUSED_RESULT
;
192 // Callable on any thread. Returns whether the given well-known thread is
194 static bool IsThreadInitialized(ID identifier
) WARN_UNUSED_RESULT
;
196 // Callable on any thread. Returns whether you're currently on a particular
197 // thread. To DCHECK this, use the DCHECK_CURRENTLY_ON() macro above.
198 static bool CurrentlyOn(ID identifier
) WARN_UNUSED_RESULT
;
200 // Callable on any thread. Returns whether the threads message loop is valid.
201 // If this returns false it means the thread is in the process of shutting
203 static bool IsMessageLoopValid(ID identifier
) WARN_UNUSED_RESULT
;
205 // If the current message loop is one of the known threads, returns true and
206 // sets identifier to its ID. Otherwise returns false.
207 static bool GetCurrentThreadIdentifier(ID
* identifier
) WARN_UNUSED_RESULT
;
209 // Callers can hold on to a refcounted MessageLoopProxy beyond the lifetime
211 static scoped_refptr
<base::MessageLoopProxy
> GetMessageLoopProxyForThread(
214 // Returns a pointer to the thread's message loop, which will become
215 // invalid during shutdown, so you probably shouldn't hold onto it.
217 // This must not be called before the thread is started, or after
218 // the thread is stopped, or it will DCHECK.
220 // Ownership remains with the BrowserThread implementation, so you
221 // must not delete the pointer.
222 static base::MessageLoop
* UnsafeGetMessageLoopForThread(ID identifier
);
224 // Sets the delegate for the specified BrowserThread.
226 // Only one delegate may be registered at a time. Delegates may be
227 // unregistered by providing a nullptr pointer.
229 // If the caller unregisters a delegate before CleanUp has been
230 // called, it must perform its own locking to ensure the delegate is
231 // not deleted while unregistering.
232 static void SetDelegate(ID identifier
, BrowserThreadDelegate
* delegate
);
234 // Use these templates in conjunction with RefCountedThreadSafe or scoped_ptr
235 // when you want to ensure that an object is deleted on a specific thread.
236 // This is needed when an object can hop between threads
237 // (i.e. IO -> FILE -> IO), and thread switching delays can mean that the
238 // final IO tasks executes before the FILE task's stack unwinds.
239 // This would lead to the object destructing on the FILE thread, which often
240 // is not what you want (i.e. to unregister from NotificationService, to
241 // notify other objects on the creating thread etc).
243 struct DeleteOnThread
{
245 static void Destruct(const T
* x
) {
246 if (CurrentlyOn(thread
)) {
249 if (!DeleteSoon(thread
, FROM_HERE
, x
)) {
250 #if defined(UNIT_TEST)
251 // Only logged under unit testing because leaks at shutdown
252 // are acceptable under normal circumstances.
253 LOG(ERROR
) << "DeleteSoon failed on thread " << thread
;
258 template <typename T
>
259 inline void operator()(T
* ptr
) const {
260 enum { type_must_be_complete
= sizeof(T
) };
265 // Sample usage with RefCountedThreadSafe:
267 // : public base::RefCountedThreadSafe<
268 // Foo, BrowserThread::DeleteOnIOThread> {
272 // friend struct BrowserThread::DeleteOnThread<BrowserThread::IO>;
273 // friend class base::DeleteHelper<Foo>;
277 // Sample usage with scoped_ptr:
278 // scoped_ptr<Foo, BrowserThread::DeleteOnIOThread> ptr;
279 struct DeleteOnUIThread
: public DeleteOnThread
<UI
> { };
280 struct DeleteOnIOThread
: public DeleteOnThread
<IO
> { };
281 struct DeleteOnFileThread
: public DeleteOnThread
<FILE> { };
282 struct DeleteOnDBThread
: public DeleteOnThread
<DB
> { };
284 // Returns an appropriate error message for when DCHECK_CURRENTLY_ON() fails.
285 static std::string
GetDCheckCurrentlyOnErrorMessage(ID expected
);
288 friend class BrowserThreadImpl
;
291 DISALLOW_COPY_AND_ASSIGN(BrowserThread
);
294 } // namespace content
296 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_