iOS 数据库模块搭建方案

数据库作为App缓存设计的首选,存在一些开发的陷阱,同时需要考虑性能、开发效率和可维护性,笔者建议自行搭建数据库管理类,同时配合成熟的开源ORM框架快速搭建数据库模块。
本示例采用fmdb框架 https://github.com/ccgus/fmdb

SQLite多线程访问问题分析:

- (void) testfmdb{
    // db path
    NSString * cachePath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
    NSString * dbPath = [cachePath stringByAppendingPathComponent:@"test.sqlite"];
    
    // create db
    _db = [FMDatabase databaseWithPath:dbPath];
    
    // open db
    BOOL openDbResult = [_db open];
    NSLog(@"openDbResult===%@", openDbResult ? @"YES":@"NO");

    // create table
    BOOL createTableResult = [_db executeUpdate:@"create table if not exists user(id integer primary key autoincrement, name text, age integer)"];
    NSLog(@"createTableResult===%@", createTableResult ? @"YES":@"NO");
    
    // test multithreading
    NSOperationQueue *myQueue = [[NSOperationQueue alloc] init];
    [myQueue setMaxConcurrentOperationCount:10];
    for (int i = 0; i < 100; i ++) {
        NSBlockOperation *opBlock = [NSBlockOperation blockOperationWithBlock:^{
            [self insert];
            [self query];
        }];
        [myQueue addOperation:opBlock];
    }
    
}

-(void) insert{
    for (int i = 0; i < 100; i ++) {
        NSString *name = [NSString stringWithFormat:@"name_%d",i];
        NSString *age = [NSString stringWithFormat:@"%d",i];
        
        [_db executeUpdate:@"insert into user(name,age) values (?, ?)", name,age];
    }
}

-(void) query{
    FMResultSet * set = [_db executeQuery:@"select * from user"];
    while ([set next]) {
        int id = [set intForColumn:@"id"];
        NSString *name = [set stringForColumn:@"name"];
        int age = [set intForColumn:@"age"];
        NSLog(@"%d===%@===%d", id, name, age);
    }
}
  • 调用testfmdb方法抛出异常:The FMDatabase is currently in use.
  • ios中SQLite同Android中SQLite一样,数据库不支持多线程读写并发访问,Android底层对SQLite单个数据库连接读写操作做了同步处理,也仅能支持单数据库连接的并发访问。

SQLite多线程访问解决方案:

使用fmdb FMDatabaseQueue

  • FMDatabaseQueue对所有数据库访问都在串行同步队列中执行,规避并发问题的产生;
  • 所有数据库的操作,通过调用 inDatabase 在block回调中通过db访问数据库,block代码在当前线程中执行。
  -(void) testfmdb_queue{
    // db path
    NSString * cachePath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
    NSString * dbPath = [cachePath stringByAppendingPathComponent:@"test.sqlite"];
    
    // create db and open db
    _queue = [FMDatabaseQueue databaseQueueWithPath:dbPath];
    
    // create table
    [_queue inDatabase:^(FMDatabase *db) {
        BOOL createTableResult = [_db executeUpdate:@"create table if not exists user(id integer primary key autoincrement, name text, age integer)"];
        NSLog(@"createTableResult===%@", createTableResult ? @"YES":@"NO");

    }];
    
    // test multithreading
    NSOperationQueue *myQueue = [[NSOperationQueue alloc] init];
    [myQueue setMaxConcurrentOperationCount:10];//设置并发线程数量.
    for (int i = 0; i < 20; i ++) {
        NSBlockOperation *opBlock = [NSBlockOperation blockOperationWithBlock:^{
            [self insert_queue];
            [self query_queue];
        }];
        [myQueue addOperation:opBlock];
    }
  }

  -(void) insert_queue{
    [_queue inDatabase:^(FMDatabase *db) {
        for (int i = 0; i < 20; i ++) {
            NSString *name = [NSString stringWithFormat:@"name_%d",i];
            NSString *age = [NSString stringWithFormat:@"%d",i];
            
            [db executeUpdate:@"insert into user(name,age) values (?, ?)", name,age];
        }
    }];
    
  }

  -(void) query_queue{
    [_queue inDatabase:^(FMDatabase *db) {
        FMResultSet * set = [db executeQuery:@"select * from user"];
        while ([set next]) {
            int id = [set intForColumn:@"id"];
            NSString *name = [set stringForColumn:@"name"];
            int age = [set intForColumn:@"age"];
            NSLog(@"%d===%@===%d", id, name, age);
        }
    }];
  }

配合fmdb快速搭建ORM:

  • 定义DAO基类ZZBaseDAO;
#import <Foundation/Foundation.h>
#import "FMDatabase.h"
#import "FMDatabaseQueue.h"

@interface ZZBaseDAO : NSObject

@property(nonatomic,retain) FMDatabaseQueue * queue;
@property(nonatomic,copy) NSString * dbPath;

/**
 初始化数据库
 @params newDBPath 数据库完整路径
 **/
-(id) initWithDBPath:(NSString *) newDBPath;
/**
 获取数据库路径
 @params dbName 数据库名
 **/
- (NSString *) generateFilePath: (NSString *) dbName;

/**
 字典对象转为实体对象
 @params dict
 @params entity 实体数据,传入前需要创建好
 **/
+ (void) dictionaryToEntity:(NSDictionary *)dict entity:(NSObject*)entity;

/**
 实体对象转为字典对象,不支持对象中包含c基本数据类型,如:int、float等。
 @params entity
 **/
+ (NSDictionary *) entityToDictionary:(id)entity;

/**
 fmdb查询结果集转为实体对象数组
 @params set fmdb查询结果集
 @params clazz 实体数据,传入前需要创建好
 **/
+ (NSMutableArray *) dictionaryToEntityList:(FMResultSet *)set entity:(Class)clazz;

/**
 fmdb查询结果集转为实体对象数组,适用于查询结果为单条记录的情况
 @params set fmdb查询结果集
 @params clazz 实体数据,传入前需要创建好
 **/
+ (id) dictionaryToEntityOne:(FMResultSet *)set entity:(Class)clazz;

@end
  • ZZBaseDAO实现类,通过调用NSObject的
    setValuesForKeysWithDictionary和valueForKey实现NSDictionary和entity对象间转换;
#import "ZZBaseDAO.h"
#import "Constants.h"
#import <objc/runtime.h>

@implementation ZZBaseDAO

@synthesize queue, dbPath;

-(id) init{
    self = [super init];
    if (self) {
        dbPath = [self generateFilePath:DB_NAME_DEFAULT];
        queue = [FMDatabaseQueue databaseQueueWithPath: dbPath];
    }
    return self;
}

-(id) initWithDBPath:(NSString *) newDBPath{
    self = [super init];
    if (self) {
        // create db and open db
        dbPath = newDBPath;
        queue = [FMDatabaseQueue databaseQueueWithPath:newDBPath];
    }
    return self;
}

- (NSString *) generateFilePath: (NSString *) dbName{
    // db path
    NSString * cachePath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
    NSString * newDBPath = [cachePath stringByAppendingPathComponent:dbName];
    return newDBPath;
}

+ (void) dictionaryToEntity:(NSDictionary *)dict entity:(NSObject*)entity{
    if (dict && entity) {
        [entity setValuesForKeysWithDictionary:dict];
    }
}

+ (NSDictionary *) entityToDictionary:(id)entity{
    u_int count;
    objc_property_t* properties = class_copyPropertyList([entity class], &count);
    
    NSMutableArray* propertyArray = [NSMutableArray array];
    NSMutableArray* valueArray = [NSMutableArray array];
    
    for (int i = 0; i < count; i++){
        // propertyNameStr
        objc_property_t prop = properties[i];
        const char* propertyName = property_getName(prop);
        NSString *propertyNameStr = [NSString stringWithUTF8String:propertyName];
        
        id value = [entity valueForKey:propertyNameStr];
        if(value != nil){
            // propertyArray
            [propertyArray addObject:propertyNameStr];
            // valueArray
            [valueArray addObject:value];
        }
    }

    free(properties);
    
    // entity -> dict
    NSDictionary* returnDic = [NSDictionary dictionaryWithObjects:valueArray forKeys:propertyArray];
    
    return returnDic;
}

+ (NSMutableArray *) dictionaryToEntityList:(FMResultSet *)set entity:(Class)clazz{
    if (set && clazz) {
        NSMutableArray * arr = [NSMutableArray array];
        while ([set next]) {
            NSDictionary *dic = [set resultDictionary];
            id entity = [[clazz alloc]init];
            [ZZBaseDAO dictionaryToEntity:dic entity:entity];
            [arr addObject:entity];
        }
        return arr;
    }
    return nil;
}

+ (id) dictionaryToEntityOne:(FMResultSet *)set entity:(Class)clazz{
    if (set && clazz) {
        [set next];
        NSDictionary *dic = [set resultDictionary];
        id entity = [[clazz alloc]init];
        [ZZBaseDAO dictionaryToEntity:dic entity:entity];
        return entity;
    }
    return nil;
}

@end
  • fmdb数据库操作ORM实例:
-(void) testfmdb_queue{
   _queue = [self getFMDatabaseQueue];
    
    // create table
    [_queue inDatabase:^(FMDatabase *db) {
        BOOL createTableResult = [_db executeUpdate:@"create table if not exists user(id integer primary key autoincrement, name text, age integer)"];
        NSLog(@"createTableResult===%@", createTableResult ? @"YES":@"NO");
        
    }];
    
    // test multithreading
    NSOperationQueue *myQueue = [[NSOperationQueue alloc] init];
    [myQueue setMaxConcurrentOperationCount:10];//设置并发线程数量.
    for (int i = 0; i < 1; i ++) {
        NSBlockOperation *opBlock = [NSBlockOperation blockOperationWithBlock:^{
            [self insert_queue];
            [self query_queue];
        }];
        [myQueue addOperation:opBlock];
    }
}

-(void) insert_queue{
    [_queue inDatabase:^(FMDatabase *db) {
        for (NSInteger i = 0; i < 20; i ++) {
            TestUser *user = [[TestUser alloc]init];
            user.name = [NSString stringWithFormat:@"test_name_%ld",i];
            user.age = i;
            NSDictionary *dic = [ZZBaseDAO entityToDictionary:user];
            NSLog(@"dic===%@", dic);
            
            BOOL insertResult = [db executeUpdate:@"insert into user(name,age) values (:name, :age)" withParameterDictionary:dic];
            NSLog(@"insertResult===%@", insertResult?@"YES":@"NO");
        }
    }];
    
}

-(void) query_queue{
    [_queue inDatabase:^(FMDatabase *db) {
        FMResultSet *set = nil;
        @try {
            set = [db executeQuery:@"select id,name,age from user limit 10"];
            NSMutableArray *arr = [ZZBaseDAO dictionaryToEntityList:set entity:[TestUser class]];
            if (arr) {
                for (TestUser* user in arr) {
                    NSLog(@"%ld===%@===%ld", user.pid, user.name, (long)user.age);
                }
            }
        }
        @catch (NSException *exception) {
        }
        @finally {
            if (set) {
                [set close];
            }
        }
    }];
}
  • 处理数据库中特殊字段如id等与oc关键字冲突的情况:
    定义函数setValue:forUndefinedKey,实现特殊数据库字段与entity中property的映射。
#import <Foundation/Foundation.h>

@interface ZZBaseEntity : NSObject

- (void) setValue:(id)value forUndefinedKey:(NSString *)key;

@end


#import "ZZBaseEntity.h"

@implementation ZZBaseEntity

- (void) setValue:(id)value forUndefinedKey:(NSString *)key{
//    if ([key isEqualToString:@"id"]) {
//        self.pid = [value integerValue];
//    }
}
@end
  • 使用fmdb升级数据库:
    通过判断表中字段是否存在来确定是否需要升级
// create db and open db
_queue = [FMDatabaseQueue databaseQueueWithPath:dbPath];

[_queue inDatabase:^(FMDatabase *db) {
    // 判断数据库字段是否存在,需要#import"FMDatabaseAdditions.h"
    BOOL exist = [db columnExists:@"name" inTableWithName:@"user"];
    NSLog(@"exist===%@", exist?@"YES":@"NO");
    
}];

本文作者:gcoder.io
本文链接:http://gcoder-io.github.io/2015/07/19/ios-db-plan/
版权声明: 本博客所有文章均为原创,转载请注明作者及出处

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容