7

我有两个模型版本 - 12 和 13。然后我创建了一个带有源 12 和目标 13 的 xcmapingmodel-File。

我将 NSEntityMigrationPolicy 子类化,并将我的类添加到 mappingmodel-File 到所需的实体。

@interface EndDateMigrationPolicy : NSEntityMigrationPolicy

在此处输入图像描述

在我的设备上安装旧版本 (11) 后,我使用模型版本 13 安装当前状态 - 应用程序运行,但未调用我的迁移方法。我错过了什么吗?

编辑:使用这些选项是否正确?

    NSDictionary *options = @{NSMigratePersistentStoresAutomaticallyOption: @YES,
                         NSInferMappingModelAutomaticallyOption: @YES};
4

2 回答 2

3

我将尽我所能回答您,我已经经历了很多次核心数据迁移,所以我知道它是多么痛苦。对于一个人来说,您不能希望您的迁移必须使用这些选项,因为您尝试做的实际上不是轻量级迁移,但您却告诉它进行轻量级迁移。

基本上假设您出于某种原因需要在 2 个版本之间进行非轻量级迁移,在您的情况下为 11 和 12。您需要做的是:

1->12 轻量级 12->13 自定义迁移 13->(未来版本)轻量级迁移

可能有更好的解决方案,但我还没有找到。

这是一些可以帮助您的代码(最难的部分,我不记得所有内容),在此代码之前,我将数据库复制到备份中,因此基本上备份数据库是您的旧数据库,而存储是您的新数据库(这是空的)

NSString *path = [[NSBundle mainBundle] pathForResource:<YOUR MODEL NAME> ofType:@"cdm"];

NSURL *backUpURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"<YOUR MODEL NAME>MigrationBackUp.sqlite"]; //or whatever you want to call your backup
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"<YOUR MODEL NAME>.sqlite"];
NSError *err2 = nil;
NSDictionary *sourceMetadata2 =
[NSPersistentStoreCoordinator metadataForPersistentStoreOfType:NSSQLiteStoreType
                                                           URL:backUpURL
                                                         error:&err2];
NSManagedObjectModel *sourceModel2 = [NSManagedObjectModel mergedModelFromBundles:[NSArray arrayWithObject:[NSBundle mainBundle]]

                                                                 forStoreMetadata:sourceMetadata2];
NSManagedObjectModel *destinationModel2 = [self managedObjectModelForVersion:@"1.4"]; //Yeah your gonna have to get your mapping model , I'll give you this code too later
NSString *oldModel = [[sourceModel2 versionIdentifiers] anyObject];
NSLog(@"Source Model : %@",oldModel);
NSMappingModel *mappingModel = [[NSMappingModel alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path]];

if (mappingModel != nil) {
    for (NSString * identifier in [mappingModel entityMappings]) {
        NSLog(@"Mapping > %@",identifier);
    }
}

然后只需使用您的来源和目的地制作一个迁移器。

这也是后面比较难的部分:

    BOOL success = [migrator migrateStoreFromURL:backUpURL
                                        type:NSSQLiteStoreType
                                     options:nil
                            withMappingModel:mappingModel
                            toDestinationURL:storeURL
                             destinationType:NSSQLiteStoreType
                          destinationOptions:nil
                                       error:&err2];

最后但并非最不重要的(我之前说过我会给你):

- (NSManagedObjectModel *)managedObjectModelForVersion:(NSString*)version {

NSString *modelPath = [[NSBundle mainBundle] pathForResource:@"Model" ofType:@"momd"];
if (BETWEEN_INEX(version, @"1.0", @"1.4")) {
    modelPath = [modelPath stringByAppendingPathComponent:@"Model"];
    modelPath = [modelPath stringByAppendingPathExtension:@"mom"];
} else if (BETWEEN_INEX(version, @"1.4", @"1.5")) {
    modelPath = [modelPath stringByAppendingPathComponent:@"Model 2"];
    modelPath = [modelPath stringByAppendingPathExtension:@"mom"];
} else if (BETWEEN_INEX(version, @"1.5", @"1.6")) {
    modelPath = [modelPath stringByAppendingPathComponent:@"Model 3"];
    modelPath = [modelPath stringByAppendingPathExtension:@"mom"];
} else if (BETWEEN_INEX(version, @"1.6", @"1.7")) {
    modelPath = [modelPath stringByAppendingPathComponent:@"Model 4"];
    modelPath = [modelPath stringByAppendingPathExtension:@"mom"];
}
NSURL *modelURL = [NSURL fileURLWithPath:modelPath];
NSManagedObjectModel * oldManagedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
NSSet *vIdentifiers = [oldManagedObjectModel versionIdentifiers];
for (NSString * identifier in vIdentifiers) {
    NSLog(@"Old Model : %@",identifier);
}
return [oldManagedObjectModel autorelease];

}

我知道这些只是代码片段,但我真的希望它可以帮助您解决问题,如果您需要其他任何内容,请询问。

于 2012-11-23T18:51:14.473 回答
1

您的 NSEntityMigrationPolicy 没有被调用,因为您将 NSInferMappingModelAutomaticallyOption 设置为 @(YES) - 它应该是 @(NO)

于 2013-01-15T03:58:52.793 回答