Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

will it support dealloc? #3

Closed
limboy opened this issue May 4, 2014 · 6 comments
Closed

will it support dealloc? #3

limboy opened this issue May 4, 2014 · 6 comments

Comments

@limboy
Copy link

limboy commented May 4, 2014

sometimes it's convenient to monitor ViewController's dealloc, i.e. popped from stack, but dealloc is not triggered, so we know there is a memory leak. tried it like this with no luck.

[MyViewController aspect_hookSelector:NSSelectorFromString(@"dealloc") atPosition:AspectPositionBefore withBlock:^(id object, NSArray *arguments) {
    NSLog(@"dealloc:%@", object);
}];
@WayneWeiZhang
Copy link

@lzyy dealloc is disabled in aspect_isSelectorHookAllowed method. And as to commit logs, this is due to "workaround #2."

@limboy
Copy link
Author

limboy commented May 4, 2014

@WayneWeiZhang where is aspect_isSelectorHookAllowed defined? and if the super problem solved, dealloc can be used?

@WayneWeiZhang
Copy link

@lzyy Do you have updated your code?

static NSString *const AspectsHasParentToken = @"AspectsHasParentToken";
static BOOL aspect_isSelectorHookAllowed(Class class, SEL selector) {
static NSSet *disallowedSelectorList;
static NSMutableDictionary *swizzledClassesDict;
static dispatch_once_t pred;
dispatch_once(&pred, ^{
swizzledClassesDict = [NSMutableDictionary new];
disallowedSelectorList = [NSSet setWithObjects:@"retain", @"release", @"autorelease", @"dealloc", @"forwardInvocation:", nil];
});

@limboy
Copy link
Author

limboy commented May 4, 2014

@WayneWeiZhang ha, was looking at the pod version, now see it.

so the reason there is a disallowedSelectorList is because these selectors are managed by ARC, and a bit "magical"?

@WayneWeiZhang
Copy link

@lzyy Nope, I think the reason is "Infinite Loop when overriding a method at two points which includes a call to super #2"

@steipete
Copy link
Owner

steipete commented May 4, 2014

Hooking into dealloc is quite a delicate matter. You can't retain the object, and the message forwarding process really isn't suited for that. Also the only usable position would be AspectPositionBefore. It might be possible to add special code paths to work around this, but it wasn't my priority so far. (Blocking is not really related to #2, that was just a coincidence)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants