GCD 多线程 小结

原文链接:http://yupeng.fun/2019/10/30/gcd/

本文是对 iOS 中 GCD (Grand Central Dispatch) 的整理小结。总结了有关线程的知识点、GCD 的对应的使用方法,以及 NSOperation 相关的用法。

线程与进程

线程是系统能够进行运算调度的最小单位,线程被包含在进程中,是进程中的实际运作单位。一个程序至少有一个进程,一个进程至少有一个线程。一个进程中可以并发多个线程,执行不同的任务,可充分利用系统资源,提高性能。

进程是系统进行资源分配和调度的一个独立单位。线程自己基本上不拥有系统资源,同一个进程中的多个线程共享进程所拥有的资源。当多个线程对同一个资源进行操作的时候需要注意线程安全问题。

iOS 中的程序启动,创建好一个进程的同时, 一个线程便开始运行,这个线程叫主线程。有关界面的显示操作,即 UIKit 的操作在主线程进行。 有关多线程的操作,主要依靠 GCD 和 NSOperation。

相关概念

  • 串行(Serial):在固定时间内只能执行单个任务。

  • 并行(Parallel):在固定时间内同时执行多个任务。

  • 并发(Concurrent):在固定时间内可以执行多个任务。它和并行(Parallel)的区别在于,并发不会同时执行多个任务,而是通过在任务间不断切换去完成多个任务,多个任务在同一时间间隔内执行。

  • 同步(Sync):会把当前的任务加入到队列中,除非该任务执行完成,线程才会返回继续运行,也就是说同步会阻塞线程。任务在执行和结束一定遵循先后顺序,即先执行的任务一定先结束。

  • 异步(Async):会把当前的任务加入到队列中,但它会立刻返回,无需等任务执行完成,也就是说异步不会阻塞线程。任务在执行和结束不遵循先后顺序。可能先执行的任务先结束,也可能后执行的任务先结束。

串行和并行指的是任务的执行方式。
串行是同步的执行方式。
并发和并行是异步执行的两种形式。

GCD 简介

GCD (Grand Central Dispatch) 是一个异步执行的技术,将应用程序中线程管理的代码在系统层级中实现,开发者只要定义想执行的任务并追加到适当的 Dispatch Queue 中,GCD 就能生成必要的线程执行任务,就是用非常简洁的方法,实现了复杂繁琐的多线程编程。

dispatch_async(queue, ^{
      //执行任务
});

使用 Block 语法定义要执行的任务,通过 dispatch_async 函数将任务追加到 queue 队列中,这样就可以使指定的 Block 在另一线程中执行。

1、Dispatch Queue

两种队列:串行队列 Serial Dispatch Queue;并发队列 Concurrent Dispatch Queue。

1.1 创建队列的方法:

1、dispatch_queue_create 函数

// 串行队列 DISPATCH_QUEUE_SERIAL,可写成 NULL
// 并发队列 DISPATCH_QUEUE_CONCURRENT
dispatch_queue_t queue = dispatch_queue_create("com.my.queue", DISPATCH_QUEUE_SERIAL);
  • 第一个参数指定队列的名称,方便调试。
  • 第二个参数 Serial Dispatch Queue 指定为 NULL,Concurrent Dispatch Queue 指定为 DISPATCH_QUEUE_CONCURRENT。
  • 返回值为 Dispatch Queue,dispatch_queue_t 类型

2、获取系统标准提供的 Dispatch Queue
不用特意创建生成 Dispatch Queue 系统也会给我们提供几个,Main Dispatch Queue 和 Global Dispatch Queue

dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
dispatch_queue_t queue = dispatch_get_main_queue();
  • Main Dispatch Queue 是在主线程执行的队列 ,主线程只有1个,所以 Main Dispatch Queue 是串行队列 Serial Dispatch Queue。有关用户界面更新等一些必须在主线程中执行的处理,需要追加到 Main Dispatch Queue 中处理。这与 performSelectorOnMainThread 执行方法相同。
  • Global Dispatch Queue 是所有应用程序都能使用的 Concurrent Dispatch Queue,没有必要通过 dispatch_queue_create 生成,只要获取 Global Dispatch Queue 使用即可。
//Global Dispatch Queue 有4个执行优先级,向队列中追加处理时,应选择与处理内容对应的优先级。
#define DISPATCH_QUEUE_PRIORITY_HIGH 2      //高优先级
#define DISPATCH_QUEUE_PRIORITY_DEFAULT 0   //默认优先级
#define DISPATCH_QUEUE_PRIORITY_LOW (-2)    //低优先级
#define DISPATCH_QUEUE_PRIORITY_BACKGROUND INT16_MIN  //后台优先级


1.2 串行队列
    dispatch_queue_t queue = dispatch_queue_create("com.my.queue", DISPATCH_QUEUE_SERIAL);
    dispatch_async(queue, ^{
        NSLog(@"1 --- %@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        NSLog(@"3 --- %@", [NSThread currentThread]);
    });
    NSLog(@"end");

//end
//1 --- {number = 8, name = (null)}
//2 --- {number = 8, name = (null)}
//3 --- {number = 8, name = (null)}

串行队列,要等待当前任务处理结束,1执行结束,接着执行2,如此重复,同时执行的处理数只能有一个,顺序执行任务。
一旦生成 Serial Dispatch Queue 并追加处理,系统对于一个 Serial Dispatch Queue 就只生成并使用一个线程。
在一个 Serial Dispatch Queue 中只能执行一个追加处理,但如果生成多个 Serial Dispatch Queue 将并发执行,各个执行一个处理,即为同时执行多个处理。

1.3 并发队列
    dispatch_queue_t queue = dispatch_queue_create("com.my.queue", DISPATCH_QUEUE_CONCURRENT);
    dispatch_async(queue, ^{
        NSLog(@"1 --- %@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        NSLog(@"3 --- %@", [NSThread currentThread]);
    });
    NSLog(@"end");

//end
//2 --- {number = 4, name = (null)}
//3 --- {number = 6, name = (null)}
//1 --- {number = 8, name = (null)}

并发队列,使用多个线程同时执行多个处理,不用等待当前任务处理结束,就开始执行后面的任务,可并发执行多个任务,得到的结果打印顺序,不会按照代码追加到队列的顺序,是打乱的。

2、dispatch_sync 同步操作函数、dispatch_async 异步操作函数

  • dispatch_sync 函数,将指定的 block 同步地追加到指定的 Dispatch Queue 中,在追加 block 任务结束之前,dispatch_sync 函数会一直等待。

  • dispatch_async 函数,将指定的 block 任务异步地追加到指定的 Dispatch Queue 中,dispatch_async 函数不做任何等待。

2.1 在串行队列上进行同步/异步操作
    dispatch_queue_t queue = dispatch_queue_create("com.my.serial1", DISPATCH_QUEUE_SERIAL);
    dispatch_sync(queue, ^{
        NSLog(@"1 --- %@", [NSThread currentThread]);
    });
    NSLog(@"11 --- %@", [NSThread currentThread]);
    dispatch_sync(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
    });
    NSLog(@"22 --- %@", [NSThread currentThread]);
    dispatch_sync(queue, ^{
        NSLog(@"3 --- %@", [NSThread currentThread]);
    });
    NSLog(@"33 --- ");

//1 --- {number = 1, name = main}
//11 --- {number = 1, name = main}
//2 --- {number = 1, name = main}
//22 --- {number = 1, name = main}
//3 --- {number = 1, name = main}
//33 ---    

在串行队列上进行同步操作,所有任务将顺序执行。不会开启线程,在主线程上顺序执行任务,相当于直接执行任务的代码。

    dispatch_queue_t queue = dispatch_queue_create("com.my.serial2", DISPATCH_QUEUE_SERIAL);
    dispatch_async(queue, ^{
        NSLog(@"a --- %@", [NSThread currentThread]);
        int sum = 0;
        for (int i = 0; i < 100000; i++) {
            sum += 1;
        }
        NSLog(@"--- %d", sum);
    });
    NSLog(@"aa --- %@", [NSThread currentThread]);
    dispatch_async(queue, ^{
        NSLog(@"b --- %@", [NSThread currentThread]);
    });
    NSLog(@"bb --- %@", [NSThread currentThread]);
    dispatch_async(queue, ^{
        NSLog(@"c --- %@", [NSThread currentThread]);
    });
    NSLog(@"cc ---");

//aa --- {number = 1, name = main}
//a --- {number = 8, name = (null)}
//bb --- {number = 1, name = main}
//cc ---
//--- 100000
//b --- {number = 8, name = (null)}
//c --- {number = 8, name = (null)}

在串行队列上进行异步操作,如上代码,打印顺序不固定,但是 aa -- bb -- cc 一定是按照这个顺序打印的。a -- b -- c -- 一定是按照这个顺序处理队列的任务的,异步执行另开一个线程,执行串行队列里的任务,一次只能执行一个任务,a 执行完,再执行 b,以此类推。

    dispatch_queue_t queue = dispatch_queue_create("com.my.serial3", DISPATCH_QUEUE_SERIAL);
    NSLog(@"1 --- %@", [NSThread currentThread]);
    dispatch_sync(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
        dispatch_async(queue, ^{
            NSLog(@"3 --- %@", [NSThread currentThread]);
        });
        NSLog(@"4 --- %@", [NSThread currentThread]);
    });
    NSLog(@"5 --- %@", [NSThread currentThread]);

//1 --- {number = 1, name = main}
//2 --- {number = 1, name = main}
//4 --- {number = 1, name = main}
//5 --- {number = 1, name = main}
//3 --- {number = 4, name = (null)}

在串行队列上进行,同步、异步嵌套。串行队列一次只能执行一个任务,同步执行的函数要等待 block 任务执行完成后,再去执行嵌套的串行队列上的 block 任务,所以打印的顺序为 1 -- 2-- 4 -- 3,5的顺序不固定,可能在 3 前,可能在 3 后。一定是 1 -- 2 -- 4 先执行完。

    dispatch_queue_t queue = dispatch_queue_create("com.my.serial5", DISPATCH_QUEUE_SERIAL);
    NSLog(@"1 --- %@", [NSThread currentThread]);
    dispatch_async(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
        dispatch_sync(queue, ^{
            NSLog(@"3 --- %@", [NSThread currentThread]);
        });
        NSLog(@"4 --- %@", [NSThread currentThread]);
    });
    NSLog(@"5 --- %@", [NSThread currentThread]);

//1 --- {number = 1, name = main}
//2 --- {number = 4, name = (null)}
//5 --- {number = 1, name = main}
//崩溃,死锁

在串行队列上进行,异步、同步嵌套。如上代码,会产生死锁。
先异步执行 block 的任务,任务里面嵌套的,同步执行的任务也在串行队列中,需要等待要同步执行的任务完成才能返回,但是串行异步执行的任务已经在进行了,因为串行队列一次只能执行一个任务,同步执行的任务也需要等待,这就造成了两者相互等待,死锁。

谨慎使用同步操作。其实在主线程使用同步操作是一定会构成死锁的,所以建议在串行队列中不要使用同步操作。

2.2 在并发队列上进行同步/异步操作

与上面串行队列操作类似:

    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
    dispatch_sync(queue, ^{
        NSLog(@"1 --- %@", [NSThread currentThread]);
    });
    NSLog(@"11 --- %@", [NSThread currentThread]);
    dispatch_sync(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
    });
    NSLog(@"22 --- %@", [NSThread currentThread]);
    dispatch_sync(queue, ^{
        NSLog(@"3 --- %@", [NSThread currentThread]);
    });
    NSLog(@"33 --- ");

//1 --- {number = 1, name = main}
//1 --- {number = 1, name = main}
//2 --- {number = 1, name = main}
//22 --- {number = 1, name = main}
//3 --- {number = 1, name = main}
//33 ---

在并发队列上进行同步操作,所有任务顺序执行。

    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
    dispatch_async(queue, ^{
        NSLog(@"a --- %@", [NSThread currentThread]);
        int sum = 0;
        for (int i = 0; i < 100000; i++) {
            sum += 1;
        }
        NSLog(@"a --- %d %@", sum,[NSThread currentThread]);
    });
    NSLog(@"aa --- %@", [NSThread currentThread]);
    dispatch_async(queue, ^{
        NSLog(@"b --- %@", [NSThread currentThread]);
        int sum = 0;
        for (int i = 0; i < 100000; i++) {
            sum += 1;
        }
        NSLog(@"b --- %d %@", sum,[NSThread currentThread]);
    });
    NSLog(@"bb --- %@", [NSThread currentThread]);
    dispatch_async(queue, ^{
        NSLog(@"c --- %@", [NSThread currentThread]);
        int sum = 0;
        for (int i = 0; i < 100000; i++) {
            sum += 1;
        }
        NSLog(@"c --- %d %@", sum,[NSThread currentThread]);
    });
    NSLog(@"cc ---");

//aa --- {number = 1, name = main}
//a --- {number = 5, name = (null)}
//bb --- {number = 1, name = main}
//b --- {number = 3, name = (null)}
//cc ---
//c --- {number = 7, name = (null)}
//a --- 100000 {number = 5, name = (null)}
//b --- 100000 {number = 3, name = (null)}
//c --- 100000 {number = 7, name = (null)}

在并发队列上进行异步操作,另开线程各自执行,如上打印情况,只能确定 aa -- bb -- cc 这样的执行顺序,block 内的打印顺序不确定,

    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
    
    NSLog(@"1 --- %@", [NSThread currentThread]);
    dispatch_sync(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
        dispatch_async(queue, ^{
            NSLog(@"3 --- %@", [NSThread currentThread]);
            int sum = 0;
            for (int i = 0; i < 100000; i++) {
                sum += 1;
            }
            NSLog(@"3 --- %d %@", sum, [NSThread currentThread]);
        });
        NSLog(@"4 --- %@", [NSThread currentThread]);
    });
    NSLog(@"5 --- %@", [NSThread currentThread]);

//1 --- {number = 1, name = main}
//2 --- {number = 1, name = main}
//4 --- {number = 1, name = main}
//3 --- {number = 6, name = (null)}
//5 --- {number = 1, name = main}
//3 --- 100000 {number = 6, name = (null)}

在并发队列中进行同步、异步嵌套,不会构成死锁。

    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
    
    NSLog(@"1 --- %@", [NSThread currentThread]);
    dispatch_async(queue, ^{
        NSLog(@"2 --- %@", [NSThread currentThread]);
        dispatch_sync(queue, ^{
            NSLog(@"3 --- %@", [NSThread currentThread]);
        });
        NSLog(@"4 --- %@", [NSThread currentThread]);
    });
    NSLog(@"5 --- %@", [NSThread currentThread]);

//1 --- {number = 1, name = main}
//5 --- {number = 1, name = main}
//2 --- {number = 4, name = (null)}
//3 --- {number = 4, name = (null)}
//4 --- {number = 4, name = (null)}

在并发队列中进行异步、同步步嵌套,并发队列,可多任务并发处理,不会构成死锁。

3、dispatch_after

在指定时间后处理任务,可以使用 dispatch_after 函数来实现

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), 
               dispatch_get_main_queue(), ^{
        NSLog(@"done ---");
    });

dispatch_after 函数不是在指定时间后执行处理,而是在指定时间追加处理到 Dispatch Queue 中。上面例子,与在3秒后用 dispatch_async 函数追加 block 任务到 Main Dispatch Queue 的操作相同。
Main Dispatch Queue 在主线程的 RunLoop 中执行,在如每隔 1/60 秒执行的 RunLoop 中,block 最快在 3 秒后执行,最慢在 3秒+1/60秒后执行,如在 Main Dispatch Queue 有大量追加任务或主线程处理本身有延迟,这个时间会更长。

4、Dispatch Group

在多线程中想监控,追加到队列中的任务都全部完成后,然后再进行处理,这种情况可以使用 Dispatch Group。例如处理完页面所有数据后,最后再在主线程上刷新页面。

    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    
    dispatch_group_t group = dispatch_group_create();
    
    dispatch_group_async(group, queue, ^{ NSLog(@"1 --- %@", [NSThread currentThread]); });
    dispatch_group_async(group, queue, ^{ NSLog(@"2 --- %@", [NSThread currentThread]); });
    dispatch_group_async(group, queue, ^{ NSLog(@"3 --- %@", [NSThread currentThread]); });
    
    dispatch_group_notify(group, dispatch_get_main_queue(), ^{ NSLog(@"done --- %@", [NSThread currentThread]); });

//2 --- {number = 12, name = (null)}
//3 --- {number = 10, name = (null)}
//1 --- {number = 11, name = (null)}
//done --- {number = 1, name = main}

dispatch_group_wait 函数,在指定的时间内,等待追加到 group 的 队列中的任务是否执行完毕

    dispatch_time_t time = dispatch_time(DISPATCH_TIME_NOW, 3 * NSEC_PER_SEC);
    long result = dispatch_group_wait(group, time);
    if (result == 0) {
        //追加到 group 的 队列中的任务全部执行完毕
    }


5、dispatch_apply

dispatch_apply 函数按指定的次数将指定的 block 追加到指定的 Dispatch Queue 中,并等待全部处理执行结束。

    NSArray *array = @[@"a", @"b", @"c", @"d"];
    
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_async(queue, ^{
        
        dispatch_apply(array.count, queue, ^(size_t index) {
            NSLog(@"--- %@ %@", array[index], [NSThread currentThread]);
        });
        
        dispatch_async(dispatch_get_main_queue(), ^{
            NSLog(@"--- done");
        });
    });



6、Dispatch Semaphore

Dispatch Semaphore 是持有计数的信号。

  • dispatch_semaphore_create 函数可以生成信号量,参数是信号量计数的初始值。
  • dispatch_semaphore_wait 函数,当信号量值为 0 时等待,等待直到超时,参数可设置超时时长。信号量值大于等于 1 时,不等待,同时将信号量值减 1。
  • dispatch_semaphore_signal 函数会让信号量值加 1,如果有通过dispatch_semaphore_wait 函数等待信号量值增加的线程,会由系统唤醒最先等待的线程执行。
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    
    dispatch_semaphore_t semaphore = dispatch_semaphore_create(1);
    
    NSMutableArray *array = [NSMutableArray array];
    for (int i = 0; i < 100; i++) {
        dispatch_async(queue, ^{
            
            dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER);
            
            [array addObject:[NSNumber numberWithInt:i]];
            
            dispatch_semaphore_signal(semaphore);
        });
    }


在 iOS 开发时,经常遇到一个页面有多个网络数据请求的场景,等多个网络请求获取到数据后再去刷新页面,那么这是就可以使用 Dispatch Semaphore 可与 Dispatch Group
来实现这一功能,代码如下,两个链接分别加载两张图片,当两个图片都下载完成后,在一起显示在界面上:

    NSMutableArray *images = [NSMutableArray array];
    
    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_group_t group = dispatch_group_create();
    
    dispatch_group_async(group, queue, ^{
        dispatch_semaphore_t semaphore1 = dispatch_semaphore_create(0);
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
            //开始下载第一张图片
            NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://xxxx.png"]];
            NSString *path=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)    objectAtIndex:0];
            NSString *filename=[path stringByAppendingPathComponent:@"banner1.png"];
            //在该路径下创建图片文件,并将存储图片的数据存到本地
            NSFileManager* fm = [NSFileManager defaultManager];
            [fm createFileAtPath:filename contents:imageData attributes:nil];
            
            [images addObject:filename];
            
            dispatch_semaphore_signal(semaphore1);
        });
        dispatch_semaphore_wait(semaphore1, DISPATCH_TIME_FOREVER);
    });
    
    dispatch_group_async(group, queue, ^{
        dispatch_semaphore_t semaphore2 = dispatch_semaphore_create(0);
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
            //开始下载第二张图片
            NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://xxxx.png"]];
            NSString *path=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)  objectAtIndex:0];
            NSString *filename=[path stringByAppendingPathComponent:@"banner2.png"];
            NSFileManager* fm = [NSFileManager defaultManager];
            [fm createFileAtPath:filename contents:imageData attributes:nil];
            [images addObject:filename];
            
            dispatch_semaphore_signal(semaphore2);
        });

        //初始化信号量计数为0,会一直等待下载图片
        //上面的异步下载图片完成后会调用 dispatch_semaphore_signal 函数
        // 然后信号量计数加 1,这时不在等待,该任务执行完成返回
        dispatch_semaphore_wait(semaphore2, DISPATCH_TIME_FOREVER);
    });
    
    
    
    dispatch_group_notify(group, queue, ^{
        //当监控得到追加队列里的任务都完成后,调用本 block 任务
        dispatch_async(dispatch_get_main_queue(), ^{
            //当获取全部数据后,在主线程进行刷新页面
            NSString *image1 = [images firstObject];
            if (image1 && [image1 isKindOfClass:[NSString class]]) {
                self.imageView1.image = [[UIImage alloc] initWithContentsOfFile:image1];;
            }
            NSString *image2 = [images lastObject];
            if (image2 && [image2 isKindOfClass:[NSString class]]) {
                self.imageView2.image = [[UIImage alloc] initWithContentsOfFile:image2];;
            }
            
        });
        
    });

7、dispatch_once

dispatch_once 函数时保证在应用程序执行中只执行一次指定处理的 API。
经常用在生成单例对象的时候。

    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        // code to be executed once
    });

Reference

iOS 如何高效的使用多线程
深入浅出 iOS 并发编程

你可能感兴趣的:(GCD 多线程 小结)