单军华
2018-03-28 f99cf1d5cc50407394501853be06cb39f38a092c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
//
//  NSObject+LHModelExecute.m
//  LHDBDemo
//
//  Created by 3wchina01 on 16/2/15.
//  Copyright © 2016年 李浩. All rights reserved.
//
 
#import "NSObject+LHDB.h"
#import "LHPredicate.h"
#import <objc/runtime.h>
#import "LHDBPath.h"
#import "LHSqlite.h"
#import "NSObject+LHModel.h"
#import "LHModelStateMent.h"
 
 
#define run_in_queue(...) dispatch_async([self executeQueue], ^{\
__VA_ARGS__; \
})
 
#define DatabasePath [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]stringByAppendingPathComponent:@"filedata.sqlite"]
 
static NSString* const DatabaseFilePath = @"DatabaseFilePath";
static NSString* const DataBaseExecute = @"DataBaseExecute";
static NSString* const DataBaseQueue = @"DataBaseQueue";
 
static LHSqlite* sqlite;
 
@implementation NSObject (LHDB)
 
- (dispatch_queue_t)executeQueue
{
    static dispatch_queue_t executeQueue;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        executeQueue = dispatch_queue_create("com.sancai.lhdb", DISPATCH_QUEUE_SERIAL);
    });
    return executeQueue;
}
 
+ (dispatch_queue_t)executeQueue
{
    return [[self new] executeQueue];
}
 
- (NSString*)dbPath
{
    if ([LHDBPath instanceManagerWith:nil].dbPath.length == 0) {
        return DatabasePath;
    }else
        return [LHDBPath instanceManagerWith:nil].dbPath;
}
 
+ (NSString*)dbPath
{
    if ([LHDBPath instanceManagerWith:nil].dbPath.length == 0) {
        return DatabasePath;
    }else
        return [LHDBPath instanceManagerWith:nil].dbPath;
}
 
- (void)setFilePath:(NSString *)filePath
{
    objc_setAssociatedObject(self, &DatabaseFilePath, filePath, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
 
- (NSString*)filePath
{
    return objc_getAssociatedObject(self, &DatabaseFilePath);
}
 
+ (void)createTable
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:createTableString(self) object:nil executeType:LHSqliteTypeWrite success:nil fail:nil];
}
 
+ (void)addColum:(NSString*)name
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:addColum(self, name) object:nil executeType:LHSqliteTypeWrite success:nil fail:nil];
}
 
- (void)save
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:insertString(self) object:self executeType:LHSqliteTypeWrite success:nil fail:nil];
}
 
+ (void)saveWithDic:(NSDictionary*)dic
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:insertStringWithDic(self, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:nil];
}
 
- (void)saveWithIfError:(executeError)error
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:insertString(self) object:self executeType:LHSqliteTypeWrite success:nil fail:error];
}
 
+ (void)saveWithDic:(NSDictionary*)dic error:(executeError)error
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:insertStringWithDic(self, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:error];
}
 
- (void)updateWithPredicate:(LHPredicate*)predicate
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:updateString(self, predicate) object:self executeType:LHSqliteTypeWrite success:nil fail:nil];
}
 
+ (void)updateWithDic:(NSDictionary*)dic predicate:(LHPredicate*)predicate
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:updateStringWithDic(self, predicate, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:nil];
}
 
- (void)updateWithPredicate:(LHPredicate*)predicate error:(executeError)error
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:updateString(self, predicate) object:self executeType:LHSqliteTypeWrite success:nil fail:error];
}
 
+ (void)updateWithDic:(NSDictionary*)dic predicate:(LHPredicate*)predicate error:(executeError)error
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:updateStringWithDic(self, predicate, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:error];
}
 
+ (void)deleteWithPredicate:(LHPredicate*)predicate
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:deleteString(self, predicate) object:nil executeType:LHSqliteTypeWrite success:nil fail:nil];
}
 
+ (void)deleteWithPredicate:(LHPredicate*)predicate error:(executeError)error
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    [sqlite executeSQLWithSqlstring:deleteString(self, predicate) object:nil executeType:LHSqliteTypeWrite success:nil fail:error];
}
 
+ (NSArray*)selectWithPredicate:(LHPredicate*)predicate
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    __block NSMutableArray* array = [NSMutableArray array];
    [sqlite executeSQLWithSqlstring:selectString(self, predicate) object:nil executeType:LHSqliteTypeRead success:^(NSArray *result) {
        for (NSDictionary* dic in result) {
            [array addObject:[self lh_ModelWithDictionary:dic]];
        }
    } fail:nil];
    return array;
}
 
+ (NSArray*)selectWithPredicate:(LHPredicate*)predicate error:(executeError)error
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    __block NSMutableArray* array = [NSMutableArray array];
    [sqlite executeSQLWithSqlstring:selectString(self, predicate) object:nil executeType:LHSqliteTypeRead success:^(NSArray *result) {
        for (NSDictionary* dic in result) {
            [array addObject:[self lh_ModelWithDictionary:dic]];
        }
    } fail:error];
    return array;
}
 
+ (void)inQueueCreateTable
{
    run_in_queue([self createTable]);
}
 
+ (void)inQueueAddColum:(NSString*)name
{
    run_in_queue([self addColum:name]);
}
 
- (void)inQueueSave
{
    run_in_queue([self save]);
}
 
+ (void)inQueueSaveWithDic:(NSDictionary*)dic
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    run_in_queue([sqlite executeSQLWithSqlstring:insertStringWithDic(self, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:nil]);
}
 
- (void)inQueueSaveWithIfError:(executeError)fail
{
    run_in_queue([self saveWithIfError:fail]);
}
 
+ (void)inQueueSaveWithDic:(NSDictionary*)dic error:(executeError)fail
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    run_in_queue([sqlite executeSQLWithSqlstring:insertStringWithDic(self, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:fail]);
}
 
- (void)inQueueUpdateWithPredicate:(LHPredicate*)predicate
{
    run_in_queue([self updateWithPredicate:predicate]);
}
 
+ (void)inQueueUpdateWithDic:(NSDictionary*)dic predicate:(LHPredicate*)predicate
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    run_in_queue([sqlite executeSQLWithSqlstring:updateStringWithDic(self, predicate, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:nil]);
}
 
- (void)inQueueUpdateWithPredicate:(LHPredicate*)predicate error:(executeError)fail
{
    run_in_queue([self updateWithPredicate:predicate error:fail]);
}
 
+ (void)inQueueUpdateWithDic:(NSDictionary*)dic predicate:(LHPredicate *)predicate error:(executeError)error
{
    LHSqlite* sqlite = [LHSqlite shareInstance];
    sqlite.sqlPath = [self dbPath];
    run_in_queue([sqlite executeSQLWithSqlstring:updateStringWithDic(self, predicate, dic) object:dic executeType:LHSqliteTypeWrite success:nil fail:error]);
}
 
+ (void)inQueueDeleteWithPredicate:(LHPredicate*)predicate
{
    run_in_queue([self deleteWithPredicate:predicate]);
}
 
+ (void)inQueueDeleteWithPredicate:(LHPredicate*)predicate error:(executeError)fail
{
    run_in_queue([self deleteWithPredicate:predicate error:fail]);
}
 
+ (void)inQueueSelectWithPredicate:(LHPredicate*)predicate result:(void(^)(NSArray* resultArray))result
{
    run_in_queue(result([self selectWithPredicate:predicate]));
}
 
+ (void)inQueueSelectWithPredicate:(LHPredicate*)predicate result:(void(^)(NSArray* resultArray))result error:(executeError)fail
{
    
    run_in_queue(result([self selectWithPredicate:predicate error:fail]));
}
 
@end