AsyncSocket 源码分析

CocoaAsyncSocket 源码学习摘要:

1. [NSObject cancelPreviousPerformRequestsWithTarget:self]

//AsyncSocket 的dealloc说明。
- (void)dealloc
{
    [self close];
    [theReadQueue release];
    [theWriteQueue release];
    [theRunLoopModes release];
    [partialReadBuffer release];
    [NSObject cancelPreviousPerformRequestsWithTarget:theDelegate selector:@selector(onSocketDidDisconnect:) object:self];
    [NSObject cancelPreviousPerformRequestsWithTarget:self];
    [super dealloc];
}

一般我们都知道调用了[instance performSelector:@selector() withObject:nil afterDelay:]会导致instance引用计数+1。如果我们调用了[instance performSelector:@selector() withObject:nil afterDelay:]。在某些情况下我们就需要调用[NSObject cancelPreviousPerformRequestsWithTarget:instance]或者功能类似API,来取消延迟。否则有些时候会造成内存问题(实例都释放了还在调用实例方法)导致crash,或者导致某个类延迟释放。

问题:
如果有一个类,在类中有一个方法调用了[self performSelector:@selector() withObject:nil afterDelay:]。那么在这个类中对应的dealloc方法中是否有必要调用[NSObject cancelPreviousPerformRequestsWithTarget:self]呢?

因为延迟调用会把self引用计数+1,调用了之后,只能等延迟方法执行完或者被[NSObject cancelPreviousPerformRequestsWithTarget:self]类似方法取消掉,否则不可能执行到dealloc方法中。这样看来dealloc方法调用[NSObject cancelPreviousPerformRequestsWithTarget:self]没啥用。
但是最佳实践中我还是会建议在dealloc方法最后加上[NSObject cancelPreviousPerformRequestsWithTarget:self]
理由如下:

如果我们在定义一个类,里面有方法调用了[self performSelector:@selector() withObject:nil afterDelay:]。那么在这个类的dealloc方法最后要调用[NSObject cancelPreviousPerformRequestsWithTarget:self]。因为dealloc里面一旦调用了一些方法,这些方法间接或者直接调用了[self performSelector:@selector() withObject:nil afterDelay:],那么就等待着crash吧。此时在dealloc方法最后加上[NSObject cancelPreviousPerformRequestsWithTarget:self]。问题就解决了。总之dealloc里面的[NSObject cancelPreviousPerformRequestsWithTarget:self]方法不一定有用,但是加上有益无害。

还是不太明白?请看下面代码:

@interface Person : NSObject
@end

@implementation Person
- (void)personTest{
    NSLog(@"personTest");
}

- (void)invoke{
    [self performSelector:@selector(personTest) withObject:nil afterDelay:0];
}
- (void)dealloc{
    [self invoke];
//    [NSObject cancelPreviousPerformRequestsWithTarget:self];
}
@end

Person *person = [Person new];person实例释放的时候必然会奔溃。

测试工程

2.[NSObject performSelector]系列函数和
[NSRunLoop performSelector]系列函数区别

下面是官方API,都是为了实现延迟调用,但是你们知道他们的区别吗?

/****************   Delayed perform  ******************/

@interface NSObject (NSDelayedPerforming)

- (void)performSelector:(SEL)aSelector withObject:(nullable id)anArgument afterDelay:(NSTimeInterval)delay inModes:(NSArray<NSRunLoopMode> *)modes;
- (void)performSelector:(SEL)aSelector withObject:(nullable id)anArgument afterDelay:(NSTimeInterval)delay;
+ (void)cancelPreviousPerformRequestsWithTarget:(id)aTarget selector:(SEL)aSelector object:(nullable id)anArgument;
+ (void)cancelPreviousPerformRequestsWithTarget:(id)aTarget;

@end

@interface NSRunLoop (NSOrderedPerform)

- (void)performSelector:(SEL)aSelector target:(id)target argument:(nullable id)arg order:(NSUInteger)order modes:(NSArray<NSRunLoopMode> *)modes;
- (void)cancelPerformSelector:(SEL)aSelector target:(id)target argument:(nullable id)arg;
- (void)cancelPerformSelectorsWithTarget:(id)target;

@end

下面是CocoaAsyncSocket早期基于runLoop实现的部分代码

代码一:
- (BOOL)moveToRunLoop:(NSRunLoop *)runLoop{
    NSAssert((theRunLoop == NULL) || (theRunLoop == CFRunLoopGetCurrent()),
             @"moveToRunLoop must be called from within the current RunLoop!");

    [runLoop performSelector:@selector(maybeDequeueRead) target:self argument:nil order:0 modes:theRunLoopModes];
    [runLoop performSelector:@selector(maybeDequeueWrite) target:self argument:nil order:0 modes:theRunLoopModes];
    [runLoop performSelector:@selector(maybeScheduleDisconnect) target:self argument:nil order:0 modes:theRunLoopModes];
}

代码二:
- (BOOL)setRunLoopModes:(NSArray *)runLoopModes{    
    NSAssert((theRunLoop == CFRunLoopGetCurrent()), @"setRunLoopModes must be called from within the current RunLoop!");
    [self performSelector:@selector(maybeDequeueRead) withObject:nil afterDelay:0 inModes:theRunLoopModes];
    [self performSelector:@selector(maybeDequeueWrite) withObject:nil afterDelay:0 inModes:theRunLoopModes];
    [self performSelector:@selector(maybeScheduleDisconnect) withObject:nil afterDelay:0 inModes:theRunLoopModes];
}

为了方便把下面方法定义为“方法1”

 [runLoop performSelector:@selector(maybeDequeueRead) target:self argument:nil order:0 modes:theRunLoopModes];

下面方法定义为“方法2”

  [self performSelector:@selector(maybeDequeueRead) withObject:nil afterDelay:0 inModes:theRunLoopModes];

"方法1","方法2"都干同样一件事,就是延迟执行maybeDequeueRead调用。但是它们是有区别的。区别如下:

NSRunLoop一般是和线程相关的。一个线程最多有一个NSRunLoop也可能没有。在这里可以将runLoop看做一个线程。
假设在“线程A”中调用moveToRunLoop,当线程A执行到moveToRunLoop方法中的[runLoop performSelector:@selector(maybeDequeueRead) target:self argument:nil order:0 modes:theRunLoopModes]这段代码的时候。“线程A”唤起另一个线程(runLoop所在的线程)假设为“线程B”去调用maybeDequeueRead方法。实现效果和下面方法一致*- (void)performSelector:(SEL)aSelector onThread:(NSThread )thr withObject:(nullable id)arg waitUntilDone:(BOOL)wait (只是一个基于RunLoop实现,一个基于Thread调用)。这样就实现了多线程切换调用。
但是如果用下面方法[self performSelector:@selector(maybeDequeueRead) withObject:nil afterDelay:0 inModes:theRunLoopModes]则所有调用都在”线程A“中。

先整理到这吧,后面还会继续分析CocoaAsyncSocket学些心得。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • runtime 和 runloop 作为一个程序员进阶是必须的,也是非常重要的, 在面试过程中是经常会被问到的, ...
    made_China阅读 1,200评论 0 7
  • runtime 和 runloop 作为一个程序员进阶是必须的,也是非常重要的, 在面试过程中是经常会被问到的, ...
    SOI阅读 21,776评论 3 63
  • Objective-C中有两个NSObject,一个是NSObject类,另一个是NSObject协议。而其中NS...
    ScaryMonsterLyn阅读 762评论 0 2
  • 父类实现深拷贝时,子类如何实现深度拷贝。父类没有实现深拷贝时,子类如何实现深度拷贝。• 深拷贝同浅拷贝的区别:浅拷...
    JonesCxy阅读 989评论 1 7
  • 露凝结秋风的寒聚集秋阳的暖露深藏着青草的情流露着花朵的爱露闪烁的是秋去冬来的泪
    xuxiaoyu4阅读 205评论 1 5