User Kristof - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T03:10:26Zhttp://stackoverflow.com/feeds/user/15745http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/937105/garbage-collection-crash-using-nsimage1Garbage Collection Crash using NSImageKristof2009-06-01T22:22:04Z2009-06-02T00:24:18Z
<p>This piece of code was split off from a project I am working on. It consistently reproduces a garbage collection error on my Mac OS 10.5.7 and sometimes crashes. I have been looking at it for too long so my question is: does anybody else see why this would give errors when garbage collection is on?</p>
<pre><code>- (void) doCrash: (id) sender
{
NSArray *lURLArray = [ NSArray arrayWithObjects:
@"http://userserve-ak.last.fm/serve/300x300/23621007.jpg",
@"http://userserve-ak.last.fm/serve/300x300/26675609.png",
@"http://userserve-ak.last.fm/serve/300x300/26675609.png",
nil ];
NSString *lImageURL = nil;
for (lImageURL in lURLArray)
{
NSImage *lImage = [[NSImage alloc] initWithContentsOfURL: [NSURL URLWithString: lImageURL]];
NSSize targetSize = NSMakeSize(80,80);
NSImage *newImage = [[NSImage alloc] initWithSize:targetSize];
[newImage lockFocus];
NSRect thumbnailRect = NSMakeRect(0,0,80,80);
NSRect sourceRect = NSMakeRect(0,0,[lImage size].width,[lImage size].height);
[lImage drawInRect: thumbnailRect
fromRect: sourceRect
operation: NSCompositeSourceOver
fraction: 1.0];
[newImage unlockFocus];
}
}
</code></pre>
<p>When playing around with the URLs in the lURLArray I get different behavior: sometimes crashes, sometimes the error message.</p>
<p>The garbage collection error message is triggered when the garbage collector is freeing one of the images and goes like this:</p>
<pre><code>reference count underflow for <address>, break on auto_refcount_underflow_error to debug.
</code></pre>
<p>Any help is much appreciated,
thanks,
Kristof</p>
http://stackoverflow.com/questions/937105/garbage-collection-crash-using-nsimage/937419#9374192Answer by Kristof for Garbage Collection Crash using NSImageKristof2009-06-02T00:24:18Z2009-06-02T00:24:18Z<p>This has been confirmed to me by someone from Apple as a bug in OX X 10.5.7.</p>
<p>rdar://problem/6938657</p>
http://stackoverflow.com/questions/393803/accessing-a-webserver-from-a-cocoa-application/396263#3962630Answer by Kristof for Accessing a webserver from a cocoa application.Kristof2008-12-28T15:25:15Z2008-12-28T15:25:15Z<p>And another way is using libcurl, which comes preinstalled on any OS X system. You'd better make sure System Settings like proxies etc. are respected though if you use this approach.</p>
http://stackoverflow.com/questions/324032/how-do-i-get-keyboard-events-in-an-nsstatuswindowlevel-window-while-my-applicatio1How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost?Kristof2008-11-27T15:27:46Z2008-12-22T19:59:02Z
<p>After creating a translucent window (<a href="http://stormsilver.net/itunescheck/browser/tags/0.91/TransparentWindow.m?rev=25" rel="nofollow">based on example code by Matt Gemmell</a>) I want to get keyboard events in this window. It seems that there are only keyboard events when my application is the active application while I want keyboard events even when my application isn't active but the window is visible.</p>
<p>Basically I want behavior like that provided by the Quicksilver application (by blacktree).</p>
<p>Does anybody have any hints on how to do this?</p>
http://stackoverflow.com/questions/364219/how-can-i-have-multiple-instances-of-webkit-without-sharing-cookies/386719#3867190Answer by Kristof for How can I have multiple instances of webkit without sharing cookies?Kristof2008-12-22T16:48:28Z2008-12-22T16:48:28Z<p>What you can do is take a look at <a href="http://developer.apple.com/documentation/Darwin/Reference/Manpages/man3/libcurl-tutorial.3.html" rel="nofollow">libcurl</a> which can handle cookie stores that don't mix with the URL Loading system wide cookie storage for those requests you want to separate. For me that seems to be a valid and simple solution. If you really need to depend on webview/webkit it might not be.</p>
http://stackoverflow.com/questions/364219/how-can-i-have-multiple-instances-of-webkit-without-sharing-cookies/365135#3651352Answer by Kristof for How can I have multiple instances of webkit without sharing cookies?Kristof2008-12-13T11:49:56Z2008-12-13T11:49:56Z<p><a href="http://lists.apple.com/archives/Webkitsdk-dev/2008/Jan/msg00018.html" rel="nofollow">This post</a> sums up what you could do. I'm not sure if it is feasible for you and I feel it wouldn't be a straightforward task, maybe even risky, but it seems to be <em>possible</em>: the author claims iCab does it this way.</p>
<p>I was hoping for a simpler solution too, really. Of course, since Webkit is open source you could just roll out your own version of the framework with changed behavior I guess?</p>
http://stackoverflow.com/questions/8970/accessing-isight-programatically/280972#2809721Answer by Kristof for Accessing iSight programatically?Kristof2008-11-11T14:08:14Z2008-11-11T14:08:14Z<p>One thing that hasn't been mentioned so far is the <a href="http://developer.apple.com/documentation/GraphicsImaging/Reference/IKImagePicker_Class/IKImagePicker_Reference.html" rel="nofollow">IKPictureTaker</a>, which is part of Image Kit. This will come up with the standard OS provided panel to take pictures though, with all the possible filter functionality etc. included. I'm not sure if that's what you want.</p>
<p>I suppose you can use it from other languages as well, considering there are things like <a href="http://www.cocoadev.com/index.pl?CocoaBridges" rel="nofollow">cocoa bridges</a> but I have no experience with them.</p>
<p>Googling also came up with <a href="http://stackoverflow.com/questions/57424?sort=newest">another question on stackoverflow</a> that seems to address this issue.</p>
http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/232903#2329039Answer by Kristof for Best Cocoa/Mac OS X programming blogs?Kristof2008-10-24T09:14:21Z2008-10-24T09:14:21Z<p>I subscribe to <a href="http://www.planetcocoa.org/" rel="nofollow">planet cocoa</a> which aggregates some other cocoa blogs and I skim through that once in a while. It has a list of blogs it aggregates on its website and all of the above are included.</p>
http://stackoverflow.com/questions/937105/garbage-collection-crash-using-nsimageComment by Kristof on Garbage Collection Crash using NSImageKristof2009-06-01T22:46:31Z2009-06-01T22:46:31ZI did say though: "when the garbage collector is freeing one of the images".
Stack trace:
#0 auto_refcount_underflow_error ()
#1 Auto::Zone::dec_refcount_small_medium ()
#2 Auto::Zone::block_decrement_refcount ()
#3 CFRelease ()
#4 -[NSBitmapImageRep _freeData] ()
#5 -[NSBitmapImageRep _freeImage] ()
#6 -[NSBitmapImageRep finalize] ()
#7 finalizeOneObject ()
#8 foreach_block_do ()
#9 batchFinalize ()
#10 batchFinalizeOnMainThread ()
#11 objc_collect_if_needed ()
#12 NSPopAutoreleasePool ()
http://stackoverflow.com/questions/628112/how-do-i-add-an-animation-for-a-string-on-a-catextlayerComment by Kristof on How do I add an animation for a string on a CATextLayer?Kristof2009-03-09T21:42:54Z2009-03-09T21:42:54ZDang! Got it: it's not <i>animatable</i>http://stackoverflow.com/questions/352540/how-to-create-an-xps-document/352820#352820Comment by Kristof on How to create an XPS document?Kristof2008-12-11T08:15:20Z2008-12-11T08:15:20ZCopy and paste the URL instead of following it, it's just the href that is wrong. It shows perfectly how to create an XPS-file from a WPF visual.
http://stackoverflow.com/questions/324032/how-do-i-get-keyboard-events-in-an-nsstatuswindowlevel-window-while-my-applicatio/324217#324217Comment by Kristof on How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost?Kristof2008-11-28T12:47:27Z2008-11-28T12:47:27ZMy app also requires a full presence so that would mean splitting off my app into a background-only one and a normal one, which would then mean inter application communication and make things more complicated. Quicksilver shows it's not necessary. I'll have to study its code I guess. thxhttp://stackoverflow.com/questions/324032/how-do-i-get-keyboard-events-in-an-nsstatuswindowlevel-window-while-my-applicatio/324162#324162Comment by Kristof on How do I get keyboard events in an NSStatusWindowLevel window while my application is not frontmost?Kristof2008-11-28T12:43:19Z2008-11-28T12:43:19ZThanks for you answer, but checking "Enable access for assistive devices" is not an option. Quicksilver doesn't require it either so there has to be another possibility.