IOS开发:Notification与多线程

   先来看看官方的文档,是这样写的:

  In a multithreaded application, notifications are always delivered in the thread in which the notification was posted, which may not be the same thread in which an observer registered itself.

  翻译过来是:

  在多线程应用中,Notification在哪个线程中post,就在哪个线程中被转发,而不一定是在注册观察者的那个线程中。

  也就是说,Notification的发送与接收处理都是在同一个线程中。为了说明这一点,我们先来看一个示例:

  代码清单1:Notification的发送与处理

  @implementation ViewController

  - (void)viewDidLoad {

  [super viewDidLoad];

  NSLog(@"current thread = %@", [NSThread currentThread]);

  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:TEST_NOTIFICATION object:nil];

  dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

  [[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil userInfo:nil];

  });

  }

  - (void)handleNotification:(NSNotification *)notification

  {

  NSLog(@"current thread = %@", [NSThread currentThread]);

  NSLog(@"test notification");

  }

  @end

  其输出结果如下:

  2015-03-11 22:05:12.856 test[865:45102] current thread = {number = 1, name = main}

  2015-03-11 22:05:12.857 test[865:45174] current thread = {number = 2, name = (null)}

  2015-03-11 22:05:12.857 test[865:45174] test notification

  可以看到,虽然我们在主线程中注册了通知的观察者,但在全局队列中post的Notification,并不是在主线程处理的。所以,这时候就需要注意,如果我们想在回调中处理与UI相关的操作,需要确保是在主线程中执行回调。

  这时,就有一个问题了,如果我们的Notification是在二级线程中post的,如何能在主线程中对这个Notification进行处理呢?或者换个提法,如果我们希望一个Notification的post线程与转发线程不是同一个线程,应该怎么办呢?我们看看官方文档是怎么说的:

  For example, if an object running in a background thread is listening for notifications from the user interface, such as a window closing, you would like to receive the notifications in the background thread instead of the main thread. In these cases, you must capture the notifications as they are delivered on the default thread and redirect them to the appropriate thread.

  这里讲到了“重定向”,就是我们在Notification所在的默认线程中捕获这些分发的通知,然后将其重定向到指定的线程中。

  一种重定向的实现思路是自定义一个通知队列(注意,不是NSNotificationQueue对象,而是一个数组),让这个队列去维护那些我们需要重定向的Notification。我们仍然是像平常一样去注册一个通知的观察者,当Notification来了时,先看看post这个Notification的线程是不是我们所期望的线程,如果不是,则将这个Notification存储到我们的队列中,并发送一个信号(signal)到期望的线程中,来告诉这个线程需要处理一个Notification。指定的线程在收到信号后,将Notification从队列中移除,并进行处理。

  官方文档已经给出了示例代码,在此借用一下,以测试实际结果:

  代码清单2:在不同线程中post和转发一个Notification

  @interface ViewController ()

  @property (nonatomic) NSMutableArray *notifications; // 通知队列

  @property (nonatomic) NSThread *notificationThread; // 期望线程

  @property (nonatomic) NSLock *notificationLock; // 用于对通知队列加锁的锁对象,避免线程冲突

  @property (nonatomic) NSMachPort *notificationPort; // 用于向期望线程发送信号的通信端口

  @end

  @implementation ViewController

  - (void)viewDidLoad {

  [super viewDidLoad];

  NSLog(@"current thread = %@", [NSThread currentThread]);

  // 初始化

  self.notifications = [[NSMutableArray alloc] init];

  self.notificationLock = [[NSLock alloc] init];

  self.notificationThread = [NSThread currentThread];

  self.notificationPort = [[NSMachPort alloc] init];

  self.notificationPort.delegate = self;

  // 往当前线程的run loop添加端口源

  // 当Mach消息到达而接收线程的run loop没有运行时,则内核会保存这条消息,直到下一次进入run loop

  [[NSRunLoop currentRunLoop] addPort:self.notificationPort

  forMode:(__bridge NSString *)kCFRunLoopCommonModes];

  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(processNotification:) name:@"TestNotification" object:nil];

  dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

  [[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil userInfo:nil];

  });

  }

  - (void)handleMachMessage:(void *)msg {

  [self.notificationLock lock];

  while ([self.notifications count]) {

  NSNotification *notification = [self.notifications objectAtIndex:0];

  [self.notifications removeObjectAtIndex:0];

  [self.notificationLock unlock];

  [self processNotification:notification];

  [self.notificationLock lock];

  };

  [self.notificationLock unlock];

  }

  - (void)processNotification:(NSNotification *)notification {

  if ([NSThread currentThread] != _notificationThread) {

  // Forward the notification to the correct thread.

  [self.notificationLock lock];

  [self.notifications addObject:notification];

  [self.notificationLock unlock];

  [self.notificationPort sendBeforeDate:[NSDate date]

  components:nil

  from:nil

  reserved:0];

  }

  else {

  // Process the notification here;

  NSLog(@"current thread = %@", [NSThread currentThread]);

  NSLog(@"process notification");

  }

  }

  @end

  运行后,其输出如下:

  2015-03-11 23:38:31.637 test[1474:92483] current thread = {number = 1, name = main}

  2015-03-11 23:38:31.663 test[1474:92483] current thread = {number = 1, name = main}

  2015-03-11 23:38:31.663 test[1474:92483] process notification

  可以看到,我们在全局dispatch队列中抛出的Notification,如愿地在主线程中接收到了。

  这种实现方式的具体解析及其局限性大家可以参考官方文档Delivering Notifications To Particular Threads,在此不多做解释。当然,更好的方法可能是我们自己去子类化一个NSNotificationCenter,或者单独写一个类来处理这种转发。

  NSNotificationCenter的线程安全性

  苹果之所以采取通知中心在同一个线程中post和转发同一消息这一策略,应该是出于线程安全的角度来考量的。官方文档告诉我们,NSNotificationCenter是一个线程安全类,我们可以在多线程环境下使用同一个NSNotificationCenter对象而不需要加锁。原文在Threading Programming Guide中,具体如下:

  The following classes and functions are generally considered to be thread-safe. You can use the same instance from multiple threads without first acquiring a lock.

  NSArray

  ...

  NSNotification

  NSNotificationCenter

  我们可以在任何线程中添加/删除通知的观察者,也可以在任何线程中post一个通知。

  NSNotificationCenter在线程安全性方面已经做了不少工作了,那是否意味着我们可以高枕无忧了呢?再回过头来看看第一个例子,我们稍微改造一下,一点一点来:

  代码清单3:NSNotificationCenter的通用模式

  @interface Observer : NSObject

  @end

  @implementation Observer

  - (instancetype)init

  {

  self = [super init];

  if (self)

  {

  _poster = [[Poster alloc] init];

  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:TEST_NOTIFICATION object:nil]

  }

  return self;

  }

  - (void)handleNotification:(NSNotification *)notification

  {

  NSLog(@"handle notification ");

  }

  - (void)dealloc

  {

  [[NSNotificationCenter defaultCenter] removeObserver:self];

  }

  @end

  // 其它地方

  [[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil];

  上面的代码就是我们通常所做的事情:添加一个通知监听者,定义一个回调,并在所属对象释放时移除监听者;然后在程序的某个地方post一个通知。简单明了,如果这一切都是发生在一个线程里面,或者至少dealloc方法是在-postNotificationName:的线程中运行的(注意:NSNotification的post和转发是同步的),那么都OK,没有线程安全问题。但如果dealloc方法和-postNotificationName:方法不在同一个线程中运行时,会出现什么问题呢?

  我们再改造一下上面的代码:

  代码清单4:NSNotificationCenter引发的线程安全问题

  #pragma mark - Poster

  @interface Poster : NSObject

  @end

  @implementation Poster

  - (instancetype)init

  {

  self = [super init];

  if (self)

  {

  [self performSelectorInBackground:@selector(postNotification) withObject:nil];

  }

  return self;

  }

  - (void)postNotification

  {

  [[NSNotificationCenter defaultCenter] postNotificationName:TEST_NOTIFICATION object:nil];

  }

  @end

  #pragma mark - Observer

  @interface Observer : NSObject

  {

  Poster *_poster;

  }

  @property (nonatomic, assign) NSInteger i;

  @end

  @implementation Observer

  - (instancetype)init

  {

  self = [super init];

  if (self)

  {

  _poster = [[Poster alloc] init];

  [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:TEST_NOTIFICATION object:nil];

  }

  return self;

  }

  - (void)handleNotification:(NSNotification *)notification

  {

  NSLog(@"handle notification begin");

  sleep(1);

  NSLog(@"handle notification end");

  self.i = 10;

  }

  - (void)dealloc

  {

  [[NSNotificationCenter defaultCenter] removeObserver:self];

  NSLog(@"Observer dealloc");

  }

  @end

  #pragma mark - ViewController

  @implementation ViewController

  - (void)viewDidLoad {

  [super viewDidLoad];

  __autoreleasing Observer *observer = [[Observer alloc] init];

  }

  @end

  这段代码是在主线程添加了一个TEST_NOTIFICATION通知的监听者,并在主线程中将其移除,而我们的NSNotification是在后台线程中post的。在通知处理函数中,我们让回调所在的线程睡眠1秒钟,然后再去设置属性i值。这时会发生什么呢?我们先来看看输出结果:

  2015-03-14 00:31:41.286 SKTest[932:88791] handle notification begin

  2015-03-14 00:31:41.291 SKTest[932:88713] Observer dealloc

  2015-03-14 00:31:42.361 SKTest[932:88791] handle notification end

  (lldb)

  // 程序在self.i = 10处抛出了"Thread 6: EXC_BAD_ACCESS(code=EXC_I386_GPFLT)"

  经典的内存错误,程序崩溃了。其实从输出结果中,我们就可以看到到底是发生了什么事。我们简要描述一下:

  当我们注册一个观察者是,通知中心会持有观察者的一个弱引用,来确保观察者是可用的。

  主线程调用dealloc操作会让Observer对象的引用计数减为0,这时对象会被释放掉。

  后台线程发送一个通知,如果此时Observer还未被释放,则会向其转发消息,并执行回调方法。而如果在回调执行的过程中对象被释放了,就会出现上面的问题。

  当然,上面这个例子是故意而为之,但不排除在实际编码中会遇到类似的问题。虽然NSNotificationCenter是线程安全的,但并不意味着我们在使用时就可以保证线程安全的,如果稍不注意,还是会出现线程问题。

  那我们该怎么做呢?这里有一些好的建议:

  尽量在一个线程中处理通知相关的操作,大部分情况下,这样做都能确保通知的正常工作。不过,我们无法确定到底会在哪个线程中调用dealloc方法,所以这一点还是比较困难。

  注册监听都时,使用基于block的API。这样我们在block还要继续调用self的属性或方法,就可以通过weak-strong的方式来处理。具体大家可以改造下上面的代码试试是什么效果。

  使用带有安全生命周期的对象,这一点对象单例对象来说再合适不过了,在应用的整个生命周期都不会被释放。

  使用代理。

时间: 2024-11-01 10:55:44

IOS开发:Notification与多线程的相关文章

ios开发-Swift2.0如何使用CoreData多线程频繁执行数据库读写

问题描述 Swift2.0如何使用CoreData多线程频繁执行数据库读写 在一个采用Swift2.0编写的IOS APP项目中,需要后台用蓝牙实时获取数据并保存到本地SQLite中进行处理.目前有两个后台线程A和B,A每秒获取一下蓝牙数据,将其保存到数据库中:B定时循环执行遍历数据库,对没有处理的数据进行处理,并更新记录的标志位说明已经处理过.项目采用了CoreData,但每当执行4到5分钟后会报异常造成崩溃.刚接触IOS开发,对多线程数据持久化理解不足,希望有经验的大牛指点一下有什么办法或者

iOS开发网络篇—大文件的多线程断点下载

iOS开发网络篇-多线程断点下载 说明:本文介绍多线程断点下载.项目中使用了苹果自带的类,实现了同时开启多条线程下载一个较大的文件.因为实现过程较为复杂,所以下面贴出完整的代码. 实现思路:下载开始,创建一个和要下载的文件大小相同的文件(如果要下载的文件为100M,那么就在沙盒中创建一个100M的文件,然后计算每一段的下载量,开启多条线程下载各段的数据,分别写入对应的文件部分). 项目中用到的主要类如下: 完成的实现代码如下: 主控制器中的代码: 1 #import "YYViewControl

iOS开发多线程篇—多线程简单介绍

一.进程和线程 1.什么是进程 进程是指在系统中正在运行的一个应用程序 每个进程之间是独立的,每个进程均运行在其专用且受保护的内存空间内 比如同时打开QQ.Xcode,系统就会分别启动2个进程 通过"活动监视器"可以查看Mac系统中所开启的进程 2.什么是线程 1个进程要想执行任务,必须得有线程(每1个进程至少要有1条线程) 线程是进程的基本执行单元,一个进程(程序)的所有任务都在线程中执行 比如使用酷狗播放音乐.使用迅雷下载电影,都需要在线程中执行 3.线程的串行 1个线程中任务的执

IOS开发之多线程 -- GCD的方方面面

前言:这篇GCD的博文是本人阅读了很多海内外大神的关于GCD的文章,以及结合之前自己对GCD的粗浅的认识,然后取其精华,去其槽粕,综合起来的笔记,而且是尽可能的以通熟易懂的并且是正确的理论论述方式呈现给读者,同时也是讲大神博客中有的深涩的理论理解的通熟易懂转述给读者,已经是尽可能的让读者深入理解和掌握多线程的知识以及GCD的使用技术.最后的附录中,我将会给出所有本人阅读的大神写的关于多线程或者是GCD的文章链接,大家感兴趣的,可以去参考和学习.也许,看我的这篇就够了,因为我就是参考他们的,嘻嘻.

iOS开发之多线程

1.多线程概念 进程 正在进行中的程序被称为进程,负责程序运行的内存分配.每一个进程都有自己独立的虚拟内存空间.  线程 线程是进程中一个独立的执行路径(控制单元) 一个进程中至少包含一条线程,即主线程 可以将耗时的执行路径(如:网络请求)放在其他线程中执行 创建线程的目的就是为了开启一条新的执行路径,运行指定的代码,与主线程中的代码实现同时运行.   栈区:主线程栈区的1M,非常非常宝贵.一个进程,至少有一个线程(主线程),不能杀掉一个线程!但是可以暂停.休眠. 2.多任务系统调度示意图  

iOS开发多线程篇—线程安全

一.多线程的安全隐患 资源共享 1块资源可能会被多个线程共享,也就是多个线程可能会访问同一块资源 比如多个线程访问同一个对象.同一个变量.同一个文件 当多个线程访问同一块资源时,很容易引发数据错乱和数据安全问题 示例一: 示例二: 问题代码: 1 // 2 // YYViewController.m 3 // 05-线程安全 4 // 5 // Created by apple on 14-6-23. 6 // Copyright (c) 2014年 itcase. All rights res

iOS开发网络篇—实现大文件的多线程断点下载_IOS

说明:本文介绍多线程断点下载.项目中使用了苹果自带的类,实现了同时开启多条线程下载一个较大的文件.因为实现过程较为复杂,所以下面贴出完整的代码. 实现思路:下载开始,创建一个和要下载的文件大小相同的文件(如果要下载的文件为100M,那么就在沙盒中创建一个100M的文件,然后计算每一段的下载量,开启多条线程下载各段的数据,分别写入对应的文件部分). 项目中用到的主要类如下: 完成的实现代码如下: 主控制器中的代码: #import "YYViewController.h" #import

聊聊 iOS 开发

做开发到一定程度后就会面临"转职",是转向更深的技术还是工程管理值得考虑啊.. 行业现状 虽然近几年有大量的开发者涌入移动端,社会上的各种培训机构也越来越多,但是优秀的 iOS 开发者在行业内仍然很少,这一方面是由于创业者很多,另一方面是因为技术更新换代很快,而且开发也需要长时间的经验积累,以近几年的 WWDC 大会为例,11年发布的 iOS5 与 iOS4 相比简直就是跨越性的更新,虽然用户可能感觉不到,但是从 SDK 的变化来说,开发者的压力是很大的:12年发布的 iOS6 带来了

iOS开发资源汇总

如何用Facebook graphic api上传视频: http://developers.facebook.com/blog/post/532/ Keychain保存数据封装: https://github.com/carlbrown/PDKeychainBindingsController 对焦功能的实现: http://www.clingmarks.com/?p=612 自定义圆角Switch按件: https://github.com/domesticcatsoftware/DCRou

iOS开发系列--通知与消息机制

概述 在多数移动应用中任何时候都只能有一个应用程序处于活跃状态,如果其他应用此刻发生了一些用户感兴趣的那么通过通知机制就可以告诉用户此时发生的事情.iOS中通知机制又叫消息机制,其包括两类:一类是本地通知:另一类是推送通知,也叫远程通知.两种通知在iOS中的表现一致,可以通过横幅或者弹出提醒两种形式告诉用户,并且点击通知可以会打开应用程序,但是实现原理却完全不同.今天就和大家一块去看一下如何在iOS中实现这两种机制,并且在文章后面会补充通知中心的内容避免初学者对两种概念的混淆. 本地通知 推送通