我有以下代码:
- (void)test_with_running_runLoop {
dispatch_semaphore_t semaphore = dispatch_semaphore_create(0);
NSTimeInterval checkEveryInterval = 0.05;
NSLog(@"Is main queue? : %d", dispatch_get_current_queue() == dispatch_get_main_queue());
dispatch_async(dispatch_get_main_queue(), ^{
sleep(1);
NSLog(@"I will reach here, because currentRunLoop is run");
dispatch_semaphore_signal(semaphore);
});
while (dispatch_semaphore_wait(semaphore, DISPATCH_TIME_NOW))
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:checkEveryInterval]];
NSLog(@"I will see this, after dispatch_semaphore_signal is called");
}
- (void)test_without_running_runLoop {
dispatch_semaphore_t semaphore = dispatch_semaphore_create(0);
NSLog(@"Is main queue? : %d", dispatch_get_current_queue() == dispatch_get_main_queue());
dispatch_async(dispatch_get_main_queue(), ^{
sleep(1);
NSLog(@"I will not reach here, because currentRunLoop is not run");
dispatch_semaphore_signal(semaphore);
});
NSLog(@"I will just hang here...");
while (dispatch_semaphore_wait(semaphore, DISPATCH_TIME_NOW));
NSLog(@"I will see this, after dispatch_semaphore_signal is called");
}
产生以下内容:
Starting CurrentTests/test_with_running_runLoop
2012-11-29 08:14:29.781 Tests[31139:1a603] Is main queue? : 1
2012-11-29 08:14:30.784 Tests[31139:1a603] I will reach here, because currentRunLoop is run
2012-11-29 08:14:30.791 Tests[31139:1a603] I will see this, after dispatch_semaphore_signal is called
OK (1.011s)
Starting CurrentTests/test_without_running_runLoop
2012-11-29 08:14:30.792 Tests[31139:1a603] Is main queue? : 1
2012-11-29 08:14:30.797 Tests[31139:1a603] I will just hang here...
我的问题彼此相关:
1)如果我理解正确,主队列(dispatch_get_main_queue())是一个串行队列。我使用dispatch_semaphore_wait来阻止主队列/主线程,所以为什么我会在第一个测试用例中看到“我将到达这里,因为currentRunLoop正在运行”(我对第二个案例没问题 - 在我的理解中,它确实,应该是什么)?
2)当前正在执行的任务被阻止的串行队列如何能够在当前解锁之前调度下一个任务(哦,这个神秘的runLoop:beforeDate :)?
我希望听到详细的和全面的答案,因为非常非常多的事情(这里也是如此)依赖于这个问题!
更新:除了接受的答案外,此SO主题对此问题有很好的答案:Pattern for unit testing async queue that calls main queue on completion
答案 0 :(得分:6)
因为主线程上的默认runloop具有特殊行为,在运行时,它还会处理主调度队列。在这种情况下你实际上并没有阻止,因为你告诉dispatch_semaphore_wait
立即超时,它正在做(返回非零,在你的if
中评估为真) - 所以你通过你的while循环,在那里你驱动当前的运行循环,从而你的排队块被执行。
但我的答案很广泛,因为我不确定你对哪一部分感到惊讶。