2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "MainThread.h"
32 #include "CurrentTime.h"
34 #include "StdLibExtras.h"
35 #include "Threading.h"
37 #include <wtf/iphone/WebCoreThread.h>
39 #if PLATFORM(CHROMIUM)
40 #error Chromium uses a different main thread implementation
45 struct FunctionWithContext
{
46 MainThreadFunction
* function
;
48 ThreadCondition
* syncFlag
;
50 FunctionWithContext(MainThreadFunction
* function
= 0, void* context
= 0, ThreadCondition
* syncFlag
= 0)
56 bool operator == (const FunctionWithContext
& o
)
58 return function
== o
.function
59 && context
== o
.context
60 && syncFlag
== o
.syncFlag
;
64 class FunctionWithContextFinder
{
66 FunctionWithContextFinder(const FunctionWithContext
& m
) : m(m
) {}
67 bool operator() (FunctionWithContext
& o
) { return o
== m
; }
68 FunctionWithContext m
;
72 typedef Deque
<FunctionWithContext
> FunctionQueue
;
74 static bool callbacksPaused
; // This global variable is only accessed from main thread.
75 #if !PLATFORM(MAC) && !PLATFORM(QT)
76 static ThreadIdentifier mainThreadIdentifier
;
79 static Mutex
& mainThreadFunctionQueueMutex()
81 DEFINE_STATIC_LOCAL(Mutex
, staticMutex
, ());
85 static FunctionQueue
& functionQueue()
87 DEFINE_STATIC_LOCAL(FunctionQueue
, staticFunctionQueue
, ());
88 return staticFunctionQueue
;
94 void initializeMainThread()
96 static bool initializedMainThread
;
97 if (initializedMainThread
)
99 initializedMainThread
= true;
102 mainThreadIdentifier
= currentThread();
105 mainThreadFunctionQueueMutex();
106 initializeMainThreadPlatform();
111 static pthread_once_t initializeMainThreadKeyOnce
= PTHREAD_ONCE_INIT
;
113 static void initializeMainThreadOnce()
115 mainThreadFunctionQueueMutex();
116 initializeMainThreadPlatform();
119 void initializeMainThread()
121 pthread_once(&initializeMainThreadKeyOnce
, initializeMainThreadOnce
);
124 static void initializeMainThreadToProcessMainThreadOnce()
126 mainThreadFunctionQueueMutex();
127 initializeMainThreadToProcessMainThreadPlatform();
130 void initializeMainThreadToProcessMainThread()
132 pthread_once(&initializeMainThreadKeyOnce
, initializeMainThreadToProcessMainThreadOnce
);
136 // 0.1 sec delays in UI is approximate threshold when they become noticeable. Have a limit that's half of that.
137 static const double maxRunLoopSuspensionTime
= 0.05;
139 void dispatchFunctionsFromMainThread()
141 ASSERT(isMainThread());
146 double startTime
= currentTime();
148 FunctionWithContext invocation
;
151 MutexLocker
locker(mainThreadFunctionQueueMutex());
152 if (!functionQueue().size())
154 invocation
= functionQueue().takeFirst();
157 invocation
.function(invocation
.context
);
158 if (invocation
.syncFlag
) {
159 MutexLocker
locker(mainThreadFunctionQueueMutex());
160 invocation
.syncFlag
->signal();
163 // If we are running accumulated functions for too long so UI may become unresponsive, we need to
164 // yield so the user input can be processed. Otherwise user may not be able to even close the window.
165 // This code has effect only in case the scheduleDispatchFunctionsOnMainThread() is implemented in a way that
166 // allows input events to be processed before we are back here.
167 if (currentTime() - startTime
> maxRunLoopSuspensionTime
) {
168 scheduleDispatchFunctionsOnMainThread();
174 void callOnMainThread(MainThreadFunction
* function
, void* context
)
177 bool needToSchedule
= false;
179 MutexLocker
locker(mainThreadFunctionQueueMutex());
180 needToSchedule
= functionQueue().size() == 0;
181 functionQueue().append(FunctionWithContext(function
, context
));
184 scheduleDispatchFunctionsOnMainThread();
187 void callOnMainThreadAndWait(MainThreadFunction
* function
, void* context
)
191 if (isMainThread()) {
196 ThreadCondition syncFlag
;
197 Mutex
& functionQueueMutex
= mainThreadFunctionQueueMutex();
198 MutexLocker
locker(functionQueueMutex
);
199 functionQueue().append(FunctionWithContext(function
, context
, &syncFlag
));
200 if (functionQueue().size() == 1)
201 scheduleDispatchFunctionsOnMainThread();
202 syncFlag
.wait(functionQueueMutex
);
205 void cancelCallOnMainThread(MainThreadFunction
* function
, void* context
)
209 MutexLocker
locker(mainThreadFunctionQueueMutex());
211 FunctionWithContextFinder
pred(FunctionWithContext(function
, context
));
214 // We must redefine 'i' each pass, because the itererator's operator=
215 // requires 'this' to be valid, and remove() invalidates all iterators
216 FunctionQueue::iterator
i(functionQueue().findIf(pred
));
217 if (i
== functionQueue().end())
219 functionQueue().remove(i
);
223 void setMainThreadCallbacksPaused(bool paused
)
225 ASSERT((isMainThread() || pthread_main_np()) && WebCoreWebThreadIsLockedOrDisabled());
227 if (callbacksPaused
== paused
)
230 callbacksPaused
= paused
;
232 if (!callbacksPaused
)
233 scheduleDispatchFunctionsOnMainThread();
236 #if !PLATFORM(MAC) && !PLATFORM(QT) && !PLATFORM(BREWMP)
239 return currentThread() == mainThreadIdentifier
;