1996-10-31 17:13:12 +00:00
|
|
|
#include <Foundation/NSDate.h>
|
|
|
|
#include <Foundation/NSAutoreleasePool.h>
|
|
|
|
#include <Foundation/NSString.h>
|
|
|
|
|
|
|
|
#ifdef __MS_WIN32__
|
|
|
|
int _MB_init_runtime()
|
|
|
|
{
|
|
|
|
libobjc_init_runtime();
|
|
|
|
gnustep_base_init_runtime();
|
|
|
|
nsdate_init_runtime();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
id a, b, c, e; /* dates */
|
|
|
|
id pool;
|
|
|
|
|
|
|
|
behavior_set_debug(0);
|
|
|
|
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
|
|
|
|
// NSDate tests
|
|
|
|
printf("NSDate tests\n");
|
|
|
|
{
|
|
|
|
// Create NSDate instances
|
|
|
|
a = [NSDate date];
|
|
|
|
printf("+[date] -- %s\n", [[a description] cString]);
|
|
|
|
b = [NSDate dateWithTimeIntervalSinceNow: 0];
|
|
|
|
printf("+[dateWithTimeIntervalSinceNow: 0] -- %s\n",
|
|
|
|
[[b description] cString]);
|
|
|
|
b = [NSDate dateWithTimeIntervalSinceNow: 600];
|
|
|
|
printf("+[dateWithTimeIntervalSinceNow: 600] -- %s\n",
|
|
|
|
[[b description] cString]);
|
|
|
|
b = [NSDate dateWithTimeIntervalSince1970: 0];
|
|
|
|
printf("+[dateWithTimeIntervalSince1970: 0] -- %s\n",
|
|
|
|
[[b description] cString]);
|
|
|
|
b = [NSDate dateWithTimeIntervalSince1970: -600];
|
|
|
|
printf("+[dateWithTimeIntervalSince1970: -600] -- %s\n",
|
|
|
|
[[b description] cString]);
|
|
|
|
b = [NSDate dateWithTimeIntervalSinceReferenceDate: 0];
|
|
|
|
printf("+[dateWithTimeIntervalSinceReferenceDate: 0] -- %s\n",
|
|
|
|
[[b description] cString]);
|
|
|
|
b = [NSDate dateWithTimeIntervalSinceReferenceDate: 300];
|
|
|
|
printf("+[dateWithTimeIntervalSinceReferenceDate: 300] -- %s\n",
|
|
|
|
[[b description] cString]);
|
|
|
|
|
|
|
|
// Comparisons
|
|
|
|
|
|
|
|
if ([a compare: [NSDate distantFuture]] == NSOrderedAscending)
|
|
|
|
printf("Current date is before distantFuture\n");
|
|
|
|
else
|
|
|
|
printf("ERROR: Current date is *not* before distantFuture\n");
|
|
|
|
|
|
|
|
if ([a compare: [NSDate distantPast]] == NSOrderedDescending)
|
|
|
|
printf("Current date is after distantPast\n");
|
|
|
|
else
|
|
|
|
printf("ERROR: Current date is *not* after distantPast\n");
|
|
|
|
|
|
|
|
c = [a earlierDate: b];
|
|
|
|
if (c == a)
|
|
|
|
printf("%s is earlier than %s\n", [[a description] cString],
|
|
|
|
[[b description] cString]);
|
|
|
|
else
|
|
|
|
printf("ERROR: %s is not earlier than %s\n", [[a description] cString],
|
|
|
|
[[b description] cString]);
|
|
|
|
|
|
|
|
c = [a laterDate: b];
|
|
|
|
if (c == b)
|
|
|
|
printf("%s is later than %s\n", [[b description] cString],
|
|
|
|
[[a description] cString]);
|
|
|
|
else
|
|
|
|
printf("ERROR: %s is not later than %s\n", [[b description] cString],
|
|
|
|
[[a description] cString]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// NSCalendarDate tests
|
|
|
|
printf("NSCalendarDate tests\n");
|
|
|
|
{
|
|
|
|
int m, y, d, a;
|
|
|
|
|
|
|
|
// Create an NSCalendarDate with current date and time
|
|
|
|
c = [NSCalendarDate calendarDate];
|
|
|
|
printf("+[calendarDate] -- %s\n", [[c description] cString]);
|
|
|
|
printf("-[dayOfMonth] %d\n", [c dayOfMonth]);
|
1997-10-28 14:34:49 +00:00
|
|
|
printf("-[dayOfWeek] %d\n", [c dayOfWeek]);
|
|
|
|
printf("-[dayOfYear] %d\n", [c dayOfYear]);
|
|
|
|
printf("-[hourOfDay] %d\n", [c hourOfDay]);
|
1996-10-31 17:13:12 +00:00
|
|
|
printf("-[monthOfYear] %d\n", [c monthOfYear]);
|
|
|
|
printf("-[yearOfCommonEra] %d\n", [c yearOfCommonEra]);
|
|
|
|
|
|
|
|
a = [c absoluteGregorianDay: 9 month: 10 year: 1996];
|
|
|
|
printf("%d-%d-%d is Gregorian absolute %d\n", 9, 10, 1996, a);
|
|
|
|
printf("-[dayOfCommonEra] %d\n", [c dayOfCommonEra]);
|
|
|
|
printf("-[timeIntervalSinceReferenceDate] %f\n",
|
|
|
|
[c timeIntervalSinceReferenceDate]);
|
|
|
|
|
|
|
|
a = [c absoluteGregorianDay: 1 month: 1 year: 2001];
|
|
|
|
printf("%d-%d-%d is Gregorian absolute %d\n", 1, 1, 2001, a);
|
|
|
|
[c gregorianDateFromAbsolute: a day: &d month: &m year: &y];
|
|
|
|
printf("Gregorian absolute %d is %d-%d-%d\n", a, d, m, y);
|
|
|
|
|
|
|
|
c = [NSCalendarDate dateWithString: @"1996-10-09 0:00:01"
|
|
|
|
calendarFormat: @"%Y-%m-%d %H:%M:%S"];
|
|
|
|
printf("calendar date %s\n", [[c description] cString]);
|
|
|
|
printf("-[dayOfCommonEra] %d\n", [c dayOfCommonEra]);
|
|
|
|
printf("-[dayOfMonth] %d\n", [c dayOfMonth]);
|
|
|
|
printf("-[dayOfWeek] %d\n", [c dayOfWeek]);
|
|
|
|
printf("-[dayOfYear] %d\n", [c dayOfYear]);
|
|
|
|
printf("-[hourOfDay] %d\n", [c hourOfDay]);
|
|
|
|
printf("-[minuteOfHour] %d\n", [c minuteOfHour]);
|
|
|
|
printf("-[monthOfYear] %d\n", [c monthOfYear]);
|
|
|
|
printf("-[secondOfMinute] %d\n", [c secondOfMinute]);
|
|
|
|
printf("-[yearOfCommonEra] %d\n", [c yearOfCommonEra]);
|
|
|
|
printf("-[timeIntervalSinceReferenceDate] %f\n",
|
|
|
|
[c timeIntervalSinceReferenceDate]);
|
|
|
|
e = [NSCalendarDate dateWithString: @"1996-10-09 0:00:0"
|
|
|
|
calendarFormat: @"%Y-%m-%d %H:%M:%S"];
|
|
|
|
printf("calendar date %s\n", [[e description] cString]);
|
|
|
|
printf("-[timeIntervalSinceReferenceDate] %f\n",
|
|
|
|
[e timeIntervalSinceReferenceDate]);
|
1997-10-28 14:34:49 +00:00
|
|
|
printf("NSCalendrical time tests\n");
|
|
|
|
{
|
|
|
|
NSCalendarDate *momsBDay = [NSCalendarDate dateWithYear:1936
|
|
|
|
month:1 day:8 hour:7 minute:30 second:0
|
|
|
|
timeZone:[NSTimeZone timeZoneWithName:@"EST"]];
|
|
|
|
NSCalendarDate *dob = [NSCalendarDate dateWithYear:1965
|
|
|
|
month:12 day:7 hour:17 minute:25 second:0
|
|
|
|
timeZone:[NSTimeZone timeZoneWithName:@"EST"]];
|
|
|
|
int years, months, days;
|
|
|
|
|
|
|
|
[dob years:&years months:&months days:&days hours:0
|
|
|
|
minutes:0 seconds:0 sinceDate:momsBDay];
|
|
|
|
printf("%d, %d, %d\n", years, months, days);
|
|
|
|
[dob years:0 months:&months days:&days hours:0
|
|
|
|
minutes:0 seconds:0 sinceDate:momsBDay];
|
|
|
|
printf("%d, %d\n", months, days);
|
|
|
|
}
|
1998-01-19 15:20:15 +00:00
|
|
|
|
|
|
|
printf("\nY2K checks\n");
|
|
|
|
c = [NSCalendarDate dateWithString: @"1999-12-31 23:59:59"
|
|
|
|
calendarFormat: @"%Y-%m-%d %H:%M:%S"];
|
|
|
|
printf("Start at %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add one second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add another second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:1 minute:0 second:0];
|
|
|
|
printf("Add an hour - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:-2 minute:0 second:0];
|
|
|
|
printf("Subtract two hours - %s\n", [[c description] cString]);
|
|
|
|
|
|
|
|
printf("\nY2K is a leap year checks\n");
|
|
|
|
c = [NSCalendarDate dateWithString: @"2000-2-28 23:59:59"
|
|
|
|
calendarFormat: @"%Y-%m-%d %H:%M:%S"];
|
|
|
|
printf("Start at %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add one second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add another second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:1 minute:0 second:0];
|
|
|
|
printf("Add an hour - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:-2 minute:0 second:0];
|
|
|
|
printf("Subtract two hours - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:5 minute:0 second:0];
|
|
|
|
printf("Add five hours - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:1 month:0 day:0 hour:0 minute:0 second:0];
|
|
|
|
printf("Add one year - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:-1 hour:0 minute:0 second:0];
|
|
|
|
printf("Subtract one day - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:1 month:0 day:1 hour:0 minute:0 second:0];
|
|
|
|
printf("Add a year and a day - %s\n", [[c description] cString]);
|
|
|
|
|
|
|
|
printf("\n2004 is a leap year checks\n");
|
|
|
|
c = [NSCalendarDate dateWithString: @"2004-2-28 23:59:59"
|
|
|
|
calendarFormat: @"%Y-%m-%d %H:%M:%S"];
|
|
|
|
printf("Start at %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add one second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add another second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:1 minute:0 second:0];
|
|
|
|
printf("Add an hour - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:-2 minute:0 second:0];
|
|
|
|
printf("Subtract two hours - %s\n", [[c description] cString]);
|
|
|
|
|
|
|
|
printf("\n2100 is NOT a leap year checks\n");
|
|
|
|
c = [NSCalendarDate dateWithString: @"2100-2-28 23:59:59"
|
|
|
|
calendarFormat: @"%Y-%m-%d %H:%M:%S"];
|
|
|
|
printf("Start at %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add one second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:0 minute:0 second:1];
|
|
|
|
printf("Add another second - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:1 minute:0 second:0];
|
|
|
|
printf("Add an hour - %s\n", [[c description] cString]);
|
|
|
|
c = [c addYear:0 month:0 day:0 hour:-2 minute:0 second:0];
|
|
|
|
printf("Subtract two hours - %s\n", [[c description] cString]);
|
1996-10-31 17:13:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[pool release];
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|