strftime.c revision 1.34 1 1.34 christos /* $NetBSD: strftime.c,v 1.34 2015/08/13 11:21:18 christos Exp $ */
2 1.1 mrg
3 1.3 christos #include <sys/cdefs.h>
4 1.1 mrg #if defined(LIBC_SCCS) && !defined(lint)
5 1.3 christos #if 0
6 1.13 kleink static char elsieid[] = "@(#)strftime.c 7.64";
7 1.20 mlelstv static char elsieid[] = "@(#)strftime.c 8.3";
8 1.3 christos #else
9 1.34 christos __RCSID("$NetBSD: strftime.c,v 1.34 2015/08/13 11:21:18 christos Exp $");
10 1.3 christos #endif
11 1.1 mrg #endif /* LIBC_SCCS and not lint */
12 1.1 mrg
13 1.4 jtc #include "namespace.h"
14 1.12 kleink
15 1.25 joerg #include <stddef.h>
16 1.30 christos #include <assert.h>
17 1.25 joerg #include <locale.h>
18 1.25 joerg #include "setlocale_local.h"
19 1.25 joerg
20 1.12 kleink /*
21 1.24 christos ** Based on the UCB version with the copyright notice and sccsid
22 1.24 christos ** appearing below.
23 1.24 christos **
24 1.12 kleink ** This is ANSIish only when "multibyte character == plain character".
25 1.12 kleink */
26 1.12 kleink
27 1.11 taca #include "private.h"
28 1.12 kleink
29 1.16 kleink /*
30 1.16 kleink ** We don't use these extensions in strftime operation even when
31 1.16 kleink ** supported by the local tzcode configuration. A strictly
32 1.16 kleink ** conforming C application may leave them in undefined state.
33 1.16 kleink */
34 1.16 kleink
35 1.15 kleink #ifdef _LIBC
36 1.15 kleink #undef TM_ZONE
37 1.16 kleink #undef TM_GMTOFF
38 1.15 kleink #endif
39 1.15 kleink
40 1.12 kleink /*
41 1.14 itojun ** Copyright (c) 1989, 1993
42 1.14 itojun ** The Regents of the University of California. All rights reserved.
43 1.12 kleink **
44 1.14 itojun ** Redistribution and use in source and binary forms, with or without
45 1.14 itojun ** modification, are permitted provided that the following conditions
46 1.14 itojun ** are met:
47 1.14 itojun ** 1. Redistributions of source code must retain the above copyright
48 1.14 itojun ** notice, this list of conditions and the following disclaimer.
49 1.14 itojun ** 2. Redistributions in binary form must reproduce the above copyright
50 1.14 itojun ** notice, this list of conditions and the following disclaimer in the
51 1.14 itojun ** documentation and/or other materials provided with the distribution.
52 1.14 itojun ** 3. All advertising materials mentioning features or use of this software
53 1.14 itojun ** must display the following acknowledgement:
54 1.14 itojun ** This product includes software developed by the University of
55 1.14 itojun ** California, Berkeley and its contributors.
56 1.14 itojun ** 4. Neither the name of the University nor the names of its contributors
57 1.14 itojun ** may be used to endorse or promote products derived from this software
58 1.14 itojun ** without specific prior written permission.
59 1.14 itojun **
60 1.31 christos ** THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
61 1.14 itojun ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
62 1.14 itojun ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
63 1.14 itojun ** ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
64 1.14 itojun ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
65 1.14 itojun ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
66 1.14 itojun ** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
67 1.14 itojun ** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
68 1.14 itojun ** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
69 1.14 itojun ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70 1.14 itojun ** SUCH DAMAGE.
71 1.12 kleink */
72 1.12 kleink
73 1.12 kleink #include "tzfile.h"
74 1.12 kleink #include "fcntl.h"
75 1.12 kleink #include "locale.h"
76 1.12 kleink
77 1.21 christos #ifdef __weak_alias
78 1.25 joerg __weak_alias(strftime_l, _strftime_l)
79 1.25 joerg __weak_alias(strftime_lz, _strftime_lz)
80 1.21 christos __weak_alias(strftime_z, _strftime_z)
81 1.21 christos #endif
82 1.21 christos
83 1.12 kleink #include "sys/localedef.h"
84 1.25 joerg #define _TIME_LOCALE(loc) \
85 1.25 joerg ((_TimeLocale *)((loc)->part_impl[(size_t)LC_TIME]))
86 1.20 mlelstv #define c_fmt d_t_fmt
87 1.12 kleink
88 1.20 mlelstv static char * _add(const char *, char *, const char *);
89 1.20 mlelstv static char * _conv(int, const char *, char *, const char *);
90 1.21 christos static char * _fmt(const timezone_t, const char *, const struct tm *, char *,
91 1.25 joerg const char *, int *, locale_t);
92 1.33 christos static char * _yconv(int, int, bool, bool, char *, const char *);
93 1.12 kleink
94 1.20 mlelstv extern char * tzname[];
95 1.12 kleink
96 1.12 kleink #ifndef YEAR_2000_NAME
97 1.12 kleink #define YEAR_2000_NAME "CHECK_STRFTIME_FORMATS_FOR_TWO_DIGIT_YEARS"
98 1.12 kleink #endif /* !defined YEAR_2000_NAME */
99 1.12 kleink
100 1.12 kleink #define IN_NONE 0
101 1.12 kleink #define IN_SOME 1
102 1.12 kleink #define IN_THIS 2
103 1.12 kleink #define IN_ALL 3
104 1.1 mrg
105 1.1 mrg size_t
106 1.25 joerg strftime_z(const timezone_t sp, char * __restrict s, size_t maxsize,
107 1.25 joerg const char * __restrict format, const struct tm * __restrict t)
108 1.25 joerg {
109 1.26 joerg return strftime_lz(sp, s, maxsize, format, t, _current_locale());
110 1.25 joerg }
111 1.25 joerg
112 1.33 christos #if HAVE_STRFTIME_L
113 1.33 christos size_t
114 1.33 christos strftime_l(char *s, size_t maxsize, char const *format, struct tm const *t,
115 1.33 christos locale_t locale)
116 1.33 christos {
117 1.33 christos /* Just call strftime, as only the C locale is supported. */
118 1.33 christos return strftime(s, maxsize, format, t);
119 1.33 christos }
120 1.33 christos #endif
121 1.33 christos
122 1.25 joerg size_t
123 1.25 joerg strftime_lz(const timezone_t sp, char *const s, const size_t maxsize,
124 1.25 joerg const char *const format, const struct tm *const t, locale_t loc)
125 1.1 mrg {
126 1.12 kleink char * p;
127 1.12 kleink int warn;
128 1.5 kleink
129 1.12 kleink warn = IN_NONE;
130 1.21 christos p = _fmt(sp, ((format == NULL) ? "%c" : format), t, s, s + maxsize,
131 1.25 joerg &warn, loc);
132 1.12 kleink #ifndef NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
133 1.12 kleink if (warn != IN_NONE && getenv(YEAR_2000_NAME) != NULL) {
134 1.12 kleink (void) fprintf(stderr, "\n");
135 1.12 kleink if (format == NULL)
136 1.12 kleink (void) fprintf(stderr, "NULL strftime format ");
137 1.12 kleink else (void) fprintf(stderr, "strftime format \"%s\" ",
138 1.12 kleink format);
139 1.12 kleink (void) fprintf(stderr, "yields only two digits of years in ");
140 1.12 kleink if (warn == IN_SOME)
141 1.12 kleink (void) fprintf(stderr, "some locales");
142 1.12 kleink else if (warn == IN_THIS)
143 1.12 kleink (void) fprintf(stderr, "the current locale");
144 1.12 kleink else (void) fprintf(stderr, "all locales");
145 1.12 kleink (void) fprintf(stderr, "\n");
146 1.12 kleink }
147 1.12 kleink #endif /* !defined NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU */
148 1.12 kleink if (p == s + maxsize)
149 1.12 kleink return 0;
150 1.12 kleink *p = '\0';
151 1.12 kleink return p - s;
152 1.1 mrg }
153 1.1 mrg
154 1.12 kleink static char *
155 1.34 christos _fmt(const timezone_t sp, const char *format, const struct tm *t, char *pt,
156 1.34 christos const char *ptlim, int *warnp, locale_t loc)
157 1.1 mrg {
158 1.12 kleink for ( ; *format; ++format) {
159 1.1 mrg if (*format == '%') {
160 1.12 kleink label:
161 1.12 kleink switch (*++format) {
162 1.1 mrg case '\0':
163 1.1 mrg --format;
164 1.1 mrg break;
165 1.1 mrg case 'A':
166 1.12 kleink pt = _add((t->tm_wday < 0 ||
167 1.12 kleink t->tm_wday >= DAYSPERWEEK) ?
168 1.25 joerg "?" : _TIME_LOCALE(loc)->day[t->tm_wday],
169 1.12 kleink pt, ptlim);
170 1.1 mrg continue;
171 1.1 mrg case 'a':
172 1.12 kleink pt = _add((t->tm_wday < 0 ||
173 1.12 kleink t->tm_wday >= DAYSPERWEEK) ?
174 1.25 joerg "?" : _TIME_LOCALE(loc)->abday[t->tm_wday],
175 1.12 kleink pt, ptlim);
176 1.1 mrg continue;
177 1.1 mrg case 'B':
178 1.12 kleink pt = _add((t->tm_mon < 0 ||
179 1.12 kleink t->tm_mon >= MONSPERYEAR) ?
180 1.25 joerg "?" : _TIME_LOCALE(loc)->mon[t->tm_mon],
181 1.12 kleink pt, ptlim);
182 1.1 mrg continue;
183 1.1 mrg case 'b':
184 1.1 mrg case 'h':
185 1.12 kleink pt = _add((t->tm_mon < 0 ||
186 1.12 kleink t->tm_mon >= MONSPERYEAR) ?
187 1.25 joerg "?" : _TIME_LOCALE(loc)->abmon[t->tm_mon],
188 1.12 kleink pt, ptlim);
189 1.1 mrg continue;
190 1.1 mrg case 'C':
191 1.12 kleink /*
192 1.12 kleink ** %C used to do a...
193 1.12 kleink ** _fmt("%a %b %e %X %Y", t);
194 1.12 kleink ** ...whereas now POSIX 1003.2 calls for
195 1.12 kleink ** something completely different.
196 1.12 kleink ** (ado, 1993-05-24)
197 1.12 kleink */
198 1.33 christos pt = _yconv(t->tm_year, TM_YEAR_BASE,
199 1.33 christos true, false, pt, ptlim);
200 1.1 mrg continue;
201 1.1 mrg case 'c':
202 1.12 kleink {
203 1.12 kleink int warn2 = IN_SOME;
204 1.12 kleink
205 1.25 joerg pt = _fmt(sp, _TIME_LOCALE(loc)->c_fmt, t, pt,
206 1.25 joerg ptlim, &warn2, loc);
207 1.12 kleink if (warn2 == IN_ALL)
208 1.12 kleink warn2 = IN_THIS;
209 1.12 kleink if (warn2 > *warnp)
210 1.12 kleink *warnp = warn2;
211 1.12 kleink }
212 1.1 mrg continue;
213 1.1 mrg case 'D':
214 1.25 joerg pt = _fmt(sp, "%m/%d/%y", t, pt, ptlim, warnp,
215 1.25 joerg loc);
216 1.1 mrg continue;
217 1.1 mrg case 'd':
218 1.12 kleink pt = _conv(t->tm_mday, "%02d", pt, ptlim);
219 1.1 mrg continue;
220 1.12 kleink case 'E':
221 1.12 kleink case 'O':
222 1.12 kleink /*
223 1.12 kleink ** C99 locale modifiers.
224 1.12 kleink ** The sequences
225 1.12 kleink ** %Ec %EC %Ex %EX %Ey %EY
226 1.12 kleink ** %Od %oe %OH %OI %Om %OM
227 1.12 kleink ** %OS %Ou %OU %OV %Ow %OW %Oy
228 1.12 kleink ** are supposed to provide alternate
229 1.12 kleink ** representations.
230 1.12 kleink */
231 1.12 kleink goto label;
232 1.1 mrg case 'e':
233 1.12 kleink pt = _conv(t->tm_mday, "%2d", pt, ptlim);
234 1.10 kleink continue;
235 1.10 kleink case 'F':
236 1.25 joerg pt = _fmt(sp, "%Y-%m-%d", t, pt, ptlim, warnp,
237 1.25 joerg loc);
238 1.1 mrg continue;
239 1.1 mrg case 'H':
240 1.12 kleink pt = _conv(t->tm_hour, "%02d", pt, ptlim);
241 1.1 mrg continue;
242 1.1 mrg case 'I':
243 1.12 kleink pt = _conv((t->tm_hour % 12) ?
244 1.12 kleink (t->tm_hour % 12) : 12,
245 1.12 kleink "%02d", pt, ptlim);
246 1.1 mrg continue;
247 1.1 mrg case 'j':
248 1.12 kleink pt = _conv(t->tm_yday + 1, "%03d", pt, ptlim);
249 1.1 mrg continue;
250 1.1 mrg case 'k':
251 1.12 kleink /*
252 1.12 kleink ** This used to be...
253 1.12 kleink ** _conv(t->tm_hour % 12 ?
254 1.12 kleink ** t->tm_hour % 12 : 12, 2, ' ');
255 1.12 kleink ** ...and has been changed to the below to
256 1.12 kleink ** match SunOS 4.1.1 and Arnold Robbins'
257 1.20 mlelstv ** strftime version 3.0. That is, "%k" and
258 1.12 kleink ** "%l" have been swapped.
259 1.12 kleink ** (ado, 1993-05-24)
260 1.12 kleink */
261 1.12 kleink pt = _conv(t->tm_hour, "%2d", pt, ptlim);
262 1.12 kleink continue;
263 1.12 kleink #ifdef KITCHEN_SINK
264 1.12 kleink case 'K':
265 1.12 kleink /*
266 1.12 kleink ** After all this time, still unclaimed!
267 1.12 kleink */
268 1.12 kleink pt = _add("kitchen sink", pt, ptlim);
269 1.1 mrg continue;
270 1.12 kleink #endif /* defined KITCHEN_SINK */
271 1.1 mrg case 'l':
272 1.12 kleink /*
273 1.12 kleink ** This used to be...
274 1.12 kleink ** _conv(t->tm_hour, 2, ' ');
275 1.12 kleink ** ...and has been changed to the below to
276 1.12 kleink ** match SunOS 4.1.1 and Arnold Robbin's
277 1.20 mlelstv ** strftime version 3.0. That is, "%k" and
278 1.12 kleink ** "%l" have been swapped.
279 1.12 kleink ** (ado, 1993-05-24)
280 1.12 kleink */
281 1.12 kleink pt = _conv((t->tm_hour % 12) ?
282 1.12 kleink (t->tm_hour % 12) : 12,
283 1.12 kleink "%2d", pt, ptlim);
284 1.1 mrg continue;
285 1.1 mrg case 'M':
286 1.12 kleink pt = _conv(t->tm_min, "%02d", pt, ptlim);
287 1.1 mrg continue;
288 1.1 mrg case 'm':
289 1.12 kleink pt = _conv(t->tm_mon + 1, "%02d", pt, ptlim);
290 1.1 mrg continue;
291 1.1 mrg case 'n':
292 1.12 kleink pt = _add("\n", pt, ptlim);
293 1.1 mrg continue;
294 1.1 mrg case 'p':
295 1.12 kleink pt = _add((t->tm_hour >= (HOURSPERDAY / 2)) ?
296 1.25 joerg _TIME_LOCALE(loc)->am_pm[1] :
297 1.25 joerg _TIME_LOCALE(loc)->am_pm[0],
298 1.12 kleink pt, ptlim);
299 1.1 mrg continue;
300 1.1 mrg case 'R':
301 1.25 joerg pt = _fmt(sp, "%H:%M", t, pt, ptlim, warnp,
302 1.25 joerg loc);
303 1.1 mrg continue;
304 1.1 mrg case 'r':
305 1.25 joerg pt = _fmt(sp, _TIME_LOCALE(loc)->t_fmt_ampm, t,
306 1.25 joerg pt, ptlim, warnp, loc);
307 1.1 mrg continue;
308 1.1 mrg case 'S':
309 1.12 kleink pt = _conv(t->tm_sec, "%02d", pt, ptlim);
310 1.1 mrg continue;
311 1.1 mrg case 's':
312 1.12 kleink {
313 1.12 kleink struct tm tm;
314 1.12 kleink char buf[INT_STRLEN_MAXIMUM(
315 1.12 kleink time_t) + 1];
316 1.12 kleink time_t mkt;
317 1.12 kleink
318 1.12 kleink tm = *t;
319 1.12 kleink mkt = mktime(&tm);
320 1.12 kleink /* CONSTCOND */
321 1.12 kleink if (TYPE_SIGNED(time_t))
322 1.27 christos (void)snprintf(buf, sizeof(buf),
323 1.27 christos "%jd", (intmax_t) mkt);
324 1.27 christos else (void)snprintf(buf, sizeof(buf),
325 1.27 christos "%ju", (uintmax_t) mkt);
326 1.12 kleink pt = _add(buf, pt, ptlim);
327 1.12 kleink }
328 1.1 mrg continue;
329 1.1 mrg case 'T':
330 1.25 joerg pt = _fmt(sp, "%H:%M:%S", t, pt, ptlim, warnp,
331 1.25 joerg loc);
332 1.1 mrg continue;
333 1.1 mrg case 't':
334 1.12 kleink pt = _add("\t", pt, ptlim);
335 1.1 mrg continue;
336 1.1 mrg case 'U':
337 1.12 kleink pt = _conv((t->tm_yday + DAYSPERWEEK -
338 1.12 kleink t->tm_wday) / DAYSPERWEEK,
339 1.12 kleink "%02d", pt, ptlim);
340 1.1 mrg continue;
341 1.1 mrg case 'u':
342 1.12 kleink /*
343 1.12 kleink ** From Arnold Robbins' strftime version 3.0:
344 1.12 kleink ** "ISO 8601: Weekday as a decimal number
345 1.12 kleink ** [1 (Monday) - 7]"
346 1.12 kleink ** (ado, 1993-05-24)
347 1.12 kleink */
348 1.12 kleink pt = _conv((t->tm_wday == 0) ?
349 1.12 kleink DAYSPERWEEK : t->tm_wday,
350 1.12 kleink "%d", pt, ptlim);
351 1.1 mrg continue;
352 1.8 augustss case 'V': /* ISO 8601 week number */
353 1.8 augustss case 'G': /* ISO 8601 year (four digits) */
354 1.8 augustss case 'g': /* ISO 8601 year (two digits) */
355 1.8 augustss /*
356 1.20 mlelstv ** From Arnold Robbins' strftime version 3.0: "the week number of the
357 1.8 augustss ** year (the first Monday as the first day of week 1) as a decimal number
358 1.8 augustss ** (01-53)."
359 1.8 augustss ** (ado, 1993-05-24)
360 1.8 augustss **
361 1.31 christos ** From <http://www.ft.uni-erlangen.de/~mskuhn/iso-time.html> by Markus Kuhn:
362 1.8 augustss ** "Week 01 of a year is per definition the first week which has the
363 1.8 augustss ** Thursday in this year, which is equivalent to the week which contains
364 1.8 augustss ** the fourth day of January. In other words, the first week of a new year
365 1.8 augustss ** is the week which has the majority of its days in the new year. Week 01
366 1.8 augustss ** might also contain days from the previous year and the week before week
367 1.8 augustss ** 01 of a year is the last week (52 or 53) of the previous year even if
368 1.8 augustss ** it contains days from the new year. A week starts with Monday (day 1)
369 1.20 mlelstv ** and ends with Sunday (day 7). For example, the first week of the year
370 1.8 augustss ** 1997 lasts from 1996-12-30 to 1997-01-05..."
371 1.8 augustss ** (ado, 1996-01-02)
372 1.8 augustss */
373 1.1 mrg {
374 1.8 augustss int year;
375 1.20 mlelstv int base;
376 1.8 augustss int yday;
377 1.8 augustss int wday;
378 1.8 augustss int w;
379 1.8 augustss
380 1.20 mlelstv year = t->tm_year;
381 1.20 mlelstv base = TM_YEAR_BASE;
382 1.8 augustss yday = t->tm_yday;
383 1.8 augustss wday = t->tm_wday;
384 1.8 augustss for ( ; ; ) {
385 1.8 augustss int len;
386 1.8 augustss int bot;
387 1.8 augustss int top;
388 1.8 augustss
389 1.20 mlelstv len = isleap_sum(year, base) ?
390 1.8 augustss DAYSPERLYEAR :
391 1.8 augustss DAYSPERNYEAR;
392 1.8 augustss /*
393 1.8 augustss ** What yday (-3 ... 3) does
394 1.8 augustss ** the ISO year begin on?
395 1.8 augustss */
396 1.8 augustss bot = ((yday + 11 - wday) %
397 1.8 augustss DAYSPERWEEK) - 3;
398 1.8 augustss /*
399 1.8 augustss ** What yday does the NEXT
400 1.8 augustss ** ISO year begin on?
401 1.8 augustss */
402 1.8 augustss top = bot -
403 1.8 augustss (len % DAYSPERWEEK);
404 1.8 augustss if (top < -3)
405 1.8 augustss top += DAYSPERWEEK;
406 1.8 augustss top += len;
407 1.8 augustss if (yday >= top) {
408 1.20 mlelstv ++base;
409 1.8 augustss w = 1;
410 1.8 augustss break;
411 1.8 augustss }
412 1.8 augustss if (yday >= bot) {
413 1.8 augustss w = 1 + ((yday - bot) /
414 1.8 augustss DAYSPERWEEK);
415 1.8 augustss break;
416 1.8 augustss }
417 1.20 mlelstv --base;
418 1.20 mlelstv yday += isleap_sum(year, base) ?
419 1.8 augustss DAYSPERLYEAR :
420 1.8 augustss DAYSPERNYEAR;
421 1.8 augustss }
422 1.8 augustss #ifdef XPG4_1994_04_09
423 1.20 mlelstv if ((w == 52 &&
424 1.20 mlelstv t->tm_mon == TM_JANUARY) ||
425 1.20 mlelstv (w == 1 &&
426 1.20 mlelstv t->tm_mon == TM_DECEMBER))
427 1.20 mlelstv w = 53;
428 1.8 augustss #endif /* defined XPG4_1994_04_09 */
429 1.12 kleink if (*format == 'V')
430 1.12 kleink pt = _conv(w, "%02d",
431 1.12 kleink pt, ptlim);
432 1.12 kleink else if (*format == 'g') {
433 1.12 kleink *warnp = IN_ALL;
434 1.33 christos pt = _yconv(year, base,
435 1.33 christos false, true,
436 1.12 kleink pt, ptlim);
437 1.33 christos } else pt = _yconv(year, base,
438 1.33 christos true, true,
439 1.12 kleink pt, ptlim);
440 1.1 mrg }
441 1.1 mrg continue;
442 1.12 kleink case 'v':
443 1.12 kleink /*
444 1.12 kleink ** From Arnold Robbins' strftime version 3.0:
445 1.12 kleink ** "date as dd-bbb-YYYY"
446 1.12 kleink ** (ado, 1993-05-24)
447 1.12 kleink */
448 1.25 joerg pt = _fmt(sp, "%e-%b-%Y", t, pt, ptlim, warnp,
449 1.25 joerg loc);
450 1.12 kleink continue;
451 1.1 mrg case 'W':
452 1.12 kleink pt = _conv((t->tm_yday + DAYSPERWEEK -
453 1.12 kleink (t->tm_wday ?
454 1.12 kleink (t->tm_wday - 1) :
455 1.12 kleink (DAYSPERWEEK - 1))) / DAYSPERWEEK,
456 1.12 kleink "%02d", pt, ptlim);
457 1.1 mrg continue;
458 1.1 mrg case 'w':
459 1.12 kleink pt = _conv(t->tm_wday, "%d", pt, ptlim);
460 1.12 kleink continue;
461 1.12 kleink case 'X':
462 1.25 joerg pt = _fmt(sp, _TIME_LOCALE(loc)->t_fmt, t, pt,
463 1.25 joerg ptlim, warnp, loc);
464 1.1 mrg continue;
465 1.1 mrg case 'x':
466 1.12 kleink {
467 1.12 kleink int warn2 = IN_SOME;
468 1.12 kleink
469 1.25 joerg pt = _fmt(sp, _TIME_LOCALE(loc)->d_fmt, t, pt,
470 1.25 joerg ptlim, &warn2, loc);
471 1.12 kleink if (warn2 == IN_ALL)
472 1.12 kleink warn2 = IN_THIS;
473 1.12 kleink if (warn2 > *warnp)
474 1.12 kleink *warnp = warn2;
475 1.12 kleink }
476 1.1 mrg continue;
477 1.1 mrg case 'y':
478 1.12 kleink *warnp = IN_ALL;
479 1.33 christos pt = _yconv(t->tm_year, TM_YEAR_BASE,
480 1.33 christos false, true,
481 1.20 mlelstv pt, ptlim);
482 1.1 mrg continue;
483 1.1 mrg case 'Y':
484 1.33 christos pt = _yconv(t->tm_year, TM_YEAR_BASE,
485 1.33 christos true, true,
486 1.12 kleink pt, ptlim);
487 1.1 mrg continue;
488 1.1 mrg case 'Z':
489 1.11 taca #ifdef TM_ZONE
490 1.12 kleink if (t->TM_ZONE != NULL)
491 1.12 kleink pt = _add(t->TM_ZONE, pt, ptlim);
492 1.12 kleink else
493 1.12 kleink #endif /* defined TM_ZONE */
494 1.12 kleink if (t->tm_isdst >= 0)
495 1.21 christos pt = _add((sp ?
496 1.21 christos tzgetname(sp, t->tm_isdst) :
497 1.21 christos tzname[t->tm_isdst != 0]),
498 1.21 christos pt, ptlim);
499 1.12 kleink /*
500 1.12 kleink ** C99 says that %Z must be replaced by the
501 1.12 kleink ** empty string if the time zone is not
502 1.12 kleink ** determinable.
503 1.12 kleink */
504 1.12 kleink continue;
505 1.12 kleink case 'z':
506 1.12 kleink {
507 1.30 christos long diff;
508 1.12 kleink char const * sign;
509 1.12 kleink
510 1.12 kleink if (t->tm_isdst < 0)
511 1.12 kleink continue;
512 1.12 kleink #ifdef TM_GMTOFF
513 1.12 kleink diff = (int)t->TM_GMTOFF;
514 1.12 kleink #else /* !defined TM_GMTOFF */
515 1.12 kleink /*
516 1.29 christos ** C99 says that the UT offset must
517 1.12 kleink ** be computed by looking only at
518 1.20 mlelstv ** tm_isdst. This requirement is
519 1.12 kleink ** incorrect, since it means the code
520 1.12 kleink ** must rely on magic (in this case
521 1.12 kleink ** altzone and timezone), and the
522 1.12 kleink ** magic might not have the correct
523 1.20 mlelstv ** offset. Doing things correctly is
524 1.12 kleink ** tricky and requires disobeying C99;
525 1.12 kleink ** see GNU C strftime for details.
526 1.12 kleink ** For now, punt and conform to the
527 1.12 kleink ** standard, even though it's incorrect.
528 1.12 kleink **
529 1.12 kleink ** C99 says that %z must be replaced by the
530 1.12 kleink ** empty string if the time zone is not
531 1.12 kleink ** determinable, so output nothing if the
532 1.12 kleink ** appropriate variables are not available.
533 1.12 kleink */
534 1.16 kleink #ifndef STD_INSPIRED
535 1.12 kleink if (t->tm_isdst == 0)
536 1.12 kleink #ifdef USG_COMPAT
537 1.12 kleink diff = -timezone;
538 1.13 kleink #else /* !defined USG_COMPAT */
539 1.12 kleink continue;
540 1.12 kleink #endif /* !defined USG_COMPAT */
541 1.12 kleink else
542 1.12 kleink #ifdef ALTZONE
543 1.12 kleink diff = -altzone;
544 1.12 kleink #else /* !defined ALTZONE */
545 1.12 kleink continue;
546 1.12 kleink #endif /* !defined ALTZONE */
547 1.16 kleink #else /* defined STD_INSPIRED */
548 1.16 kleink {
549 1.16 kleink struct tm tmp;
550 1.16 kleink time_t lct, gct;
551 1.16 kleink
552 1.16 kleink /*
553 1.16 kleink ** Get calendar time from t
554 1.16 kleink ** being treated as local.
555 1.16 kleink */
556 1.16 kleink tmp = *t; /* mktime discards const */
557 1.16 kleink lct = mktime(&tmp);
558 1.16 kleink
559 1.16 kleink if (lct == (time_t)-1)
560 1.16 kleink continue;
561 1.16 kleink
562 1.16 kleink /*
563 1.16 kleink ** Get calendar time from t
564 1.16 kleink ** being treated as GMT.
565 1.16 kleink **/
566 1.16 kleink tmp = *t; /* mktime discards const */
567 1.16 kleink gct = timegm(&tmp);
568 1.16 kleink
569 1.16 kleink if (gct == (time_t)-1)
570 1.16 kleink continue;
571 1.16 kleink
572 1.16 kleink /* LINTED difference will fit int */
573 1.16 kleink diff = (intmax_t)gct - (intmax_t)lct;
574 1.16 kleink }
575 1.16 kleink #endif /* defined STD_INSPIRED */
576 1.12 kleink #endif /* !defined TM_GMTOFF */
577 1.12 kleink if (diff < 0) {
578 1.12 kleink sign = "-";
579 1.12 kleink diff = -diff;
580 1.12 kleink } else sign = "+";
581 1.12 kleink pt = _add(sign, pt, ptlim);
582 1.20 mlelstv diff /= SECSPERMIN;
583 1.20 mlelstv diff = (diff / MINSPERHOUR) * 100 +
584 1.20 mlelstv (diff % MINSPERHOUR);
585 1.30 christos _DIAGASSERT(__type_fit(int, diff));
586 1.30 christos pt = _conv((int)diff, "%04d", pt, ptlim);
587 1.12 kleink }
588 1.1 mrg continue;
589 1.12 kleink #if 0
590 1.12 kleink case '+':
591 1.25 joerg pt = _fmt(sp, _TIME_LOCALE(loc)->date_fmt, t,
592 1.25 joerg pt, ptlim, warnp, loc);
593 1.12 kleink continue;
594 1.12 kleink #endif
595 1.1 mrg case '%':
596 1.1 mrg /*
597 1.12 kleink ** X311J/88-090 (4.12.3.5): if conversion char is
598 1.20 mlelstv ** undefined, behavior is undefined. Print out the
599 1.12 kleink ** character itself as printf(3) also does.
600 1.12 kleink */
601 1.1 mrg default:
602 1.1 mrg break;
603 1.1 mrg }
604 1.1 mrg }
605 1.12 kleink if (pt == ptlim)
606 1.12 kleink break;
607 1.12 kleink *pt++ = *format;
608 1.1 mrg }
609 1.12 kleink return pt;
610 1.1 mrg }
611 1.1 mrg
612 1.21 christos size_t
613 1.34 christos strftime(char *s, size_t maxsize, const char *format, const struct tm *t)
614 1.21 christos {
615 1.21 christos tzset();
616 1.21 christos return strftime_z(NULL, s, maxsize, format, t);
617 1.21 christos }
618 1.21 christos
619 1.25 joerg size_t
620 1.25 joerg strftime_l(char * __restrict s, size_t maxsize, const char * __restrict format,
621 1.25 joerg const struct tm * __restrict t, locale_t loc)
622 1.25 joerg {
623 1.25 joerg tzset();
624 1.25 joerg return strftime_lz(NULL, s, maxsize, format, t, loc);
625 1.25 joerg }
626 1.25 joerg
627 1.12 kleink static char *
628 1.34 christos _conv(int n, const char *format, char *pt, const char *ptlim)
629 1.1 mrg {
630 1.12 kleink char buf[INT_STRLEN_MAXIMUM(int) + 1];
631 1.1 mrg
632 1.19 christos (void) snprintf(buf, sizeof(buf), format, n);
633 1.12 kleink return _add(buf, pt, ptlim);
634 1.1 mrg }
635 1.1 mrg
636 1.12 kleink static char *
637 1.34 christos _add(const char *str, char *pt, const char *ptlim)
638 1.1 mrg {
639 1.12 kleink while (pt < ptlim && (*pt = *str++) != '\0')
640 1.12 kleink ++pt;
641 1.12 kleink return pt;
642 1.1 mrg }
643 1.20 mlelstv
644 1.20 mlelstv /*
645 1.20 mlelstv ** POSIX and the C Standard are unclear or inconsistent about
646 1.20 mlelstv ** what %C and %y do if the year is negative or exceeds 9999.
647 1.20 mlelstv ** Use the convention that %C concatenated with %y yields the
648 1.20 mlelstv ** same output as %Y, and that %Y contains at least 4 bytes,
649 1.20 mlelstv ** with more only if necessary.
650 1.20 mlelstv */
651 1.20 mlelstv
652 1.20 mlelstv static char *
653 1.33 christos _yconv(int a, int b, bool convert_top, bool convert_yy,
654 1.34 christos char *pt, const char * ptlim)
655 1.20 mlelstv {
656 1.28 christos int lead;
657 1.28 christos int trail;
658 1.20 mlelstv
659 1.20 mlelstv #define DIVISOR 100
660 1.20 mlelstv trail = a % DIVISOR + b % DIVISOR;
661 1.20 mlelstv lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR;
662 1.20 mlelstv trail %= DIVISOR;
663 1.20 mlelstv if (trail < 0 && lead > 0) {
664 1.20 mlelstv trail += DIVISOR;
665 1.20 mlelstv --lead;
666 1.20 mlelstv } else if (lead < 0 && trail > 0) {
667 1.20 mlelstv trail -= DIVISOR;
668 1.20 mlelstv ++lead;
669 1.20 mlelstv }
670 1.20 mlelstv if (convert_top) {
671 1.20 mlelstv if (lead == 0 && trail < 0)
672 1.20 mlelstv pt = _add("-0", pt, ptlim);
673 1.20 mlelstv else pt = _conv(lead, "%02d", pt, ptlim);
674 1.20 mlelstv }
675 1.20 mlelstv if (convert_yy)
676 1.20 mlelstv pt = _conv(((trail < 0) ? -trail : trail), "%02d", pt, ptlim);
677 1.20 mlelstv return pt;
678 1.20 mlelstv }
679