CarbonUtils.m 5.0 KB

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