libs-base/Source/NSDate.m
Gregory John Casamento 82d81e046e Merging changes from base to nib compatibility branch.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/NibCompatibility@22769 72102866-910b-0410-8b05-ffd578937521
2006-04-09 16:16:07 +00:00

1563 lines
35 KiB
Objective-C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** Implementation for NSDate for GNUStep
Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
Written by: Jeremy Bettis <jeremy@hksys.com>
Rewritten by: Scott Christley <scottc@net-community.com>
Date: March 1995
Modifications by: Richard Frith-Macdonald <richard@brainstorm.co.uk>
This file is part of the GNUstep Base Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
<title>NSDate class reference</title>
$Date$ $Revision$
*/
#include "config.h"
#include "Foundation/NSArray.h"
#include "Foundation/NSDictionary.h"
#include "Foundation/NSDate.h"
#include "Foundation/NSCalendarDate.h"
#include "Foundation/NSTimeZone.h"
#include "Foundation/NSString.h"
#include "Foundation/NSCoder.h"
#include "Foundation/NSException.h"
#include "Foundation/NSCharacterSet.h"
#include "Foundation/NSScanner.h"
#include "Foundation/NSObjCRuntime.h"
#include "Foundation/NSPortCoder.h"
#include "Foundation/NSUserDefaults.h"
#include "GNUstepBase/preface.h"
#include "GNUstepBase/GSObjCRuntime.h"
#include "GSPrivate.h"
/* These constants seem to be what MacOS-X uses */
#define DISTANT_FUTURE 63113990400.0
#define DISTANT_PAST -63113817600.0
const NSTimeInterval NSTimeIntervalSince1970 = 978307200.0;
extern NSTimeInterval GSTimeNow(); // In NSCalendarDate.m
static BOOL debug = NO;
static Class abstractClass = nil;
static Class concreteClass = nil;
static Class calendarClass = nil;
/**
* Our concrete base class - NSCalendar date must share the ivar layout.
*/
@interface NSGDate : NSDate
{
@public
NSTimeInterval _seconds_since_ref;
}
@end
@interface GSDateSingle : NSGDate
@end
@interface GSDatePast : GSDateSingle
@end
@interface GSDateFuture : GSDateSingle
@end
static NSDate *_distantPast = nil;
static NSDate *_distantFuture = nil;
static NSString*
findInArray(NSArray *array, unsigned pos, NSString *str)
{
unsigned index;
unsigned limit = [array count];
for (index = pos; index < limit; index++)
{
NSString *item;
item = [array objectAtIndex: index];
if ([str caseInsensitiveCompare: item] == NSOrderedSame)
return item;
}
return nil;
}
static inline NSTimeInterval
otherTime(NSDate* other)
{
Class c;
if (other == nil)
[NSException raise: NSInvalidArgumentException format: @"other time nil"];
if (GSObjCIsInstance(other) == NO)
[NSException raise: NSInvalidArgumentException format: @"other time bad"];
c = GSObjCClass(other);
if (c == concreteClass || c == calendarClass)
return ((NSGDate*)other)->_seconds_since_ref;
else
return [other timeIntervalSinceReferenceDate];
}
/**
* An <code>NSDate</code> object encapsulates a constant date/time to a high
* resolution represented by the <code>NSTimeInterval</code> typedef.
* <code>NSDate</code> has methods relating to times and time differences in
* the abstract, but not calendar dates or time zones. These features are
* added in the [NSCalendarDate] subclass. The [NSTimeZone] class handles time
* zone information.
*/
@implementation NSDate
+ (void) initialize
{
if (self == [NSDate class])
{
[self setVersion: 1];
abstractClass = self;
concreteClass = [NSGDate class];
calendarClass = [NSCalendarDate class];
}
}
+ (id) alloc
{
if (self == abstractClass)
return NSAllocateObject(concreteClass, 0, NSDefaultMallocZone());
else
return NSAllocateObject(self, 0, NSDefaultMallocZone());
}
+ (id) allocWithZone: (NSZone*)z
{
if (self == abstractClass)
return NSAllocateObject(concreteClass, 0, z);
else
return NSAllocateObject(self, 0, z);
}
/**
* Returns the time interval between the current date and the
* reference date (1 January 2001, GMT).
*/
+ (NSTimeInterval) timeIntervalSinceReferenceDate
{
return GSTimeNow();
}
/**
* Returns an autoreleased instance representing the current date/time.
*/
+ (id) date
{
return AUTORELEASE([[self allocWithZone: NSDefaultMallocZone()]
initWithTimeIntervalSinceReferenceDate: GSTimeNow()]);
}
/**
* Returns an autoreleased instance representing the date and time given
* by string. The value of string may be a 'natural' specification as
* specified by the preferences in the user defaults database, allowing
* phrases like 'last tuesday'
*/
+ (id) dateWithNaturalLanguageString: (NSString*)string
{
return [self dateWithNaturalLanguageString: string
locale: nil];
}
/**
* <p>Returns an autoreleased instance representing the date and time given
* by string. The value of string may be a 'natural' specification as
* specified by the preferences in the user defaults database, allowing
* phrases like 'last tuesday'
* </p>
* The locale contains keys such as -
* <deflist>
* <term>NSDateTimeOrdering</term>
* <desc>Controls the use of ambiguous numbers. This is done as a
* sequence of the letters D(ay), M(onth), Y(ear), and H(our).
* YMDH means that the first number encountered is assumed to be a
* year, the second a month, the third a day, and the last an hour.
* </desc>
* <term>NSEarlierTimeDesignations</term>
* <desc>An array of strings for times in the past.<br />
* Defaults are <em>ago</em>, <em>last</em>, <em>past</em>, <em>prior</em>
* </desc>
* <term>NSHourNameDesignations</term>
* <desc>An array of arrays of strings identifying the time of day.
* Each array has an hour as its first value, and one or more words
* as subsequent values.<br />
* Defaults are: (0, midnight), (10, morning), (12, noon, lunch),
* (14, afternoon), (19, dinner).
* </desc>
* <term>NSLaterTimeDesignations</term>
* <desc>An array of strings for times in the future.<br />
* Default is <em>next</em>
* </desc>
* <term>NSNextDayDesignations</term>
* <desc>The day after today. Default is <em>tomorrow.</em>
* </desc>
* <term>NSNextNextDayDesignations</term>
* <desc>The day after tomorrow. Default is <em>nextday.</em>
* </desc>
* <term>NSPriorDayDesignations</term>
* <desc>The day before today. Default is <em>yesterday.</em>
* </desc>
* <term>NSThisDayDesignations</term>
* <desc>Identifies the current day. Default is <em>today.</em>
* </desc>
* <term>NSYearMonthWeekDesignations</term>
* <desc>An array giving the word for year, month, and week.<br />
* Defaults are <em>year</em>, <em>month</em> and <em>week</em>.
* </desc>
* </deflist>
*/
+ (id) dateWithNaturalLanguageString: (NSString*)string
locale: (NSDictionary*)locale
{
NSCharacterSet *ws;
NSCharacterSet *digits;
NSScanner *scanner;
NSString *tmp;
NSString *dto;
NSArray *ymw;
NSMutableArray *words;
unsigned index;
unsigned length;
NSCalendarDate *theDate;
BOOL hadHour = NO;
BOOL hadMinute = NO;
BOOL hadSecond = NO;
BOOL hadDay = NO;
BOOL hadMonth = NO;
BOOL hadYear = NO;
BOOL hadWeekDay = NO;
int weekDay = 0;
int dayOfWeek = 0;
int modMonth = 0;
int modYear = 0;
int modDay = 0;
int D, M, Y;
int h = 12;
int m = 0;
int s = 0;
unsigned dtoIndex;
if (locale == nil)
{
locale = GSUserDefaultsDictionaryRepresentation();
}
ws = [NSCharacterSet whitespaceAndNewlineCharacterSet];
digits = [NSCharacterSet decimalDigitCharacterSet];
scanner = [NSScanner scannerWithString: string];
words = [NSMutableArray arrayWithCapacity: 10];
theDate = (NSCalendarDate*)[calendarClass date];
Y = [theDate yearOfCommonEra];
M = [theDate monthOfYear];
D = [theDate dayOfMonth];
dayOfWeek = [theDate dayOfWeek];
[scanner scanCharactersFromSet: ws intoString: 0];
while ([scanner scanUpToCharactersFromSet: ws intoString: &tmp] == YES)
{
[words addObject: tmp];
[scanner scanCharactersFromSet: ws intoString: 0];
}
/*
* Scan the array for day specifications and remove them.
*/
if (hadDay == NO)
{
NSArray *tdd = [locale objectForKey: NSThisDayDesignations];
NSArray *ndd = [locale objectForKey: NSNextDayDesignations];
NSArray *pdd = [locale objectForKey: NSPriorDayDesignations];
NSArray *nndd = [locale objectForKey: NSNextNextDayDesignations];
for (index = 0; hadDay == NO && index < [words count]; index++)
{
tmp = [words objectAtIndex: index];
if (findInArray(tdd, 0 ,tmp) != nil)
{
hadDay = YES;
}
else if (findInArray(ndd, 0 ,tmp) != nil)
{
modDay++;
hadDay = YES;
}
else if (findInArray(nndd, 0 ,tmp) != nil)
{
modDay += 2;
hadDay = YES;
}
else if (findInArray(pdd, 0 ,tmp) != nil)
{
modDay--;
hadDay = YES;
}
if (hadDay)
{
hadMonth = YES;
hadYear = YES;
[words removeObjectAtIndex: index];
}
}
}
/*
* Scan the array for month specifications and remove them.
*/
if (hadMonth == NO)
{
NSArray *lm = [locale objectForKey: NSMonthNameArray];
NSArray *sm = [locale objectForKey: NSShortMonthNameArray];
for (index = 0; hadMonth == NO && index < [words count]; index++)
{
NSString *mname;
tmp = [words objectAtIndex: index];
if ((mname = findInArray(lm, 0, tmp)) != nil)
{
M = [lm indexOfObjectIdenticalTo: mname] + 1;
}
else if ((mname = findInArray(sm, 0, tmp)) != nil)
{
M = [sm indexOfObjectIdenticalTo: mname] + 1;
}
if (mname != nil)
{
hadMonth = YES;
[words removeObjectAtIndex: index];
}
}
}
/*
* Scan the array for weekday specifications and remove them.
*/
if (hadWeekDay == NO)
{
NSArray *lw = [locale objectForKey: NSWeekDayNameArray];
NSArray *sw = [locale objectForKey: NSShortWeekDayNameArray];
for (index = 0; hadWeekDay == NO && index < [words count]; index++)
{
NSString *dname;
tmp = [words objectAtIndex: index];
if ((dname = findInArray(lw, 0, tmp)) != nil)
{
weekDay = [lw indexOfObjectIdenticalTo: dname];
}
else if ((dname = findInArray(sw, 0, tmp)) != nil)
{
weekDay = [sw indexOfObjectIdenticalTo: dname];
}
if (dname != nil)
{
hadWeekDay = YES;
[words removeObjectAtIndex: index];
}
}
}
/*
* Scan the array for year month week modifiers and remove them.
* Going by the documentation, these modifiers adjust the date by
* plus or minus a week, month, or year.
*/
ymw = [locale objectForKey: NSYearMonthWeekDesignations];
if (ymw != nil && [ymw count] > 0)
{
unsigned c = [ymw count];
NSString *yname = [ymw objectAtIndex: 0];
NSString *mname = c > 1 ? [ymw objectAtIndex: 1] : nil;
NSArray *early = [locale objectForKey: NSEarlierTimeDesignations];
NSArray *later = [locale objectForKey: NSLaterTimeDesignations];
for (index = 0; index < [words count]; index++)
{
tmp = [words objectAtIndex: index];
/*
* See if the current word is a year, month, or week.
*/
if (findInArray(ymw, 0, tmp))
{
BOOL hadAdjective = NO;
int adjective = 0;
NSString *adj = nil;
/*
* See if there is a prefix adjective
*/
if (index > 0)
{
adj = [words objectAtIndex: index - 1];
if (findInArray(early, 0, adj))
{
hadAdjective = YES;
adjective = -1;
}
else if (findInArray(later, 0, adj))
{
hadAdjective = YES;
adjective = 1;
}
if (hadAdjective)
{
[words removeObjectAtIndex: --index];
}
}
/*
* See if there is a prefix adjective
*/
if (hadAdjective == NO && index < [words count] - 1)
{
NSString *adj = [words objectAtIndex: index + 1];
if (findInArray(early, 0, adj))
{
hadAdjective = YES;
adjective = -1;
}
else if (findInArray(later, 0, adj))
{
hadAdjective = YES;
adjective = 1;
}
if (hadAdjective)
{
[words removeObjectAtIndex: index];
}
}
/*
* Record the adjective information.
*/
if (hadAdjective)
{
if ([tmp caseInsensitiveCompare: yname] == NSOrderedSame)
{
modYear += adjective;
hadYear = YES;
}
else if ([tmp caseInsensitiveCompare: mname] == NSOrderedSame)
{
modMonth += adjective;
hadMonth = YES;
}
else
{
if (hadWeekDay)
{
modDay += weekDay - dayOfWeek;
}
modDay += 7*adjective;
hadDay = YES;
hadMonth = YES;
hadYear = YES;
}
}
/*
* Remove from list of words.
*/
[words removeObjectAtIndex: index];
}
}
}
/* Scan for hour of the day */
if (hadHour == NO)
{
NSArray *hours = [locale objectForKey: NSHourNameDesignations];
unsigned hLimit = [hours count];
unsigned hIndex;
for (index = 0; hadHour == NO && index < [words count]; index++)
{
tmp = [words objectAtIndex: index];
for (hIndex = 0; hadHour == NO && hIndex < hLimit; hIndex++)
{
NSArray *names;
names = [hours objectAtIndex: hIndex];
if (findInArray(names, 1, tmp) != nil)
{
h = [[names objectAtIndex: 0] intValue];
hadHour = YES;
hadMinute = YES;
hadSecond = YES;
}
}
}
}
/*
* Now re-scan the string for numeric information.
*/
dto = [locale objectForKey: NSDateTimeOrdering];
if (dto == nil)
{
if (debug)
{
NSLog(@"no NSDateTimeOrdering - default to DMYH.");
}
dto = @"DMYH";
}
length = [dto length];
if (length > 4)
{
if (debug)
{
NSLog(@"too many characters in NSDateTimeOrdering - truncating.");
}
length = 4;
}
dtoIndex = 0;
scanner = [NSScanner scannerWithString: string];
[scanner scanUpToCharactersFromSet: digits intoString: 0];
while ([scanner scanCharactersFromSet: digits intoString: &tmp] == YES)
{
int num = [tmp intValue];
if ([scanner scanUpToCharactersFromSet: digits intoString: &tmp] == NO)
{
tmp = nil;
}
/*
* Numbers separated by colons are a time specification.
*/
if (tmp && ([tmp characterAtIndex: 0] == (unichar)':'))
{
BOOL done = NO;
do
{
if (hadHour == NO)
{
if (num > 23)
{
if (debug)
{
NSLog(@"hour (%d) too large - ignored.", num);
}
else
{
return nil;
}
}
else
{
h = num;
m = 0;
s = 0;
hadHour = YES;
}
}
else if (hadMinute == NO)
{
if (num > 59)
{
if (debug)
{
NSLog(@"minute (%d) too large - ignored.", num);
}
else
{
return nil;
}
}
else
{
m = num;
s = 0;
hadMinute = YES;
}
}
else if (hadSecond == NO)
{
if (num > 59)
{
if (debug)
{
NSLog(@"second (%d) too large - ignored.", num);
}
else
{
return nil;
}
}
else
{
s = num;
hadSecond = YES;
}
}
else
{
if (debug)
{
NSLog(@"odd time spec - excess numbers ignored.");
}
}
done = YES;
if (tmp && ([tmp characterAtIndex: 0] == (unichar)':'))
{
if ([scanner scanCharactersFromSet: digits intoString: &tmp])
{
num = [tmp intValue];
done = NO;
if ([scanner scanUpToCharactersFromSet: digits
intoString: &tmp] == NO)
{
tmp = nil;
}
}
}
}
while (done == NO);
}
else
{
BOOL mustSkip = YES;
while ((dtoIndex < [dto length]) && (mustSkip == YES))
{
switch ([dto characterAtIndex: dtoIndex])
{
case 'D':
if (hadDay)
dtoIndex++;
else
mustSkip = NO;
break;
case 'M':
if (hadMonth)
dtoIndex++;
else
mustSkip = NO;
break;
case 'Y':
if (hadYear)
dtoIndex++;
else
mustSkip = NO;
break;
case 'H':
if (hadHour)
dtoIndex++;
else
mustSkip = NO;
break;
default:
if (debug)
{
NSLog(@"odd char (unicode %d) in NSDateTimeOrdering.",
[dto characterAtIndex: dtoIndex]);
}
dtoIndex++;
break;
}
}
if (dtoIndex >= [dto length])
{
if (debug)
{
NSLog(@"odd date specification - excess numbers ignored.");
}
break;
}
switch ([dto characterAtIndex: dtoIndex])
{
case 'D':
if (num < 1)
{
if (debug)
{
NSLog(@"day (0) too small - ignored.");
}
else
{
return nil;
}
}
else if (num > 31)
{
if (debug)
{
NSLog(@"day (%d) too large - ignored.", num);
}
else
{
return nil;
}
}
else
{
D = num;
hadDay = YES;
}
break;
case 'M':
if (num < 1)
{
if (debug)
{
NSLog(@"month (0) too small - ignored.");
}
else
{
return nil;
}
}
else if (num > 12)
{
if (debug)
{
NSLog(@"month (%d) too large - ignored.", num);
}
else
{
return nil;
}
}
else
{
M = num;
hadMonth = YES;
}
break;
case 'Y':
if (num < 100)
{
if (num < 70)
{
Y = num + 2000;
}
else
{
Y = num + 1900;
}
if (debug)
{
NSLog(@"year (%d) adjusted to %d.", num, Y);
}
}
else
{
Y = num;
}
hadYear = YES;
break;
case 'H':
{
BOOL shouldIgnore = NO;
/*
* Check the next text to see if it is an am/pm
* designation.
*/
if (tmp)
{
NSArray *ampm;
NSString *mod;
ampm = [locale objectForKey: NSAMPMDesignation];
mod = findInArray(ampm, 0, tmp);
if (mod)
{
if (num > 11)
{
if (debug)
{
NSLog(@"hour (%d) too large - ignored.", num);
}
else
{
return nil;
}
shouldIgnore = YES;
}
else if (mod == [ampm objectAtIndex: 1])
{
num += 12;
}
}
}
if (shouldIgnore == NO)
{
if (num > 23)
{
if (debug)
{
NSLog(@"hour (%d) too large - ignored.", num);
}
else
{
return nil;
}
}
else
{
hadHour = YES;
h = num;
}
}
break;
}
default:
if (debug)
{
NSLog(@"unexpected char (unicode%d) in NSDateTimeOrdering.",
[dto characterAtIndex: dtoIndex]);
}
break;
}
}
}
/*
* If we had no date or time information - we give up, otherwise
* we can use reasonable defaults for any missing info.
* Missing date => today
* Missing time => 12: 00
* If we had a week/month/year modifier without a day, we assume today.
* If we had a day name without any more day detail - adjust to that
* day this week.
*/
if (hadDay == NO && hadWeekDay == YES)
{
modDay += weekDay - dayOfWeek;
hadDay = YES;
}
if (hadDay == NO && hadHour == NO)
{
if (modDay == NO && modMonth == NO && modYear == NO)
{
return nil;
}
}
/*
* Build a calendar date we can adjust easily.
*/
theDate = [calendarClass dateWithYear: Y
month: M
day: D
hour: h
minute: m
second: s
timeZone: [NSTimeZone defaultTimeZone]];
/*
* Adjust the date by year month or days if necessary.
*/
if (modYear || modMonth || modDay)
{
theDate = [theDate dateByAddingYears: modYear
months: modMonth
days: modDay
hours: 0
minutes: 0
seconds: 0];
}
if (hadWeekDay && [theDate dayOfWeek] != weekDay)
{
if (debug)
{
NSLog(@"Date resulted in wrong day of week.");
}
return nil;
}
if (theDate == nil)
{
return theDate;
}
else
{
return [self dateWithTimeIntervalSinceReferenceDate:
otherTime(theDate)];
}
}
/**
* Returns an autoreleased instance with the date and time value given
* by the string using the ISO standard format YYYY-MM-DD HH:MM:SS +/-HHHMM
* (all the fields of which must be present).
*/
+ (id) dateWithString: (NSString*)description
{
return AUTORELEASE([[self alloc] initWithString: description]);
}
/**
* Returns an autoreleased instance with the offset from the current
* date/time given by seconds (which may be fractional).
*/
+ (id) dateWithTimeIntervalSinceNow: (NSTimeInterval)seconds
{
return AUTORELEASE([[self alloc] initWithTimeIntervalSinceNow: seconds]);
}
/**
* Returns an autoreleased instance with the offset from the unix system
* reference date of 1 January 1970, GMT.
*/
+ (id) dateWithTimeIntervalSince1970: (NSTimeInterval)seconds
{
return AUTORELEASE([[self alloc] initWithTimeIntervalSinceReferenceDate:
-NSTimeIntervalSince1970 + seconds]);
}
/**
* Returns an autoreleased instance with the offset from the OpenStep
* reference date of 1 January 2001, GMT.
*/
+ (id) dateWithTimeIntervalSinceReferenceDate: (NSTimeInterval)seconds
{
return AUTORELEASE([[self alloc] initWithTimeIntervalSinceReferenceDate:
seconds]);
}
/**
* Returns an autoreleased instance with th date/time set in the far
* future.
*/
+ (id) distantFuture
{
if (_distantFuture == nil)
return [GSDateFuture allocWithZone: 0];
return _distantFuture;
}
/**
* Returns an autoreleased instance with th date/time set in the far
* past.
*/
+ (id) distantPast
{
if (_distantPast == nil)
return [GSDatePast allocWithZone: 0];
return _distantPast;
}
- (id) copyWithZone: (NSZone*)zone
{
if (NSShouldRetainWithZone(self, zone))
return RETAIN(self);
else
return NSCopyObject(self, 0, zone);
}
- (Class) classForCoder
{
return abstractClass;
}
- (id) replacementObjectForPortCoder: (NSPortCoder*)aCoder
{
if ([aCoder isByref] == NO)
return self;
return [super replacementObjectForPortCoder: aCoder];
}
- (void) encodeWithCoder: (NSCoder*)coder
{
NSTimeInterval interval = [self timeIntervalSinceReferenceDate];
[coder encodeValueOfObjCType: @encode(NSTimeInterval) at: &interval];
}
- (id) initWithCoder: (NSCoder*)coder
{
NSTimeInterval interval;
id o;
[coder decodeValueOfObjCType: @encode(NSTimeInterval) at: &interval];
if (interval == DISTANT_PAST)
{
o = RETAIN([abstractClass distantPast]);
}
else if (interval == DISTANT_FUTURE)
{
o = RETAIN([abstractClass distantFuture]);
}
else
{
o = [concreteClass allocWithZone: NSDefaultMallocZone()];
o = [o initWithTimeIntervalSinceReferenceDate: interval];
}
RELEASE(self);
return o;
}
/**
* Returns an instance initialised with the current date/time.
*/
- (id) init
{
return [self initWithTimeIntervalSinceReferenceDate: GSTimeNow()];
}
/**
* Returns an instance with the date and time value given
* by the string using the ISO standard format YYYY-MM-DD HH:MM:SS +/-HHHMM
* (all the fields of which must be present).
*/
- (id) initWithString: (NSString*)description
{
// Easiest to just have NSCalendarDate do the work for us
NSCalendarDate *d = [calendarClass alloc];
d = [d initWithString: description];
if (d == nil)
{
RELEASE(self);
return nil;
}
else
{
self = [self initWithTimeIntervalSinceReferenceDate: otherTime(d)];
RELEASE(d);
return self;
}
}
/**
* Returns an instance with the given offset from anotherDate.
*/
- (id) initWithTimeInterval: (NSTimeInterval)secsToBeAdded
sinceDate: (NSDate*)anotherDate
{
if (anotherDate == nil)
{
NSLog(@"initWithTimeInterval:sinceDate: given nil date");
RELEASE(self);
return nil;
}
// Get the other date's time, add the secs and init thyself
return [self initWithTimeIntervalSinceReferenceDate:
otherTime(anotherDate) + secsToBeAdded];
}
/**
* Returns an instance with the offset from the current date/time.
*/
- (id) initWithTimeIntervalSinceNow: (NSTimeInterval)secsToBeAdded
{
// Get the current time, add the secs and init thyself
return [self initWithTimeIntervalSinceReferenceDate:
GSTimeNow() + secsToBeAdded];
}
/**
* Returns an instance with the offset from the unix system
* reference date of 1 January 1970, GMT.
*/
- (id) initWithTimeIntervalSince1970: (NSTimeInterval)seconds
{
return [self initWithTimeIntervalSinceReferenceDate:
-NSTimeIntervalSince1970 + seconds];
}
/** <init />
* Returns an instance with the given offset from the OpenStep
* reference date of 1 January 2001, GMT.
*/
- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)secs
{
[self subclassResponsibility: _cmd];
return self;
}
/**
* Returns an autoreleased instance of the [NSCalendarDate] class whose
* date/time value is the same as that of the receiver, and which uses
* the formatString and timeZone specified.
*/
- (NSCalendarDate *) dateWithCalendarFormat: (NSString*)formatString
timeZone: (NSTimeZone*)timeZone
{
NSCalendarDate *d = [calendarClass alloc];
[d initWithTimeIntervalSinceReferenceDate: otherTime(self)];
[d setCalendarFormat: formatString];
[d setTimeZone: timeZone];
return AUTORELEASE(d);
}
/**
* Returns a string representation of the receiver formatted according
* to the default format string, time zone, and locale.
*/
- (NSString*) description
{
// Easiest to just have NSCalendarDate do the work for us
NSString *s;
NSCalendarDate *d = [calendarClass alloc];
[d initWithTimeIntervalSinceReferenceDate: otherTime(self)];
s = [d description];
RELEASE(d);
return s;
}
/**
* Returns a string representation of the receiver formatted according
* to the specified format string, time zone, and locale.
*/
- (NSString*) descriptionWithCalendarFormat: (NSString*)format
timeZone: (NSTimeZone*)aTimeZone
locale: (NSDictionary*)l
{
// Easiest to just have NSCalendarDate do the work for us
NSString *s;
NSCalendarDate *d = [calendarClass alloc];
id f;
[d initWithTimeIntervalSinceReferenceDate: otherTime(self)];
if (!format)
f = [d calendarFormat];
else
f = format;
if (aTimeZone)
[d setTimeZone: aTimeZone];
s = [d descriptionWithCalendarFormat: f locale: l];
RELEASE(d);
return s;
}
/**
* Returns a string representation of the receiver formatted according
* to the default format string and time zone, but using the given locale.
*/
- (NSString *) descriptionWithLocale: (NSDictionary *)locale
{
// Easiest to just have NSCalendarDate do the work for us
NSString *s;
NSCalendarDate *d = [calendarClass alloc];
[d initWithTimeIntervalSinceReferenceDate: otherTime(self)];
s = [d descriptionWithLocale: locale];
RELEASE(d);
return s;
}
/**
* Returns an autoreleased NSDate instance whose value if offset from
* that of the receiver by seconds.
*/
- (id) addTimeInterval: (NSTimeInterval)seconds
{
/* xxx We need to check for overflow? */
return [[self class] dateWithTimeIntervalSinceReferenceDate:
otherTime(self) + seconds];
}
/**
* Returns the time interval between the receivers value and the
* unix system reference date of 1 January 1970, GMT.
*/
- (NSTimeInterval) timeIntervalSince1970
{
return otherTime(self) + NSTimeIntervalSince1970;
}
/**
* Returns the time interval between the receivers value and that of the
* otherDate argument. If otherDate is earlier than the receiver, the
* returned value will be positive, if it is later it will be negative.
*/
- (NSTimeInterval) timeIntervalSinceDate: (NSDate*)otherDate
{
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for timeIntervalSinceDate:"];
}
return otherTime(self) - otherTime(otherDate);
}
/**
* Returns the time interval between the receivers value and the
* current date/time. If the receiver represents a date/time in
* the past this will be negative, if it is in the future the
* returned value will be positive.
*/
- (NSTimeInterval) timeIntervalSinceNow
{
return otherTime(self) - GSTimeNow();
}
/**
* Returns the time interval between the receivers value and the
* OpenStep reference date of 1 Jan 2001 GMT.
*/
- (NSTimeInterval) timeIntervalSinceReferenceDate
{
[self subclassResponsibility: _cmd];
return 0;
}
/**
* Returns NSOrderedDescending if the receiver is later than otherDate,
* Returns NSOrderedAscending if the receiver is earlier than otherDate,
* Otherwise, returns NSOrderedSame.
*/
- (NSComparisonResult) compare: (NSDate*)otherDate
{
if (otherDate == self)
{
return NSOrderedSame;
}
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for compare:"];
}
if (otherTime(self) > otherTime(otherDate))
{
return NSOrderedDescending;
}
if (otherTime(self) < otherTime(otherDate))
{
return NSOrderedAscending;
}
return NSOrderedSame;
}
/**
* Returns the earlier of the receiver and otherDate.<br />
* If the two represent identical date/time values, returns the receiver.
*/
- (NSDate*) earlierDate: (NSDate*)otherDate
{
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for earlierDate:"];
}
if (otherTime(self) > otherTime(otherDate))
return otherDate;
return self;
}
- (unsigned) hash
{
return (unsigned)[self timeIntervalSinceReferenceDate];
}
- (BOOL) isEqual: (id)other
{
if (other == nil)
return NO;
if ([other isKindOfClass: abstractClass]
&& otherTime(self) == otherTime(other))
return YES;
return NO;
}
/**
* Returns whether the receiver is exactly equal to other, to the limit
* of the NSTimeInterval precision.<br />
* This is the behavior of the current MacOS-X system, not that of the
* OpenStep specification (which counted two dates within a second of
* each other as being equal).<br />
* The old behavior meant that two dates equal to a third date were not
* necessarily equal to each other (confusing), and meant that there was
* no reasonable way to use a date as a dictionary key or store dates
* in a set.
*/
- (BOOL) isEqualToDate: (NSDate*)other
{
if (other == nil)
return NO;
if (otherTime(self) == otherTime(other))
return YES;
return NO;
}
/**
* Returns the earlier of the receiver and otherDate.<br />
* If the two represent identical date/time values, returns the receiver.
*/
- (NSDate*) laterDate: (NSDate*)otherDate
{
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for laterDate:"];
}
if (otherTime(self) < otherTime(otherDate))
return otherDate;
return self;
}
@end
@implementation NSGDate
+ (void) initialize
{
if (self == [NSDate class])
{
[self setVersion: 1];
}
}
- (void) encodeWithCoder: (NSCoder*)coder
{
[coder encodeValueOfObjCType: @encode(NSTimeInterval)
at: &_seconds_since_ref];
}
- (id) initWithCoder: (NSCoder*)coder
{
[coder decodeValueOfObjCType: @encode(NSTimeInterval)
at: &_seconds_since_ref];
return self;
}
- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)secs
{
_seconds_since_ref = secs;
return self;
}
// Adding and getting intervals
- (NSTimeInterval) timeIntervalSince1970
{
return _seconds_since_ref + NSTimeIntervalSince1970;
}
- (NSTimeInterval) timeIntervalSinceDate: (NSDate*)otherDate
{
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for timeIntervalSinceDate:"];
}
return _seconds_since_ref - otherTime(otherDate);
}
- (NSTimeInterval) timeIntervalSinceNow
{
return _seconds_since_ref - GSTimeNow();
}
- (NSTimeInterval) timeIntervalSinceReferenceDate
{
return _seconds_since_ref;
}
// Comparing dates
- (NSComparisonResult) compare: (NSDate*)otherDate
{
if (otherDate == self)
{
return NSOrderedSame;
}
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for compare:"];
}
if (_seconds_since_ref > otherTime(otherDate))
{
return NSOrderedDescending;
}
if (_seconds_since_ref < otherTime(otherDate))
{
return NSOrderedAscending;
}
return NSOrderedSame;
}
- (NSDate*) earlierDate: (NSDate*)otherDate
{
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for earlierDate:"];
}
if (_seconds_since_ref > otherTime(otherDate))
return otherDate;
return self;
}
- (unsigned) hash
{
return (unsigned)_seconds_since_ref;
}
- (BOOL) isEqual: (id)other
{
if (other == nil)
return NO;
if ([other isKindOfClass: abstractClass]
&& _seconds_since_ref == otherTime(other))
return YES;
return NO;
}
- (BOOL) isEqualToDate: (NSDate*)other
{
if (other == nil)
return NO;
if (_seconds_since_ref == otherTime(other))
return YES;
return NO;
}
- (NSDate*) laterDate: (NSDate*)otherDate
{
if (otherDate == nil)
{
[NSException raise: NSInvalidArgumentException
format: @"nil argument for laterDate:"];
}
if (_seconds_since_ref < otherTime(otherDate))
return otherDate;
return self;
}
@end
/*
* This abstract class represents a date of which there can be only
* one instance.
*/
@implementation GSDateSingle
+ (void) initialize
{
if (self == [GSDateSingle class])
{
[self setVersion: 1];
GSObjCAddClassBehavior(self, [NSGDate class]);
}
}
- (id) autorelease
{
return self;
}
- (void) release
{
}
- (id) retain
{
return self;
}
+ (id) allocWithZone: (NSZone*)z
{
[NSException raise: NSInternalInconsistencyException
format: @"Attempt to allocate fixed date"];
return nil;
}
- (id) copyWithZone: (NSZone*)z
{
return self;
}
- (void) dealloc
{
[NSException raise: NSInternalInconsistencyException
format: @"Attempt to deallocate fixed date"];
}
- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)secs
{
return self;
}
@end
@implementation GSDatePast
+ (id) allocWithZone: (NSZone*)z
{
if (_distantPast == nil)
{
id obj = NSAllocateObject(self, 0, NSDefaultMallocZone());
_distantPast = [obj init];
}
return _distantPast;
}
- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)secs
{
_seconds_since_ref = DISTANT_PAST;
return self;
}
@end
@implementation GSDateFuture
+ (id) allocWithZone: (NSZone*)z
{
if (_distantFuture == nil)
{
id obj = NSAllocateObject(self, 0, NSDefaultMallocZone());
_distantFuture = [obj init];
}
return _distantFuture;
}
- (id) initWithTimeIntervalSinceReferenceDate: (NSTimeInterval)secs
{
_seconds_since_ref = DISTANT_FUTURE;
return self;
}
@end