]> err.no Git - sope/blob - sope-mime/NGMime/NGMimeContentDispositionHeaderFieldParser.m
more code directory reorganizations
[sope] / sope-mime / NGMime / NGMimeContentDispositionHeaderFieldParser.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 NGMimeContentDispositionHeaderFieldParser
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   unsigned   len = [_data length];
43   unichar    src[len+1];
44   unsigned   cnt;
45   BOOL       didModify;
46   NSString   *str;
47   
48   didModify = NO;
49   cnt       = 0;
50
51   [_data getCharacters:src];
52   
53   // strip leading spaces
54   if (StripLeadingSpaces) {
55     while (isRfc822_LWSP(src[cnt]) && (len > 0)) {
56       cnt++;
57       len--;
58       didModify = YES;
59     }
60   }
61   // strip trailing spaces
62   while (len > 0) {
63     if (isRfc822_LWSP(src[len - 1])) {
64       len--;
65       didModify = YES;
66     }
67     else
68       break;
69   }
70   if (len == 0) {
71     if (MimeLogEnabled) 
72       [self logWithFormat:@"WARNING(%s): empty value for header field %@ ..",
73             __PRETTY_FUNCTION__, _field];
74     return nil;
75   }
76   str = nil;
77   
78   if (didModify)
79     str = [[[NSString alloc] initWithCharacters:src+cnt length:len] autorelease];
80   else
81     str = _data;
82   
83   return [[[NGMimeContentDispositionHeaderField alloc] initWithString:str]
84                                                 autorelease];
85 }
86
87 @end /* NGMimeContentDispositionHeaderFieldParser */