~ubuntu-branches/ubuntu/maverick/webkit/maverick

« back to all changes in this revision

Viewing changes to WebKit/Carbon/CarbonUtils.m

  • Committer: Bazaar Package Importer
  • Author(s): Mike Hommey
  • Date: 2007-08-19 15:54:12 UTC
  • Revision ID: james.westby@ubuntu.com-20070819155412-uxxg1h9plpghmtbi
Tags: upstream-0~svn25144
ImportĀ upstreamĀ versionĀ 0~svn25144

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2005 Apple Computer, 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
#ifndef __LP64__
 
30
 
 
31
#include "CarbonUtils.h"
 
32
 
 
33
#import <WebKitSystemInterface.h>
 
34
 
 
35
extern CGImageRef _NSCreateImageRef(unsigned char *const bitmapData[5], int pixelsWide, int pixelsHigh, int bitsPerSample, int samplesPerPixel, int bitsPerPixel, int bytesPerRow, BOOL isPlanar, BOOL hasAlpha, NSString *colorSpaceName, CGColorSpaceRef customColorSpace, id sourceObj);
 
36
 
 
37
static void PoolCleaner(EventLoopTimerRef inTimer, EventLoopIdleTimerMessage inState, void *inUserData);
 
38
 
 
39
static NSAutoreleasePool* sPool;
 
40
static unsigned numPools;
 
41
static EventLoopRef poolLoop;
 
42
 
 
43
#ifdef BUILDING_ON_TIGER
 
44
 
 
45
void HIWebViewRegisterClass(void);
 
46
 
 
47
#endif
 
48
 
 
49
void WebInitForCarbon(void)
 
50
{
 
51
    static bool sAppKitLoaded;
 
52
 
 
53
    if (!sAppKitLoaded) {
 
54
        ProcessSerialNumber process;
 
55
 
 
56
        // Force us to register with process server, this ensure that the process
 
57
        // "flavour" is correctly established.
 
58
        GetCurrentProcess(&process); 
 
59
        NSApplicationLoad();
 
60
 
 
61
        sAppKitLoaded = true;
 
62
 
 
63
        sPool = [[NSAutoreleasePool allocWithZone:NULL] init];
 
64
        numPools = WKGetNSAutoreleasePoolCount();
 
65
 
 
66
        poolLoop = GetCurrentEventLoop();
 
67
 
 
68
        InstallEventLoopIdleTimer(GetMainEventLoop(), 1.0, 0, PoolCleaner, 0, NULL);
 
69
 
 
70
#ifdef BUILDING_ON_TIGER
 
71
 
 
72
        HIWebViewRegisterClass();
 
73
 
 
74
#endif
 
75
 
 
76
    }
 
77
}
 
78
 
 
79
/*
 
80
    The pool cleaner is required because Carbon applications do not have
 
81
    an autorelease pool provided by their event loops.  Importantly,
 
82
    carbon applications that nest event loops, using any of the various
 
83
    techniques available to Carbon apps, MUST create their our pools around
 
84
    their nested event loops.
 
85
*/
 
86
static void PoolCleaner(EventLoopTimerRef inTimer, EventLoopIdleTimerMessage inState, void *inUserData)
 
87
{
 
88
    if (inState == kEventLoopIdleTimerStarted) {
 
89
        CFStringRef mode = CFRunLoopCopyCurrentMode((CFRunLoopRef)GetCFRunLoopFromEventLoop(GetCurrentEventLoop()));
 
90
        EventLoopRef thisLoop = GetCurrentEventLoop();
 
91
        if (CFEqual(mode, kCFRunLoopDefaultMode) && thisLoop == poolLoop) {
 
92
            unsigned currentNumPools = WKGetNSAutoreleasePoolCount() - 1;            
 
93
            if (currentNumPools == numPools) {
 
94
                [sPool drain];
 
95
                sPool = [[NSAutoreleasePool allocWithZone:NULL] init];
 
96
                numPools = WKGetNSAutoreleasePoolCount();
 
97
            }
 
98
        }
 
99
        CFRelease(mode);
 
100
    }
 
101
}
 
102
 
 
103
CGImageRef
 
104
WebConvertNSImageToCGImageRef(
 
105
        NSImage*         inImage )
 
106
{
 
107
        NSArray*                                reps = [inImage representations];
 
108
        NSBitmapImageRep*               rep = NULL;
 
109
        CGImageRef                              image = NULL;
 
110
        unsigned                                i;
 
111
 
 
112
        for ( i=0; i < [reps count]; i++ )
 
113
        {
 
114
        if ( [[reps objectAtIndex:i] isKindOfClass:[NSBitmapImageRep class]] )
 
115
        {
 
116
            rep = [reps objectAtIndex:i];
 
117
            break;
 
118
        }
 
119
        }
 
120
    
 
121
        if ( rep )
 
122
        {
 
123
        //CGColorSpaceRef csync = (CGColorSpaceRef)[rep valueForProperty:NSImageColorSyncProfileData];
 
124
        
 
125
        unsigned char* planes[5];
 
126
 
 
127
        [rep getBitmapDataPlanes:planes];
 
128
 
 
129
        image = _NSCreateImageRef( planes, [rep pixelsWide], [rep pixelsHigh],
 
130
                    [rep bitsPerSample], [rep samplesPerPixel], [rep bitsPerPixel],
 
131
                    [rep bytesPerRow], [rep isPlanar], [rep hasAlpha], [rep colorSpaceName],
 
132
                    NULL, rep);
 
133
        }
 
134
    
 
135
        return image;
 
136
}
 
137
 
 
138
#endif