blob: b05d6a9d039ff22f3289865c6d15fad7cde8486f [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_BASE_THREAD_H_
12#define WEBRTC_BASE_THREAD_H_
13
14#include <algorithm>
15#include <list>
16#include <string>
17#include <vector>
18
19#if defined(WEBRTC_POSIX)
20#include <pthread.h>
21#endif
22#include "webrtc/base/constructormagic.h"
fischman@webrtc.orge5063b12014-05-23 17:28:50 +000023#include "webrtc/base/event.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000024#include "webrtc/base/messagequeue.h"
25
26#if defined(WEBRTC_WIN)
27#include "webrtc/base/win32.h"
28#endif
29
30namespace rtc {
31
32class Thread;
33
34class ThreadManager {
35 public:
36 ThreadManager();
37 ~ThreadManager();
38
39 static ThreadManager* Instance();
40
41 Thread* CurrentThread();
42 void SetCurrentThread(Thread* thread);
43
44 // Returns a thread object with its thread_ ivar set
45 // to whatever the OS uses to represent the thread.
46 // If there already *is* a Thread object corresponding to this thread,
47 // this method will return that. Otherwise it creates a new Thread
48 // object whose wrapped() method will return true, and whose
49 // handle will, on Win32, be opened with only synchronization privileges -
50 // if you need more privilegs, rather than changing this method, please
51 // write additional code to adjust the privileges, or call a different
52 // factory method of your own devising, because this one gets used in
53 // unexpected contexts (like inside browser plugins) and it would be a
54 // shame to break it. It is also conceivable on Win32 that we won't even
55 // be able to get synchronization privileges, in which case the result
56 // will have a NULL handle.
57 Thread *WrapCurrentThread();
58 void UnwrapCurrentThread();
59
60 private:
61#if defined(WEBRTC_POSIX)
62 pthread_key_t key_;
63#endif
64
65#if defined(WEBRTC_WIN)
66 DWORD key_;
67#endif
68
69 DISALLOW_COPY_AND_ASSIGN(ThreadManager);
70};
71
72struct _SendMessage {
73 _SendMessage() {}
74 Thread *thread;
75 Message msg;
76 bool *ready;
77};
78
79enum ThreadPriority {
80 PRIORITY_IDLE = -1,
81 PRIORITY_NORMAL = 0,
82 PRIORITY_ABOVE_NORMAL = 1,
83 PRIORITY_HIGH = 2,
84};
85
86class Runnable {
87 public:
88 virtual ~Runnable() {}
89 virtual void Run(Thread* thread) = 0;
90
91 protected:
92 Runnable() {}
93
94 private:
95 DISALLOW_COPY_AND_ASSIGN(Runnable);
96};
97
98// WARNING! SUBCLASSES MUST CALL Stop() IN THEIR DESTRUCTORS! See ~Thread().
99
100class Thread : public MessageQueue {
101 public:
102 explicit Thread(SocketServer* ss = NULL);
103 // NOTE: ALL SUBCLASSES OF Thread MUST CALL Stop() IN THEIR DESTRUCTORS (or
104 // guarantee Stop() is explicitly called before the subclass is destroyed).
105 // This is required to avoid a data race between the destructor modifying the
106 // vtable, and the Thread::PreRun calling the virtual method Run().
107 virtual ~Thread();
108
109 static Thread* Current();
110
henrike@webrtc.org92a9bac2014-07-14 22:03:57 +0000111 // Used to catch performance regressions. Use this to disallow blocking calls
112 // (Invoke) for a given scope. If a synchronous call is made while this is in
113 // effect, an assert will be triggered.
114 // Note that this is a single threaded class.
115 class ScopedDisallowBlockingCalls {
116 public:
117 ScopedDisallowBlockingCalls();
118 ~ScopedDisallowBlockingCalls();
119 private:
120 Thread* const thread_;
121 const bool previous_state_;
122 };
123
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000124 bool IsCurrent() const {
125 return Current() == this;
126 }
127
128 // Sleeps the calling thread for the specified number of milliseconds, during
129 // which time no processing is performed. Returns false if sleeping was
130 // interrupted by a signal (POSIX only).
131 static bool SleepMs(int millis);
132
133 // Sets the thread's name, for debugging. Must be called before Start().
134 // If |obj| is non-NULL, its value is appended to |name|.
135 const std::string& name() const { return name_; }
136 bool SetName(const std::string& name, const void* obj);
137
138 // Sets the thread's priority. Must be called before Start().
139 ThreadPriority priority() const { return priority_; }
140 bool SetPriority(ThreadPriority priority);
141
142 // Starts the execution of the thread.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000143 bool Start(Runnable* runnable = NULL);
144
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000145 // Tells the thread to stop and waits until it is joined.
146 // Never call Stop on the current thread. Instead use the inherited Quit
147 // function which will exit the base MessageQueue without terminating the
148 // underlying OS thread.
149 virtual void Stop();
150
151 // By default, Thread::Run() calls ProcessMessages(kForever). To do other
152 // work, override Run(). To receive and dispatch messages, call
153 // ProcessMessages occasionally.
154 virtual void Run();
155
156 virtual void Send(MessageHandler *phandler, uint32 id = 0,
157 MessageData *pdata = NULL);
158
159 // Convenience method to invoke a functor on another thread. Caller must
160 // provide the |ReturnT| template argument, which cannot (easily) be deduced.
161 // Uses Send() internally, which blocks the current thread until execution
162 // is complete.
163 // Ex: bool result = thread.Invoke<bool>(&MyFunctionReturningBool);
henrike@webrtc.org92a9bac2014-07-14 22:03:57 +0000164 // NOTE: This function can only be called when synchronous calls are allowed.
165 // See ScopedDisallowBlockingCalls for details.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000166 template <class ReturnT, class FunctorT>
167 ReturnT Invoke(const FunctorT& functor) {
168 FunctorMessageHandler<ReturnT, FunctorT> handler(functor);
169 Send(&handler);
170 return handler.result();
171 }
172
173 // From MessageQueue
174 virtual void Clear(MessageHandler *phandler, uint32 id = MQID_ANY,
175 MessageList* removed = NULL);
176 virtual void ReceiveSends();
177
178 // ProcessMessages will process I/O and dispatch messages until:
179 // 1) cms milliseconds have elapsed (returns true)
180 // 2) Stop() is called (returns false)
181 bool ProcessMessages(int cms);
182
183 // Returns true if this is a thread that we created using the standard
184 // constructor, false if it was created by a call to
185 // ThreadManager::WrapCurrentThread(). The main thread of an application
186 // is generally not owned, since the OS representation of the thread
187 // obviously exists before we can get to it.
188 // You cannot call Start on non-owned threads.
189 bool IsOwned();
190
191#if defined(WEBRTC_WIN)
192 HANDLE GetHandle() const {
193 return thread_;
194 }
195 DWORD GetId() const {
196 return thread_id_;
197 }
198#elif defined(WEBRTC_POSIX)
199 pthread_t GetPThread() {
200 return thread_;
201 }
202#endif
203
fischman@webrtc.orge5063b12014-05-23 17:28:50 +0000204 // Expose private method running() for tests.
205 //
206 // DANGER: this is a terrible public API. Most callers that might want to
207 // call this likely do not have enough control/knowledge of the Thread in
208 // question to guarantee that the returned value remains true for the duration
209 // of whatever code is conditionally executing because of the return value!
210 bool RunningForTest() { return running(); }
fischman@webrtc.orge5063b12014-05-23 17:28:50 +0000211
jiayl@webrtc.org3987b6d2014-09-24 17:14:05 +0000212 // Sets the per-thread allow-blocking-calls flag and returns the previous
jiayl@webrtc.org7dfb7fa2014-09-29 22:45:55 +0000213 // value. Must be called on this thread.
jiayl@webrtc.org3987b6d2014-09-24 17:14:05 +0000214 bool SetAllowBlockingCalls(bool allow);
215
henrike@webrtc.orge30dab72014-10-09 15:41:40 +0000216 // These functions are public to avoid injecting test hooks. Don't call them
217 // outside of tests.
jiayl@webrtc.orgba737cb2014-09-18 16:45:21 +0000218 // This method should be called when thread is created using non standard
219 // method, like derived implementation of rtc::Thread and it can not be
220 // started by calling Start(). This will set started flag to true and
221 // owned to false. This must be called from the current thread.
222 bool WrapCurrent();
223 void UnwrapCurrent();
224
henrike@webrtc.orge30dab72014-10-09 15:41:40 +0000225 protected:
jiayl@webrtc.orgba737cb2014-09-18 16:45:21 +0000226 // Same as WrapCurrent except that it never fails as it does not try to
227 // acquire the synchronization access of the thread. The caller should never
228 // call Stop() or Join() on this thread.
229 void SafeWrapCurrent();
230
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000231 // Blocks the calling thread until this thread has terminated.
232 void Join();
233
henrike@webrtc.org92a9bac2014-07-14 22:03:57 +0000234 static void AssertBlockingIsAllowedOnCurrentThread();
235
236 friend class ScopedDisallowBlockingCalls;
237
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000238 private:
239 static void *PreRun(void *pv);
240
241 // ThreadManager calls this instead WrapCurrent() because
242 // ThreadManager::Instance() cannot be used while ThreadManager is
243 // being created.
jiayl@webrtc.orgba737cb2014-09-18 16:45:21 +0000244 // The method tries to get synchronization rights of the thread on Windows if
245 // |need_synchronize_access| is true.
246 bool WrapCurrentWithThreadManager(ThreadManager* thread_manager,
247 bool need_synchronize_access);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000248
fischman@webrtc.orge5063b12014-05-23 17:28:50 +0000249 // Return true if the thread was started and hasn't yet stopped.
250 bool running() { return running_.Wait(0); }
251
jiayl@webrtc.org3987b6d2014-09-24 17:14:05 +0000252 // Processes received "Send" requests. If |source| is not NULL, only requests
253 // from |source| are processed, otherwise, all requests are processed.
254 void ReceiveSendsFromThread(const Thread* source);
255
256 // If |source| is not NULL, pops the first "Send" message from |source| in
257 // |sendlist_|, otherwise, pops the first "Send" message of |sendlist_|.
258 // The caller must lock |crit_| before calling.
259 // Returns true if there is such a message.
260 bool PopSendMessageFromThread(const Thread* source, _SendMessage* msg);
261
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000262 std::list<_SendMessage> sendlist_;
263 std::string name_;
264 ThreadPriority priority_;
fischman@webrtc.orge5063b12014-05-23 17:28:50 +0000265 Event running_; // Signalled means running.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000266
267#if defined(WEBRTC_POSIX)
268 pthread_t thread_;
269#endif
270
271#if defined(WEBRTC_WIN)
272 HANDLE thread_;
273 DWORD thread_id_;
274#endif
275
276 bool owned_;
henrike@webrtc.org92a9bac2014-07-14 22:03:57 +0000277 bool blocking_calls_allowed_; // By default set to |true|.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000278
279 friend class ThreadManager;
280
281 DISALLOW_COPY_AND_ASSIGN(Thread);
282};
283
284// AutoThread automatically installs itself at construction
285// uninstalls at destruction, if a Thread object is
286// _not already_ associated with the current OS thread.
287
288class AutoThread : public Thread {
289 public:
290 explicit AutoThread(SocketServer* ss = 0);
291 virtual ~AutoThread();
292
293 private:
294 DISALLOW_COPY_AND_ASSIGN(AutoThread);
295};
296
297// Win32 extension for threads that need to use COM
298#if defined(WEBRTC_WIN)
299class ComThread : public Thread {
300 public:
301 ComThread() {}
302 virtual ~ComThread() { Stop(); }
303
304 protected:
305 virtual void Run();
306
307 private:
308 DISALLOW_COPY_AND_ASSIGN(ComThread);
309};
310#endif
311
312// Provides an easy way to install/uninstall a socketserver on a thread.
313class SocketServerScope {
314 public:
315 explicit SocketServerScope(SocketServer* ss) {
316 old_ss_ = Thread::Current()->socketserver();
317 Thread::Current()->set_socketserver(ss);
318 }
319 ~SocketServerScope() {
320 Thread::Current()->set_socketserver(old_ss_);
321 }
322
323 private:
324 SocketServer* old_ss_;
325
326 DISALLOW_IMPLICIT_CONSTRUCTORS(SocketServerScope);
327};
328
329} // namespace rtc
330
331#endif // WEBRTC_BASE_THREAD_H_