]> err.no Git - sope/blob - sope-mime/NGMime/NGMimeContentLengthHeaderFieldParser.m
added reply-to parameter support for text mime types
[sope] / sope-mime / NGMime / NGMimeContentLengthHeaderFieldParser.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 NGMimeContentLengthHeaderFieldParser
29
30 + (int)version {
31   return 2;
32 }
33
34 - (id)parseValue:(NSString *)_data ofHeaderField:(NSString *)_field {
35   const char *buf, *ptr;
36     
37   _data = [self removeCommentsFromValue:_data];
38   buf   = [_data cString];
39   ptr = buf;
40   while (!isRfc822_DIGIT(*ptr) && (*ptr != '\0'))
41     ptr++;
42
43   if (isRfc822_DIGIT(*ptr))
44     return [NSNumber numberWithUnsignedInt:atol(ptr)];
45   else {
46     NSLog(@"WARNING(%s): invalid content-length field value (value='%s')",
47           __PRETTY_FUNCTION__, buf);
48     return nil;
49   }
50 }
51
52 // description
53
54 - (NSString *)description {
55   return [NSString stringWithFormat:
56                      @"<MimeContentLengthHeaderFieldParser: object=0x%08X>",
57                      (unsigned)self];
58 }
59
60 @end /* NGMimeContentLengthHeaderFieldParser */