iOS app"在超出允许时间的情况下有活跃的断言 - 偶尔崩溃"

时间:2015-11-07 08:18:44

标签: ios objective-c nstimer uiapplication uibackgroundtask

我的一些用户正在崩溃(据他们说,这是在使用应用程序4-5分钟后发生的),但我无法自己重现:

Application Specific Information:
<BKNewProcess: 0x175466c0; com.zsquare.iPadApp; pid: 5005; hostpid: -1> has active assertions beyond permitted time: 
{(
    <BKProcessAssertion: 0x17545c90> id: 48-3A424578-FF1D-4484-9026-B4C6A83AD7EF name: Background Content Fetching (191) process: <BKNewProcess: 0x175466c0; .com.zsquare.ijournalPad; pid: 5005; hostpid: -1> permittedBackgroundDuration: 30.000000 reason: backgroundContentFetching owner pid:48 preventSuspend  preventThrottleDownUI  preventIdleSleep  preventSuspendOnSleep 
)}

Elapsed total CPU time (seconds): 0.460 (user 0.460, system 0.000), 2% CPU 
Elapsed application CPU time (seconds): 0.013, 0% CPU

Filtered syslog: None found

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_kernel.dylib          0x362a4ff0 mach_msg_trap + 20
1   libsystem_kernel.dylib          0x362a4df4 mach_msg + 38
2   CoreFoundation                  0x23fa58c4 __CFRunLoopServiceMachPort + 134
3   CoreFoundation                  0x23fa3c4c __CFRunLoopRun + 1034
4   CoreFoundation                  0x23ef7118 CFRunLoopRunSpecific + 518
5   CoreFoundation                  0x23ef6f04 CFRunLoopRunInMode + 106
6   GraphicsServices                0x2d081ac8 GSEventRunModal + 158
7   UIKit                           0x28139f14 UIApplicationMain + 142
8   SimpleList-iPad                 0x0000f116 main (main.m:17)
9   libdyld.dylib                   0x361e9872 start + 0

现在我已经查看过处理这次崩溃的各种其他SO问题,但没有一个答案对我有帮助,所以我想我会在这里发布我自己的设置和代码。

首先,发生这种情况的功能与应该在应用程序中运行的重复任务有关。为此,当应用程序首次启动时,我在应用程序中重复了一个计时器:

- (void) setupRepeatTimer {

self.repeatTimer = [NSTimer scheduledTimerWithTimeInterval: 60.0 target:self selector:@selector(checkForAutomaticTaskTime:) userInfo:nil repeats: YES];
self.repeatTimer.tolerance = 1.0;

}

- (void) checkForAutomaticTaskTime: (NSTimer *) timer {

   if (self.taskIdentifier) {
    [[UIApplication sharedApplication] endBackgroundTask: self.taskIdentifier];
   }

   self.taskIdentifier = UIBackgroundTaskInvalid;
   [self beginBackgroundUpdateTask];


   // simplified, but there are more conditional checks here
   if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateActive && setting_enabled_for_automatic_task) {
        [self startAutomaticBackup];
   } else {
        [self endBackgroundUpdateTask];
   }
}

需要运行的备份可以是可变大小的,具体取决于用户的数据。这是以下的一般代码:

- (void) startAutomaticBackup {

    [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

        [self runBackupWithCompletionBlock:^(NSString * filename) {

            dispatch_async(dispatch_get_main_queue(), ^{
                // finish on the main thread
                [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

                [self endBackgroundUpdateTask];

            });
        }];
    });
}

可以肯定的是,beginBackgroundUpdateTaskendBackgroundUpdateTask看起来与SO和Apple指南中的代码示例完全相同:

- (void) beginBackgroundUpdateTask
{
    self.taskIdentifier = [[UIApplication sharedApplication] beginBackgroundTaskWithName:@"CJAutoBackup" expirationHandler:^{
        NSLog(@"beginBackgroundTask about to end = %lu", (unsigned long)self.taskIdentifier);
        [self endBackgroundUpdateTask];
    }];
}

- (void) endBackgroundUpdateTask
{
    if (self.taskIdentifier) {
        [[UIApplication sharedApplication] endBackgroundTask: self.taskIdentifier];
        self.taskIdentifier = UIBackgroundTaskInvalid;
    }
}

====

这就是我的设置。从用户描述中看,应用程序运行4-5分钟后,应用程序在此崩溃报告的前台崩溃。如果他们禁用自动备份设置,该应用程序将再次正常工作。

这里的主要困惑是应用程序在应用程序在前台使用它而不是后台时崩溃,但错误消息会讨论后台任务断言。怎么可能?

另外,我可以做些什么来防止这个问题?我已经看过UIApplication提到的backgroundTimeRemaining属性,但我不确定在我的示例中如何或在何处使用它。

使用NSTimer会导致任何并发症吗?在设备上,如果应用程序已经在后台,它似乎不会触发计时器。

感谢帮助。

1 个答案:

答案 0 :(得分:3)

这是一个线程问题。正如您所怀疑的那样,问题确实是开始/结束后台任务调用的因子分解和体系结构。您正在尝试将一个后台任务标识符维护为属性,然后无论实际任务需要多长时间,您都会每60秒重复更改一次(在后台线程上) )。这种令人困惑的伪循环体系结构导致您的后台任务与其标识符不同步,因此后台任务的时间到期而没有您使用适当的标识符调用endBackgroundTask

您需要修改此体系结构,以便每个任务有一个后台任务标识符,从而将所有内容分开。我认为您发现最简单的方法是将每个自动备份表示为单独的NSOperation。