I've got a tricky memory management problem with blocks that I'm trying to make sure I understand. I'm working on an app that can play video, but needs to check if the user is actually allowed to play it first. There's several steps to verify, some of which require user interaction, so I've got a chunk of code that looks something like this:
MyVideoPlayer *videoPlayer = [[[MyVideoPlayer alloc] init] autorelease];
[videoPlayer canPlayAsset:(MyVideoAsset *)asset completionBlock:^(BOOL isAssetPlayable) {
if (isAssetPlayable) {
[videoPlayer playAsset:asset];
[self presentModalViewController:videoPlayer animated:YES];
}
}];
This method can either return instantly, or it could require some user input and some networking calls, hence the block that actually presents the player. I noticed some strange behavior, and I discovered that the video player was being leaked. Here's what I thought was happening:
- The
videoPlayeris autoreleased. - The
videoPlayeris retained by the block. - The block executes, and either presents the
videoPlayeror doesn't. - The block is released, and releases the
videoPlayer. - The
videoPlayeris dealloc'd (immediately, if it wasn't presented, or when the modal view is dismissed).
Instead, what's happening is this:
- The
videoPlayeris autoreleased. - The
videoPlayeris retained by the block. - The block executes, and either presents the
videoPlayeror doesn't. - ????
Now, I noticed I was able to get the behavior I expected if I modified the block as follows:
MyVideoPlayer *videoPlayer = [[[MyVideoPlayer alloc] init] autorelease];
[videoPlayer canPlayAsset:(MyVideoAsset *)asset completionBlock:^(BOOL isAssetPlayable) {
if (isAssetPlayable) {
[videoPlayer playAsset:asset];
[self presentModalViewController:videoPlayer animated:YES];
}
[videoPlayer autorelease];
}];
But I really don't want to add that without really knowing what I'm doing.
My understanding is that this is not a retain loop since videoPlayer is neither retaining nor copying the block. Is my understanding that the block will be released when it is no longer in scope incorrect? Can someone help me understand the right way to do this?
UPDATE
Just some more information, MyVideoPlayer's implementation of canPlayAsset:completionBlock: (with details removed to protect the innocent) looks a little something like this:
- (void)canPlayAsset:(MyVideoAsset *)asset completionBlock:(void(^)(BOOL isAssetPlayable))completion {
if (!asset) {
completion(NO);
return;
}
// user is a singleton object
if (user.isGuest) {
if ([user allowedRating:asset.rating]) {
completion(YES);
} else {
// show alert
completion(NO);
}
} else {
if ([user allowedRating:asset.rating]) {
completion(YES);
} else {
// prompt for pin
}
}
}
As you can see, at no point am I retaining this damn block. (Let's ignore the pin part because I'm afraid it will just complicate things further. The problem still manifests itself even when that section of code doesn't execute.) If the block is an autoreleased object, why doesn't it get released when this function finishes executing?
UPDATE 2
OK, I tracked it down. The problem wasn't with this block at all. There was a networking request inside the video player that was being leaked that had a block with a reference to self.
This is the part of the cartoon where we go "I learned a valuable lesson today..."