]> err.no Git - sope/blob - sope-mime/NGMime/NGMimeContentTypeHeaderFieldParser.m
minor code cleanups
[sope] / sope-mime / NGMime / NGMimeContentTypeHeaderFieldParser.m
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #include "NGMimeHeaderFieldParser.h"
24 #include "NGMimeHeaderFields.h"
25 #include "NGMimeUtilities.h"
26 #include "common.h"
27
28 @implementation NGMimeContentTypeHeaderFieldParser
29
30 static BOOL StripLeadingSpaces = NO;
31 static BOOL MimeLogEnabled     = NO;
32
33 + (int)version {
34   return 2;
35 }
36 + (void)initialize {
37   StripLeadingSpaces = [self doesStripLeadingSpaces];
38   MimeLogEnabled     = [self isMIMELogEnabled];
39 }
40
41 - (id)parseValue:(NSString *)_data ofHeaderField:(NSString *)_field {
42   NSString *typeString;
43   unsigned len;
44
45   _data = [self removeCommentsFromValue:_data];
46   len   = [_data length];
47
48   if (len == 0) {
49     if (MimeLogEnabled) {
50       [self logWithFormat:@"WARNING(%s): empty value for header field %@ ..",
51             __PRETTY_FUNCTION__, _field];
52     }
53     return [NGMimeType mimeType:@"text/plain"];
54   }
55   typeString = nil;
56   if (StripLeadingSpaces) {
57     unichar src[len + 1];
58     int     cnt;
59
60     cnt    = 0;
61     [_data getCharacters:src];
62
63     while (isRfc822_LWSP(src[cnt]) && (len > 0)) {
64       cnt++;
65       len--;
66     }
67     if (cnt > 0)
68       typeString = [[[NSString alloc] initWithCharacters:src+cnt length:len]
69                                autorelease];
70   }
71   if (!typeString) 
72     typeString = _data;
73
74   NSAssert(typeString, @"type string allocation failed ..");
75
76   return [NGMimeType mimeType:typeString];
77 }
78
79 // description
80
81 - (NSString *)description {
82   return [NSString stringWithFormat:
83                      @"<MimeContentTypeHeaderFieldParser: object=0x%08X>",
84                      (unsigned)self];
85 }
86
87 @end /* NGMimeContentTypeHeaderFieldParser */