使用UIFileSharingEnabled在应用程序外部打开密码保护/锁定sqlite数据库?

时间:2011-05-14 17:24:49

标签: iphone ios sqlite core-data

我的iPhone应用程序中设置了UIFileSharingEnabled。我想这样做,以便用户可以访问由Core Data管理的database.sqlite文件。通过这种方式,他们可以在多个iPhone / touch / iPad之间拖放它,并将其用作穷人的同步。

但是,我不希望他们打开sqlite文件,a)在数据库周围乱码,b)逆向工程我的数据模型。

有没有人知道密码保护或锁定数据库的方法,以便用户无法在应用程序外打开它?

2 个答案:

答案 0 :(得分:0)

您可以过滤掉您对应用程序可见的文件,但不能过滤掉iTunes FS可见的文件。

当我将iTunes文件共享支持添加到我的应用程序时,我编写代码以静默方式将数据库文件移动到iTFS不可见的新目录。下面的代码将sqlite DB文件从Documents目录移动到iTFS不可见的Application Support目录。

- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {

if (persistentStoreCoordinator != nil) {
    return persistentStoreCoordinator;
}

//
// Move th DB file to a different directory because of the file sharing
// feature.
//
NSString *oldDBFile = [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"db.sqlite"];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
NSString *newDBFile;
NSString *dbpath;
NSFileManager *fileMgr = [NSFileManager defaultManager];
NSError *error;
NSURL *storeUrl;
BOOL dir;

dbpath = ([paths count] > 0 ? [paths objectAtIndex:0] : @"");

newDBFile = [dbpath stringByAppendingPathComponent:@"db.sqlite"];

if ([dbpath length] &&
    [fileMgr fileExistsAtPath:dbpath 
                  isDirectory:&dir] == NO) {
    if ([fileMgr createDirectoryAtPath:dbpath
         withIntermediateDirectories:YES
                            attributes:nil error:&error] == NO) {
        NSLog(@"Cannot create %@: %@ %@",
              dbpath,
              [error localizedDescription],
              [error userInfo]);
    }
}

if ([fileMgr fileExistsAtPath:oldDBFile]) {
    if ([fileMgr moveItemAtPath:oldDBFile 
                         toPath:newDBFile 
                          error:&error] != YES) {
        NSLog(@"Error moving DB: %@: %@", [error localizedDescription], [error userInfo]);
        storeUrl = [NSURL fileURLWithPath:oldDBFile];
    } else {
        storeUrl = [NSURL fileURLWithPath:newDBFile];
    }
} else {
    storeUrl = [NSURL fileURLWithPath:newDBFile];
}

NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
                         [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,
                         [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];   

persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: 
                              [self managedObjectModel]];
if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType 
                                              configuration:nil 
                                                        URL:storeUrl 
                                                    options:options 
                                                      error:&error]) 
{
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
    // Handle the error.
}    

return persistentStoreCoordinator;
}

答案 1 :(得分:0)

也许你可以使用一些ZIP或RAR库,因为它们支持密码保护。然后在应用程序移动到后台时压缩sqlite文件,并在到达前台时解压缩。