[翻译] GCDObjC
GCDObjC
https://github.com/mjmsmith/gcdobjc
GCDObjC is an Objective-C wrapper for the most commonly used features of Grand Central Dispatch. It has four main aims:
GCDObjC 封装了GCD最常使用的一些特性,它有着如下的4点宗旨:
- Organize the flat C API into appropriate classes.
- Use intention-revealing names to distinguish between synchronous and asynchronous functions.
- Use more convenient arguments such as time intervals.
- Add convenience methods.
- 将C语言级别的API转换成合适的对象类型
- 使用见名知意的名字来区分同步和异步的方法
- 用更便利的参数,如时间间隔
- 添加一些便利的方法
Usage(使用)
GCDObjC requires ARC and iOS 6.0. (Prior to 6.0, dispatch objects were not considered Objective-C objects, and therefore required manual memory management.)
GCDObjC.h is the only header file that needs to be imported.
GCDObjC需要开启ARC以及iOS6.0(在6.0之前,dispatch对象不被当做Objective-C对象,所以需要手动管理内存)
GCDObjC.h是唯一需要包含的头文件。
For usage examples, see GCDObjCTests.m.
GCDQueue(GCD队列)
Queues are implemented in the GCDQueue class.
在GCDQueue类中实现了队列。
- convenience accessors for global queues
- 便利的系统相关队列
+ (GCDQueue *)mainQueue;
+ (GCDQueue *)globalQueue;
+ (GCDQueue *)highPriorityGlobalQueue;
+ (GCDQueue *)lowPriorityGlobalQueue;
+ (GCDQueue *)backgroundPriorityGlobalQueue;
- creating serial and concurrent queues
- 创建串行以及并发队列
- (instancetype)initSerial;
- (instancetype)initConcurrent;
- queueing blocks for asynchronous execution
- 队列的block用来执行异步操作
- (void)queueBlock:(dispatch_block_t)block;
- (void)queueBlock:(dispatch_block_t)block afterDelay:(double)seconds;
- (void)queueBlock:(dispatch_block_t)block inGroup:(GCDGroup *)group;
- queueing blocks for synchronous execution
- 队列的block用来执行同步操作
- (void)queueAndAwaitBlock:(dispatch_block_t)block;
- (void)queueAndAwaitBlock:(void (^)(size_t))block iterationCount:(size_t)count;
- queueing barrier blocks for synchronous or asynchronous execution
- 队列阻塞block用来执行同步或者异步操作
- (void)queueBarrierBlock:(dispatch_block_t)block;
- (void)queueAndAwaitBarrierBlock:(dispatch_block_t)block;
- queueing notify blocks on groups
- 用来监测groups的队列
- (void)queueNotifyBlock:(dispatch_block_t)block inGroup:(GCDGroup *)group;
- suspending and resuming a queue
- 挂起以及回复一个队列
- (void)suspend;
- (void)resume;
GCDSemaphore(GCD信号量)
Semaphores are implemented in the GCDSemaphore class.
GCDSemaphore类实现了信号量
- creating semaphores
- 创建信号量
- (instancetype)init;
- (instancetype)initWithValue:(long)value;
- signaling and waiting on a semaphore
- 发送以及等待一个信号量
- (BOOL)signal;
- (void)wait;
- (BOOL)wait:(double)seconds;
GCDGroup(GCD线程组)
Groups are implemented in the GCDGroup class.
GCDGroup实现了线程组。
- creating groups
- 创建组
- (instancetype)init;
- entering and leaving a group
- 加入以及脱离一个组
- (void)enter;
- (void)leave;
- waiting on completion of a group
- 等待一个线程组执行完毕
- (void)wait;
- (BOOL)wait:(double)seconds;
Macros(宏函数)
Two macros are provided for wrapping dispatch_once() calls.
给dispatch_once()调用提供了两个宏。
- executing a block only once: GCDExecOnce(block)
- 仅仅执行一次
for (int i = 0; i < 10; ++i) {
GCDExecOnce(^{ NSLog(@"This will only be logged once."); });
}
- creating a singleton instance of a class: GCDSharedInstance(block)
- 创建一个类的单例
+ (instancetype)sharedInstance {
GCDSharedInstance(^{ return [[self class] new]; });
}
The block supplied to GCDSharedInstance() must return an instance of the desired class.
GCDShardInstance()必须返回这个类的一个实例对象。
------------------------------------------------------------------------------------------------------
此类仅仅支持arc,所以是在arc环境下测试,简单易用,以测了所有的情况
------------------------------------------------------------------------------------------------------
串行主线程池
[[GCDQueue mainQueue] queueBlock:^{
NSLog(@"");
}]; [[GCDQueue mainQueue] queueBlock:^{
NSLog(@"");
}]; [[GCDQueue mainQueue] queueBlock:^{
NSLog(@"");
}]; [[GCDQueue mainQueue] queueBlock:^{
NSLog(@"");
}];
2014-04-09 10:39:57.210 StudyGCD_new[10395:60b] 1
2014-04-09 10:39:57.210 StudyGCD_new[10395:60b] 2
2014-04-09 10:39:57.211 StudyGCD_new[10395:60b] 3
2014-04-09 10:39:57.211 StudyGCD_new[10395:60b] 4
串行主线程池与并发主线程池混用
[[GCDQueue globalQueue] queueBlock:^{
// 系统并发线程池
// ... 处理阻塞操作 [[GCDQueue mainQueue] queueBlock:^{
// 系统串行主线程池
// ... 更新UI操作
}];
}];
自己创建的并发线程池
GCDQueue *concurrentQueue = [[GCDQueue alloc] initConcurrent]; [concurrentQueue queueBlock:^{
NSLog(@"");
}]; [concurrentQueue queueBlock:^{
NSLog(@"");
}]; [concurrentQueue queueBlock:^{
NSLog(@"");
}]; [concurrentQueue queueBlock:^{
NSLog(@"");
}];
2014-04-09 11:08:39.450 StudyGCD_new[10592:1303] 1
2014-04-09 11:08:39.450 StudyGCD_new[10592:3903] 4
2014-04-09 11:08:39.450 StudyGCD_new[10592:3807] 2
2014-04-09 11:08:39.450 StudyGCD_new[10592:3707] 3
自己创建的串行线程池
GCDQueue *serialQueue = [[GCDQueue alloc] initSerial]; [serialQueue queueBlock:^{
NSLog(@"");
}]; [serialQueue queueBlock:^{
NSLog(@"");
}]; [serialQueue queueBlock:^{
NSLog(@"");
}]; [serialQueue queueBlock:^{
NSLog(@"");
}];
2014-04-09 11:08:39.450 StudyGCD_new[10592:1303] 1
2014-04-09 11:08:39.450 StudyGCD_new[10592:3903] 2
2014-04-09 11:08:39.450 StudyGCD_new[10592:3807] 3
2014-04-09 11:08:39.450 StudyGCD_new[10592:3707] 4
主并发线程池延时1s执行
NSLog(@""); [[GCDQueue globalQueue] queueBlock:^{
NSLog(@"Y.X.");
} afterDelay:.f]; NSLog(@"");
2014-04-09 11:11:46.349 StudyGCD_new[10640:1303] 1
2014-04-09 11:11:46.350 StudyGCD_new[10640:1303] 2
2014-04-09 11:11:47.350 StudyGCD_new[10640:1303] Y.X.
并发线程池中运行阻塞线程(queueAndAwaitBlock-dispatch_sync)
GCDQueue *concurrentQueue = [[GCDQueue alloc] initConcurrent]; [concurrentQueue queueAndAwaitBlock:^{
sleep();
NSLog(@"");
}]; [concurrentQueue queueAndAwaitBlock:^{
sleep();
NSLog(@"");
}]; [concurrentQueue queueAndAwaitBlock:^{
sleep();
NSLog(@"");
}]; [concurrentQueue queueBlock:^{
NSLog(@"");
}]; [concurrentQueue queueBlock:^{
NSLog(@"");
}]; [concurrentQueue queueAndAwaitBlock:^{
sleep();
NSLog(@"");
}];
2014-04-09 11:21:15.186 StudyGCD_new[10946:60b] 1
2014-04-09 11:21:16.188 StudyGCD_new[10946:60b] 2
2014-04-09 11:21:17.190 StudyGCD_new[10946:60b] 3
2014-04-09 11:21:17.191 StudyGCD_new[10946:3807]
2014-04-09 11:21:17.191 StudyGCD_new[10946:1303]
2014-04-09 11:21:18.192 StudyGCD_new[10946:60b] 6
并发线程池,等待执行多次完毕后接着往下执行(dispatch_apply)
GCDQueue *concurrentQueue = [[GCDQueue alloc] initConcurrent]; NSLog(@"1-1-1"); [concurrentQueue queueAndAwaitBlock:^(size_t count) {
NSLog(@"%zu", count);
} iterationCount:]; NSLog(@"2-2-2");
2014-04-09 11:27:39.400 StudyGCD_new[11131:60b] 1-1-1
2014-04-09 11:27:39.401 StudyGCD_new[11131:60b] 1
2014-04-09 11:27:39.401 StudyGCD_new[11131:1303] 0
2014-04-09 11:27:39.401 StudyGCD_new[11131:3707] 2
2014-04-09 11:27:39.401 StudyGCD_new[11131:3903] 3
2014-04-09 11:27:39.403 StudyGCD_new[11131:60b] 2-2-2
并发线程池,设置障碍线程而按照队列的形式执行(dispatch_barrier_async)
GCDQueue *concurrentQueue = [[GCDQueue alloc] initConcurrent]; [concurrentQueue queueBarrierBlock:^{
NSLog(@"");
sleep();
}]; [concurrentQueue queueBarrierBlock:^{
NSLog(@"");
sleep();
}]; [concurrentQueue queueBlock:^{
NSLog(@"Y.X.");
sleep();
}]; [concurrentQueue queueBarrierBlock:^{
NSLog(@"");
sleep();
}]; [concurrentQueue queueBarrierBlock:^{
NSLog(@"");
sleep();
}];
2014-04-09 11:33:08.190 StudyGCD_new[11252:1303]
2014-04-09 11:33:09.192 StudyGCD_new[11252:1303]
2014-04-09 11:33:10.194 StudyGCD_new[11252:1303] Y.X.
2014-04-09 11:33:11.196 StudyGCD_new[11252:1303]
2014-04-09 11:33:12.198 StudyGCD_new[11252:1303]
线程组以及监听
GCDQueue *concurrentQueue = [[GCDQueue alloc] initConcurrent];
GCDGroup *group = [[GCDGroup alloc] init]; [concurrentQueue queueBlock:^{
NSLog(@"");
} inGroup:group]; [concurrentQueue queueBlock:^{
NSLog(@"");
} inGroup:group]; [concurrentQueue queueBlock:^{
NSLog(@"");
} inGroup:group]; [concurrentQueue queueNotifyBlock:^{
NSLog(@"监测所有这个组中的子线程完成后执行此打印语句");
} inGroup:group];
2014-04-09 11:37:19.492 StudyGCD_new[11343:3707] 3
2014-04-09 11:37:19.492 StudyGCD_new[11343:3807] 2
2014-04-09 11:37:19.492 StudyGCD_new[11343:1303] 1
2014-04-09 11:37:19.493 StudyGCD_new[11343:3807] 监测所有这个组中的子线程完成后执行此打印语句
先讲解系统的dispatch_group_enter来等待所有的异步操作结束后再执行最后的block
// 创建一个组
dispatch_group_t group = dispatch_group_create(); /*
dispatch_group_enter() * A call to this function must be balanced with a call to dispatch_group_leave.
* 调用了这个方法就必须使用dispatch_group_leave来达到平衡
*/ // 明确的标记一个block进入了一个组
dispatch_group_enter(group);
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, ), ^{
NSLog(@"1 starting");
sleep();
NSLog(@"1 complete"); // 明确的标记一个这个组中的block已经完成
dispatch_group_leave(group);
}); // 明确的标记一个block进入了一个组
dispatch_group_enter(group);
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, ), ^{
NSLog(@"2 starting");
sleep();
NSLog(@"2 complete"); // 明确的标记一个这个组中的block已经完成
dispatch_group_leave(group);
}); dispatch_async(dispatch_get_main_queue(), ^{
// 同步等待之前提交的block任务都完成了才会执行这里
dispatch_group_wait(group, DISPATCH_TIME_FOREVER);
NSLog(@"所有的进入group的都结束了,结束");
});
2014-04-09 13:10:32.518 StudyGCD_new[11864:1303] 1 starting
2014-04-09 13:10:32.518 StudyGCD_new[11864:3403] 2 starting
2014-04-09 13:10:33.520 StudyGCD_new[11864:1303] 1 complete
2014-04-09 13:10:36.521 StudyGCD_new[11864:3403] 2 complete
2014-04-09 13:10:36.522 StudyGCD_new[11864:60b] 所有的进入group的都结束了,结束
GCDGroup同步并发线程,更精简
GCDGroup *group = [[GCDGroup alloc] init]; [group enter];
[[GCDQueue globalQueue] queueBlock:^{
sleep();
NSLog(@"1结束");
[group leave];
}]; [group enter];
[[GCDQueue globalQueue] queueBlock:^{
sleep();
NSLog(@"2结束");
[group leave];
}]; [[GCDQueue globalQueue] queueBlock:^{
[group wait];
NSLog(@"1.2都执行结束了,进来了这里");
}];
2014-04-09 13:16:17.584 StudyGCD_new[11945:1303] 1结束
2014-04-09 13:16:18.584 StudyGCD_new[11945:3807] 2结束
2014-04-09 13:16:18.585 StudyGCD_new[11945:3707] 1.2都执行结束了,进来了这里
使用系统的信号量操作
// 创建信号量
dispatch_semaphore_t sem = dispatch_semaphore_create(); dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, ), ^(void) {
NSLog(@"1开始"); // 模拟阻塞操作
sleep();
NSLog(@"1结束"); // 增加信号量
dispatch_semaphore_signal(sem); sleep();
dispatch_semaphore_signal(sem); sleep();
dispatch_semaphore_signal(sem); sleep();
dispatch_semaphore_signal(sem);
}); NSLog(@"阻塞吗?");
// 减少信号量
dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
NSLog(@"阻塞了1!"); // 减少信号量
dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
NSLog(@"阻塞了2!"); // 减少信号量
dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
NSLog(@"阻塞了3!"); // 减少信号量
dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
NSLog(@"阻塞了4!");
2014-04-09 13:31:10.135 StudyGCD_new[12198:1303] 1开始
2014-04-09 13:31:10.134 StudyGCD_new[12198:60b] 阻塞吗?
2014-04-09 13:31:12.137 StudyGCD_new[12198:1303] 1结束
2014-04-09 13:31:12.138 StudyGCD_new[12198:60b] 阻塞了1!
2014-04-09 13:31:13.139 StudyGCD_new[12198:60b] 阻塞了2!
2014-04-09 13:31:14.140 StudyGCD_new[12198:60b] 阻塞了3!
2014-04-09 13:31:15.141 StudyGCD_new[12198:60b] 阻塞了4!
信号量操作
GCDSemaphore *semaphore = [[GCDSemaphore alloc] initWithValue:]; [[GCDQueue globalQueue] queueBlock:^{
sleep();
[semaphore signal];
}]; [semaphore wait];
NSLog(@"结束");
2014-04-09 13:39:09.476 StudyGCD_new[12298:60b] 结束
[翻译] GCDObjC的更多相关文章
- 《Django By Example》第五章 中文 翻译 (个人学习,渣翻)
书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者@ucag注:大家好,我是新来的翻译, ...
- 《Django By Example》第四章 中文 翻译 (个人学习,渣翻)
书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:祝大家新年快乐,这次带来<D ...
- [翻译]开发文档:android Bitmap的高效使用
内容概述 本文内容来自开发文档"Traning > Displaying Bitmaps Efficiently",包括大尺寸Bitmap的高效加载,图片的异步加载和数据缓存 ...
- 【探索】机器指令翻译成 JavaScript
前言 前些时候研究脚本混淆时,打算先学一些「程序流程」相关的概念.为了不因太枯燥而放弃,决定想一个有趣的案例,可以边探索边学. 于是想了一个话题:尝试将机器指令 1:1 翻译 成 JavaScript ...
- 《Django By Example》第三章 中文 翻译 (个人学习,渣翻)
书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:第三章滚烫出炉,大家请不要吐槽文中 ...
- 《Django By Example》第二章 中文 翻译 (个人学习,渣翻)
书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:翻译完第一章后,发现翻译第二章的速 ...
- 《Django By Example》第一章 中文 翻译 (个人学习,渣翻)
书籍出处:https://www.packtpub.com/web-development/django-example 原作者:Antonio Melé (译者注:本人目前在杭州某家互联网公司工作, ...
- 【翻译】Awesome R资源大全中文版来了,全球最火的R工具包一网打尽,超过300+工具,还在等什么?
0.前言 虽然很早就知道R被微软收购,也很早知道R在统计分析处理方面很强大,开始一直没有行动过...直到 直到12月初在微软技术大会,看到我软的工程师演示R的使用,我就震惊了,然后最近在网上到处了解和 ...
- ASP.NET MVC with Entity Framework and CSS一书翻译系列文章之第一章:创建基本的MVC Web站点
在这一章中,我们将学习如何使用基架快速搭建和运行一个简单的Microsoft ASP.NET MVC Web站点.在我们马上投入学习和编码之前,我们首先了解一些有关ASP.NET MVC和Entity ...
随机推荐
- Java虚拟机(三):JVM垃圾回收机制
概述 垃圾收集 Garbage Collection 通常被称为“GC”,它诞生于1960年 MIT 的 Lisp 语言,经过半个多世纪,目前已经十分成熟了. jvm 中,程序计数器.虚拟机栈.本地方 ...
- CRF两个例子的理解
概率计算例子: 预测例子:
- PM2怎么开启ES6?
node版本v6.14.2,无论是用配置文件 { "apps": [{ "name": "server", "script&quo ...
- 简述组件化解决方案CTMediator与MGJRouter的主要思想
简述CTMediator CTMediator按照功能的结构来讲,使用时需要实现CTMediator的个三部分. 1.CTMediator类:承担总枢纽,总调度的责任 2.Target_(Modu ...
- 在LaTeX中配置西夏文字体与环境
目录 1 配置字族 2 粗体.斜体设定 3 文本编辑器的字体设定(以Sublime Text为例) 4 附录:一些字体的下载源 警告:这篇文章的部分内容需要西夏文字体才能正常显示.若您需要安装,可参考 ...
- 【转】外国朋友出的js题目,你能对几道
原文地址 http://perfectionkills.com/javascript-quiz/ 中文地址加解释:by Aaron:http://www.cnblogs.com/aaronjs/p/3 ...
- 微信小程序登录方案
微信小程序登录方案 登录程序 app.js 调用wx.login获取code 将code作为参数请求自己业务登录接口获取session_key 存储session_key 如果有回调执行回调 App( ...
- C#中的序列化和反序列化是什么、有什么作用、使用方法详解
什么是序列化与反序列化??? 序列化和反序列化,我们可能经常会听到,其实通俗一点的解释,序列化就是把一个对象保存到一个文件或数据库字段中去,反序列化就是在适当的时候把这个文件再转化成原来的对象使用. ...
- java编写带头结点的单链表
最近在牛客网上练习在线编程,希望自己坚持下去,每天都坚持下去练习,给自己一个沉淀,不多说了 我遇到了一个用java实现单链表的题目,就自己在做题中将单链表完善了一下,希望大家作为参考也熟悉一下,自己 ...
- Centos7初次开机提示Initial setup of CentOS Linux 7 (core)
安装完成centos7后出现如下提示: Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License informat ...