~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WTF/wtf/mac/MainThreadMac.mm

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
39
@interface JSWTFMainThreadCaller : NSObject {
 
40
}
 
41
- (void)call;
 
42
@end
 
43
 
 
44
@implementation JSWTFMainThreadCaller
 
45
 
 
46
- (void)call
 
47
{
 
48
    WTF::dispatchFunctionsFromMainThread();
 
49
}
 
50
 
 
51
@end // implementation JSWTFMainThreadCaller
 
52
 
 
53
namespace WTF {
 
54
 
 
55
static JSWTFMainThreadCaller* staticMainThreadCaller;
 
56
static bool isTimerPosted; // This is only accessed on the 'main' thread.
 
57
static bool mainThreadEstablishedAsPthreadMain;
 
58
static pthread_t mainThreadPthread;
 
59
static NSThread* mainThreadNSThread;
 
60
 
 
61
void initializeMainThreadPlatform()
 
62
{
 
63
    ASSERT(!staticMainThreadCaller);
 
64
    staticMainThreadCaller = [[JSWTFMainThreadCaller alloc] init];
 
65
 
 
66
    mainThreadEstablishedAsPthreadMain = false;
 
67
    mainThreadPthread = pthread_self();
 
68
    mainThreadNSThread = [[NSThread currentThread] retain];
 
69
    
 
70
    initializeGCThreads();
 
71
}
 
72
 
 
73
void initializeMainThreadToProcessMainThreadPlatform()
 
74
{
 
75
    if (!pthread_main_np())
 
76
        NSLog(@"WebKit Threading Violation - initial use of WebKit from a secondary thread.");
 
77
 
 
78
    ASSERT(!staticMainThreadCaller);
 
79
    staticMainThreadCaller = [[JSWTFMainThreadCaller alloc] init];
 
80
 
 
81
    mainThreadEstablishedAsPthreadMain = true;
 
82
    mainThreadPthread = 0;
 
83
    mainThreadNSThread = nil;
 
84
    
 
85
    initializeGCThreads();
 
86
}
 
87
 
 
88
static void timerFired(CFRunLoopTimerRef timer, void*)
 
89
{
 
90
    CFRelease(timer);
 
91
    isTimerPosted = false;
 
92
    WTF::dispatchFunctionsFromMainThread();
 
93
}
 
94
 
 
95
static void postTimer()
 
96
{
 
97
    ASSERT(isMainThread());
 
98
 
 
99
    if (isTimerPosted)
 
100
        return;
 
101
 
 
102
    isTimerPosted = true;
 
103
    CFRunLoopAddTimer(CFRunLoopGetCurrent(), CFRunLoopTimerCreate(0, 0, 0, 0, 0, timerFired, 0), kCFRunLoopCommonModes);
 
104
}
 
105
 
 
106
void scheduleDispatchFunctionsOnMainThread()
 
107
{
 
108
    ASSERT(staticMainThreadCaller);
 
109
 
 
110
    if (isMainThread()) {
 
111
        postTimer();
 
112
        return;
 
113
    }
 
114
 
 
115
    if (mainThreadEstablishedAsPthreadMain) {
 
116
        ASSERT(!mainThreadNSThread);
 
117
        [staticMainThreadCaller performSelectorOnMainThread:@selector(call) withObject:nil waitUntilDone:NO];
 
118
        return;
 
119
    }
 
120
 
 
121
    ASSERT(mainThreadNSThread);
 
122
    [staticMainThreadCaller performSelector:@selector(call) onThread:mainThreadNSThread withObject:nil waitUntilDone:NO];
 
123
}
 
124
 
 
125
bool isMainThread()
 
126
{
 
127
    if (mainThreadEstablishedAsPthreadMain) {
 
128
        ASSERT(!mainThreadPthread);
 
129
        return pthread_main_np();
 
130
    }
 
131
 
 
132
    ASSERT(mainThreadPthread);
 
133
    return pthread_equal(pthread_self(), mainThreadPthread);
 
134
}
 
135
 
 
136
} // namespace WTF