forked from magicalpanda/MagicalRecord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSPersistentStore+ActiveRecord.m
72 lines (55 loc) · 1.86 KB
/
NSPersistentStore+ActiveRecord.m
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
//
// NSPersistentStore+ActiveRecord.m
//
// Created by Saul Mora on 3/11/10.
// Copyright 2010 Magical Panda Software, LLC All rights reserved.
//
#import "NSPersistentStore+ActiveRecord.h"
static NSPersistentStore *defaultPersistentStore = nil;
@implementation NSPersistentStore (ActiveRecord)
+ (NSPersistentStore *) defaultPersistentStore
{
return defaultPersistentStore;
}
+ (void) setDefaultPersistentStore:(NSPersistentStore *) store
{
[defaultPersistentStore release];
defaultPersistentStore = [store retain];
}
+ (NSString *) directory:(int) type
{
return [NSSearchPathForDirectoriesInDomains(type, NSUserDomainMask, YES) lastObject];
}
+ (NSString *)applicationDocumentsDirectory
{
return [self directory:NSDocumentDirectory];
}
+ (NSString *)applicationLibraryDirectory
{
#if !TARGET_OS_IPHONE
NSString *applicationName = [[[NSBundle mainBundle] infoDictionary] valueForKey:(NSString *)kCFBundleNameKey];
return [[self directory:NSApplicationSupportDirectory] stringByAppendingPathComponent:applicationName];
#else
return [self directory:NSLibraryDirectory];
#endif
}
+ (NSURL *) urlForStoreName:(NSString *)storeFileName
{
NSArray *paths = [NSArray arrayWithObjects:[self applicationDocumentsDirectory], [self applicationLibraryDirectory], nil];
NSFileManager *fm = [[[NSFileManager alloc] init] autorelease];
for (NSString *path in paths)
{
NSString *filepath = [path stringByAppendingPathComponent:storeFileName];
if ([fm fileExistsAtPath:filepath])
{
return [NSURL fileURLWithPath:filepath];
}
}
//set default url
return [NSURL fileURLWithPath:[[self applicationLibraryDirectory] stringByAppendingPathComponent:storeFileName]];
}
+ (NSURL *)defaultLocalStoreUrl
{
return [self urlForStoreName:kActiveRecordDefaultStoreFileName];
}
@end