-
Notifications
You must be signed in to change notification settings - Fork 1
/
IFSFormatFile.m
257 lines (220 loc) · 8.15 KB
/
IFSFormatFile.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
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
/*
Copyright (c) 2010, Marcus Müller <[email protected]>.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
- Neither the name of Mulle kybernetiK nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#import "IFSFormatFile.h"
#import "IFSFormatter.h"
#import "NSObject+FUSEOFS.h"
@interface IFSFormatFile (Private)
- (void)_setup;
- (NSString *)defaultKeyForTemplateId:(NSString *)_id;
- (NSString *)templateDefaultFormatString;
- (NSString *)templateFormatString;
@end
@implementation IFSFormatFile
static BOOL doDebug = NO;
static NSCharacterSet *trimSet = nil;
+ (void)initialize {
static BOOL didInit = NO;
NSUserDefaults *ud;
if (didInit) return;
didInit = YES;
ud = [NSUserDefaults standardUserDefaults];
doDebug = [ud boolForKey:@"IFSFormatFileDebugEnabled"];
trimSet = [[NSCharacterSet characterSetWithCharactersInString:@"\n\r\t "]
copy];
}
- (id)initWithDefaultTemplate:(NSString *)_defTemplate
templateId:(NSString *)_templateId
{
self = [self init];
if (self) {
self->defaultTemplate = [_defTemplate copy];
if (_templateId) {
self->defaultKey = [[self defaultKeyForTemplateId:_templateId] copy];
}
self->needsSetup = YES;
}
return self;
}
- (void)dealloc {
[self->defaultTemplate release];
[self->defaultKey release];
[super dealloc];
}
/* private */
- (void)_setup {
static NSMutableDictionary *helpTextMap = nil;
if (!helpTextMap)
helpTextMap = [[NSMutableDictionary alloc] initWithCapacity:3];
NSString *helpText = [helpTextMap objectForKey:self->defaultTemplate];
if (!helpText) {
NSString *htPath = [[NSBundle mainBundle]
pathForResource:self->defaultTemplate
ofType:@"txt"];
if (htPath) {
helpText = [[NSString alloc] initWithContentsOfFile:htPath
encoding:NSUTF8StringEncoding
error:NULL];
if (helpText) {
[helpTextMap setObject:helpText forKey:self->defaultTemplate];
[helpText release];
}
}
}
NSMutableString *format = [[NSMutableString alloc] initWithCapacity:1024];
[format appendString:@"# "];
[format appendString:self->defaultKey ? self->defaultKey
: self->defaultTemplate];
[format appendString:@"\n#\n"];
if (helpText) {
[format appendString:helpText];
[format appendString:@"\n"];
}
[format appendString:[self templateFormatString]];
[format appendString:@"\n"];
NSData *formatData = [format dataUsingEncoding:NSUTF8StringEncoding];
[format release];
[super setFileContents:formatData];
}
- (NSString *)defaultKeyForTemplateId:(NSString *)_id {
return [NSString stringWithFormat:@"%@[%@]", self->defaultTemplate, _id];
}
- (NSString *)templateDefaultFormatString {
return [[NSUserDefaults standardUserDefaults]
stringForKey:self->defaultTemplate];
}
- (NSString *)templateFormatString {
if (!self->defaultKey)
return [self templateDefaultFormatString];
NSString *fmt = [[NSUserDefaults standardUserDefaults]
stringForKey:self->defaultKey];
// might be null because currently not set!
if (!fmt)
fmt = [self templateDefaultFormatString];
return fmt;
}
/* accessors */
- (IFSFormatter *)getFormatter {
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
NSString *fmtKey = nil;
NSString *fmt = nil;
if (self->defaultKey) {
fmtKey = self->defaultKey;
fmt = [ud stringForKey:fmtKey];
if (doDebug && fmt)
NSLog(@"INFO: format found for reference %@", fmtKey);
}
if (!fmt)
fmt = [self templateDefaultFormatString];
// is it an alias?
if ([fmt hasPrefix:@"@"] && ([fmt length] > 1)) {
fmt = [fmt substringFromIndex:1];
if (doDebug)
NSLog(@"%@ is an alias to %@", self->defaultKey, fmt);
fmtKey = [self defaultKeyForTemplateId:fmt];
fmt = [ud stringForKey:fmtKey];
if (doDebug && !fmt)
NSLog(@"WARN: no format found for reference %@ -> alias failed!", fmtKey);
}
if (fmt) {
return [[[IFSFormatter alloc] initWithFormatString:fmt]
autorelease];
}
// fallback - hopefully indicates failure appropriately
fmt = fmtKey;
return [[[IFSFormatter alloc] initWithFormatString:fmt] autorelease];
}
- (void)remove {
if (self->defaultKey) {
[[NSUserDefaults standardUserDefaults] removeObjectForKey:self->defaultKey];
}
self->needsSetup = YES;
}
/* FUSEOFS */
- (void)setFileContents:(NSData *)_data {
// NOTE: this is just a quick hack, but should be refactored to a more
// robust implementation once we settle on this concept.
NSString *rawDefault = [[[NSString alloc] initWithData:_data
encoding:NSUTF8StringEncoding]
autorelease];
if (doDebug)
NSLog(@"%@ rawDefault(before trimming):\n%@",
NSStringFromSelector(_cmd), rawDefault);
rawDefault = [rawDefault stringByTrimmingCharactersInSet:trimSet];
NSString *newDefault = nil;
NSArray *lines = [rawDefault componentsSeparatedByString:@"\n"];
NSInteger i, count = [lines count];
for (i = count - 1; i >= 0; i--) {
NSString *line = [lines objectAtIndex:i];
if (![line hasPrefix:@"#"]) {
line = [line stringByTrimmingCharactersInSet:trimSet];
if ([line length]) {
newDefault = line;
break;
}
}
}
if (newDefault && [newDefault length]) {
NSString *defKey = self->defaultKey ? self->defaultKey
: self->defaultTemplate;
[[NSUserDefaults standardUserDefaults] setObject:newDefault forKey:defKey];
self->needsSetup = YES;
if (doDebug)
NSLog(@"%@ %@ = %@", NSStringFromSelector(_cmd), defKey, newDefault);
}
else {
if (self->defaultKey) {
[self remove];
if (doDebug)
NSLog(@"%@ -> removed %@",
NSStringFromSelector(_cmd), self->defaultKey);
}
}
}
- (NSData *)fileContents {
if (self->needsSetup) {
[self _setup];
self->needsSetup = NO;
}
return [super fileContents];
}
#ifndef NO_OSX_ADDITIONS
- (NSDictionary *)extendedFileAttributes {
if (!self->extAttrs) {
static NSData *attrVal = nil;
if (!attrVal) {
CFStringRef ianaCharSetName =
CFStringConvertEncodingToIANACharSetName(kCFStringEncodingUTF8);
NSString *attr = [NSString stringWithFormat:@"%@;%d", ianaCharSetName,
(unsigned int)kCFStringEncodingUTF8];
attrVal = [[attr dataUsingEncoding:NSASCIIStringEncoding] copy];
}
self->extAttrs = [[NSMutableDictionary alloc] initWithCapacity:2];
[self setExtendedAttribute:@"com.apple.TextEncoding" value:attrVal];
}
return [super extendedFileAttributes];
}
#endif
@end /* IFSFormatFile */