-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATHeaderField.m
More file actions
372 lines (288 loc) · 8.21 KB
/
ATHeaderField.m
File metadata and controls
372 lines (288 loc) · 8.21 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
//
// ATHeaderField.m
// ATMail
//
// Created by 高田 明史 on 06/02/22.
// Copyright 2006 __MyCompanyName__. All rights reserved.
//
#import "ATHeaderField.h"
#import "ATFieldBody.h"
#import "ATContentTypeFieldBody.h"
#import "ATContentTransferEncodingFieldBody.h"
#import "ATTokenScanner.h"
static int callCountOfIsValid = 0;
@implementation ATHeaderField
+ (void)logCallCountOfIsValid
{
NSLog(@"callCountOfIsValid: %d", callCountOfIsValid);
}
+ (id)defaultContentType
{
ATHeaderField *aDefaultContentType = [[[self alloc] initWithName:@"Content-Type" fieldBody:[ATContentTypeFieldBody defaultContentType]] autorelease];
[aDefaultContentType interpret];
return aDefaultContentType;
}
+ (id)defaultContentTransferEncoding
{
ATHeaderField *aDefaultContentTransferEncoding = [[[self alloc] initWithName:@"Content-Transfer-Encoding" fieldBody:[ATContentTransferEncodingFieldBody defaultContentTransferEncoding]] autorelease];
[aDefaultContentTransferEncoding interpret];
return aDefaultContentTransferEncoding;
}
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
if([super respondsToSelector:aSelector])
return [super methodSignatureForSelector:aSelector];
else
return [[self body] methodSignatureForSelector:aSelector];
}
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
if ([[self body] respondsToSelector:[anInvocation selector]])
[anInvocation invokeWithTarget:[self body]];
else
[super forwardInvocation:anInvocation];
}
@end
@implementation ATHeaderField (Initializing)
+ (id)headerFieldWithLineData:(NSData *)aLineData
{
return [[[self alloc] initWithLineData:aLineData interpret:YES] autorelease];
}
- (id)initWithLineData:(NSData *)aLineData interpret:(BOOL)anInterpretFlag
{
return [self initWithLine:[[[NSString alloc] initWithData:aLineData encoding:NSASCIIStringEncoding] autorelease] interpret:anInterpretFlag];
}
- (id)initWithLine:(NSString *)aLine interpret:(BOOL)anInterpretFlag
{
if (anInterpretFlag)
{
NSString *aName = nil, *aBody = @"";
BOOL anInitializationSucceed = NO;
if ([self scanHeaderField:aLine intoFieldName:&aName intoBody:&aBody])
{
[self initWithName:aName fieldBody:aBody];
if ([self interpret])
anInitializationSucceed = YES;
}
if (!anInitializationSucceed)
{
[self release];
self = nil;
}
}
else
[self initWithName:nil fieldBody:aLine];
return self;
}
- (id)initWithName:(NSString *)aFieldName fieldBody:(id)aFieldBody
{
[super init];
[self setName:aFieldName];
[self setBody:aFieldBody];
return self;
}
- (void)encodeWithCoder:(NSCoder*)coder
{
[coder encodeObject:name forKey:@"name"];
[coder encodeObject:body forKey:@"body"];
}
- (id)initWithCoder:(NSCoder*)decoder
{
self = [super init];
[self setName:[decoder decodeObjectForKey:@"name"]];
[self setBody:[decoder decodeObjectForKey:@"body"]];
return self;
}
- (void)dealloc
{
[self setName:nil];
[self setBody:nil];
[super dealloc];
}
@end
@implementation ATHeaderField (Accessing)
- (NSString *)name
{
[self interpretName];
return name;
}
- (void)setName:(NSString *)aString
{
[name release];
name = [aString copy];
}
- (id)body
{
[self interpretBody];
return body;
}
- (void)setBody:(id)aBody
{
[body release];
body = [aBody retain];
}
- (NSString *)bodyString
{
return [[self body] stringValue];
}
- (id)value
{
return [[self body] value];
}
- (void)addLine:(NSString *)aLine
{
if (![self isInterpreted])
{
[self interpretName];
[body appendString:aLine];
}
}
- (NSMutableAttributedString *)attributedString
{
NSMutableAttributedString *anAttributedString = [[NSMutableAttributedString new] autorelease];
[anAttributedString appendAttributedString:[[[NSAttributedString alloc] initWithString:[[self name] stringByAppendingString:@":"]] autorelease]];
[anAttributedString setAttributes:[NSDictionary dictionaryWithObject:[NSColor colorWithCalibratedRed:(double)73/(double)255 green:(double)129/(double)255 blue:(double)122/(double)255 alpha:1] forKey:NSForegroundColorAttributeName] range:NSMakeRange(0, [anAttributedString length])];
[anAttributedString appendAttributedString:[self bodyAttributedString]];
[anAttributedString appendAttributedString:[[[NSAttributedString alloc] initWithString:@"\r\n"] autorelease]];
return anAttributedString;
}
- (NSAttributedString *)bodyAttributedString
{
id aBody = [self body];
if (aBody)
return [aBody isKindOfClass:[ATFieldBody class]] ? [aBody attributedString] : [[[NSAttributedString alloc] initWithString:[body stringValue] attributes:[NSDictionary dictionaryWithObject:[NSColor darkGrayColor] forKey:NSForegroundColorAttributeName]] autorelease];
else
return [[NSAttributedString new] autorelease];
}
- (NSData *)rawData
{
NSData *aNameData = [[self name] dataUsingEncoding:NSASCIIStringEncoding];
NSData *aBodyData = [body dataUsingEncoding:NSASCIIStringEncoding];
NSMutableData *aHeaderData = [[aNameData mutableCopy] autorelease];
[aHeaderData appendBytes:":" length:1];
if (aBodyData)
[aHeaderData appendData:aBodyData];
else
NSLog(@"bodyData absent");
[aHeaderData appendBytes:"\r\n" length:2];
return aHeaderData;
}
@end
@implementation ATHeaderField (Interpretting)
+ (NSArray *)groupFolded:(NSArray *)aLines
{
NSMutableArray *aGroupedFields = [NSMutableArray array];
NSEnumerator *enumerator = [aLines objectEnumerator];
NSString *aLine = nil;
while (aLine = [enumerator nextObject])
{
if ([self isFolding:aLine])
[[aGroupedFields lastObject] addObject:aLine];
else
[aGroupedFields addObject:[NSMutableArray arrayWithObject:aLine]];
}
return aGroupedFields;
}
- (BOOL)scanHeaderField:(NSString *)aFirstLine intoFieldName:(NSString **)aFieldName intoBody:(NSString **)aBody
{
ATTokenScanner *aScanner = [ATTokenScanner scannerWith:aFirstLine];
if ([aScanner scanCharactersFromSet:[ATTokenScanner ftextSet] intoString:aFieldName])
{
[aScanner scanCharactersFromSet:[ATTokenScanner wspSet] intoString:nil];
if ([aScanner scanString:@":" intoString:nil])
{
if (![aScanner isAtEnd])
*aBody = [[aScanner string] substringFromIndex:[aScanner scanLocation]];
return YES;
}
}
return NO;
}
- (BOOL)interpretName
{
if (![self nameIsInterpreted])
{
BOOL anInterpretationSucceed = YES;
NSString *aName = nil, *aBody = @"";
if ([self scanHeaderField:body intoFieldName:&aName intoBody:&aBody])
{
[self setName:aName];
[self setBody:[[aBody mutableCopy] autorelease]];
}
else
{
anInterpretationSucceed = NO;
[self setName:@""];
}
return anInterpretationSucceed;
}
else
return ![name isEqualToString:@""];
}
- (BOOL)interpretBody
{
if (![self isInterpreted])
{
BOOL anInterpretationSucceed = YES;
Class aFieldBodyClass = [ATFieldBody fieldBodyForName:[self name]];
id aFieldBody = [[[aFieldBodyClass alloc] initWith:body] autorelease];
if (!aFieldBody)
{
anInterpretationSucceed = NO;
aFieldBody = [[[ATFieldBody alloc] initWith:body] autorelease];
}
[self setBody:aFieldBody];
return anInterpretationSucceed;
}
else
return [self isValid];
}
- (BOOL)interpret
{
return [self interpretName] && [self interpretBody];
}
@end
@implementation ATHeaderField (Testing)
- (BOOL)nameIs:(NSString *)aName
{
NSString *aFieldName = [self name];
return aFieldName ? [aFieldName caseInsensitiveCompare:aName] == NSOrderedSame : NO;
}
- (BOOL)nameIsIncludedIn:(NSSet *)aHeaderNames
{
NSEnumerator *aNameEnumerator = [aHeaderNames objectEnumerator];
NSString *aName = nil;
BOOL aNameFound = NO;
while (!aNameFound && (aName = [aNameEnumerator nextObject]))
{
if ([self nameIs:aName])
aNameFound = YES;
}
return aNameFound;
}
+ (BOOL)isFolding:(NSString *)aLine
{
NSRange aRange = [aLine rangeOfCharacterFromSet:[ATTokenScanner wspSet]];
return aRange.location == 0;
}
- (BOOL)isFolding:(NSString *)aLine
{
return [[self class] isFolding:aLine];
}
- (BOOL)isInterpreted
{
return name && ![body isKindOfClass:[NSString class]];
}
- (BOOL)nameIsInterpreted
{
return name ? YES : NO;
}
- (BOOL)isValid
{
if (![self isInterpreted])
[self interpret];
//return ![name isEqualToString:@""] && ![body isKindOfClass:[ATFieldBody class]];
callCountOfIsValid++;
return [name length] && ![body isKindOfClass:[ATFieldBody class]];
}
@end