diff options
author | Janne Blomqvist <jb@gcc.gnu.org> | 2011-02-24 23:51:39 +0200 |
---|---|---|
committer | Janne Blomqvist <jb@gcc.gnu.org> | 2011-02-24 23:51:39 +0200 |
commit | 8f17e00c2f57c10af41495a8de03f944e4ec0648 (patch) | |
tree | 2a641f6a7dbe42592aa100fae7f9736fcb97a7bd /libgfortran/intrinsics | |
parent | ef795fc25033c60df465b8100644ddde84181cc6 (diff) | |
download | gcc-8f17e00c2f57c10af41495a8de03f944e4ec0648.zip gcc-8f17e00c2f57c10af41495a8de03f944e4ec0648.tar.gz gcc-8f17e00c2f57c10af41495a8de03f944e4ec0648.tar.bz2 |
PR 47802 Use strftime for CTIME and FDATE intrinsics
From-SVN: r170478
Diffstat (limited to 'libgfortran/intrinsics')
-rw-r--r-- | libgfortran/intrinsics/ctime.c | 129 | ||||
-rw-r--r-- | libgfortran/intrinsics/date_and_time.c | 22 | ||||
-rw-r--r-- | libgfortran/intrinsics/time_1.h | 20 |
3 files changed, 59 insertions, 112 deletions
diff --git a/libgfortran/intrinsics/ctime.c b/libgfortran/intrinsics/ctime.c index b7b463c..7eb10f5 100644 --- a/libgfortran/intrinsics/ctime.c +++ b/libgfortran/intrinsics/ctime.c @@ -25,42 +25,31 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "libgfortran.h" -#ifdef TIME_WITH_SYS_TIME -# include <sys/time.h> -# include <time.h> -#else -# if HAVE_SYS_TIME_H -# include <sys/time.h> -# else -# ifdef HAVE_TIME_H -# include <time.h> -# endif -# endif -#endif +#include "time_1.h" #include <string.h> -#ifndef HAVE_CTIME_R -/* Make sure we don't see here a macro. */ -#undef ctime_r +/* strftime-like function that fills a C string with %c format which + is identical to ctime in the default locale. As ctime and ctime_r + are poorly specified and their usage not recommended, the + implementation instead uses strftime. */ -static char * -ctime_r (const time_t * timep, char * buf __attribute__((unused))) +static size_t +strctime (char *s, size_t max, const time_t *timep) { -#ifdef HAVE_CTIME - char *tmp = ctime (timep); - if (tmp) - tmp = strcpy (buf, tmp); - return tmp; +#ifdef HAVE_STRFTIME + struct tm res; + struct tm *ltm = localtime_r (timep, &res); + return strftime (s, max, "%c", ltm); #else - return NULL; + return 0; #endif } -#endif -/* ctime_r() buffer size needs to be at least 26 bytes. */ -#define CSZ 26 +/* In the default locale, the date and time representation fits in 26 + bytes. However, other locales might need more space. */ +#define CSZ 100 extern void fdate (char **, gfc_charlen_type *); export_proto(fdate); @@ -68,29 +57,15 @@ export_proto(fdate); void fdate (char ** date, gfc_charlen_type * date_len) { -#if defined(HAVE_TIME) && defined(HAVE_CTIME) - char cbuf[CSZ]; - int i; +#if defined(HAVE_TIME) time_t now = time(NULL); - *date = ctime_r (&now, cbuf); - if (*date != NULL) - { - *date = strdup (*date); - *date_len = strlen (*date); - - i = 0; - while ((*date)[i]) - { - if ((*date)[i] == '\n') - (*date)[i] = ' '; - i++; - } - return; - } -#endif + *date = get_mem (CSZ); + *date_len = strctime (*date, CSZ, &now); +#else *date = NULL; *date_len = 0; +#endif } @@ -100,22 +75,14 @@ export_proto(fdate_sub); void fdate_sub (char * date, gfc_charlen_type date_len) { -#if defined(HAVE_TIME) && defined(HAVE_CTIME) - char cbuf[CSZ]; - int i; - char *d; +#if defined(HAVE_TIME) time_t now = time(NULL); -#endif - + char *s = get_mem (date_len + 1); + size_t n = strctime (s, date_len + 1, &now); + fstrcpy (date, date_len, s, n); + free (s); +#else memset (date, ' ', date_len); -#if defined(HAVE_TIME) && defined(HAVE_CTIME) - d = ctime_r (&now, cbuf); - if (d != NULL) - { - i = 0; - while (*d && *d != '\n' && i < date_len) - date[i++] = *(d++); - } #endif } @@ -127,29 +94,15 @@ export_proto_np(PREFIX(ctime)); void PREFIX(ctime) (char ** date, gfc_charlen_type * date_len, GFC_INTEGER_8 t) { -#if defined(HAVE_CTIME) - char cbuf[CSZ]; +#if defined(HAVE_TIME) time_t now = t; - int i; - *date = ctime_r (&now, cbuf); - if (*date != NULL) - { - *date = strdup (*date); - *date_len = strlen (*date); - - i = 0; - while ((*date)[i]) - { - if ((*date)[i] == '\n') - (*date)[i] = ' '; - i++; - } - return; - } -#endif + *date = get_mem (CSZ); + *date_len = strctime (*date, CSZ, &now); +#else *date = NULL; *date_len = 0; +#endif } @@ -159,21 +112,9 @@ export_proto(ctime_sub); void ctime_sub (GFC_INTEGER_8 * t, char * date, gfc_charlen_type date_len) { -#if defined(HAVE_CTIME) - char cbuf[CSZ]; - int i; - char *d; time_t now = *t; -#endif - - memset (date, ' ', date_len); -#if defined(HAVE_CTIME) - d = ctime_r (&now, cbuf); - if (d != NULL) - { - i = 0; - while (*d && *d != '\n' && i < date_len) - date[i++] = *(d++); - } -#endif + char *s = get_mem (date_len + 1); + size_t n = strctime (s, date_len + 1, &now); + fstrcpy (date, date_len, s, n); + free (s); } diff --git a/libgfortran/intrinsics/date_and_time.c b/libgfortran/intrinsics/date_and_time.c index c58d114..793df68 100644 --- a/libgfortran/intrinsics/date_and_time.c +++ b/libgfortran/intrinsics/date_and_time.c @@ -36,24 +36,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #endif -/* If the re-entrant versions of localtime and gmtime are not - available, provide fallback implementations. On some targets where - the _r versions are not available, localtime and gmtime use - thread-local storage so they are threadsafe. */ - -#ifndef HAVE_LOCALTIME_R -/* If _POSIX is defined localtime_r gets defined by mingw-w64 headers. */ -#ifdef localtime_r -#undef localtime_r -#endif - -static struct tm * -localtime_r (const time_t * timep, struct tm * result) -{ - *result = *localtime (timep); - return result; -} -#endif +/* If the re-entrant version of gmtime is not available, provide a + fallback implementation. On some targets where the _r version is + not available, gmtime uses thread-local storage so it's + threadsafe. */ #ifndef HAVE_GMTIME_R /* If _POSIX is defined gmtime_r gets defined by mingw-w64 headers. */ diff --git a/libgfortran/intrinsics/time_1.h b/libgfortran/intrinsics/time_1.h index 073595a..12d79eb 100644 --- a/libgfortran/intrinsics/time_1.h +++ b/libgfortran/intrinsics/time_1.h @@ -84,6 +84,26 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #endif /* !HAVE_GETRUSAGE || !HAVE_SYS_RESOURCE_H */ +/* If the re-entrant version of localtime is not available, provide a + fallback implementation. On some targets where the _r version is + not available, localtime uses thread-local storage so it's + threadsafe. */ + +#ifndef HAVE_LOCALTIME_R +/* If _POSIX is defined localtime_r gets defined by mingw-w64 headers. */ +#ifdef localtime_r +#undef localtime_r +#endif + +static inline struct tm * +localtime_r (const time_t * timep, struct tm * result) +{ + *result = *localtime (timep); + return result; +} +#endif + + #if defined (__GNUC__) && (__GNUC__ >= 3) # define ATTRIBUTE_ALWAYS_INLINE __attribute__ ((__always_inline__)) #else |