]> err.no Git - sope/blob - sope-ical/NGiCal/NSCalendarDate+ICal.m
sope is now a versioned binary
[sope] / sope-ical / NGiCal / NSCalendarDate+ICal.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 "NSCalendarDate+ICal.h"
24 #include "common.h"
25
26 static NSTimeZone *gmt = nil;
27 static inline void _setupGMT(void) {
28   if (gmt == nil)
29     gmt = [[NSTimeZone timeZoneWithAbbreviation:@"GMT"] retain];
30 }
31
32 @implementation NSCalendarDate(ICalValue)
33
34 /* represention */
35
36 static NSString *gmtcalfmt = @"%Y%m%dT%H%M00Z";
37
38 - (NSString *)icalStringInGMT {
39   NSTimeZone *oldtz;
40   NSString   *s;
41   _setupGMT();
42   
43   /* set GMT as timezone */
44   oldtz = [[self timeZone] retain];
45   if (oldtz == gmt) {
46     [oldtz release];
47     oldtz = nil;
48   }
49   else {
50     [self setTimeZone:gmt];
51   }
52   
53   /* calc string */
54   s = [self descriptionWithCalendarFormat:gmtcalfmt];
55   
56   /* restore old timezone */
57   if (oldtz) {
58     [self setTimeZone:oldtz];
59     [oldtz release];
60   }
61   
62   return s;
63 }
64
65 - (NSString *)icalStringWithTimeZone:(NSTimeZone *)_tz {
66   _setupGMT();
67   
68   if (_tz == gmt || _tz == nil)
69     return [self icalStringInGMT];
70   else if ([_tz isEqual:gmt])
71     return [self icalStringInGMT];
72   else {
73     /* not in GMT */
74     NSLog(@"WARNING(%s): arbitary timezones not supported yet: %@",
75           __PRETTY_FUNCTION__, _tz);
76     return [self icalStringInGMT];
77   }
78 }
79
80 - (NSString *)icalString {
81   _setupGMT();
82   return [self icalStringWithTimeZone:gmt];
83 }
84
85 @end /* NSDate(ICalValue) */