2017-04-13 68 views
1

我在RestKit中遇到了这种不一致,难以重现的崩溃。崩溃发生在NSManagedObjectContext::save(),内部RKManagedObjectRequestOperation::saveContextToPersistentStore:failedContext:errorhere's the exact line of code)。RKManagedObjectRequestOperation中的EXC_BREAKPOINT NSManagedObjectContext :: save

这次崩溃发生在我们的生产环境中十几个不同的用户,但我个人无法重现它。我不知道什么可能导致这次事故。我唯一的线索是_forceRegisterLostFault这可能表明涉及到故障/删除的对象。

背景:每次在网络请求后完成RestKit映射时都会调用RKManagedObjectRequestOperation::saveContextToPersistentStore:failedContext:error

有没有人在CoreData之前遇到过这种特殊的EXC_BREAKPOINT? 关于如何解决这个问题的任何建议?

堆栈跟踪:

Crashed: NSManagedObjectContext 0x1741cf5a0 
0 CoreData      0x18add7c7c -[NSManagedObjectContext(_NSInternalAdditions) _forceRegisterLostFault:] + 160 
1 CoreData      0x18ad5c8b0 -[NSManagedObjectContext(_NSInternalAdditions) _validateObjects:forOperation:error:exhaustive:forSave:] + 2884 
2 CoreData      0x18ad5bcf8 -[NSManagedObjectContext(_NSInternalAdditions) _validateChangesForSave:] + 364 
3 CoreData      0x18ad5b94c -[NSManagedObjectContext(_NSInternalChangeProcessing) _prepareForPushChanges:] + 196 
4 CoreData      0x18ad51ec4 -[NSManagedObjectContext save:] + 544 
5 RestKit      0x1013214b8 __84-[RKManagedObjectRequestOperation saveContextToPersistentStore:failedContext:error:]_block_invoke (RKManagedObjectRequestOperation.m:800) 
6 CoreData      0x18add5b70 developerSubmittedBlockToNSManagedObjectContextPerform + 152 
7 libdispatch.dylib    0x1878e91c0 _dispatch_client_callout + 16 
8 libdispatch.dylib    0x1878f6860 _dispatch_barrier_sync_f_invoke + 84 
9 CoreData      0x18add5a80 -[NSManagedObjectContext performBlockAndWait:] + 308 
10 RestKit      0x1013212b8 -[RKManagedObjectRequestOperation saveContextToPersistentStore:failedContext:error:] (RKManagedObjectRequestOperation.m:808) 
11 RestKit      0x1013216d0 -[RKManagedObjectRequestOperation saveContext:error:] (RKManagedObjectRequestOperation.m:831) 
12 RestKit      0x101321f54 -[RKManagedObjectRequestOperation saveContext:] (RKManagedObjectRequestOperation.m:874) 
13 RestKit      0x10131f654 __79-[RKManagedObjectRequestOperation performMappingOnResponseWithCompletionBlock:]_block_invoke.350 (RKManagedObjectRequestOperation.m:660) 
14 RestKit      0x1013534a0 -[RKResponseMapperOperation willFinish] (RKResponseMapperOperation.m:323) 
15 RestKit      0x101353ac4 -[RKResponseMapperOperation main] (RKResponseMapperOperation.m:411) 
16 Foundation      0x1894578c4 -[__NSOperationInternal _start:] + 620 
17 Foundation      0x189524b00 __NSOQSchedule_f + 228 
18 libdispatch.dylib    0x1878e91c0 _dispatch_client_callout + 16 
19 libdispatch.dylib    0x1878f7444 _dispatch_queue_serial_drain + 928 
20 libdispatch.dylib    0x1878ec9a8 _dispatch_queue_invoke + 652 
21 libdispatch.dylib    0x1878f938c _dispatch_root_queue_drain + 572 
22 libdispatch.dylib    0x1878f90ec _dispatch_worker_thread3 + 124 
23 libsystem_pthread.dylib  0x187af22b8 _pthread_wqthread + 1288 
24 libsystem_pthread.dylib  0x187af1da4 start_wqthread + 4 

回答

0

有我已经看到了这个错误了几个不同的原因。

  • 在错误的线程上访问托管对象和/或上下文。使用Core Data Concurrency Debugging来验证您始终使用正确的线程,并使用-com.apple.CoreData.ConcurrencyDebug 1参数。
  • 损坏的Sqlite文件 - 您的应用程序是否包含开箱即用的Core Data存储?确保其中的所有元数据都是正确的。
  • Overriding the default accessors在您的核心数据管理对象。要小心如果你有对象与原始(int或float而不是NSNumber)属性。
+0

启用'-com.apple.CoreData.ConcurrencyDebug 1'会显示RestKit中与CoreData并发有关的几个崩溃。我已经提出了一个[这里](https://github.com/RestKit/RestKit/issues/2502)。不知道这是否与我遇到的崩溃有关。这些并发问题似乎是RestKit设计的一部分。 – 100grams