2009-03-04 04:28:35 +01:00
|
|
|
#ifndef PRIVATE_H
|
|
|
|
|
|
|
|
#define PRIVATE_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This file is in the public domain, so clarified as of
|
|
|
|
** 1996-06-05 by Arthur David Olson.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This header is for use ONLY with the time conversion code.
|
|
|
|
** There is no guarantee that it will remain unchanged,
|
|
|
|
** or that it will remain at all.
|
|
|
|
** Do NOT copy it to any system include directory.
|
|
|
|
** Thank you!
|
|
|
|
*/
|
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
#define GRANDPARENTED "Local time zone must be set--see zic manual page"
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Defaults for preprocessor symbols.
|
2014-06-19 22:54:10 +02:00
|
|
|
** You can override these in your C compiler options, e.g. '-DHAVE_ADJTIME=0'.
|
2009-03-04 04:28:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HAVE_ADJTIME
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_ADJTIME 1
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_ADJTIME */
|
|
|
|
|
|
|
|
#ifndef HAVE_GETTEXT
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_GETTEXT 0
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_GETTEXT */
|
|
|
|
|
|
|
|
#ifndef HAVE_INCOMPATIBLE_CTIME_R
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_INCOMPATIBLE_CTIME_R 0
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined INCOMPATIBLE_CTIME_R */
|
|
|
|
|
2014-02-28 12:46:03 +01:00
|
|
|
#ifndef HAVE_LINK
|
|
|
|
#define HAVE_LINK 1
|
|
|
|
#endif /* !defined HAVE_LINK */
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef HAVE_SETTIMEOFDAY
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_SETTIMEOFDAY 3
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_SETTIMEOFDAY */
|
|
|
|
|
|
|
|
#ifndef HAVE_SYMLINK
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_SYMLINK 1
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_SYMLINK */
|
|
|
|
|
|
|
|
#ifndef HAVE_SYS_STAT_H
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_SYS_STAT_H 1
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_SYS_STAT_H */
|
|
|
|
|
|
|
|
#ifndef HAVE_SYS_WAIT_H
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_SYS_WAIT_H 1
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_SYS_WAIT_H */
|
|
|
|
|
|
|
|
#ifndef HAVE_UNISTD_H
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_UNISTD_H 1
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_UNISTD_H */
|
|
|
|
|
|
|
|
#ifndef HAVE_UTMPX_H
|
2013-07-13 02:31:11 +02:00
|
|
|
#define HAVE_UTMPX_H 0
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_UTMPX_H */
|
|
|
|
|
2014-06-19 22:54:10 +02:00
|
|
|
#if !defined(__ANDROID__)
|
2013-07-13 02:31:11 +02:00
|
|
|
#ifndef LOCALE_HOME
|
|
|
|
#define LOCALE_HOME "/usr/lib/locale"
|
|
|
|
#endif /* !defined LOCALE_HOME */
|
2014-06-19 22:54:10 +02:00
|
|
|
#endif // __ANDROID__
|
2013-07-13 02:31:11 +02:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#if HAVE_INCOMPATIBLE_CTIME_R
|
|
|
|
#define asctime_r _incompatible_asctime_r
|
|
|
|
#define ctime_r _incompatible_ctime_r
|
|
|
|
#endif /* HAVE_INCOMPATIBLE_CTIME_R */
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Nested includes
|
|
|
|
*/
|
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
#include "sys/types.h" /* for time_t */
|
2009-03-04 04:28:35 +01:00
|
|
|
#include "stdio.h"
|
|
|
|
#include "errno.h"
|
|
|
|
#include "string.h"
|
2013-07-13 02:31:11 +02:00
|
|
|
#include "limits.h" /* for CHAR_BIT et al. */
|
2009-03-04 04:28:35 +01:00
|
|
|
#include "time.h"
|
|
|
|
#include "stdlib.h"
|
|
|
|
|
|
|
|
#if HAVE_GETTEXT
|
|
|
|
#include "libintl.h"
|
|
|
|
#endif /* HAVE_GETTEXT */
|
|
|
|
|
|
|
|
#if HAVE_SYS_WAIT_H
|
2013-07-13 02:31:11 +02:00
|
|
|
#include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* HAVE_SYS_WAIT_H */
|
|
|
|
|
|
|
|
#ifndef WIFEXITED
|
2013-07-13 02:31:11 +02:00
|
|
|
#define WIFEXITED(status) (((status) & 0xff) == 0)
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined WIFEXITED */
|
|
|
|
#ifndef WEXITSTATUS
|
2013-07-13 02:31:11 +02:00
|
|
|
#define WEXITSTATUS(status) (((status) >> 8) & 0xff)
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined WEXITSTATUS */
|
|
|
|
|
|
|
|
#if HAVE_UNISTD_H
|
2013-07-13 02:31:11 +02:00
|
|
|
#include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* HAVE_UNISTD_H */
|
|
|
|
|
|
|
|
#ifndef F_OK
|
2013-07-13 02:31:11 +02:00
|
|
|
#define F_OK 0
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined F_OK */
|
|
|
|
#ifndef R_OK
|
2013-07-13 02:31:11 +02:00
|
|
|
#define R_OK 4
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined R_OK */
|
|
|
|
|
|
|
|
/* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */
|
|
|
|
#define is_digit(c) ((unsigned)(c) - '0' <= 9)
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Define HAVE_STDINT_H's default value here, rather than at the
|
|
|
|
** start, since __GLIBC__'s value depends on previously-included
|
|
|
|
** files.
|
|
|
|
** (glibc 2.1 and later have stdint.h, even with pre-C99 compilers.)
|
|
|
|
*/
|
|
|
|
#ifndef HAVE_STDINT_H
|
|
|
|
#define HAVE_STDINT_H \
|
2014-06-19 22:54:10 +02:00
|
|
|
(199901 <= __STDC_VERSION__ \
|
|
|
|
|| 2 < __GLIBC__ + (1 <= __GLIBC_MINOR__) \
|
|
|
|
|| __CYGWIN__)
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined HAVE_STDINT_H */
|
|
|
|
|
|
|
|
#if HAVE_STDINT_H
|
|
|
|
#include "stdint.h"
|
|
|
|
#endif /* !HAVE_STDINT_H */
|
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
#ifndef HAVE_INTTYPES_H
|
|
|
|
# define HAVE_INTTYPES_H HAVE_STDINT_H
|
|
|
|
#endif
|
|
|
|
#if HAVE_INTTYPES_H
|
|
|
|
# include <inttypes.h>
|
|
|
|
#endif
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef INT_FAST64_MAX
|
|
|
|
/* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */
|
|
|
|
#if defined LLONG_MAX || defined __LONG_LONG_MAX__
|
2013-07-13 02:31:11 +02:00
|
|
|
typedef long long int_fast64_t;
|
|
|
|
# ifdef LLONG_MAX
|
|
|
|
# define INT_FAST64_MIN LLONG_MIN
|
|
|
|
# define INT_FAST64_MAX LLONG_MAX
|
|
|
|
# else
|
|
|
|
# define INT_FAST64_MIN __LONG_LONG_MIN__
|
|
|
|
# define INT_FAST64_MAX __LONG_LONG_MAX__
|
|
|
|
# endif
|
|
|
|
# define SCNdFAST64 "lld"
|
2009-03-04 04:28:35 +01:00
|
|
|
#else /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */
|
|
|
|
#if (LONG_MAX >> 31) < 0xffffffff
|
|
|
|
Please use a compiler that supports a 64-bit integer type (or wider);
|
|
|
|
you may need to compile with "-DHAVE_STDINT_H".
|
|
|
|
#endif /* (LONG_MAX >> 31) < 0xffffffff */
|
2013-07-13 02:31:11 +02:00
|
|
|
typedef long int_fast64_t;
|
|
|
|
# define INT_FAST64_MIN LONG_MIN
|
|
|
|
# define INT_FAST64_MAX LONG_MAX
|
|
|
|
# define SCNdFAST64 "ld"
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */
|
|
|
|
#endif /* !defined INT_FAST64_MAX */
|
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
#ifndef INT_FAST32_MAX
|
|
|
|
# if INT_MAX >> 31 == 0
|
|
|
|
typedef long int_fast32_t;
|
|
|
|
# else
|
|
|
|
typedef int int_fast32_t;
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INTMAX_MAX
|
|
|
|
# if defined LLONG_MAX || defined __LONG_LONG_MAX__
|
|
|
|
typedef long long intmax_t;
|
Upgrade to tzcode2013f plus Android modifications (from tzcode2013d plus Android modifications).
localtime.c and strftime.c are still quite different from upstream because of
our extensions, but the other files continue to be identical, and the two
exceptions should be otherwise identical.
From the tzcode2013e release notes:
Changes affecting Godthab time stamps after 2037 if version mismatch
Allow POSIX-like TZ strings where the transition time's hour can
range from -167 through 167, instead of the POSIX-required 0
through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the
new Fiji rules. This is a more-compact way to represent
far-future time stamps for America/Godthab, America/Santiago,
Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem,
Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by
this change. (Derived from a suggestion by Arthur David Olson.)
Allow POSIX-like TZ strings where daylight saving time is in
effect all year. E.g., TZ='WART4WARST,J1/0,J365/25' for Western
Argentina Summer Time all year. This supports a more-compact way
to represent the 2013d data for America/Argentina/San_Luis.
Because of the change for San Luis noted above this change does not
affect the current data. (Thanks to Andrew Main (Zefram) for
suggestions that improved this change.)
Where these two TZ changes take effect, there is a minor extension
to the tz file format in that it allows new values for the
embedded TZ-format string, and the tz file format version number
has therefore been increased from 2 to 3 as a precaution.
Version-2-based client code should continue to work as before for
all time stamps before 2038. Existing version-2-based client code
(tzcode, GNU/Linux, Solaris) has been tested on version-3-format
files, and typically works in practice even for time stamps after
2037; the only known exception is America/Godthab.
Changes affecting API
Support for floating-point time_t has been removed.
It was always dicey, and POSIX no longer requires it.
(Thanks to Eric Blake for suggesting to the POSIX committee to
remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
Heninger, Arthur David Olson, and Alois Treindl, for reporting
bugs and elucidating some of the corners of the old floating-point
implementation.)
The signatures of 'offtime', 'timeoff', and 'gtime' have been
changed back to the old practice of using 'long' to represent UT
offsets. This had been inadvertently and mistakenly changed to
'int_fast32_t'. (Thanks to Christos Zoulos.)
The code avoids undefined behavior on integer overflow in some
more places, including gmtime, localtime, mktime and zdump.
Changes affecting code internals
Minor changes pacify GCC 4.7.3 and GCC 4.8.1.
Changes affecting documentation and commentary
Documentation and commentary is more careful to distinguish UT in
general from UTC in particular. (Thanks to Steve Allen.)
From the tzcode2013f release notes:
Changes affecting API
The types of the global variables 'timezone' and 'altzone' (if present)
have been changed back to 'long'. This is required for 'timezone'
by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
These variables were originally 'long' in the tz code, but were
mistakenly changed to 'time_t' in 1987; nobody reported the
incompatibility until now. The difference matters on x32, where
'long' is 32 bits and 'time_t' is 64. (Thanks to Elliott Hughes.)
Change-Id: I14937c42a391ddb865e4d89f0783961bcc6baa21
2013-09-27 09:04:30 +02:00
|
|
|
# define strtoimax strtoll
|
2013-07-13 02:31:11 +02:00
|
|
|
# define PRIdMAX "lld"
|
Upgrade to tzcode2013f plus Android modifications (from tzcode2013d plus Android modifications).
localtime.c and strftime.c are still quite different from upstream because of
our extensions, but the other files continue to be identical, and the two
exceptions should be otherwise identical.
From the tzcode2013e release notes:
Changes affecting Godthab time stamps after 2037 if version mismatch
Allow POSIX-like TZ strings where the transition time's hour can
range from -167 through 167, instead of the POSIX-required 0
through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the
new Fiji rules. This is a more-compact way to represent
far-future time stamps for America/Godthab, America/Santiago,
Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem,
Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by
this change. (Derived from a suggestion by Arthur David Olson.)
Allow POSIX-like TZ strings where daylight saving time is in
effect all year. E.g., TZ='WART4WARST,J1/0,J365/25' for Western
Argentina Summer Time all year. This supports a more-compact way
to represent the 2013d data for America/Argentina/San_Luis.
Because of the change for San Luis noted above this change does not
affect the current data. (Thanks to Andrew Main (Zefram) for
suggestions that improved this change.)
Where these two TZ changes take effect, there is a minor extension
to the tz file format in that it allows new values for the
embedded TZ-format string, and the tz file format version number
has therefore been increased from 2 to 3 as a precaution.
Version-2-based client code should continue to work as before for
all time stamps before 2038. Existing version-2-based client code
(tzcode, GNU/Linux, Solaris) has been tested on version-3-format
files, and typically works in practice even for time stamps after
2037; the only known exception is America/Godthab.
Changes affecting API
Support for floating-point time_t has been removed.
It was always dicey, and POSIX no longer requires it.
(Thanks to Eric Blake for suggesting to the POSIX committee to
remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
Heninger, Arthur David Olson, and Alois Treindl, for reporting
bugs and elucidating some of the corners of the old floating-point
implementation.)
The signatures of 'offtime', 'timeoff', and 'gtime' have been
changed back to the old practice of using 'long' to represent UT
offsets. This had been inadvertently and mistakenly changed to
'int_fast32_t'. (Thanks to Christos Zoulos.)
The code avoids undefined behavior on integer overflow in some
more places, including gmtime, localtime, mktime and zdump.
Changes affecting code internals
Minor changes pacify GCC 4.7.3 and GCC 4.8.1.
Changes affecting documentation and commentary
Documentation and commentary is more careful to distinguish UT in
general from UTC in particular. (Thanks to Steve Allen.)
From the tzcode2013f release notes:
Changes affecting API
The types of the global variables 'timezone' and 'altzone' (if present)
have been changed back to 'long'. This is required for 'timezone'
by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
These variables were originally 'long' in the tz code, but were
mistakenly changed to 'time_t' in 1987; nobody reported the
incompatibility until now. The difference matters on x32, where
'long' is 32 bits and 'time_t' is 64. (Thanks to Elliott Hughes.)
Change-Id: I14937c42a391ddb865e4d89f0783961bcc6baa21
2013-09-27 09:04:30 +02:00
|
|
|
# ifdef LLONG_MAX
|
|
|
|
# define INTMAX_MAX LLONG_MAX
|
|
|
|
# define INTMAX_MIN LLONG_MIN
|
|
|
|
# else
|
|
|
|
# define INTMAX_MAX __LONG_LONG_MAX__
|
|
|
|
# define INTMAX_MIN __LONG_LONG_MIN__
|
|
|
|
# endif
|
2013-07-13 02:31:11 +02:00
|
|
|
# else
|
|
|
|
typedef long intmax_t;
|
Upgrade to tzcode2013f plus Android modifications (from tzcode2013d plus Android modifications).
localtime.c and strftime.c are still quite different from upstream because of
our extensions, but the other files continue to be identical, and the two
exceptions should be otherwise identical.
From the tzcode2013e release notes:
Changes affecting Godthab time stamps after 2037 if version mismatch
Allow POSIX-like TZ strings where the transition time's hour can
range from -167 through 167, instead of the POSIX-required 0
through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the
new Fiji rules. This is a more-compact way to represent
far-future time stamps for America/Godthab, America/Santiago,
Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem,
Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by
this change. (Derived from a suggestion by Arthur David Olson.)
Allow POSIX-like TZ strings where daylight saving time is in
effect all year. E.g., TZ='WART4WARST,J1/0,J365/25' for Western
Argentina Summer Time all year. This supports a more-compact way
to represent the 2013d data for America/Argentina/San_Luis.
Because of the change for San Luis noted above this change does not
affect the current data. (Thanks to Andrew Main (Zefram) for
suggestions that improved this change.)
Where these two TZ changes take effect, there is a minor extension
to the tz file format in that it allows new values for the
embedded TZ-format string, and the tz file format version number
has therefore been increased from 2 to 3 as a precaution.
Version-2-based client code should continue to work as before for
all time stamps before 2038. Existing version-2-based client code
(tzcode, GNU/Linux, Solaris) has been tested on version-3-format
files, and typically works in practice even for time stamps after
2037; the only known exception is America/Godthab.
Changes affecting API
Support for floating-point time_t has been removed.
It was always dicey, and POSIX no longer requires it.
(Thanks to Eric Blake for suggesting to the POSIX committee to
remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
Heninger, Arthur David Olson, and Alois Treindl, for reporting
bugs and elucidating some of the corners of the old floating-point
implementation.)
The signatures of 'offtime', 'timeoff', and 'gtime' have been
changed back to the old practice of using 'long' to represent UT
offsets. This had been inadvertently and mistakenly changed to
'int_fast32_t'. (Thanks to Christos Zoulos.)
The code avoids undefined behavior on integer overflow in some
more places, including gmtime, localtime, mktime and zdump.
Changes affecting code internals
Minor changes pacify GCC 4.7.3 and GCC 4.8.1.
Changes affecting documentation and commentary
Documentation and commentary is more careful to distinguish UT in
general from UTC in particular. (Thanks to Steve Allen.)
From the tzcode2013f release notes:
Changes affecting API
The types of the global variables 'timezone' and 'altzone' (if present)
have been changed back to 'long'. This is required for 'timezone'
by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
These variables were originally 'long' in the tz code, but were
mistakenly changed to 'time_t' in 1987; nobody reported the
incompatibility until now. The difference matters on x32, where
'long' is 32 bits and 'time_t' is 64. (Thanks to Elliott Hughes.)
Change-Id: I14937c42a391ddb865e4d89f0783961bcc6baa21
2013-09-27 09:04:30 +02:00
|
|
|
# define strtoimax strtol
|
2013-07-13 02:31:11 +02:00
|
|
|
# define PRIdMAX "ld"
|
Upgrade to tzcode2013f plus Android modifications (from tzcode2013d plus Android modifications).
localtime.c and strftime.c are still quite different from upstream because of
our extensions, but the other files continue to be identical, and the two
exceptions should be otherwise identical.
From the tzcode2013e release notes:
Changes affecting Godthab time stamps after 2037 if version mismatch
Allow POSIX-like TZ strings where the transition time's hour can
range from -167 through 167, instead of the POSIX-required 0
through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the
new Fiji rules. This is a more-compact way to represent
far-future time stamps for America/Godthab, America/Santiago,
Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem,
Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by
this change. (Derived from a suggestion by Arthur David Olson.)
Allow POSIX-like TZ strings where daylight saving time is in
effect all year. E.g., TZ='WART4WARST,J1/0,J365/25' for Western
Argentina Summer Time all year. This supports a more-compact way
to represent the 2013d data for America/Argentina/San_Luis.
Because of the change for San Luis noted above this change does not
affect the current data. (Thanks to Andrew Main (Zefram) for
suggestions that improved this change.)
Where these two TZ changes take effect, there is a minor extension
to the tz file format in that it allows new values for the
embedded TZ-format string, and the tz file format version number
has therefore been increased from 2 to 3 as a precaution.
Version-2-based client code should continue to work as before for
all time stamps before 2038. Existing version-2-based client code
(tzcode, GNU/Linux, Solaris) has been tested on version-3-format
files, and typically works in practice even for time stamps after
2037; the only known exception is America/Godthab.
Changes affecting API
Support for floating-point time_t has been removed.
It was always dicey, and POSIX no longer requires it.
(Thanks to Eric Blake for suggesting to the POSIX committee to
remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
Heninger, Arthur David Olson, and Alois Treindl, for reporting
bugs and elucidating some of the corners of the old floating-point
implementation.)
The signatures of 'offtime', 'timeoff', and 'gtime' have been
changed back to the old practice of using 'long' to represent UT
offsets. This had been inadvertently and mistakenly changed to
'int_fast32_t'. (Thanks to Christos Zoulos.)
The code avoids undefined behavior on integer overflow in some
more places, including gmtime, localtime, mktime and zdump.
Changes affecting code internals
Minor changes pacify GCC 4.7.3 and GCC 4.8.1.
Changes affecting documentation and commentary
Documentation and commentary is more careful to distinguish UT in
general from UTC in particular. (Thanks to Steve Allen.)
From the tzcode2013f release notes:
Changes affecting API
The types of the global variables 'timezone' and 'altzone' (if present)
have been changed back to 'long'. This is required for 'timezone'
by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
These variables were originally 'long' in the tz code, but were
mistakenly changed to 'time_t' in 1987; nobody reported the
incompatibility until now. The difference matters on x32, where
'long' is 32 bits and 'time_t' is 64. (Thanks to Elliott Hughes.)
Change-Id: I14937c42a391ddb865e4d89f0783961bcc6baa21
2013-09-27 09:04:30 +02:00
|
|
|
# define INTMAX_MAX LONG_MAX
|
|
|
|
# define INTMAX_MIN LONG_MIN
|
2013-07-13 02:31:11 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UINTMAX_MAX
|
|
|
|
# if defined ULLONG_MAX || defined __LONG_LONG_MAX__
|
|
|
|
typedef unsigned long long uintmax_t;
|
|
|
|
# define PRIuMAX "llu"
|
|
|
|
# else
|
|
|
|
typedef unsigned long uintmax_t;
|
|
|
|
# define PRIuMAX "lu"
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef INT32_MAX
|
|
|
|
#define INT32_MAX 0x7fffffff
|
|
|
|
#endif /* !defined INT32_MAX */
|
|
|
|
#ifndef INT32_MIN
|
|
|
|
#define INT32_MIN (-1 - INT32_MAX)
|
|
|
|
#endif /* !defined INT32_MIN */
|
|
|
|
|
2014-06-19 22:54:10 +02:00
|
|
|
#ifndef SIZE_MAX
|
|
|
|
#define SIZE_MAX ((size_t) -1)
|
|
|
|
#endif
|
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
#if 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
|
|
|
|
# define ATTRIBUTE_CONST __attribute__ ((const))
|
|
|
|
# define ATTRIBUTE_PURE __attribute__ ((__pure__))
|
Upgrade to tzcode2013f plus Android modifications (from tzcode2013d plus Android modifications).
localtime.c and strftime.c are still quite different from upstream because of
our extensions, but the other files continue to be identical, and the two
exceptions should be otherwise identical.
From the tzcode2013e release notes:
Changes affecting Godthab time stamps after 2037 if version mismatch
Allow POSIX-like TZ strings where the transition time's hour can
range from -167 through 167, instead of the POSIX-required 0
through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the
new Fiji rules. This is a more-compact way to represent
far-future time stamps for America/Godthab, America/Santiago,
Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem,
Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by
this change. (Derived from a suggestion by Arthur David Olson.)
Allow POSIX-like TZ strings where daylight saving time is in
effect all year. E.g., TZ='WART4WARST,J1/0,J365/25' for Western
Argentina Summer Time all year. This supports a more-compact way
to represent the 2013d data for America/Argentina/San_Luis.
Because of the change for San Luis noted above this change does not
affect the current data. (Thanks to Andrew Main (Zefram) for
suggestions that improved this change.)
Where these two TZ changes take effect, there is a minor extension
to the tz file format in that it allows new values for the
embedded TZ-format string, and the tz file format version number
has therefore been increased from 2 to 3 as a precaution.
Version-2-based client code should continue to work as before for
all time stamps before 2038. Existing version-2-based client code
(tzcode, GNU/Linux, Solaris) has been tested on version-3-format
files, and typically works in practice even for time stamps after
2037; the only known exception is America/Godthab.
Changes affecting API
Support for floating-point time_t has been removed.
It was always dicey, and POSIX no longer requires it.
(Thanks to Eric Blake for suggesting to the POSIX committee to
remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
Heninger, Arthur David Olson, and Alois Treindl, for reporting
bugs and elucidating some of the corners of the old floating-point
implementation.)
The signatures of 'offtime', 'timeoff', and 'gtime' have been
changed back to the old practice of using 'long' to represent UT
offsets. This had been inadvertently and mistakenly changed to
'int_fast32_t'. (Thanks to Christos Zoulos.)
The code avoids undefined behavior on integer overflow in some
more places, including gmtime, localtime, mktime and zdump.
Changes affecting code internals
Minor changes pacify GCC 4.7.3 and GCC 4.8.1.
Changes affecting documentation and commentary
Documentation and commentary is more careful to distinguish UT in
general from UTC in particular. (Thanks to Steve Allen.)
From the tzcode2013f release notes:
Changes affecting API
The types of the global variables 'timezone' and 'altzone' (if present)
have been changed back to 'long'. This is required for 'timezone'
by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
These variables were originally 'long' in the tz code, but were
mistakenly changed to 'time_t' in 1987; nobody reported the
incompatibility until now. The difference matters on x32, where
'long' is 32 bits and 'time_t' is 64. (Thanks to Elliott Hughes.)
Change-Id: I14937c42a391ddb865e4d89f0783961bcc6baa21
2013-09-27 09:04:30 +02:00
|
|
|
# define ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
|
2013-07-13 02:31:11 +02:00
|
|
|
#else
|
|
|
|
# define ATTRIBUTE_CONST /* empty */
|
|
|
|
# define ATTRIBUTE_PURE /* empty */
|
Upgrade to tzcode2013f plus Android modifications (from tzcode2013d plus Android modifications).
localtime.c and strftime.c are still quite different from upstream because of
our extensions, but the other files continue to be identical, and the two
exceptions should be otherwise identical.
From the tzcode2013e release notes:
Changes affecting Godthab time stamps after 2037 if version mismatch
Allow POSIX-like TZ strings where the transition time's hour can
range from -167 through 167, instead of the POSIX-required 0
through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the
new Fiji rules. This is a more-compact way to represent
far-future time stamps for America/Godthab, America/Santiago,
Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem,
Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by
this change. (Derived from a suggestion by Arthur David Olson.)
Allow POSIX-like TZ strings where daylight saving time is in
effect all year. E.g., TZ='WART4WARST,J1/0,J365/25' for Western
Argentina Summer Time all year. This supports a more-compact way
to represent the 2013d data for America/Argentina/San_Luis.
Because of the change for San Luis noted above this change does not
affect the current data. (Thanks to Andrew Main (Zefram) for
suggestions that improved this change.)
Where these two TZ changes take effect, there is a minor extension
to the tz file format in that it allows new values for the
embedded TZ-format string, and the tz file format version number
has therefore been increased from 2 to 3 as a precaution.
Version-2-based client code should continue to work as before for
all time stamps before 2038. Existing version-2-based client code
(tzcode, GNU/Linux, Solaris) has been tested on version-3-format
files, and typically works in practice even for time stamps after
2037; the only known exception is America/Godthab.
Changes affecting API
Support for floating-point time_t has been removed.
It was always dicey, and POSIX no longer requires it.
(Thanks to Eric Blake for suggesting to the POSIX committee to
remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
Heninger, Arthur David Olson, and Alois Treindl, for reporting
bugs and elucidating some of the corners of the old floating-point
implementation.)
The signatures of 'offtime', 'timeoff', and 'gtime' have been
changed back to the old practice of using 'long' to represent UT
offsets. This had been inadvertently and mistakenly changed to
'int_fast32_t'. (Thanks to Christos Zoulos.)
The code avoids undefined behavior on integer overflow in some
more places, including gmtime, localtime, mktime and zdump.
Changes affecting code internals
Minor changes pacify GCC 4.7.3 and GCC 4.8.1.
Changes affecting documentation and commentary
Documentation and commentary is more careful to distinguish UT in
general from UTC in particular. (Thanks to Steve Allen.)
From the tzcode2013f release notes:
Changes affecting API
The types of the global variables 'timezone' and 'altzone' (if present)
have been changed back to 'long'. This is required for 'timezone'
by POSIX, and for 'altzone' by common practice, e.g., Solaris 11.
These variables were originally 'long' in the tz code, but were
mistakenly changed to 'time_t' in 1987; nobody reported the
incompatibility until now. The difference matters on x32, where
'long' is 32 bits and 'time_t' is 64. (Thanks to Elliott Hughes.)
Change-Id: I14937c42a391ddb865e4d89f0783961bcc6baa21
2013-09-27 09:04:30 +02:00
|
|
|
# define ATTRIBUTE_FORMAT(spec) /* empty */
|
2013-07-13 02:31:11 +02:00
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
#if !defined _Noreturn && __STDC_VERSION__ < 201112
|
|
|
|
# if 2 < __GNUC__ + (8 <= __GNUC_MINOR__)
|
|
|
|
# define _Noreturn __attribute__ ((__noreturn__))
|
|
|
|
# else
|
|
|
|
# define _Noreturn
|
|
|
|
# endif
|
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
#if __STDC_VERSION__ < 199901 && !defined restrict
|
|
|
|
# define restrict /* empty */
|
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
/*
|
2013-07-13 02:31:11 +02:00
|
|
|
** Workarounds for compilers/systems.
|
2009-03-04 04:28:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Some time.h implementations don't declare asctime_r.
|
|
|
|
** Others might define it as a macro.
|
|
|
|
** Fix the former without affecting the latter.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef asctime_r
|
2013-07-13 02:31:11 +02:00
|
|
|
extern char * asctime_r(struct tm const *, char *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Compile with -Dtime_tz=T to build the tz package with a private
|
|
|
|
** time_t type equivalent to T rather than the system-supplied time_t.
|
|
|
|
** This debugging feature can test unusual design decisions
|
|
|
|
** (e.g., time_t wider than 'long', or unsigned time_t) even on
|
|
|
|
** typical platforms.
|
|
|
|
*/
|
|
|
|
#ifdef time_tz
|
|
|
|
static time_t sys_time(time_t *x) { return time(x); }
|
|
|
|
|
|
|
|
# undef ctime
|
|
|
|
# define ctime tz_ctime
|
|
|
|
# undef ctime_r
|
|
|
|
# define ctime_r tz_ctime_r
|
|
|
|
# undef difftime
|
|
|
|
# define difftime tz_difftime
|
|
|
|
# undef gmtime
|
|
|
|
# define gmtime tz_gmtime
|
|
|
|
# undef gmtime_r
|
|
|
|
# define gmtime_r tz_gmtime_r
|
|
|
|
# undef localtime
|
|
|
|
# define localtime tz_localtime
|
|
|
|
# undef localtime_r
|
|
|
|
# define localtime_r tz_localtime_r
|
|
|
|
# undef mktime
|
|
|
|
# define mktime tz_mktime
|
|
|
|
# undef time
|
|
|
|
# define time tz_time
|
|
|
|
# undef time_t
|
|
|
|
# define time_t tz_time_t
|
|
|
|
|
|
|
|
typedef time_tz time_t;
|
|
|
|
|
|
|
|
char *ctime(time_t const *);
|
|
|
|
char *ctime_r(time_t const *, char *);
|
|
|
|
double difftime(time_t, time_t);
|
|
|
|
struct tm *gmtime(time_t const *);
|
|
|
|
struct tm *gmtime_r(time_t const *restrict, struct tm *restrict);
|
|
|
|
struct tm *localtime(time_t const *);
|
|
|
|
struct tm *localtime_r(time_t const *restrict, struct tm *restrict);
|
|
|
|
time_t mktime(struct tm *);
|
|
|
|
|
|
|
|
static time_t
|
|
|
|
time(time_t *p)
|
|
|
|
{
|
|
|
|
time_t r = sys_time(0);
|
|
|
|
if (p)
|
|
|
|
*p = r;
|
|
|
|
return r;
|
|
|
|
}
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Private function declarations.
|
|
|
|
*/
|
|
|
|
|
2013-07-13 02:31:11 +02:00
|
|
|
char * icatalloc(char * old, const char * new);
|
|
|
|
char * icpyalloc(const char * string);
|
|
|
|
const char * scheck(const char * string, const char * format);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Finally, some convenience items.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TRUE
|
2013-07-13 02:31:11 +02:00
|
|
|
#define TRUE 1
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined TRUE */
|
|
|
|
|
|
|
|
#ifndef FALSE
|
2013-07-13 02:31:11 +02:00
|
|
|
#define FALSE 0
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined FALSE */
|
|
|
|
|
|
|
|
#ifndef TYPE_BIT
|
2013-07-13 02:31:11 +02:00
|
|
|
#define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined TYPE_BIT */
|
|
|
|
|
|
|
|
#ifndef TYPE_SIGNED
|
|
|
|
#define TYPE_SIGNED(type) (((type) -1) < 0)
|
|
|
|
#endif /* !defined TYPE_SIGNED */
|
|
|
|
|
2013-08-22 23:13:50 +02:00
|
|
|
/* The minimum and maximum finite time values. */
|
|
|
|
static time_t const time_t_min =
|
|
|
|
(TYPE_SIGNED(time_t)
|
|
|
|
? (time_t) -1 << (CHAR_BIT * sizeof (time_t) - 1)
|
|
|
|
: 0);
|
|
|
|
static time_t const time_t_max =
|
|
|
|
(TYPE_SIGNED(time_t)
|
|
|
|
? - (~ 0 < 0) - ((time_t) -1 << (CHAR_BIT * sizeof (time_t) - 1))
|
|
|
|
: -1);
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef INT_STRLEN_MAXIMUM
|
|
|
|
/*
|
|
|
|
** 302 / 1000 is log10(2.0) rounded up.
|
|
|
|
** Subtract one for the sign bit if the type is signed;
|
|
|
|
** add one for integer division truncation;
|
|
|
|
** add one more for a minus sign if the type is signed.
|
|
|
|
*/
|
|
|
|
#define INT_STRLEN_MAXIMUM(type) \
|
2013-07-13 02:31:11 +02:00
|
|
|
((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \
|
|
|
|
1 + TYPE_SIGNED(type))
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined INT_STRLEN_MAXIMUM */
|
|
|
|
|
|
|
|
/*
|
|
|
|
** INITIALIZE(x)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef lint
|
2014-06-19 22:54:10 +02:00
|
|
|
# define INITIALIZE(x) ((x) = 0)
|
|
|
|
#else
|
|
|
|
# define INITIALIZE(x)
|
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** For the benefit of GNU folk...
|
2014-06-19 22:54:10 +02:00
|
|
|
** '_(MSGID)' uses the current locale's message library string for MSGID.
|
2009-03-04 04:28:35 +01:00
|
|
|
** The default is to use gettext if available, and use MSGID otherwise.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _
|
|
|
|
#if HAVE_GETTEXT
|
|
|
|
#define _(msgid) gettext(msgid)
|
|
|
|
#else /* !HAVE_GETTEXT */
|
|
|
|
#define _(msgid) msgid
|
|
|
|
#endif /* !HAVE_GETTEXT */
|
|
|
|
#endif /* !defined _ */
|
|
|
|
|
2014-06-19 22:54:10 +02:00
|
|
|
#if !defined TZ_DOMAIN && defined TZ_DOMAINDIR
|
|
|
|
# define TZ_DOMAIN "tz"
|
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
#if HAVE_INCOMPATIBLE_CTIME_R
|
|
|
|
#undef asctime_r
|
|
|
|
#undef ctime_r
|
2013-07-13 02:31:11 +02:00
|
|
|
char *asctime_r(struct tm const *, char *);
|
|
|
|
char *ctime_r(time_t const *, char *);
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* HAVE_INCOMPATIBLE_CTIME_R */
|
|
|
|
|
|
|
|
#ifndef YEARSPERREPEAT
|
2013-07-13 02:31:11 +02:00
|
|
|
#define YEARSPERREPEAT 400 /* years before a Gregorian repeat */
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined YEARSPERREPEAT */
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The Gregorian year averages 365.2425 days, which is 31556952 seconds.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVGSECSPERYEAR
|
2013-07-13 02:31:11 +02:00
|
|
|
#define AVGSECSPERYEAR 31556952L
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined AVGSECSPERYEAR */
|
|
|
|
|
|
|
|
#ifndef SECSPERREPEAT
|
2013-07-13 02:31:11 +02:00
|
|
|
#define SECSPERREPEAT ((int_fast64_t) YEARSPERREPEAT * (int_fast64_t) AVGSECSPERYEAR)
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined SECSPERREPEAT */
|
2013-07-13 02:31:11 +02:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef SECSPERREPEAT_BITS
|
2013-07-13 02:31:11 +02:00
|
|
|
#define SECSPERREPEAT_BITS 34 /* ceil(log2(SECSPERREPEAT)) */
|
2009-03-04 04:28:35 +01:00
|
|
|
#endif /* !defined SECSPERREPEAT_BITS */
|
|
|
|
|
|
|
|
/*
|
|
|
|
** UNIX was a registered trademark of The Open Group in 2003.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif /* !defined PRIVATE_H */
|