使用适用于 iOS 版本 3.0.9(以及一般的 3.0.x)的 Google Analytics(分析)库,我们看到了很多类似下面的崩溃。
它们似乎是随机发生的。
Exception Type: SIGBUS
Exception Codes: BUS_ADRALN at 0xe756c0
Crashed Thread: 19
Thread 19 Crashed:
0 libsystem_platform.dylib 0x39e02e18 0x39e01000 + 7704
1 CoreFoundation 0x2bfd0d6f 0x2bf92000 + 257391
2 CoreFoundation 0x2c0716a3 0x2bf92000 + 915107
3 CoreFoundation 0x2c070417 0x2bf92000 + 910359
4 CoreFoundation 0x2bfd4a0b 0x2bf92000 + 272907
5 Communicator 0x00714541 +[GAIUsageTracker trackTarget:action:] + 193
6 Communicator 0x007049b3 -[GAITrackerImpl send:] + 47
7 Communicator 0x00157b8d __66+[xxx]_block_invoke (xxx.m:305)
8 libdispatch.dylib 0x39ca58cb 0x39ca4000 + 6347
9 libdispatch.dylib 0x39caeda3 0x39ca4000 + 44451
10 libdispatch.dylib 0x39cafcd7 0x39ca4000 + 48343
11 libsystem_pthread.dylib 0x39e06e31 0x39e06000 + 3633
Best Answer-推荐答案 strong>
事实证明,GAI 库并不像它声称的那样是线程安全的。我们能够通过序列化调用来修复我们的 Google Analytics(分析)崩溃问题。
(void (^)(void))block = {
// your analytics call, eg
[[[GAI sharedInstance] defaultTracker] send:....];
};
static dispatch_queue_t theQueue;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
theQueue = dispatch_queue_create("Analytics Queue", DISPATCH_QUEUE_SERIAL);
});
dispatch_async(theQueue, block);
所以对跟踪器的所有调用都在同一个队列(上面的“theQueue”)上序列化的代码块中执行,这会强制一次只执行一个代码块。
关于ios - Google Analytics for iOS 中的线程崩溃,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/29750038/
|