mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-08 08:23:19 +00:00
Monotone-Parent: c89c225a9b1b1ad4ce106e7b74c622f18718ff74
Monotone-Revision: 20c04b0bdf1f43a5ad91e5871e2205434e862cd6 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-06-13T19:32:57 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
/* NSArray+Scheduler.m - this file is part of SOGo
|
||||
*
|
||||
* Copyright (C) 2007 Inverse groupe conseil
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#import <Foundation/NSCalendarDate.h>
|
||||
#import <Foundation/NSNull.h>
|
||||
#import <Foundation/NSValue.h>
|
||||
#import <NGExtensions/NGCalendarDateRange.h>
|
||||
|
||||
#import "NSArray+Scheduler.h"
|
||||
|
||||
@implementation NSArray (SOGoEventComparison)
|
||||
|
||||
- (NSComparisonResult) _compareCompletionWithStatus1: (NSNumber *) status1
|
||||
andStatus2: (NSNumber *) status2
|
||||
{
|
||||
NSComparisonResult result;
|
||||
unsigned int ts1, ts2;
|
||||
|
||||
ts1 = [status1 intValue];
|
||||
ts2 = [status2 intValue];
|
||||
if (ts1 == 1 && ts2 != 1)
|
||||
result = NSOrderedDescending;
|
||||
else if (ts1 != 1 && ts2 == 1)
|
||||
result = NSOrderedAscending;
|
||||
else
|
||||
result = NSOrderedSame;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
- (NSComparisonResult) compareEventsAscending: (NSArray *) otherEvent
|
||||
{
|
||||
return [[self objectAtIndex: 4] compare: [otherEvent objectAtIndex: 4]];
|
||||
}
|
||||
|
||||
- (NSComparisonResult) compareTasksAscending: (NSArray *) otherTask
|
||||
{
|
||||
NSComparisonResult result;
|
||||
unsigned int selfTime, otherTime;
|
||||
Class nullClass;
|
||||
|
||||
result = [self _compareCompletionWithStatus1: [self objectAtIndex: 2]
|
||||
andStatus2: [otherTask objectAtIndex: 2]];
|
||||
if (result == NSOrderedSame)
|
||||
{
|
||||
nullClass = [NSNull class];
|
||||
selfTime = [[self objectAtIndex: 4] intValue];
|
||||
otherTime = [[otherTask objectAtIndex: 4] intValue];
|
||||
if (selfTime && !otherTime)
|
||||
result = NSOrderedAscending;
|
||||
else if (!selfTime && otherTime)
|
||||
result = NSOrderedDescending;
|
||||
else
|
||||
{
|
||||
if (selfTime > otherTime)
|
||||
result = NSOrderedDescending;
|
||||
else if (selfTime < otherTime)
|
||||
result = NSOrderedAscending;
|
||||
else
|
||||
result = [[self objectAtIndex: 1]
|
||||
compare: [otherTask objectAtIndex: 1]];
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user