2001-12-17 14:31:42 +00:00
|
|
|
|
/** Time zone management. -*- Mode: ObjC -*-
|
2002-09-30 16:55:28 +00:00
|
|
|
|
Copyright (C) 1997-2002 Free Software Foundation, Inc.
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
|
|
|
|
Written by: Yoo C. Chung <wacko@laplace.snu.ac.kr>
|
|
|
|
|
Date: June 1997
|
|
|
|
|
|
2002-09-30 16:55:28 +00:00
|
|
|
|
Rewritw large chunks by: Richard Frith-Macdonald <rfm@gnu.org>
|
|
|
|
|
Date: September 2002
|
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
1997-10-17 13:35:52 +00:00
|
|
|
|
This library is free software; you can redistribute it and/or
|
1997-09-01 21:59:51 +00:00
|
|
|
|
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
|
1997-10-17 13:35:52 +00:00
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
Library General Public License for more details.
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1997-10-17 13:35:52 +00:00
|
|
|
|
You should have received a copy of the GNU Library General Public
|
1997-09-01 21:59:51 +00:00
|
|
|
|
License along with this library; if not, write to the Free Software
|
2001-12-18 16:54:15 +00:00
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
|
|
|
|
|
|
<title>NSTimeZone class reference</title>
|
|
|
|
|
$Date$ $Revision$
|
|
|
|
|
*/
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
|
|
|
|
/* We use a implementation independent of the system, since POSIX
|
|
|
|
|
functions for time zones are woefully inadequate for implementing
|
|
|
|
|
NSTimeZone, and time zone names can be different from system to
|
|
|
|
|
system.
|
|
|
|
|
|
|
|
|
|
We do not use a dictionary for storing time zones, since such a
|
|
|
|
|
dictionary would be VERY large (~500K). And we would have to use a
|
|
|
|
|
complicated object determining whether we're using daylight savings
|
1997-11-03 14:30:13 +00:00
|
|
|
|
time and such for every entry in the dictionary. (Though we will
|
|
|
|
|
eventually have to change the implementation to prevent the year
|
|
|
|
|
2038 problem.)
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
|
|
|
|
The local time zone can be specified with the user defaults
|
2000-01-05 14:53:03 +00:00
|
|
|
|
database, the GNUSTEP_TZ environment variable, the file LOCAL_TIME_FILE,
|
|
|
|
|
the TZ environment variable, or the fallback time zone (which is UTC),
|
|
|
|
|
with the ones listed first having precedence.
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
|
|
|
|
Any time zone must be a file name in ZONES_DIR.
|
|
|
|
|
|
|
|
|
|
FIXME?: use leap seconds? */
|
|
|
|
|
|
1997-11-06 00:51:23 +00:00
|
|
|
|
#include <config.h>
|
1998-12-20 21:27:47 +00:00
|
|
|
|
#include <base/preface.h>
|
1997-09-01 21:59:51 +00:00
|
|
|
|
#include <limits.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <Foundation/NSArray.h>
|
|
|
|
|
#include <Foundation/NSCoder.h>
|
2001-01-31 15:10:41 +00:00
|
|
|
|
#include <Foundation/NSData.h>
|
1997-10-17 13:35:52 +00:00
|
|
|
|
#include <Foundation/NSDate.h>
|
|
|
|
|
#include <Foundation/NSDictionary.h>
|
1997-09-01 21:59:51 +00:00
|
|
|
|
#include <Foundation/NSException.h>
|
|
|
|
|
#include <Foundation/NSLock.h>
|
|
|
|
|
#include <Foundation/NSObject.h>
|
|
|
|
|
#include <Foundation/NSProcessInfo.h>
|
1997-10-17 13:35:52 +00:00
|
|
|
|
#include <Foundation/NSString.h>
|
1997-09-01 21:59:51 +00:00
|
|
|
|
#include <Foundation/NSUserDefaults.h>
|
|
|
|
|
#include <Foundation/NSUtilities.h>
|
|
|
|
|
#include <Foundation/NSZone.h>
|
1997-10-18 19:49:50 +00:00
|
|
|
|
#include <Foundation/NSBundle.h>
|
1999-08-25 16:12:36 +00:00
|
|
|
|
#include <Foundation/NSMapTable.h>
|
2001-01-30 20:47:05 +00:00
|
|
|
|
#include <Foundation/NSThread.h>
|
|
|
|
|
#include <Foundation/NSNotification.h>
|
2001-01-31 05:58:59 +00:00
|
|
|
|
#include <Foundation/NSPortCoder.h>
|
2001-03-08 14:48:27 +00:00
|
|
|
|
#include <Foundation/NSTimeZone.h>
|
2002-09-30 16:54:29 +00:00
|
|
|
|
#include <Foundation/NSByteOrder.h>
|
2001-01-31 11:29:55 +00:00
|
|
|
|
#include <Foundation/NSDebug.h>
|
2002-09-30 16:54:29 +00:00
|
|
|
|
#include <GSConfig.h>
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
|
|
|
|
#define NOID
|
|
|
|
|
#include "tzfile.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Key for local time zone in user defaults. */
|
1997-11-28 20:13:58 +00:00
|
|
|
|
#define LOCALDBKEY @"Local Time Zone"
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Directory that contains the time zone data. */
|
1999-04-23 02:54:45 +00:00
|
|
|
|
#define TIME_ZONE_DIR @"NSTimeZones"
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Location of time zone abbreviation dictionary. It is a text file
|
|
|
|
|
with each line comprised of the abbreviation, a whitespace, and the
|
|
|
|
|
name. Neither the abbreviation nor the name can contain
|
|
|
|
|
whitespace, and each line must not be longer than 80 characters. */
|
1997-10-18 19:49:50 +00:00
|
|
|
|
#define ABBREV_DICT @"abbreviations"
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* File holding regions grouped by latitude. It is a text file with
|
|
|
|
|
each line comprised of the latitude region, whitespace, and the
|
1997-11-03 14:30:13 +00:00
|
|
|
|
name. Neither the abbreviation nor the name can contain
|
1997-09-01 21:59:51 +00:00
|
|
|
|
whitespace, and each line must not be longer than 80 characters. */
|
1997-10-18 19:49:50 +00:00
|
|
|
|
#define REGIONS_FILE @"regions"
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-10-17 13:35:52 +00:00
|
|
|
|
/* Name of the file that contains the name of the local time zone. */
|
1997-10-18 19:49:50 +00:00
|
|
|
|
#define LOCAL_TIME_FILE @"localtime"
|
1997-10-17 13:35:52 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Directory that contains the actual time zones. */
|
1997-11-28 20:13:58 +00:00
|
|
|
|
#define ZONES_DIR @"zones/"
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
@class GSAbsTimeZone;
|
|
|
|
|
@class GSTimeZoneDetail;
|
|
|
|
|
@class GSAbsTimeZoneDetail;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
@class GSPlaceholderTimeZone;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Information for abstract placeholder class.
|
|
|
|
|
*/
|
|
|
|
|
static GSPlaceholderTimeZone *defaultPlaceholderTimeZone;
|
|
|
|
|
static NSMapTable *placeholderMap;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* Temporary structure for holding time zone details.
|
|
|
|
|
* This is the format in the data object.
|
|
|
|
|
*/
|
1997-09-01 21:59:51 +00:00
|
|
|
|
struct ttinfo
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-31 15:10:41 +00:00
|
|
|
|
char offset[4]; // Seconds east of UTC
|
2002-10-01 10:25:40 +00:00
|
|
|
|
unsigned char isdst; // Daylight savings time?
|
|
|
|
|
unsigned char abbr_idx; // Index into time zone abbreviations string
|
1997-09-01 21:59:51 +00:00
|
|
|
|
};
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* And this is the structure used in the time zone instances.
|
|
|
|
|
*/
|
|
|
|
|
typedef struct {
|
|
|
|
|
gss32 offset;
|
|
|
|
|
BOOL isdst;
|
|
|
|
|
unsigned char abbr_idx;
|
|
|
|
|
char pad[2];
|
|
|
|
|
NSString *abbreviation;
|
|
|
|
|
} TypeInfo;
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
@interface GSTimeZone : NSTimeZone
|
|
|
|
|
{
|
|
|
|
|
@public
|
|
|
|
|
NSString *timeZoneName;
|
2002-10-01 10:25:40 +00:00
|
|
|
|
NSData *timeZoneData;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
unsigned int n_trans;
|
|
|
|
|
unsigned int n_types;
|
|
|
|
|
gss32 *trans;
|
2002-10-01 10:25:40 +00:00
|
|
|
|
TypeInfo *types;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
unsigned char *idxs;
|
|
|
|
|
}
|
|
|
|
|
@end
|
|
|
|
|
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
static NSTimeZone *defaultTimeZone = nil;
|
|
|
|
|
static NSTimeZone *localTimeZone = nil;
|
|
|
|
|
static NSTimeZone *systemTimeZone = nil;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Dictionary for time zones. Each time zone must have a unique
|
|
|
|
|
name. */
|
|
|
|
|
static NSMutableDictionary *zoneDictionary;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Fake one-to-one abbreviation to time zone name dictionary. */
|
|
|
|
|
static NSDictionary *fake_abbrev_dict;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Lock for creating time zones. */
|
2001-01-30 20:47:05 +00:00
|
|
|
|
static NSRecursiveLock *zone_mutex = nil;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
static Class NSTimeZoneClass;
|
2001-01-31 11:29:55 +00:00
|
|
|
|
static Class GSPlaceholderTimeZoneClass;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Decode the four bytes at PTR as a signed integer in network byte order.
|
|
|
|
|
Based on code included in the GNU C Library 2.0.3. */
|
|
|
|
|
static inline int
|
|
|
|
|
decode (const void *ptr)
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
#if defined(WORDS_BIGENDIAN) && SIZEOF_INT == 4
|
2001-04-10 03:27:01 +00:00
|
|
|
|
#if NEED_WORD_ALIGNMENT
|
|
|
|
|
int value;
|
|
|
|
|
memcpy(&value, ptr, sizeof(int));
|
|
|
|
|
return value;
|
|
|
|
|
#else
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return *(const int *) ptr;
|
2001-04-10 03:27:01 +00:00
|
|
|
|
#endif
|
1997-09-01 21:59:51 +00:00
|
|
|
|
#else /* defined(WORDS_BIGENDIAN) && SIZEOF_INT == 4 */
|
|
|
|
|
const unsigned char *p = ptr;
|
|
|
|
|
int result = *p & (1 << (CHAR_BIT - 1)) ? ~0 : 0;
|
|
|
|
|
|
|
|
|
|
result = (result << 8) | *p++;
|
|
|
|
|
result = (result << 8) | *p++;
|
|
|
|
|
result = (result << 8) | *p++;
|
|
|
|
|
result = (result << 8) | *p++;
|
|
|
|
|
return result;
|
|
|
|
|
#endif /* defined(WORDS_BIGENDIAN) && SIZEOF_INT == 4 */
|
|
|
|
|
}
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
|
|
|
|
|
1997-11-03 14:30:13 +00:00
|
|
|
|
/* Object enumerator for NSInternalAbbrevDict. */
|
|
|
|
|
@interface NSInternalAbbrevDictObjectEnumerator : NSEnumerator
|
|
|
|
|
{
|
|
|
|
|
NSEnumerator *dict_enum;
|
|
|
|
|
}
|
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (id) initWithDict: (NSDictionary*)aDict;
|
1997-11-03 14:30:13 +00:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
/* Front end that actually uses [NSTimeZone abbrebiationMap]. */
|
|
|
|
|
@interface NSInternalAbbrevDict : NSDictionary
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
@interface GSPlaceholderTimeZone : NSTimeZone
|
|
|
|
|
@end
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
@interface GSAbsTimeZone : NSTimeZone
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
@public
|
|
|
|
|
NSString *name;
|
|
|
|
|
id detail;
|
|
|
|
|
int offset; // Offset from UTC in seconds.
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (id) initWithOffset: (int)anOffset;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
@end
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
@interface NSLocalTimeZone : NSTimeZone
|
|
|
|
|
@end
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
@interface GSTimeZoneDetail : NSTimeZoneDetail
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
NSTimeZone *timeZone; // Time zone which created this object.
|
|
|
|
|
NSString *abbrev; // Abbreviation for time zone detail.
|
|
|
|
|
int offset; // Offset from UTC in seconds.
|
|
|
|
|
BOOL is_dst; // Is it daylight savings time?
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (id) initWithTimeZone: (NSTimeZone*)aZone
|
|
|
|
|
withAbbrev: (NSString*)anAbbrev
|
|
|
|
|
withOffset: (int)anOffset
|
|
|
|
|
withDST: (BOOL)isDST;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
@end
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
@interface GSAbsTimeZoneDetail : NSTimeZoneDetail
|
|
|
|
|
{
|
|
|
|
|
GSAbsTimeZone *zone; // Time zone which created this object.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (id) initWithTimeZone: (GSAbsTimeZone*)aZone;
|
|
|
|
|
@end
|
|
|
|
|
|
1997-11-03 14:30:13 +00:00
|
|
|
|
/* Private methods for obtaining resource file names. */
|
|
|
|
|
@interface NSTimeZone (Private)
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (void) _becomeThreaded: (NSNotification*)notification;
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (NSString*) getAbbreviationFile;
|
|
|
|
|
+ (NSString*) getRegionsFile;
|
|
|
|
|
+ (NSString*) getTimeZoneFile: (NSString*)name;
|
1997-11-03 14:30:13 +00:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@implementation NSInternalAbbrevDictObjectEnumerator
|
|
|
|
|
|
1999-05-27 09:52:49 +00:00
|
|
|
|
- (void) dealloc
|
1997-11-03 14:30:13 +00:00
|
|
|
|
{
|
1999-05-27 09:52:49 +00:00
|
|
|
|
RELEASE(dict_enum);
|
1997-11-03 14:30:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-05-27 09:52:49 +00:00
|
|
|
|
- (id) initWithDict: (NSDictionary*)aDict
|
1997-11-03 14:30:13 +00:00
|
|
|
|
{
|
1999-05-27 09:52:49 +00:00
|
|
|
|
dict_enum = RETAIN([aDict objectEnumerator]);
|
1997-11-03 14:30:13 +00:00
|
|
|
|
return self;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-27 09:52:49 +00:00
|
|
|
|
- (id) nextObject
|
1997-11-03 14:30:13 +00:00
|
|
|
|
{
|
|
|
|
|
id object;
|
|
|
|
|
|
|
|
|
|
object = [dict_enum nextObject];
|
|
|
|
|
if (object != nil)
|
|
|
|
|
return [object objectAtIndex: 0];
|
|
|
|
|
else
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
@implementation NSInternalAbbrevDict
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (id) allocWithZone: (NSZone*)zone
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return NSAllocateObject(self, 0, zone);
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
1999-05-27 09:52:49 +00:00
|
|
|
|
- (id) init
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return self;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (unsigned) count
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return [[NSTimeZone abbreviationMap] count];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1999-05-27 09:52:49 +00:00
|
|
|
|
- (NSEnumerator*) keyEnumerator
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return [[NSTimeZone abbreviationMap] keyEnumerator];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
1999-05-27 09:52:49 +00:00
|
|
|
|
- (NSEnumerator*) objectEnumerator
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1999-05-27 09:52:49 +00:00
|
|
|
|
return AUTORELEASE([[NSInternalAbbrevDictObjectEnumerator alloc]
|
|
|
|
|
initWithDict: [NSTimeZone abbreviationMap]]);
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1999-05-27 09:52:49 +00:00
|
|
|
|
- (id) objectForKey: (NSString*)key
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return [[[NSTimeZone abbreviationMap] objectForKey: key] objectAtIndex: 0];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1997-10-17 13:35:52 +00:00
|
|
|
|
@end
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
|
|
|
|
|
@implementation GSPlaceholderTimeZone
|
|
|
|
|
|
|
|
|
|
- (id) autorelease
|
|
|
|
|
{
|
|
|
|
|
NSWarnLog(@"-autorelease sent to uninitialised time zone");
|
|
|
|
|
return self; // placeholders never get released.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) dealloc
|
|
|
|
|
{
|
|
|
|
|
return; // placeholders never get deallocated.
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (id) initWithName: (NSString*)name data: (NSData*)data
|
2001-01-31 11:29:55 +00:00
|
|
|
|
{
|
|
|
|
|
NSTimeZone *zone;
|
2002-10-01 10:25:40 +00:00
|
|
|
|
unsigned length = [name length];
|
2001-01-31 11:29:55 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
if (length == 0)
|
|
|
|
|
{
|
|
|
|
|
NSLog(@"Disallowed null time zone name");
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
if (length == 15 && [name isEqual: @"NSLocalTimeZone"])
|
2001-01-31 11:29:55 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
zone = RETAIN(localTimeZone);
|
2002-09-30 17:14:51 +00:00
|
|
|
|
DESTROY(self);
|
|
|
|
|
return zone;
|
2001-01-31 11:29:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-31 15:10:41 +00:00
|
|
|
|
/*
|
2001-05-02 11:52:43 +00:00
|
|
|
|
* Return a cached time zone if possible.
|
2002-10-01 10:25:40 +00:00
|
|
|
|
* NB. if data of cached zone does not match new data ... don't use cache
|
2001-01-31 15:10:41 +00:00
|
|
|
|
*/
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
|
|
|
|
zone = [zoneDictionary objectForKey: name];
|
2002-10-01 10:31:51 +00:00
|
|
|
|
if (data != nil && [data isEqual: [zone data]] == NO)
|
2002-10-01 10:25:40 +00:00
|
|
|
|
{
|
|
|
|
|
zone = nil;
|
|
|
|
|
}
|
2001-05-02 11:52:43 +00:00
|
|
|
|
IF_NO_GC(RETAIN(zone));
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
if (zone == nil)
|
2001-01-31 15:10:41 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
unichar c;
|
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
|
|
if (length == 8 && [name hasPrefix: @"GMT"] == YES
|
|
|
|
|
&& ((c = [name characterAtIndex: 3]) == '+' || c == '-'))
|
2001-01-31 11:29:55 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
c = [name characterAtIndex: 4];
|
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
|
{
|
|
|
|
|
i = c - '0';
|
|
|
|
|
c = [name characterAtIndex: 5];
|
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
|
{
|
|
|
|
|
i = i * 10 + (c - '0');
|
|
|
|
|
c = [name characterAtIndex: 6];
|
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
|
{
|
|
|
|
|
i = i * 6 + (c - '0');
|
|
|
|
|
c = [name characterAtIndex: 7];
|
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
|
{
|
|
|
|
|
i = i * 10 + (c - '0');
|
|
|
|
|
zone = [[GSAbsTimeZone alloc] initWithOffset: i*60];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-01-31 11:29:55 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
if (zone == nil && length > 19
|
|
|
|
|
&& [name hasPrefix: @"NSAbsoluteTimeZone:"] == YES)
|
|
|
|
|
{
|
|
|
|
|
i = [[name substringFromIndex: 19] intValue];
|
|
|
|
|
|
|
|
|
|
zone = [[GSAbsTimeZone alloc] initWithOffset: i];
|
2001-01-31 15:10:41 +00:00
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
|
|
|
|
|
if (zone == nil)
|
2001-01-31 15:10:41 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
if (data == nil)
|
2001-01-31 11:29:55 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
NSString *fileName;
|
|
|
|
|
const char *str = [name UTF8String];
|
2001-01-31 11:29:55 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/* Make sure that only time zone files are accessed.
|
|
|
|
|
FIXME: Make this more robust. */
|
|
|
|
|
if ((str)[0] == '/' || strchr(str, '.') != NULL)
|
2001-01-31 11:29:55 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
NSLog(@"Disallowed time zone name `%@'.", name);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return nil;
|
|
|
|
|
}
|
2001-01-31 11:29:55 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
fileName = [NSTimeZoneClass getTimeZoneFile: name];
|
|
|
|
|
if (fileName == nil)
|
|
|
|
|
{
|
|
|
|
|
NSLog(@"Unknown time zone name `%@'.", name);
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
data = [NSData dataWithContentsOfFile: fileName];
|
2001-01-31 15:10:41 +00:00
|
|
|
|
}
|
2002-09-30 16:54:29 +00:00
|
|
|
|
zone = [[GSTimeZone alloc] initWithName: name data: data];
|
2001-01-31 11:29:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-09-30 16:54:29 +00:00
|
|
|
|
RELEASE(self);
|
2001-01-31 11:29:55 +00:00
|
|
|
|
return zone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) release
|
|
|
|
|
{
|
|
|
|
|
return; // placeholders never get released.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (id) retain
|
|
|
|
|
{
|
|
|
|
|
return self; // placeholders never get retained.
|
|
|
|
|
}
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
|
|
|
|
@implementation NSLocalTimeZone
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (NSString*) abbreviation
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] abbreviation];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (NSString*) abbreviationForDate: (NSDate*)aDate
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] abbreviationForDate: aDate];
|
1998-03-12 14:21:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (id) autorelease
|
1998-03-12 14:21:20 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return self;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
- (NSData*) data
|
|
|
|
|
{
|
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] data];
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (void) encodeWithCoder: (NSCoder*)aCoder
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
[aCoder encodeObject: @"NSLocalTimeZone"];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (id) init
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return self;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (BOOL) isDaylightSavingTime
|
2001-01-30 20:47:05 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] isDaylightSavingTime];
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate
|
2001-01-30 20:47:05 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] isDaylightSavingTimeForDate: aDate];
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
- (NSString*) name
|
2001-01-30 20:47:05 +00:00
|
|
|
|
{
|
2001-01-31 11:29:55 +00:00
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] name];
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
- (void) release
|
2001-01-30 20:47:05 +00:00
|
|
|
|
{
|
2001-01-31 11:29:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (id) retain
|
|
|
|
|
{
|
|
|
|
|
return self;
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (int) secondsFromGMT
|
|
|
|
|
{
|
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] secondsFromGMT];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (int) secondsFromGMTForDate: (NSDate*)aDate
|
|
|
|
|
{
|
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] secondsFromGMTForDate: aDate];
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
- (NSArray*) timeZoneDetailArray
|
|
|
|
|
{
|
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] timeZoneDetailArray];
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
- (NSTimeZoneDetail*) timeZoneDetailForDate: (NSDate*)date
|
|
|
|
|
{
|
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] timeZoneDetailForDate: date];
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 17:14:51 +00:00
|
|
|
|
- (NSString*) timeZoneName
|
|
|
|
|
{
|
|
|
|
|
return [[NSTimeZoneClass defaultTimeZone] timeZoneName];
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
@end
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
@implementation GSAbsTimeZone
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
static NSMapTable *absolutes = 0;
|
|
|
|
|
|
|
|
|
|
+ (void) initialize
|
1997-09-01 21:59:51 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
if (self == [GSAbsTimeZone class])
|
1999-08-25 16:12:36 +00:00
|
|
|
|
{
|
|
|
|
|
absolutes = NSCreateMapTable(NSIntMapKeyCallBacks,
|
2002-09-30 16:54:29 +00:00
|
|
|
|
NSNonOwnedPointerMapValueCallBacks, 0);
|
1999-08-25 16:12:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (NSString*) abbreviationForDate: (NSDate*)aDate
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (void) dealloc
|
|
|
|
|
{
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
[zone_mutex lock];
|
2001-01-30 12:05:02 +00:00
|
|
|
|
NSMapRemove(absolutes, (void*)(gsaddr)offset);
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
[zone_mutex unlock];
|
2001-01-30 12:05:02 +00:00
|
|
|
|
RELEASE(name);
|
|
|
|
|
RELEASE(detail);
|
|
|
|
|
[super dealloc];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeWithCoder: (NSCoder*)aCoder
|
|
|
|
|
{
|
|
|
|
|
[aCoder encodeObject: name];
|
|
|
|
|
}
|
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (id) initWithOffset: (int)anOffset
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
GSAbsTimeZone *z;
|
|
|
|
|
int extra;
|
|
|
|
|
int sign = anOffset >= 0 ? 1 : -1;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Round the offset to the nearest minute, (for MacOS-X compatibility)
|
|
|
|
|
* and ensure it is no more than 18 hours.
|
|
|
|
|
*/
|
|
|
|
|
anOffset *= sign;
|
|
|
|
|
extra = anOffset % 60;
|
|
|
|
|
if (extra < 30)
|
|
|
|
|
{
|
|
|
|
|
anOffset -= extra;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
anOffset += 60 - extra;
|
|
|
|
|
}
|
|
|
|
|
if (anOffset > 64800)
|
|
|
|
|
{
|
|
|
|
|
RELEASE(self);
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
anOffset *= sign;
|
1999-08-25 16:12:36 +00:00
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
z = (GSAbsTimeZone*)NSMapGet(absolutes, (void*)(gsaddr)anOffset);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
if (z != nil)
|
1999-08-25 16:12:36 +00:00
|
|
|
|
{
|
1999-09-28 19:35:09 +00:00
|
|
|
|
IF_NO_GC(RETAIN(z));
|
1999-08-25 16:12:36 +00:00
|
|
|
|
RELEASE(self);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
if (anOffset % 60 == 0)
|
|
|
|
|
{
|
|
|
|
|
char s = (anOffset >= 0) ? '+' : '-';
|
|
|
|
|
int i = (anOffset >= 0) ? anOffset / 60 : -anOffset / 60;
|
|
|
|
|
int h = i / 60;
|
|
|
|
|
int m = i % 60;
|
|
|
|
|
|
|
|
|
|
name = [[NSString alloc] initWithFormat: @"GMT%c%02d%02d", s, h, m];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Should never happen now we round to the minute
|
|
|
|
|
* for MacOS-X compatibnility.
|
|
|
|
|
*/
|
|
|
|
|
name = [[NSString alloc] initWithFormat: @"NSAbsoluteTimeZone:%d",
|
|
|
|
|
anOffset];
|
|
|
|
|
}
|
|
|
|
|
detail = [[GSAbsTimeZoneDetail alloc] initWithTimeZone: self];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
offset = anOffset;
|
|
|
|
|
z = self;
|
|
|
|
|
NSMapInsert(absolutes, (void*)(gsaddr)anOffset, (void*)z);
|
|
|
|
|
[zoneDictionary setObject: self forKey: (NSString*)name];
|
1999-08-25 16:12:36 +00:00
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
1999-08-25 16:12:36 +00:00
|
|
|
|
return z;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (BOOL) isDaylightSavingTimeZoneForDate: (NSDate*)aDate
|
|
|
|
|
{
|
|
|
|
|
return NO;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (NSString*) name
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return name;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (int) secondsFromGMTForDate: (NSDate*)aDate
|
|
|
|
|
{
|
|
|
|
|
return offset;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
- (NSTimeZone*) timeZoneDetailTimeZone
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
2001-01-31 11:29:55 +00:00
|
|
|
|
return [NSTimeZone arrayWithObject: detail];
|
1997-09-01 21:59:51 +00:00
|
|
|
|
}
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (NSTimeZoneDetail*) timeZoneDetailForDate: (NSDate*)date
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
|
|
|
|
return detail;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
- (NSString*) timeZoneName
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
@implementation GSTimeZoneDetail
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (void) dealloc
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1999-05-27 09:52:49 +00:00
|
|
|
|
RELEASE(timeZone);
|
1997-09-01 21:59:51 +00:00
|
|
|
|
[super dealloc];
|
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2000-06-30 11:59:59 +00:00
|
|
|
|
- (id) initWithCoder: (NSCoder*)aDecoder
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
1998-09-02 12:34:38 +00:00
|
|
|
|
[aDecoder decodeValueOfObjCType: @encode(id) at: &abbrev];
|
1997-09-01 21:59:51 +00:00
|
|
|
|
[aDecoder decodeValueOfObjCType: @encode(int) at: &offset];
|
|
|
|
|
[aDecoder decodeValueOfObjCType: @encode(BOOL) at: &is_dst];
|
|
|
|
|
return self;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
|
|
|
|
- (id) initWithTimeZone: (NSTimeZone*)aZone
|
|
|
|
|
withAbbrev: (NSString*)anAbbrev
|
|
|
|
|
withOffset: (int)anOffset
|
|
|
|
|
withDST: (BOOL)isDST
|
|
|
|
|
{
|
|
|
|
|
timeZone = RETAIN(aZone);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
abbrev = anAbbrev; // NB. Depend on this being retained in aZone
|
2001-01-30 12:05:02 +00:00
|
|
|
|
offset = anOffset;
|
|
|
|
|
is_dst = isDST;
|
|
|
|
|
return self;
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (BOOL) isDaylightSavingTimeZone
|
1997-10-24 16:58:20 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return is_dst;
|
1997-10-24 16:58:20 +00:00
|
|
|
|
}
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
|
|
|
|
- (NSString*) name
|
1997-10-24 16:58:20 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return [timeZone name];
|
1997-10-24 16:58:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (NSString*) timeZoneAbbreviation
|
|
|
|
|
{
|
|
|
|
|
return abbrev;
|
|
|
|
|
}
|
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (NSArray*) timeZoneDetailArray
|
1997-10-24 16:58:20 +00:00
|
|
|
|
{
|
|
|
|
|
return [timeZone timeZoneDetailArray];
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (NSTimeZoneDetail*) timeZoneDetailForDate: (NSDate*)date
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return [timeZone timeZoneDetailForDate: date];
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
|
|
|
|
- (int) timeZoneSecondsFromGMT
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return offset;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
|
|
|
|
- (int) timeZoneSecondsFromGMTForDate: (NSDate*)aDate
|
1997-09-01 21:59:51 +00:00
|
|
|
|
{
|
|
|
|
|
return offset;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1995-08-23 16:13:42 +00:00
|
|
|
|
@end
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@implementation GSAbsTimeZoneDetail
|
|
|
|
|
|
|
|
|
|
- (NSString*) abbreviation
|
|
|
|
|
{
|
|
|
|
|
return zone->name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSString*) abbreviationForDate: (NSDate*)aDate
|
|
|
|
|
{
|
|
|
|
|
return zone->name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) dealloc
|
|
|
|
|
{
|
|
|
|
|
RELEASE(zone);
|
|
|
|
|
[super dealloc];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (id) initWithTimeZone: (GSAbsTimeZone*)aZone
|
|
|
|
|
{
|
|
|
|
|
zone = RETAIN(aZone);
|
|
|
|
|
return self;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (BOOL) isDaylightSavingTimeZone
|
|
|
|
|
{
|
|
|
|
|
return NO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (BOOL) isDaylightSavingTimeZoneForDate: (NSDate*)aDate
|
|
|
|
|
{
|
|
|
|
|
return NO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSString*) name
|
|
|
|
|
{
|
|
|
|
|
return zone->name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSString*) timeZoneAbbreviation
|
|
|
|
|
{
|
|
|
|
|
return zone->name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSArray*) timeZoneDetailArray
|
|
|
|
|
{
|
|
|
|
|
return [zone timeZoneDetailArray];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSTimeZoneDetail*) timeZoneDetailForDate: (NSDate*)date
|
|
|
|
|
{
|
|
|
|
|
return self;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (int) timeZoneSecondsFromGMT
|
|
|
|
|
{
|
|
|
|
|
return zone->offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (int) timeZoneSecondsFromGMTForDate: (NSDate*)aDate
|
|
|
|
|
{
|
|
|
|
|
return zone->offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-20 10:22:05 +00:00
|
|
|
|
/**
|
|
|
|
|
* <p>
|
|
|
|
|
* If the GNUstep time zone datafiles become too out of date, one
|
|
|
|
|
* can download an updated database from <uref
|
|
|
|
|
* url="ftp://elsie.nci.nih.gov/pub/">ftp://elsie.nci.nih.gov/pub/</uref>
|
|
|
|
|
* and compile it as specified in the README file in the
|
|
|
|
|
* NSTimeZones directory.
|
2002-10-01 10:25:40 +00:00
|
|
|
|
* </p>
|
|
|
|
|
* <p>Time zone names in NSDates should be GMT, MET etc. not
|
2002-08-20 10:22:05 +00:00
|
|
|
|
* Europe/Berlin, America/Washington etc.
|
2002-10-01 10:25:40 +00:00
|
|
|
|
* </p>
|
2002-10-04 12:32:27 +00:00
|
|
|
|
* <p>The problem with this is that various time zones may use the
|
2002-08-20 10:22:05 +00:00
|
|
|
|
* same abbreviation (e.g. Australia/Brisbane and
|
|
|
|
|
* America/New_York both use EST), and some time zones
|
|
|
|
|
* may have different rules for daylight saving time even if the
|
|
|
|
|
* abbreviation and offsets from UTC are the same.
|
2002-10-01 10:25:40 +00:00
|
|
|
|
* </p>
|
|
|
|
|
* <p>The problems with depending on the OS for providing time zone
|
2002-08-20 10:22:05 +00:00
|
|
|
|
* info are that some methods for the NSTimeZone classes might be
|
|
|
|
|
* difficult to implement, and also that time zone names may vary
|
|
|
|
|
* wildly between OSes (this could be a big problem when
|
|
|
|
|
* archiving is used between different systems).
|
|
|
|
|
* </p>
|
|
|
|
|
*/
|
1997-09-01 21:59:51 +00:00
|
|
|
|
@implementation NSTimeZone
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
+ (NSDictionary*) abbreviationDictionary
|
|
|
|
|
{
|
|
|
|
|
return fake_abbrev_dict;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+ (NSDictionary*) abbreviationMap
|
|
|
|
|
{
|
|
|
|
|
/* Instead of creating the abbreviation dictionary when the class is
|
|
|
|
|
initialized, we create it when we first need it, since the
|
|
|
|
|
dictionary can be potentially very large, considering that it's
|
|
|
|
|
almost never used. */
|
|
|
|
|
|
|
|
|
|
static NSMutableDictionary *abbreviationDictionary = nil;
|
|
|
|
|
FILE *file; // For the file containing the abbreviation dictionary
|
|
|
|
|
char abbrev[80], name[80];
|
|
|
|
|
NSString *fileName;
|
|
|
|
|
|
|
|
|
|
if (abbreviationDictionary != nil)
|
|
|
|
|
return abbreviationDictionary;
|
|
|
|
|
|
|
|
|
|
/* Read dictionary from file. */
|
|
|
|
|
abbreviationDictionary = [[NSMutableDictionary alloc] init];
|
|
|
|
|
fileName = [NSTimeZone getAbbreviationFile];
|
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
|
file = fopen([fileName fileSystemRepresentation], "rb");
|
|
|
|
|
#else
|
|
|
|
|
file = fopen([fileName fileSystemRepresentation], "r");
|
|
|
|
|
#endif
|
|
|
|
|
if (file == NULL)
|
|
|
|
|
[NSException
|
|
|
|
|
raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"Failed to open time zone abbreviation dictionary."];
|
|
|
|
|
while (fscanf(file, "%79s %79s", abbrev, name) == 2)
|
|
|
|
|
{
|
|
|
|
|
id a, the_name, the_abbrev;
|
|
|
|
|
|
|
|
|
|
the_name = [NSString stringWithCString: name];
|
|
|
|
|
the_abbrev = [NSString stringWithCString: abbrev];
|
|
|
|
|
a = [abbreviationDictionary objectForKey: the_abbrev];
|
|
|
|
|
if (a == nil)
|
|
|
|
|
{
|
|
|
|
|
a = [[NSMutableArray alloc] init];
|
|
|
|
|
[abbreviationDictionary setObject: a forKey: the_abbrev];
|
|
|
|
|
}
|
|
|
|
|
[a addObject: the_name];
|
|
|
|
|
}
|
|
|
|
|
fclose(file);
|
|
|
|
|
|
|
|
|
|
return abbreviationDictionary;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
+ (id) allocWithZone: (NSZone*)z
|
|
|
|
|
{
|
|
|
|
|
if (self == NSTimeZoneClass)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* We return a placeholder object that can
|
|
|
|
|
* be converted to a real object when its initialisation method
|
|
|
|
|
* is called.
|
|
|
|
|
*/
|
|
|
|
|
if (z == NSDefaultMallocZone() || z == 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* As a special case, we can return a placeholder for a time zone
|
|
|
|
|
* in the default malloc zone extremely efficiently.
|
|
|
|
|
*/
|
|
|
|
|
return defaultPlaceholderTimeZone;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
id obj;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* For anything other than the default zone, we need to
|
|
|
|
|
* locate the correct placeholder in the (lock protected)
|
|
|
|
|
* table of placeholders.
|
|
|
|
|
*/
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
|
|
|
|
obj = (id)NSMapGet(placeholderMap, (void*)z);
|
|
|
|
|
if (obj == nil)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* There is no placeholder object for this zone, so we
|
|
|
|
|
* create a new one and use that.
|
|
|
|
|
*/
|
|
|
|
|
obj = (id)NSAllocateObject(GSPlaceholderTimeZoneClass, 0, z);
|
|
|
|
|
NSMapInsert(placeholderMap, (void*)z, (void*)obj);
|
|
|
|
|
}
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
|
|
|
|
return obj;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return NSAllocateObject(self, 0, z);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Return the default time zone for this process.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (NSTimeZone*) defaultTimeZone
|
2001-01-30 12:05:02 +00:00
|
|
|
|
{
|
2001-01-30 20:47:05 +00:00
|
|
|
|
NSTimeZone *zone;
|
|
|
|
|
|
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (defaultTimeZone == nil)
|
|
|
|
|
{
|
|
|
|
|
zone = [self systemTimeZone];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
zone = AUTORELEASE(RETAIN(defaultTimeZone));
|
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
else
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
zone = defaultTimeZone;
|
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
return zone;
|
2001-01-30 12:05:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (void) initialize
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
if (self == [NSTimeZone class])
|
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
NSTimeZoneClass = self;
|
2001-01-31 11:29:55 +00:00
|
|
|
|
GSPlaceholderTimeZoneClass = [GSPlaceholderTimeZone class];
|
1997-11-03 14:30:13 +00:00
|
|
|
|
zoneDictionary = [[NSMutableDictionary alloc] init];
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
/*
|
|
|
|
|
* Set up infrastructure for placeholder timezones.
|
|
|
|
|
*/
|
|
|
|
|
defaultPlaceholderTimeZone = (GSPlaceholderTimeZone*)
|
|
|
|
|
NSAllocateObject(GSPlaceholderTimeZoneClass, 0, NSDefaultMallocZone());
|
|
|
|
|
placeholderMap = NSCreateMapTable(NSNonOwnedPointerMapKeyCallBacks,
|
|
|
|
|
NSNonRetainedObjectMapValueCallBacks, 0);
|
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
localTimeZone = [[NSLocalTimeZone alloc] init];
|
|
|
|
|
|
|
|
|
|
fake_abbrev_dict = [[NSInternalAbbrevDict alloc] init];
|
|
|
|
|
if ([NSThread isMultiThreaded])
|
|
|
|
|
{
|
|
|
|
|
[self _becomeThreaded: nil];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
|
addObserver: self
|
|
|
|
|
selector: @selector(_becomeThreaded:)
|
|
|
|
|
name: NSWillBecomeMultiThreadedNotification
|
|
|
|
|
object: nil];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Return a proxy to the default time zone for this process.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (NSTimeZone*) localTimeZone
|
|
|
|
|
{
|
|
|
|
|
return localTimeZone;
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Destroy the system time zone so that it will be recreated
|
|
|
|
|
* next time it is used.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (void) resetSystemTimeZone
|
|
|
|
|
{
|
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
DESTROY(systemTimeZone);
|
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Set the default time zone to be used for this process.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (void) setDefaultTimeZone: (NSTimeZone*)aTimeZone
|
|
|
|
|
{
|
2002-09-30 17:14:51 +00:00
|
|
|
|
if (aTimeZone != defaultTimeZone)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
2002-09-30 17:14:51 +00:00
|
|
|
|
/*
|
|
|
|
|
* We can't make the localTimeZone the default since that would
|
|
|
|
|
* cause recursion ...
|
|
|
|
|
*/
|
|
|
|
|
if (aTimeZone == localTimeZone)
|
|
|
|
|
{
|
|
|
|
|
aTimeZone = [self systemTimeZone];
|
|
|
|
|
}
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
|
|
|
|
ASSIGN(defaultTimeZone, aTimeZone);
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns the current system time zone for the process.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (NSTimeZone*) systemTimeZone
|
|
|
|
|
{
|
|
|
|
|
NSTimeZone *zone = nil;
|
|
|
|
|
|
|
|
|
|
if (zone_mutex != nil)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (systemTimeZone == nil)
|
|
|
|
|
{
|
|
|
|
|
NSString *localZoneString = nil;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* setup default value in case something goes wrong.
|
|
|
|
|
*/
|
|
|
|
|
systemTimeZone = RETAIN([NSTimeZoneClass timeZoneForSecondsFromGMT: 0]);
|
|
|
|
|
|
1997-09-01 21:59:51 +00:00
|
|
|
|
localZoneString = [[NSUserDefaults standardUserDefaults]
|
2000-01-05 14:53:03 +00:00
|
|
|
|
stringForKey: LOCALDBKEY];
|
1997-09-01 21:59:51 +00:00
|
|
|
|
if (localZoneString == nil)
|
2000-01-05 14:53:03 +00:00
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Try to get timezone from GNUSTEP_TZ environment variable.
|
|
|
|
|
*/
|
|
|
|
|
localZoneString = [[[NSProcessInfo processInfo]
|
|
|
|
|
environment] objectForKey: @"GNUSTEP_TZ"];
|
|
|
|
|
}
|
1997-10-17 13:35:52 +00:00
|
|
|
|
if (localZoneString == nil)
|
2000-01-05 14:53:03 +00:00
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Try to get timezone from LOCAL_TIME_FILE.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
NSString *f;
|
2000-01-05 14:53:03 +00:00
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
f = [NSBundle pathForGNUstepResource: LOCAL_TIME_FILE
|
|
|
|
|
ofType: @""
|
|
|
|
|
inDirectory: TIME_ZONE_DIR];
|
|
|
|
|
if (f != nil)
|
2000-01-05 14:53:03 +00:00
|
|
|
|
{
|
2001-01-30 20:47:05 +00:00
|
|
|
|
localZoneString = [NSString stringWithContentsOfFile: f];
|
|
|
|
|
localZoneString = [localZoneString stringByTrimmingSpaces];
|
2000-01-05 14:53:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (localZoneString == nil)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Try to get timezone from standard unix environment variable.
|
|
|
|
|
*/
|
|
|
|
|
localZoneString = [[[NSProcessInfo processInfo]
|
|
|
|
|
environment] objectForKey: @"TZ"];
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
if (localZoneString != nil)
|
2000-01-05 14:53:03 +00:00
|
|
|
|
{
|
2001-01-31 11:29:55 +00:00
|
|
|
|
zone = [defaultPlaceholderTimeZone initWithName: localZoneString];
|
2000-01-05 14:53:03 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
else
|
2000-01-05 14:53:03 +00:00
|
|
|
|
{
|
|
|
|
|
NSLog(@"No local time zone specified.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* If local time zone fails to allocate, then allocate something
|
|
|
|
|
* that is sure to succeed (unless we run out of memory, of
|
|
|
|
|
* course).
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (zone == nil)
|
1997-10-24 16:58:20 +00:00
|
|
|
|
{
|
1997-11-03 14:30:13 +00:00
|
|
|
|
NSLog(@"Using time zone with absolute offset 0.");
|
2001-01-30 20:47:05 +00:00
|
|
|
|
zone = systemTimeZone;
|
1997-10-24 16:58:20 +00:00
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
ASSIGN(systemTimeZone, zone);
|
1997-09-01 21:59:51 +00:00
|
|
|
|
}
|
2001-01-30 20:47:05 +00:00
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
zone = AUTORELEASE(RETAIN(systemTimeZone));
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
zone = systemTimeZone;
|
|
|
|
|
}
|
|
|
|
|
return zone;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
+ (NSArray*) timeZoneArray
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
/* We create the array only when we need it to reduce overhead. */
|
|
|
|
|
|
|
|
|
|
static NSArray *regionsArray = nil;
|
|
|
|
|
int index, i;
|
|
|
|
|
char name[80];
|
|
|
|
|
FILE *file;
|
|
|
|
|
id temp_array[24];
|
|
|
|
|
NSString *fileName;
|
|
|
|
|
|
|
|
|
|
if (regionsArray != nil)
|
|
|
|
|
return regionsArray;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 24; i++)
|
|
|
|
|
temp_array[i] = [NSMutableArray array];
|
|
|
|
|
|
|
|
|
|
fileName = [NSTimeZoneClass getRegionsFile];
|
|
|
|
|
#if defined(__WIN32__)
|
|
|
|
|
file = fopen([fileName fileSystemRepresentation], "rb");
|
|
|
|
|
#else
|
|
|
|
|
file = fopen([fileName fileSystemRepresentation], "r");
|
|
|
|
|
#endif
|
|
|
|
|
if (file == NULL)
|
|
|
|
|
[NSException
|
|
|
|
|
raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"Failed to open time zone regions array file."];
|
|
|
|
|
while (fscanf(file, "%d %s", &index, name) == 2)
|
|
|
|
|
[temp_array[index] addObject: [NSString stringWithCString: name]];
|
|
|
|
|
fclose(file);
|
|
|
|
|
regionsArray = [[NSArray alloc] initWithObjects: temp_array count: 24];
|
|
|
|
|
return regionsArray;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* Return a timezone for the specified offset from GMT.<br />
|
|
|
|
|
* The timezone returned does <em>not</em> use daylight savings time.
|
|
|
|
|
* The actual timezone returned has an offset rounded to the nearest
|
|
|
|
|
* minute.<br />
|
|
|
|
|
* Time zones with an offset of more than +/- 18 hours are disallowed,
|
|
|
|
|
* and nil is returned.
|
|
|
|
|
*/
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (NSTimeZone*) timeZoneForSecondsFromGMT: (int)seconds
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
NSTimeZone *zone;
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
zone = [[GSAbsTimeZone alloc] initWithOffset: seconds];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return AUTORELEASE(zone);
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns a timezone for the specified abbrevition,
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (NSTimeZone*) timeZoneWithAbbreviation: (NSString*)abbreviation
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 20:47:05 +00:00
|
|
|
|
NSTimeZone *zone;
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
|
|
|
|
zone = [self timeZoneWithName: [[self abbreviationDictionary]
|
2002-09-30 17:14:51 +00:00
|
|
|
|
objectForKey: abbreviation] data: nil];
|
2001-01-30 20:47:05 +00:00
|
|
|
|
return zone;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns a timezone for the specified name.
|
|
|
|
|
*/
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (NSTimeZone*) timeZoneWithName: (NSString*)aTimeZoneName
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-31 11:29:55 +00:00
|
|
|
|
NSTimeZone *zone;
|
1999-08-25 16:12:36 +00:00
|
|
|
|
|
2002-09-30 17:14:51 +00:00
|
|
|
|
zone = [defaultPlaceholderTimeZone initWithName: aTimeZoneName data: nil];
|
2001-01-31 11:29:55 +00:00
|
|
|
|
return AUTORELEASE(zone);
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns a timezone for the specified name, created from the supplied data.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
+ (NSTimeZone*) timeZoneWithName: (NSString*)name data: (NSData*)data
|
|
|
|
|
{
|
2002-09-30 17:14:51 +00:00
|
|
|
|
NSTimeZone *zone;
|
|
|
|
|
|
|
|
|
|
zone = [defaultPlaceholderTimeZone initWithName: name data: nil];
|
|
|
|
|
return AUTORELEASE(zone);
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns the abbreviation for this timezone now.
|
|
|
|
|
* Invokes -abbreviationForDate:
|
|
|
|
|
*/
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (NSString*) abbreviation
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return [self abbreviationForDate: [NSDate date]];
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns the abbreviation for this timezone at aDate. This may differ
|
|
|
|
|
* depending on whether daylight savings time is in effect or not.
|
|
|
|
|
*/
|
|
|
|
|
- (NSString*) abbreviationForDate: (NSDate*)aDate
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
NSTimeZoneDetail *detail;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
NSString *abbr;
|
|
|
|
|
|
|
|
|
|
detail = [self timeZoneDetailForDate: aDate];
|
|
|
|
|
abbr = [detail timeZoneAbbreviation];
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return abbr;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (Class) classForCoder
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return NSTimeZoneClass;
|
1995-08-23 16:13:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (id) copyWithZone: (NSZone*)z
|
1995-08-23 16:13:42 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return RETAIN(self);
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns the data with which the receiver was initialised.
|
|
|
|
|
*/
|
|
|
|
|
- (NSData*) data
|
|
|
|
|
{
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (NSString*) description
|
|
|
|
|
{
|
|
|
|
|
return [self name];
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (void) encodeWithCoder: (NSCoder*)aCoder
|
|
|
|
|
{
|
2001-01-31 11:29:55 +00:00
|
|
|
|
[aCoder encodeObject: [self name]];
|
2001-01-30 12:05:02 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (id) init
|
|
|
|
|
{
|
2002-09-30 17:14:51 +00:00
|
|
|
|
return [self initWithName: @"NSLocalTimeZone" data: nil];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (id) initWithCoder: (NSCoder*)aDecoder
|
|
|
|
|
{
|
|
|
|
|
NSString *name;
|
|
|
|
|
|
2001-01-31 11:29:55 +00:00
|
|
|
|
name = [aDecoder decodeObject];
|
2002-09-30 17:14:51 +00:00
|
|
|
|
self = [self initWithName: name data: nil];
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return self;
|
|
|
|
|
}
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* Initialise a timezone with the supplied name. May return a cached
|
|
|
|
|
* timezone object rather than the newly created one.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
- (id) initWithName: (NSString*)name
|
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return [self initWithName: name data: nil];
|
2001-01-30 20:47:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* Initialises a time zone object using the supplied data object.<br />
|
|
|
|
|
* This method is intended for internal use by the NSTimeZone
|
|
|
|
|
* class cluster.
|
|
|
|
|
* Don't use it ... use -initWithName: instead.
|
|
|
|
|
*/
|
2001-01-30 20:47:05 +00:00
|
|
|
|
- (id) initWithName: (NSString*)name data: (NSData*)data
|
|
|
|
|
{
|
|
|
|
|
[self notImplemented: _cmd];
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns a boolean indicating whether daylight savings time is in
|
|
|
|
|
* effect now. Invokes -isDaylightSavingTimeForDate:
|
|
|
|
|
*/
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (BOOL) isDaylightSavingTime
|
|
|
|
|
{
|
|
|
|
|
return [self isDaylightSavingTimeForDate: [NSDate date]];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns a boolean indicating whether daylight savings time is in
|
|
|
|
|
* effect for this time zone at aDate.
|
|
|
|
|
*/
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
NSTimeZoneDetail *detail;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
BOOL isDST;
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
|
|
|
|
detail = [self timeZoneDetailForDate: aDate];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
isDST = [detail isDaylightSavingTimeZone];
|
|
|
|
|
|
|
|
|
|
return isDST;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (BOOL) isEqual: (id)other
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
2001-01-30 12:05:02 +00:00
|
|
|
|
if (other == self)
|
|
|
|
|
return YES;
|
|
|
|
|
if ([other isKindOfClass: NSTimeZoneClass] == NO)
|
|
|
|
|
return NO;
|
|
|
|
|
return [self isEqualToTimeZone: other];
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (BOOL) isEqualToTimeZone: (NSTimeZone*)aTimeZone
|
|
|
|
|
{
|
|
|
|
|
if (aTimeZone == self)
|
|
|
|
|
return YES;
|
2002-10-01 10:25:40 +00:00
|
|
|
|
if ([[self name] isEqual: [aTimeZone name]] == NO)
|
|
|
|
|
return NO;
|
|
|
|
|
if (([self data] == nil && [aTimeZone data] == nil)
|
|
|
|
|
|| [[self name] isEqual: [aTimeZone name]] == YES)
|
2001-01-30 12:05:02 +00:00
|
|
|
|
return YES;
|
|
|
|
|
return NO;
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (NSString*) name
|
|
|
|
|
{
|
|
|
|
|
return [self subclassResponsibility: _cmd];
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2001-01-31 05:58:59 +00:00
|
|
|
|
- (id) replacementObjectForPortCoder: (NSPortCoder*)aCoder
|
|
|
|
|
{
|
|
|
|
|
if ([aCoder isByref] == NO)
|
2002-10-01 10:25:40 +00:00
|
|
|
|
{
|
|
|
|
|
return self;
|
|
|
|
|
}
|
2001-01-31 05:58:59 +00:00
|
|
|
|
return [super replacementObjectForPortCoder: aCoder];
|
|
|
|
|
}
|
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns the number of seconds by which the receiver differs
|
|
|
|
|
* from Greenwich Mean Time at the current date and time.<br />
|
|
|
|
|
* Invokes -secondsFromGMTForDate:
|
|
|
|
|
*/
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (int) secondsFromGMT
|
|
|
|
|
{
|
|
|
|
|
return [self secondsFromGMTForDate: [NSDate date]];
|
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-09-28 09:30:38 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns the number of seconds by which the receiver differs
|
2002-09-30 16:54:29 +00:00
|
|
|
|
* from Greenwich Mean Time at the date aDate.<br />
|
2002-09-28 09:30:38 +00:00
|
|
|
|
* If the time zone uses dayl;ight savings time, the returned value
|
|
|
|
|
* will vary at different times of year.
|
|
|
|
|
*/
|
2002-09-30 16:54:29 +00:00
|
|
|
|
- (int) secondsFromGMTForDate: (NSDate*)aDate
|
2001-01-30 12:05:02 +00:00
|
|
|
|
{
|
|
|
|
|
NSTimeZoneDetail *detail;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
int offset;
|
2001-01-30 12:05:02 +00:00
|
|
|
|
|
2002-09-30 16:54:29 +00:00
|
|
|
|
detail = [self timeZoneDetailForDate: aDate];
|
|
|
|
|
offset = [detail timeZoneSecondsFromGMT];
|
|
|
|
|
|
|
|
|
|
return offset;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (NSArray*) timeZoneDetailArray
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return [self subclassResponsibility: _cmd];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
2001-01-30 12:05:02 +00:00
|
|
|
|
- (NSTimeZoneDetail*) timeZoneDetailForDate: (NSDate*)date
|
|
|
|
|
{
|
|
|
|
|
return [self subclassResponsibility: _cmd];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSString*) timeZoneName
|
|
|
|
|
{
|
|
|
|
|
return [self name];
|
|
|
|
|
}
|
|
|
|
|
|
1997-10-17 13:35:52 +00:00
|
|
|
|
@end
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* This class serves no useful purpose in GNUstep, and is provided
|
|
|
|
|
* solely for backward compatibility with the OpenStep spec. It is
|
|
|
|
|
* missing entirely from MacOS-X.
|
|
|
|
|
*/
|
1997-09-01 21:59:51 +00:00
|
|
|
|
@implementation NSTimeZoneDetail
|
1995-08-23 16:13:42 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (NSString*) description
|
1997-11-03 14:30:13 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return [NSString stringWithFormat: @"%@(%@, %s%d)", [self name],
|
|
|
|
|
[self timeZoneAbbreviation],
|
|
|
|
|
([self isDaylightSavingTimeZone]? "IS_DST, ": ""),
|
|
|
|
|
[self timeZoneSecondsFromGMT]];
|
1997-11-03 14:30:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (BOOL) isDaylightSavingTimeZone
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
[self subclassResponsibility: _cmd];
|
|
|
|
|
return NO;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (NSString*) timeZoneAbbreviation
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
return [self subclassResponsibility: _cmd];
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
1997-09-01 21:59:51 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
- (int) timeZoneSecondsFromGMT
|
1997-10-17 13:35:52 +00:00
|
|
|
|
{
|
1997-09-01 21:59:51 +00:00
|
|
|
|
[self subclassResponsibility: _cmd];
|
|
|
|
|
return 0;
|
1997-10-17 13:35:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
1997-11-03 14:30:13 +00:00
|
|
|
|
|
1997-10-18 19:49:50 +00:00
|
|
|
|
@implementation NSTimeZone (Private)
|
1997-10-17 13:35:52 +00:00
|
|
|
|
|
2001-01-30 20:47:05 +00:00
|
|
|
|
/*
|
|
|
|
|
* When the system becomes multithreaded, we set a flag to say so
|
|
|
|
|
*/
|
|
|
|
|
+ (void) _becomeThreaded: (NSNotification*)notification
|
|
|
|
|
{
|
|
|
|
|
if (zone_mutex == nil)
|
|
|
|
|
{
|
|
|
|
|
zone_mutex = [NSRecursiveLock new];
|
|
|
|
|
}
|
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
|
removeObserver: self
|
|
|
|
|
name: NSWillBecomeMultiThreadedNotification
|
|
|
|
|
object: nil];
|
|
|
|
|
}
|
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (NSString*) getAbbreviationFile
|
1997-10-18 19:49:50 +00:00
|
|
|
|
{
|
|
|
|
|
return [NSBundle pathForGNUstepResource: ABBREV_DICT
|
2002-09-30 16:54:29 +00:00
|
|
|
|
ofType: @""
|
|
|
|
|
inDirectory: TIME_ZONE_DIR];
|
1997-10-18 19:49:50 +00:00
|
|
|
|
}
|
1997-10-17 13:35:52 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (NSString*) getRegionsFile
|
1997-10-18 19:49:50 +00:00
|
|
|
|
{
|
|
|
|
|
return [NSBundle pathForGNUstepResource: REGIONS_FILE
|
2002-09-30 16:54:29 +00:00
|
|
|
|
ofType: @""
|
|
|
|
|
inDirectory: TIME_ZONE_DIR];
|
1997-10-18 19:49:50 +00:00
|
|
|
|
}
|
1997-10-17 13:35:52 +00:00
|
|
|
|
|
1999-08-25 16:12:36 +00:00
|
|
|
|
+ (NSString*) getTimeZoneFile: (NSString *)name
|
1997-10-18 19:49:50 +00:00
|
|
|
|
{
|
2002-09-30 16:54:29 +00:00
|
|
|
|
NSString *dir;
|
|
|
|
|
NSString *path;
|
|
|
|
|
|
|
|
|
|
dir = [NSString stringWithFormat: @"%@/%@", TIME_ZONE_DIR, ZONES_DIR];
|
|
|
|
|
path = [NSBundle pathForGNUstepResource: name ofType: @"" inDirectory: dir];
|
1999-12-10 00:59:40 +00:00
|
|
|
|
return path;
|
1997-10-18 19:49:50 +00:00
|
|
|
|
}
|
1997-10-17 13:35:52 +00:00
|
|
|
|
|
1997-10-18 19:49:50 +00:00
|
|
|
|
@end
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@implementation GSTimeZone
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Perform a binary search of a transitions table to locate the index
|
|
|
|
|
* of the transition to use for a particular time interval since 1970.<br />
|
|
|
|
|
* We locate the index of the highest transition before the date, or zero
|
|
|
|
|
* if there is no transition before it.
|
|
|
|
|
*/
|
2002-10-01 10:25:40 +00:00
|
|
|
|
static TypeInfo*
|
2002-09-30 16:54:29 +00:00
|
|
|
|
chop(NSTimeInterval since, GSTimeZone *zone)
|
|
|
|
|
{
|
|
|
|
|
gss32 when = (gss32)since;
|
|
|
|
|
gss32 *trans = zone->trans;
|
|
|
|
|
unsigned hi = zone->n_trans;
|
|
|
|
|
unsigned lo = 0;
|
2003-01-03 20:14:47 +00:00
|
|
|
|
unsigned int i;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
|
|
|
|
if (hi == 0 || trans[0] > when)
|
|
|
|
|
{
|
|
|
|
|
unsigned n_types = zone->n_types;
|
|
|
|
|
|
|
|
|
|
/*
|
2002-10-01 10:25:40 +00:00
|
|
|
|
* If the first transition is greater than our date,
|
2002-09-30 16:54:29 +00:00
|
|
|
|
* we locate the first non-DST transition and use that offset,
|
|
|
|
|
* or just use the first transition.
|
|
|
|
|
*/
|
|
|
|
|
for (i = 0; i < n_types; i++)
|
|
|
|
|
{
|
|
|
|
|
if (zone->types[i].isdst == 0)
|
|
|
|
|
{
|
|
|
|
|
return &zone->types[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return &zone->types[0];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (i = hi/2; hi != lo; i = (hi + lo)/2)
|
|
|
|
|
{
|
|
|
|
|
if (when < trans[i])
|
|
|
|
|
{
|
|
|
|
|
hi = i;
|
|
|
|
|
}
|
|
|
|
|
else if (when > trans[i])
|
|
|
|
|
{
|
|
|
|
|
lo = ++i;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* If we went off the top of the table or the closest transition
|
|
|
|
|
* was later than our date, we step back to find the last
|
|
|
|
|
* transition before our date.
|
|
|
|
|
*/
|
2003-01-03 20:14:47 +00:00
|
|
|
|
if (i > 0 && (i == zone->n_trans || trans[i] > when))
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
i--;
|
|
|
|
|
}
|
|
|
|
|
return &zone->types[zone->idxs[i]];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static NSTimeZoneDetail*
|
2002-10-01 10:25:40 +00:00
|
|
|
|
newDetailInZoneForType(GSTimeZone *zone, TypeInfo *type)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
GSTimeZoneDetail *detail;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
detail = [GSTimeZoneDetail alloc];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
detail = [detail initWithTimeZone: zone
|
2002-10-01 10:25:40 +00:00
|
|
|
|
withAbbrev: type->abbreviation
|
|
|
|
|
withOffset: type->offset
|
|
|
|
|
withDST: type->isdst];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
return detail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSString*) abbreviationForDate: (NSDate*)aDate
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
TypeInfo *type = chop([aDate timeIntervalSince1970], self);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
return type->abbreviation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSData*) data
|
|
|
|
|
{
|
|
|
|
|
return timeZoneData;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) dealloc
|
|
|
|
|
{
|
|
|
|
|
RELEASE(timeZoneName);
|
2002-10-01 10:25:40 +00:00
|
|
|
|
RELEASE(timeZoneData);
|
|
|
|
|
if (types != 0)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < n_types; i++)
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
RELEASE(types[i].abbreviation);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
NSZoneFree(NSDefaultMallocZone(), types);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
|
|
|
|
[super dealloc];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (id) initWithName: (NSString*)name data: (NSData*)data
|
|
|
|
|
{
|
|
|
|
|
static NSString *fileException = @"GSTimeZoneFileException";
|
|
|
|
|
|
|
|
|
|
timeZoneName = [name copy];
|
2002-10-01 10:25:40 +00:00
|
|
|
|
timeZoneData = [data copy];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
NS_DURING
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
const void *bytes = [timeZoneData bytes];
|
|
|
|
|
unsigned length = [timeZoneData length];
|
|
|
|
|
void *buf;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
unsigned pos = 0;
|
|
|
|
|
unsigned i, charcnt;
|
|
|
|
|
unsigned char *abbr;
|
|
|
|
|
struct tzhead *header;
|
|
|
|
|
|
|
|
|
|
if (length < sizeof(struct tzhead))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: fileException
|
|
|
|
|
format: @"File is too small"];
|
|
|
|
|
}
|
|
|
|
|
header = (struct tzhead *)(bytes + pos);
|
|
|
|
|
pos += sizeof(struct tzhead);
|
|
|
|
|
if (memcmp(header->tzh_magic, TZ_MAGIC, strlen(TZ_MAGIC)) != 0)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: fileException
|
|
|
|
|
format: @"TZ_MAGIC is incorrect"];
|
|
|
|
|
}
|
|
|
|
|
n_trans = GSSwapBigI32ToHost(*(gss32*)header->tzh_timecnt);
|
2002-10-01 10:25:40 +00:00
|
|
|
|
n_types = GSSwapBigI32ToHost(*(gss32*)header->tzh_typecnt);
|
|
|
|
|
charcnt = GSSwapBigI32ToHost(*(gss32*)header->tzh_charcnt);
|
|
|
|
|
|
|
|
|
|
i = pos;
|
|
|
|
|
i += sizeof(gss32)*n_trans;
|
|
|
|
|
if (i > length)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[NSException raise: fileException
|
|
|
|
|
format: @"Transitions list is truncated"];
|
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
i += n_trans;
|
|
|
|
|
if (i > length)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
[NSException raise: fileException
|
|
|
|
|
format: @"Transition indexes are truncated"];
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
i += sizeof(struct ttinfo)*n_types;
|
|
|
|
|
if (i > length)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[NSException raise: fileException
|
|
|
|
|
format: @"Types list is truncated"];
|
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
if (i + charcnt > length)
|
2002-09-30 16:54:29 +00:00
|
|
|
|
{
|
|
|
|
|
[NSException raise: fileException
|
|
|
|
|
format: @"Abbreviations list is truncated"];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2002-10-01 10:25:40 +00:00
|
|
|
|
* Now calculate size we need to store the information
|
|
|
|
|
* for efficient access ... not the same saze as the data
|
|
|
|
|
* we received.
|
2002-09-30 16:54:29 +00:00
|
|
|
|
*/
|
2002-10-01 10:25:40 +00:00
|
|
|
|
i = n_trans * (sizeof(gss32)+1) + n_types * sizeof(TypeInfo);
|
|
|
|
|
buf = NSZoneMalloc(NSDefaultMallocZone(), i);
|
|
|
|
|
types = (TypeInfo*)buf;
|
|
|
|
|
buf += (n_types * sizeof(TypeInfo));
|
|
|
|
|
trans = (gss32*)buf;
|
|
|
|
|
buf += (n_trans * sizeof(gss32));
|
|
|
|
|
idxs = (unsigned char*)buf;
|
|
|
|
|
|
|
|
|
|
/* Read in transitions. */
|
|
|
|
|
for (i = 0; i < n_trans; i++)
|
|
|
|
|
{
|
|
|
|
|
trans[i] = GSSwapBigI32ToHost(*(gss32*)(bytes + pos));
|
|
|
|
|
pos += sizeof(gss32);
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < n_trans; i++)
|
|
|
|
|
{
|
|
|
|
|
idxs[i] = *(unsigned char*)(bytes + pos);
|
|
|
|
|
pos++;
|
|
|
|
|
}
|
2002-09-30 16:54:29 +00:00
|
|
|
|
for (i = 0; i < n_types; i++)
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
struct ttinfo *ptr = (struct ttinfo*)(bytes + pos);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
types[i].isdst = (ptr->isdst != 0 ? YES : NO);
|
|
|
|
|
types[i].abbr_idx = ptr->abbr_idx;
|
|
|
|
|
types[i].offset = decode(ptr->offset);
|
|
|
|
|
pos += sizeof(struct ttinfo);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
2002-10-01 10:25:40 +00:00
|
|
|
|
abbr = (char*)(bytes + pos);
|
|
|
|
|
{
|
|
|
|
|
id abbrevs[charcnt];
|
|
|
|
|
|
|
|
|
|
memset(abbrevs, '\0', sizeof(id)*charcnt);
|
|
|
|
|
for (i = 0; i < n_types; i++)
|
|
|
|
|
{
|
|
|
|
|
int loc = types[i].abbr_idx;
|
|
|
|
|
|
|
|
|
|
if (abbrevs[loc] == nil)
|
|
|
|
|
{
|
|
|
|
|
abbrevs[loc] = [[NSString alloc] initWithCString: abbr + loc];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
RETAIN(abbrevs[loc]);
|
|
|
|
|
}
|
|
|
|
|
types[i].abbreviation = abbrevs[loc];
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex lock];
|
|
|
|
|
}
|
|
|
|
|
[zoneDictionary setObject: self forKey: timeZoneName];
|
|
|
|
|
if (zone_mutex != nil)
|
|
|
|
|
{
|
|
|
|
|
[zone_mutex unlock];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
NS_HANDLER
|
|
|
|
|
{
|
|
|
|
|
DESTROY(self);
|
|
|
|
|
NSLog(@"Unable to obtain time zone `%@'... %@", name, localException);
|
|
|
|
|
if ([localException name] != fileException)
|
|
|
|
|
{
|
|
|
|
|
[localException raise];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
NS_ENDHANDLER
|
|
|
|
|
return self;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (BOOL) isDaylightSavingTimeForDate: (NSDate*)aDate
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
TypeInfo *type = chop([aDate timeIntervalSince1970], self);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
return type->isdst;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSString*) name
|
|
|
|
|
{
|
|
|
|
|
return timeZoneName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (int) secondsFromGMTForDate: (NSDate*)aDate
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
TypeInfo *type = chop([aDate timeIntervalSince1970], self);
|
2002-09-30 16:54:29 +00:00
|
|
|
|
|
2002-10-01 10:25:40 +00:00
|
|
|
|
return type->offset;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSArray*) timeZoneDetailArray
|
|
|
|
|
{
|
|
|
|
|
NSTimeZoneDetail *details[n_types];
|
|
|
|
|
unsigned i;
|
|
|
|
|
NSArray *array;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < n_types; i++)
|
|
|
|
|
{
|
|
|
|
|
details[i] = newDetailInZoneForType(self, &types[i]);
|
|
|
|
|
}
|
|
|
|
|
array = [NSArray arrayWithObjects: details count: n_types];
|
|
|
|
|
for (i = 0; i < n_types; i++)
|
|
|
|
|
{
|
|
|
|
|
RELEASE(details[i]);
|
|
|
|
|
}
|
|
|
|
|
return array;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSTimeZoneDetail*) timeZoneDetailForDate: (NSDate*)aDate
|
|
|
|
|
{
|
2002-10-01 10:25:40 +00:00
|
|
|
|
TypeInfo *type;
|
2002-09-30 16:54:29 +00:00
|
|
|
|
NSTimeZoneDetail *detail;
|
|
|
|
|
|
|
|
|
|
type = chop([aDate timeIntervalSince1970], self);
|
|
|
|
|
detail = newDetailInZoneForType(self, type);
|
|
|
|
|
return AUTORELEASE(detail);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSString*) timeZoneName
|
|
|
|
|
{
|
|
|
|
|
return timeZoneName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|