您的位置:首页 > 移动开发

CoreData 深入理解6 Mapping Model

2016-03-09 16:59 183 查看
通常,我们都会尽量使数据模型的变化尽量简单。但有些情况下,不得不进行大的改动,甚至是重新设计数据模型。在这种情况下,之前提过的简单数据迁移已经无法适应了,需要引入Mapping Model这个中间层。

这时,又想起之前提过的一句话:

There is no problem in computer science that can’t be solved by adding another
level of indirection.

这里做一个简单的变动,先为球员增加薪水属性: 



然后创建一名球员,信息如下:



这时候我们打算为球员调薪,比如上涨10%。为了结合NSMappingModel,这里简单地增加了一个新的属性newSalary,并且希望在数据迁移时更新该属性。为此,我们创建了一个NSMappingModel映射模型:







选择好源数据模型和目标数据模型,设置newSalary和salary的关系:



这表示目标属性newSalary的值为源属性salary的1.1倍。

这个时候,我们不希望Core Data自动为我们映射模型,所以修改一下迁移选项: 

[cpp] view
plaincopy

NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:  

[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,  

[NSNumber numberWithBool:NO], NSInferMappingModelAutomaticallyOption, nil];  

把NSInferMappingModelAutomaticallyOption设置为NO后,我们需要手工指定映射模型:

[cpp] view
plaincopy

NSString *mappingModelPath = [[NSBundle mainBundle] pathForResource:@"mappingModel3to4" ofType:@"cdm"];  

NSURL *mappingModelUrl = [NSURL fileURLWithPath:mappingModelPath];  

NSMappingModel *mappingModel = [[[NSMappingModel alloc] initWithContentsOfURL:mappingModelUrl] autorelease];  

接着,进行实质性的数据迁移。简单起见,这里就没有做错误检查了:

[cpp] view
plaincopy
bf06

NSMigrationManager *migrationManager = [[[NSMigrationManager alloc] initWithSourceModel:sourceModel destinationModel:destinationModel] autorelease];  

  

if (![migrationManager migrateStoreFromURL:storeURL type:NSSQLiteStoreType options:nil withMappingModel:mappingModel  toDestinationURL:tmpStoreURL destinationType:NSSQLiteStoreType destinationOptions:nil error:&error]) {  

    NSLog(@"Error migrating %@, %@", error, [error userInfo]);  

    abort();  

}  

  

NSFileManager *fileManager = [NSFileManager defaultManager];  

NSString *oldStoreName = @"cdNBA_old.sqlite";  

NSURL *oldStoreURL = [NSURL fileURLWithPath:[[self applicationDocumentsDirectory] stringByAppendingPathComponent:oldStoreName]];  

[fileManager moveItemAtURL:storeURL toURL:oldStoreURL error:&error];  

[fileManager moveItemAtURL:tmpStoreURL toURL:storeURL error:&error];  

再跑一遍Demo,然后在终端里查看:



可以发现有一份旧的sqlite文件和一份新的。
通过查看新的sqlite文件中的数据,可以得知newSalary的值: 



其中,newSalary为2420000.0,刚好是salary的值2200000.0的1.1倍。

Brief Talk About Core Data Series, Part 9 : Using Mapping Model 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: