Skip to content

Commit bb40b89

Browse files
committedDec 10, 2013
fixes for sk20
1 parent 5de2ac1 commit bb40b89

8 files changed

+66
-25
lines changed
 

‎Common/Classes/HKCacheManager.h

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ typedef void (^HKCacheManagerProgressHandler)( double progress );
4141
sqlite3 *_database;
4242
sqlite3_stmt *_select;
4343
sqlite3_stmt *_insert;
44+
sqlite3_stmt *_update;
4445
sqlite3_stmt *_selectIdentifiers;
4546
dispatch_queue_t _queue;
4647

‎Common/Classes/HKCacheManager.m

+56-10
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,24 @@ - (NSData *)cachedDataWithIdentifier:(NSString *)identifier
186186
return retval;
187187
}
188188

189+
- (void)clearFastCacheForIdentifier:(NSString *)identifier
190+
{
191+
NSNumber *csize;
192+
NSUInteger index = [_fastcacheIdentifiers indexOfObject:identifier];
193+
194+
if ( index == NSNotFound )
195+
return;
196+
197+
csize = [_fastcacheSizes objectAtIndex:index];
198+
199+
[_fastcache removeObjectForKey:identifier];
200+
201+
_fastcacheSize -= [csize unsignedIntegerValue];
202+
203+
[_fastcacheIdentifiers removeObjectAtIndex:index];
204+
[_fastcacheSizes removeObjectAtIndex:index];
205+
}
206+
189207
- (void)cacheData:(NSData *)data withIdentifier:(NSString *)identifier
190208
{
191209
if ( identifier == nil )
@@ -203,17 +221,34 @@ - (void)cacheData:(NSData *)data withIdentifier:(NSString *)identifier
203221
const int cdlength = (int)[data length];
204222

205223
dispatch_sync( _queue, ^ {
206-
sqlite3_bind_text( _insert, 1, cidentifier, cilength, NULL );
207-
sqlite3_bind_blob( _insert, 2, cdata, cdlength, NULL );
224+
sqlite3_bind_blob( _update, 1, cdata, cdlength, NULL );
225+
sqlite3_bind_text( _update, 2, cidentifier, cilength, NULL );
226+
227+
sqlite3_step( _update );
228+
sqlite3_reset( _update );
208229

209-
if ( sqlite3_step( _insert ) == SQLITE_DONE )
230+
if ( sqlite3_changes( _database ) > 0 )
210231
{
211232
#ifdef HK_DEBUG_CACHE
212-
NSLog(@"HKCacheManager->Successfully saved cache with identifier: %@", identifier);
233+
NSLog(@"HKCacheManager->Successfully updated cache with identifier: %@", identifier);
213234
#endif
214235
}
236+
else
237+
{
238+
sqlite3_bind_text( _insert, 1, cidentifier, cilength, NULL );
239+
sqlite3_bind_blob( _insert, 2, cdata, cdlength, NULL );
240+
241+
if ( sqlite3_step( _insert ) == SQLITE_DONE )
242+
{
243+
#ifdef HK_DEBUG_CACHE
244+
NSLog(@"HKCacheManager->Successfully saved cache with identifier: %@", identifier);
245+
#endif
246+
}
247+
248+
sqlite3_reset( _insert );
249+
}
215250

216-
sqlite3_reset( _insert );
251+
[self clearFastCacheForIdentifier:identifier];
217252
});
218253

219254
#ifdef HK_DEBUG_CACHE
@@ -230,14 +265,12 @@ - (void)cacheURL:(NSURL *)url completionHandler:(HKCacheManagerCompletionHandler
230265

231266
- (void)cacheURL:(NSURL *)url identifier:(NSString *)identifier progressHandler:(HKCacheManagerProgressHandler)progressHandler completionHandler:(HKCacheManagerCompletionHandler)completionHandler
232267
{
233-
dispatch_queue_t cqueue = dispatch_get_current_queue();
234-
235268
dispatch_async( dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0 ), ^ {
236269
HKURLOperation *operation = [[HKURLOperation alloc] initWithURL:url
237270
progressHandler:^( double progress ) {
238271
if ( progressHandler != nil )
239272
{
240-
dispatch_async( cqueue, ^{
273+
dispatch_async( dispatch_get_main_queue(), ^{
241274
progressHandler( progress );
242275
});
243276
}
@@ -254,13 +287,13 @@ - (void)cacheURL:(NSURL *)url identifier:(NSString *)identifier progressHandler:
254287

255288
[self cacheData:data withIdentifier:sid];
256289

257-
dispatch_async( cqueue, ^{
290+
dispatch_async( dispatch_get_main_queue(), ^{
258291
completionHandler( YES, sid, nil );
259292
});
260293
}
261294
else
262295
{
263-
dispatch_async( cqueue, ^{
296+
dispatch_async( dispatch_get_main_queue(), ^{
264297
completionHandler( NO, nil, error );
265298
});
266299
}
@@ -420,6 +453,19 @@ - (BOOL)setup
420453
{
421454
#ifdef HK_DEBUG_CACHE
422455
NSLog(@"HKCacheManager->Error: 'Couldn't create database data insert statement!'");
456+
#endif
457+
return NO;
458+
}
459+
460+
if ( _update )
461+
{
462+
sqlite3_finalize( _update ); _update = nil;
463+
}
464+
465+
if ( sqlite3_prepare_v2( _database, "UPDATE cache SET data = ? WHERE identifier = ?", -1, &_update, NULL ) != SQLITE_OK )
466+
{
467+
#ifdef HK_DEBUG_CACHE
468+
NSLog(@"HKCacheManager->Error: 'Couldn't create database data update statement!'");
423469
#endif
424470
return NO;
425471
}

‎Common/Classes/HKDataStore.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ - (NSManagedObjectContext *)detachNewContext
352352
if ( _detached == nil )
353353
_detached = [[NSMutableSet alloc] init];
354354

355-
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
355+
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
356356

357357
[context setPersistentStoreCoordinator:_coordinator];
358358
[context setMergePolicy:[_context mergePolicy]];
@@ -462,7 +462,7 @@ - (void)setup
462462

463463
if ( _context == nil )
464464
{
465-
_context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
465+
_context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
466466

467467
[_context setPersistentStoreCoordinator:_coordinator];
468468

‎Common/Classes/HKHook.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ - (void)setQueue:(dispatch_queue_t)value
112112
void HKHookRegister ( const char *hook, id object, id registrant, HKHookHandler handler )
113113
{
114114
NSMutableDictionary *hooks = objc_getAssociatedObject( object, &gHKHookKey );
115-
HKHook *h = [HKHook hookWithHook:hook handler:handler queue:dispatch_get_current_queue() registrant:registrant];
115+
HKHook *h = [HKHook hookWithHook:hook handler:handler queue:dispatch_get_main_queue() registrant:registrant];
116116
NSString *key = [NSString stringWithFormat:@"%s_%p", hook, registrant];
117117

118118
if ( hooks == nil )

‎Common/Classes/HKRESTAPI.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#import <Foundation/Foundation.h>
2626

2727
#ifdef HK_DEBUG
28-
# define HK_DEBUG_REST_API
28+
// # define HK_DEBUG_REST_API
2929
# ifdef HK_DEBUG_REST_API
3030
# define HK_DEBUG_REST_API_PROFILE
3131
# define HK_DEBUG_REST_API_DATA

‎Common/Classes/HKRESTAPI.m

+1-7
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ - (id)resultForData:(NSData *)data error:(NSError **)error
3737

3838
@end
3939

40-
#import "JSONKit.h"
41-
4240
@implementation HKRESTAPIJSONResultAdapter
4341

4442
- (id)resultForData:(NSData *)data error:(NSError **)error
@@ -47,11 +45,7 @@ - (id)resultForData:(NSData *)data error:(NSError **)error
4745

4846
if ( [data length] > 0 )
4947
{
50-
JSONDecoder *decoder = [[JSONDecoder alloc] initWithParseOptions:JKParseOptionNone];
51-
52-
retval = [decoder objectWithData:data error:error];
53-
54-
[decoder release];
48+
retval = [NSJSONSerialization JSONObjectWithData:data options:0 error:error];
5549
}
5650

5751
return retval;

‎iOS/Classes/HKFormController.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,15 +279,15 @@ - (IBAction)handleDone:(id)sender
279279

280280
if ( [self ensureRequiredFieldsFilled] )
281281
{
282-
[self.parentViewController dismissModalViewControllerAnimated:YES];
282+
[self.parentViewController dismissViewControllerAnimated:YES completion:nil];
283283

284284
[[NSNotificationCenter defaultCenter] postNotificationName:HK_FORM_NOTIFICATION_DONE_EDITING object:self];
285285
}
286286
}
287287

288288
- (IBAction)handleCancel:(id)sender
289289
{
290-
[self.parentViewController dismissModalViewControllerAnimated:YES];
290+
[self.parentViewController dismissViewControllerAnimated:YES completion:nil];
291291

292292
[[NSNotificationCenter defaultCenter] postNotificationName:HK_FORM_NOTIFICATION_CANCELED_EDITING object:self];
293293
}

‎iOS/Classes/HKFormTableViewCell.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
4040
self.formSeparator.backgroundColor = [UIColor lightGrayColor];
4141

4242
self.formLabel = [[[UILabel alloc] initWithFrame:flf] autorelease];
43-
self.formLabel.textAlignment = UITextAlignmentRight;
43+
self.formLabel.textAlignment = NSTextAlignmentRight;
4444
self.formLabel.textColor = [UIColor colorWithRed:(56.0 / 255.0) green:(77.0 / 255.0) blue:(130.0 / 255.0) alpha:1.0];
4545
self.formLabel.backgroundColor = [UIColor clearColor];
4646
self.formLabel.font = [UIFont boldSystemFontOfSize:14.0];
4747
self.formLabel.numberOfLines = 0;
48-
self.formLabel.lineBreakMode = UILineBreakModeWordWrap;
48+
self.formLabel.lineBreakMode = NSLineBreakByWordWrapping;
4949

5050
self.formField = [[[UITextField alloc] initWithFrame:fff] autorelease];
5151
self.formField.font = [UIFont boldSystemFontOfSize:14.0];

0 commit comments

Comments
 (0)
Please sign in to comment.