2011-02-06 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libgfortran / intrinsics / ctime.c
blobb7b463c3aca881712d268dc2b68b7cf61cf5db12
1 /* Implementation of the CTIME and FDATE g77 intrinsics.
2 Copyright (C) 2005, 2007, 2009, 2011 Free Software Foundation, Inc.
3 Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
5 This file is part of the GNU Fortran runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 3 of the License, or (at your option) any later version.
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
28 #ifdef TIME_WITH_SYS_TIME
29 # include <sys/time.h>
30 # include <time.h>
31 #else
32 # if HAVE_SYS_TIME_H
33 # include <sys/time.h>
34 # else
35 # ifdef HAVE_TIME_H
36 # include <time.h>
37 # endif
38 # endif
39 #endif
41 #include <string.h>
44 #ifndef HAVE_CTIME_R
45 /* Make sure we don't see here a macro. */
46 #undef ctime_r
48 static char *
49 ctime_r (const time_t * timep, char * buf __attribute__((unused)))
51 #ifdef HAVE_CTIME
52 char *tmp = ctime (timep);
53 if (tmp)
54 tmp = strcpy (buf, tmp);
55 return tmp;
56 #else
57 return NULL;
58 #endif
60 #endif
62 /* ctime_r() buffer size needs to be at least 26 bytes. */
63 #define CSZ 26
65 extern void fdate (char **, gfc_charlen_type *);
66 export_proto(fdate);
68 void
69 fdate (char ** date, gfc_charlen_type * date_len)
71 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
72 char cbuf[CSZ];
73 int i;
74 time_t now = time(NULL);
75 *date = ctime_r (&now, cbuf);
76 if (*date != NULL)
78 *date = strdup (*date);
79 *date_len = strlen (*date);
81 i = 0;
82 while ((*date)[i])
84 if ((*date)[i] == '\n')
85 (*date)[i] = ' ';
86 i++;
88 return;
90 #endif
92 *date = NULL;
93 *date_len = 0;
97 extern void fdate_sub (char *, gfc_charlen_type);
98 export_proto(fdate_sub);
100 void
101 fdate_sub (char * date, gfc_charlen_type date_len)
103 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
104 char cbuf[CSZ];
105 int i;
106 char *d;
107 time_t now = time(NULL);
108 #endif
110 memset (date, ' ', date_len);
111 #if defined(HAVE_TIME) && defined(HAVE_CTIME)
112 d = ctime_r (&now, cbuf);
113 if (d != NULL)
115 i = 0;
116 while (*d && *d != '\n' && i < date_len)
117 date[i++] = *(d++);
119 #endif
124 extern void PREFIX(ctime) (char **, gfc_charlen_type *, GFC_INTEGER_8);
125 export_proto_np(PREFIX(ctime));
127 void
128 PREFIX(ctime) (char ** date, gfc_charlen_type * date_len, GFC_INTEGER_8 t)
130 #if defined(HAVE_CTIME)
131 char cbuf[CSZ];
132 time_t now = t;
133 int i;
134 *date = ctime_r (&now, cbuf);
135 if (*date != NULL)
137 *date = strdup (*date);
138 *date_len = strlen (*date);
140 i = 0;
141 while ((*date)[i])
143 if ((*date)[i] == '\n')
144 (*date)[i] = ' ';
145 i++;
147 return;
149 #endif
151 *date = NULL;
152 *date_len = 0;
156 extern void ctime_sub (GFC_INTEGER_8 *, char *, gfc_charlen_type);
157 export_proto(ctime_sub);
159 void
160 ctime_sub (GFC_INTEGER_8 * t, char * date, gfc_charlen_type date_len)
162 #if defined(HAVE_CTIME)
163 char cbuf[CSZ];
164 int i;
165 char *d;
166 time_t now = *t;
167 #endif
169 memset (date, ' ', date_len);
170 #if defined(HAVE_CTIME)
171 d = ctime_r (&now, cbuf);
172 if (d != NULL)
174 i = 0;
175 while (*d && *d != '\n' && i < date_len)
176 date[i++] = *(d++);
178 #endif