tizen beta release
[profile/ivi/webkit-efl.git] / Source / JavaScriptCore / wtf / mac / MainThreadMac.mm
1 /*
2  * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
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. 
16  *
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.
27  */
28  
29 #import "config.h"
30 #import "MainThread.h"
31
32 #import <CoreFoundation/CoreFoundation.h>
33 #import <Foundation/NSThread.h>
34 #import <stdio.h>
35 #import <wtf/Assertions.h>
36 #import <wtf/HashSet.h>
37 #import <wtf/Threading.h>
38 #import <wtf/ThreadSpecific.h>
39
40 @interface JSWTFMainThreadCaller : NSObject {
41 }
42 - (void)call;
43 @end
44
45 @implementation JSWTFMainThreadCaller
46
47 - (void)call
48 {
49     WTF::dispatchFunctionsFromMainThread();
50 }
51
52 @end // implementation JSWTFMainThreadCaller
53
54 namespace WTF {
55
56 static JSWTFMainThreadCaller* staticMainThreadCaller;
57 static bool isTimerPosted; // This is only accessed on the 'main' thread.
58 static bool mainThreadEstablishedAsPthreadMain;
59 static pthread_t mainThreadPthread;
60 static NSThread* mainThreadNSThread;
61
62 #if ENABLE(PARALLEL_GC)
63 static ThreadSpecific<bool>* isGCThread;
64
65 static void initializeGCThreads()
66 {
67     isGCThread = new ThreadSpecific<bool>();
68 }
69 #else
70 static void initializeGCThreads() { }
71 #endif
72
73 void initializeMainThreadPlatform()
74 {
75     ASSERT(!staticMainThreadCaller);
76     staticMainThreadCaller = [[JSWTFMainThreadCaller alloc] init];
77
78     mainThreadEstablishedAsPthreadMain = false;
79     mainThreadPthread = pthread_self();
80     mainThreadNSThread = [[NSThread currentThread] retain];
81     
82     initializeGCThreads();
83 }
84
85 void initializeMainThreadToProcessMainThreadPlatform()
86 {
87     if (!pthread_main_np())
88         NSLog(@"WebKit Threading Violation - initial use of WebKit from a secondary thread.");
89
90     ASSERT(!staticMainThreadCaller);
91     staticMainThreadCaller = [[JSWTFMainThreadCaller alloc] init];
92
93     mainThreadEstablishedAsPthreadMain = true;
94     mainThreadPthread = 0;
95     mainThreadNSThread = nil;
96     
97     initializeGCThreads();
98 }
99
100 static void timerFired(CFRunLoopTimerRef timer, void*)
101 {
102     CFRelease(timer);
103     isTimerPosted = false;
104     WTF::dispatchFunctionsFromMainThread();
105 }
106
107 static void postTimer()
108 {
109     ASSERT(isMainThread());
110
111     if (isTimerPosted)
112         return;
113
114     isTimerPosted = true;
115     CFRunLoopAddTimer(CFRunLoopGetCurrent(), CFRunLoopTimerCreate(0, 0, 0, 0, 0, timerFired, 0), kCFRunLoopCommonModes);
116 }
117
118 void scheduleDispatchFunctionsOnMainThread()
119 {
120     ASSERT(staticMainThreadCaller);
121
122     if (isMainThread()) {
123         postTimer();
124         return;
125     }
126
127     if (mainThreadEstablishedAsPthreadMain) {
128         ASSERT(!mainThreadNSThread);
129         [staticMainThreadCaller performSelectorOnMainThread:@selector(call) withObject:nil waitUntilDone:NO];
130         return;
131     }
132
133     ASSERT(mainThreadNSThread);
134     [staticMainThreadCaller performSelector:@selector(call) onThread:mainThreadNSThread withObject:nil waitUntilDone:NO];
135 }
136
137 bool isMainThread()
138 {
139     if (mainThreadEstablishedAsPthreadMain) {
140         ASSERT(!mainThreadPthread);
141         return pthread_main_np();
142     }
143
144     ASSERT(mainThreadPthread);
145     return pthread_equal(pthread_self(), mainThreadPthread);
146 }
147
148 #if ENABLE(PARALLEL_GC)
149 void registerGCThread()
150 {
151     if (!isGCThread) {
152         // This happens if we're running in a process that doesn't care about
153         // MainThread.
154         return;
155     }
156
157     **isGCThread = true;
158 }
159
160 bool isMainThreadOrGCThread()
161 {
162     if (isGCThread->isSet() && **isGCThread)
163         return true;
164     
165     return isMainThread();
166 }
167 #else
168 // This is necessary because JavaScriptCore.exp doesn't support preprocessor macros.
169 bool isMainThreadOrGCThread()
170 {
171     return isMainThread();
172 }
173 #endif
174
175 } // namespace WTF