从从两个单独的xcdatamodel文件定义的商店迁移时,我遇到了执行轻量级迁移的问题。
在我的应用程序的1.0版本中,我将模型分解为分析模型,模型A以及模型B中的所有其他模型。编译时,模型将组合在一起,一切都顺利进行。
在处理新版本1.1时,我通过向模型B添加新模型版本并将新版本设置为活动来升级模型B.
从1.0升级到1.1时会出现问题。似乎Core Data检查磁盘上的模型存储(由版本1.0创建)并查找描述它的模型,但无法找到定义整个存储的SINGLE模型(模型A仅涵盖分析,模型B覆盖其他一切),所以它抛出“无法找到源存储模型”错误。
是否有人找到了分离模型但仍允许升级+轻量级迁移的解决方案,而无需定义自定义迁移的额外麻烦?
以下是用于加载模型的代码片段:
NSArray *modelNames = [NSArray arrayWithObjects:@"model-A", @"model-B", nil];
NSMutableArray *models = [NSMutableArray array];
for (NSString *name in modelNames)
{
LogInfo(@"loading model %@", name);
NSURL *modelURL = [[NSBundle mainBundle] URLForResource:name withExtension:@"momd"];
NSManagedObjectModel *model = [[[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL] autorelease];
[models addObject:model];
}
// combine all the separate models into one big one
objectModel = [[NSManagedObjectModel modelByMergingModels:models] retain];
NSURL *documentsDirectory = [NSURL fileURLWithPath:[SuperFileManager documentsDirectory] isDirectory:YES];
NSURL *storeURL = [documentsDirectory URLByAppendingPathComponent:@"database.sqlite"];
NSError *error = nil;
coordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:objectModel];
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,
[NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption,
nil];
if (![coordinator addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil
URL:storeURL
options:options
error:&error])
{
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
答案 0 :(得分:9)
参加WWDC 2012实验室并与Core Data团队会面后,您似乎被迫将所有模型信息放在一个xcdatamodel中。 CoreData不够智能,无法将现有商店检查为创建商店并仍在磁盘上的商店的组合。正如C. Roald指出的那样,你可以对旧的xcdatamodel文件进行一些处理,但是Core Data不能更优雅地处理这个问题,这是非常可悲的。
答案 1 :(得分:8)
我也遇到了这个问题。我想要弄清楚WTF几个小时 - 非常令人沮丧。
我认为解决这个问题的最简单方法是:
选择您要保留的模型 - 比如ModelB - 并根据发布的版本为其创建新版本。我将调用已发布的版本ModelBv1和新版本ModelBv1_merge。
在文本编辑器(即ModelA.xcdatamodeld/ModelAv1.xcdatamodel/contents
和ModelB.xcdatamodeld/ModelBv1_merge.xcdatamodel/contents
)中打开ModelAv1和ModelBv1_merge的内容XML文件,并手动合并XML。模式非常简单 - 只需复制<entity>
元素并合并<elements>
元素(进入_merge内容文件)即可完成。
打开新ModelBv2的内容文件,然后再将ModelA内容合并到其中。
从项目文件中删除ModelA。
在Xcode中检查ModelBv1_merge和ModelBv2看起来是否合理,并包含您期望的所有内容(旧模型A和模型B的联合)。建立,你应该完成。
(我认为这有一个警告“如果两个内容文件都是由相同版本的Xcode编写的”,但我认为如果你有一个旧的内容文件,它应该很容易让Xcode通过做一个小事来重写它改变某处。)
答案 2 :(得分:5)
我有一个场景,我的应用程序模型合并了多个模型,我设法通过这种方式进行了一种自动轻量级迁移:
NSError* error = nil;
NSURL *documentsDirectory = [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
NSURL *storeURL = [documentsDirectory URLByAppendingPathComponent:@"db.sqlite"];
NSString* storePath = [storeURL path];
NSLog(@"Store URL: %@", storeURL);
if( [[NSFileManager defaultManager] fileExistsAtPath:storePath] ){
// Load store metadata (this will contain information about the versions of the models this store was created with)
NSDictionary *storeMeta = [NSPersistentStoreCoordinator metadataForPersistentStoreOfType:nil URL:storeURL error:&error];
if(storeMeta){
// Get the current model, merging all the models in the main bundle (in their current version)
NSManagedObjectModel* model=[NSManagedObjectModel mergedModelFromBundles:nil];
// If the persistent store is not compatible with such a model (i.e. it was created with a model obtained merging old versions of "submodels"), migrate
if(![model isConfiguration:nil compatibleWithStoreMetadata:storeMeta]){
// Load the old model
NSManagedObjectModel*oldModel = [NSManagedObjectModel mergedModelFromBundles:nil forStoreMetadata:storeMeta];
// Compute the mapping between old model and new model
NSMappingModel* mapping = [NSMappingModel inferredMappingModelForSourceModel:oldModel destinationModel:model error:&error];
if(mapping){
// Backup old store
NSURL* storeBackupURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:[NSString stringWithFormat:@"db.sqlite.%@.bck", [NSDate new]]];
BOOL done = [[NSFileManager defaultManager] moveItemAtURL:storeURL toURL:storeBackupURL error:&error];
if(done){
// Apply the mapping
NSMigrationManager* migrationManager = [[NSMigrationManager alloc] initWithSourceModel:oldModel destinationModel:model];
BOOL done = [migrationManager migrateStoreFromURL: storeBackupURL
type: NSSQLiteStoreType
options: nil
withMappingModel: mapping
toDestinationURL: storeURL
destinationType: NSSQLiteStoreType
destinationOptions: nil
error: &error];
if(done){
NSLog(@"Store migration successful!!!");
}
}
}
}
}
}
if(error){
NSLog(@"Migration error: %@", error);
}
答案 3 :(得分:0)
升级Core Data模型的最佳方法是添加版本。如果你不这样做,你将在崩溃中死亡,更新危险等等。
添加新版本实际上非常简单。您选择datamodel文件并选择'Editor&gt;添加模型版本'。这将使您能够基于以前的模型添加新的数据库版本。然后,您需要将当前数据模型设置为最新的:http://cl.ly/2h1g301b0N143t0b1k2K
当安装新版本时,iO将自动迁移数据(至少在我的情况下)。
希望这会有所帮助。