gpt4 book ai didi

iOS 应用程序 "has active assertions beyond permitted time - occasional crashes"

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:57:16 25 4
gpt4 key购买 nike

我的一些用户遇到了这个崩溃(据他们说,它发生在使用应用程序 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 会导致任何并发症吗?在设备上,如果应用程序已经在后台,它似乎不会触发计时器。

感谢帮助。

最佳答案

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

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

关于iOS 应用程序 "has active assertions beyond permitted time - occasional crashes",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33580697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com