]> err.no Git - scalable-opengroupware.org/blob - SoObjects/SOGo/NSObject+AptComparison.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1051 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / SoObjects / SOGo / NSObject+AptComparison.m
1 /*
2   Copyright (C) 2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
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 "NSObject+AptComparison.h"
24 #include <NGExtensions/NGCalendarDateRange.h>
25 #include "common.h"
26
27 @implementation NSObject (SOGoAptComparison)
28
29 - (NSComparisonResult) compareAptsAscending: (id) _other
30 {
31   NSCalendarDate      *sd, *ed;
32   NGCalendarDateRange *r1, *r2;
33   NSComparisonResult  result;
34   NSTimeInterval      t1, t2;
35
36   sd = [self valueForKey: @"startDate"];
37   ed = [self valueForKey: @"endDate"];
38   if (sd && ed)
39     r1 = [NGCalendarDateRange calendarDateRangeWithStartDate: sd
40                               endDate: ed];
41   else
42     r1 = nil;
43
44   sd = [_other valueForKey: @"startDate"];
45   ed = [_other valueForKey: @"endDate"];
46   if (sd && ed)
47     r2 = [NGCalendarDateRange calendarDateRangeWithStartDate: sd
48                               endDate: ed];
49   else
50     r2 = nil;
51
52   if (r1)
53     if (r2)
54       {
55         result = [r1 compare: r2];
56         if (result != NSOrderedSame)
57           return result;
58         
59         t1 = [r1 duration];
60         t2 = [r2 duration];
61         if (t1 == t2)
62           return NSOrderedSame;
63         if (t1 > t2)
64           return NSOrderedDescending;
65       }
66     else
67       return NSOrderedDescending;
68   else
69     if (!r2)
70       return NSOrderedSame;
71
72   return NSOrderedAscending;
73 }
74
75 @end