]>
git.saurik.com Git - apple/libc.git/blob - stdtime/FreeBSD/strftime.c
2 * Copyright (c) 1989 The Regents of the University of California.
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 static const char elsieid
[] = "@(#)strftime.3 8.3";
22 ** Based on the UCB version with the ID appearing below.
23 ** This is ANSIish only when "multibyte character == plain character".
25 #endif /* !defined NOID */
26 #endif /* !defined lint */
28 #include "namespace.h"
31 #if defined(LIBC_SCCS) && !defined(lint)
32 static const char sccsid
[] = "@(#)strftime.c 5.4 (Berkeley) 3/14/89";
33 #endif /* LIBC_SCCS and not lint */
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD: src/lib/libc/stdtime/strftime.c,v 1.44 2009/06/09 09:02:58 delphij Exp $");
40 #include "un-namespace.h"
41 #include "timelocal.h"
43 static char * _add(const char *, char *, const char *);
44 static char * _conv(int, const char *, char *, const char *);
45 static char * _fmt(const char *, const struct tm
*, char *, const char *,
47 static char * _yconv(int, int, int, int, char *, const char *);
49 extern char * tzname
[];
51 #ifndef YEAR_2000_NAME
52 #define YEAR_2000_NAME "CHECK_STRFTIME_FORMATS_FOR_TWO_DIGIT_YEARS"
53 #endif /* !defined YEAR_2000_NAME */
65 static const char* fmt_padding
[][4] = {
66 /* DEFAULT, LESS, SPACE, ZERO */
67 #define PAD_FMT_MONTHDAY 0
69 #define PAD_FMT_CENTURY 0
70 #define PAD_FMT_SHORTYEAR 0
71 #define PAD_FMT_MONTH 0
72 #define PAD_FMT_WEEKOFYEAR 0
73 #define PAD_FMT_DAYOFMONTH 0
74 { "%02d", "%d", "%2d", "%02d" },
75 #define PAD_FMT_SDAYOFMONTH 1
76 #define PAD_FMT_SHMS 1
77 { "%2d", "%d", "%2d", "%02d" },
78 #define PAD_FMT_DAYOFYEAR 2
79 { "%03d", "%d", "%3d", "%03d" },
80 #define PAD_FMT_YEAR 3
81 { "%04d", "%d", "%4d", "%04d" }
85 strftime(char * __restrict s
, size_t maxsize
, const char * __restrict format
,
86 const struct tm
* __restrict t
)
93 p
= _fmt(((format
== NULL
) ? "%c" : format
), t
, s
, s
+ maxsize
, &warn
);
94 #ifndef NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
95 if (warn
!= IN_NONE
&& getenv(YEAR_2000_NAME
) != NULL
) {
96 (void) fprintf(stderr
, "\n");
98 (void) fprintf(stderr
, "NULL strftime format ");
99 else (void) fprintf(stderr
, "strftime format \"%s\" ",
101 (void) fprintf(stderr
, "yields only two digits of years in ");
103 (void) fprintf(stderr
, "some locales");
104 else if (warn
== IN_THIS
)
105 (void) fprintf(stderr
, "the current locale");
106 else (void) fprintf(stderr
, "all locales");
107 (void) fprintf(stderr
, "\n");
109 #endif /* !defined NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU */
110 if (p
== s
+ maxsize
)
117 _fmt(format
, t
, pt
, ptlim
, warnp
)
119 const struct tm
* const t
;
121 const char * const ptlim
;
124 int Ealternative
, Oalternative
, PadIndex
;
125 struct lc_time_T
*tptr
= __get_current_time_locale();
127 for ( ; *format
; ++format
) {
128 if (*format
== '%') {
131 PadIndex
= PAD_DEFAULT
;
138 pt
= _add((t
->tm_wday
< 0 ||
139 t
->tm_wday
>= DAYSPERWEEK
) ?
140 "?" : tptr
->weekday
[t
->tm_wday
],
144 pt
= _add((t
->tm_wday
< 0 ||
145 t
->tm_wday
>= DAYSPERWEEK
) ?
146 "?" : tptr
->wday
[t
->tm_wday
],
150 pt
= _add((t
->tm_mon
< 0 ||
151 t
->tm_mon
>= MONSPERYEAR
) ?
152 "?" : (Oalternative
? tptr
->alt_month
:
153 tptr
->month
)[t
->tm_mon
],
158 pt
= _add((t
->tm_mon
< 0 ||
159 t
->tm_mon
>= MONSPERYEAR
) ?
160 "?" : tptr
->mon
[t
->tm_mon
],
165 ** %C used to do a...
166 ** _fmt("%a %b %e %X %Y", t);
167 ** ...whereas now POSIX 1003.2 calls for
168 ** something completely different.
171 pt
= _yconv(t
->tm_year
, TM_YEAR_BASE
, 1, 0,
178 pt
= _fmt(tptr
->c_fmt
, t
, pt
, ptlim
, &warn2
);
186 pt
= _fmt("%m/%d/%y", t
, pt
, ptlim
, warnp
);
189 pt
= _conv(t
->tm_mday
, fmt_padding
[PAD_FMT_DAYOFMONTH
][PadIndex
],
193 if (Ealternative
|| Oalternative
)
199 ** C99 locale modifiers.
201 ** %Ec %EC %Ex %EX %Ey %EY
202 ** %Od %oe %OH %OI %Om %OM
203 ** %OS %Ou %OU %OV %Ow %OW %Oy
204 ** are supposed to provide alternate
210 if (Ealternative
|| Oalternative
)
215 pt
= _conv(t
->tm_mday
,
216 fmt_padding
[PAD_FMT_SDAYOFMONTH
][PadIndex
], pt
, ptlim
);
219 pt
= _fmt("%Y-%m-%d", t
, pt
, ptlim
, warnp
);
222 pt
= _conv(t
->tm_hour
, fmt_padding
[PAD_FMT_HMS
][PadIndex
],
226 pt
= _conv((t
->tm_hour
% 12) ?
227 (t
->tm_hour
% 12) : 12,
228 fmt_padding
[PAD_FMT_HMS
][PadIndex
], pt
, ptlim
);
231 pt
= _conv(t
->tm_yday
+ 1,
232 fmt_padding
[PAD_FMT_DAYOFYEAR
][PadIndex
], pt
, ptlim
);
236 ** This used to be...
237 ** _conv(t->tm_hour % 12 ?
238 ** t->tm_hour % 12 : 12, 2, ' ');
239 ** ...and has been changed to the below to
240 ** match SunOS 4.1.1 and Arnold Robbins'
241 ** strftime version 3.0. That is, "%k" and
242 ** "%l" have been swapped.
245 pt
= _conv(t
->tm_hour
, fmt_padding
[PAD_FMT_SHMS
][PadIndex
],
251 ** After all this time, still unclaimed!
253 pt
= _add("kitchen sink", pt
, ptlim
);
255 #endif /* defined KITCHEN_SINK */
258 ** This used to be...
259 ** _conv(t->tm_hour, 2, ' ');
260 ** ...and has been changed to the below to
261 ** match SunOS 4.1.1 and Arnold Robbin's
262 ** strftime version 3.0. That is, "%k" and
263 ** "%l" have been swapped.
266 pt
= _conv((t
->tm_hour
% 12) ?
267 (t
->tm_hour
% 12) : 12,
268 fmt_padding
[PAD_FMT_SHMS
][PadIndex
], pt
, ptlim
);
271 pt
= _conv(t
->tm_min
, fmt_padding
[PAD_FMT_HMS
][PadIndex
],
275 pt
= _conv(t
->tm_mon
+ 1,
276 fmt_padding
[PAD_FMT_MONTH
][PadIndex
], pt
, ptlim
);
279 pt
= _add("\n", pt
, ptlim
);
282 pt
= _add((t
->tm_hour
>= (HOURSPERDAY
/ 2)) ?
288 pt
= _fmt("%H:%M", t
, pt
, ptlim
, warnp
);
291 pt
= _fmt(tptr
->ampm_fmt
, t
, pt
, ptlim
,
295 pt
= _conv(t
->tm_sec
, fmt_padding
[PAD_FMT_HMS
][PadIndex
],
301 char buf
[INT_STRLEN_MAXIMUM(
307 if (TYPE_SIGNED(time_t))
308 (void) sprintf(buf
, "%ld",
310 else (void) sprintf(buf
, "%lu",
311 (unsigned long) mkt
);
312 pt
= _add(buf
, pt
, ptlim
);
316 pt
= _fmt("%H:%M:%S", t
, pt
, ptlim
, warnp
);
319 pt
= _add("\t", pt
, ptlim
);
322 pt
= _conv((t
->tm_yday
+ DAYSPERWEEK
-
323 t
->tm_wday
) / DAYSPERWEEK
,
324 fmt_padding
[PAD_FMT_WEEKOFYEAR
][PadIndex
], pt
, ptlim
);
328 ** From Arnold Robbins' strftime version 3.0:
329 ** "ISO 8601: Weekday as a decimal number
333 pt
= _conv((t
->tm_wday
== 0) ?
334 DAYSPERWEEK
: t
->tm_wday
,
337 case 'V': /* ISO 8601 week number */
338 case 'G': /* ISO 8601 year (four digits) */
339 case 'g': /* ISO 8601 year (two digits) */
341 ** From Arnold Robbins' strftime version 3.0: "the week number of the
342 ** year (the first Monday as the first day of week 1) as a decimal number
346 ** From "http://www.ft.uni-erlangen.de/~mskuhn/iso-time.html" by Markus Kuhn:
347 ** "Week 01 of a year is per definition the first week which has the
348 ** Thursday in this year, which is equivalent to the week which contains
349 ** the fourth day of January. In other words, the first week of a new year
350 ** is the week which has the majority of its days in the new year. Week 01
351 ** might also contain days from the previous year and the week before week
352 ** 01 of a year is the last week (52 or 53) of the previous year even if
353 ** it contains days from the new year. A week starts with Monday (day 1)
354 ** and ends with Sunday (day 7). For example, the first week of the year
355 ** 1997 lasts from 1996-12-30 to 1997-01-05..."
374 len
= isleap_sum(year
, base
) ?
378 ** What yday (-3 ... 3) does
379 ** the ISO year begin on?
381 bot
= ((yday
+ 11 - wday
) %
384 ** What yday does the NEXT
385 ** ISO year begin on?
398 w
= 1 + ((yday
- bot
) /
403 yday
+= isleap_sum(year
, base
) ?
407 #ifdef XPG4_1994_04_09
409 t
->tm_mon
== TM_JANUARY
) ||
411 t
->tm_mon
== TM_DECEMBER
))
413 #endif /* defined XPG4_1994_04_09 */
415 pt
= _conv(w
, fmt_padding
[PAD_FMT_WEEKOFYEAR
][PadIndex
],
417 else if (*format
== 'g') {
419 pt
= _yconv(year
, base
, 0, 1,
421 } else pt
= _yconv(year
, base
, 1, 1,
427 ** From Arnold Robbins' strftime version 3.0:
428 ** "date as dd-bbb-YYYY"
431 pt
= _fmt("%e-%b-%Y", t
, pt
, ptlim
, warnp
);
434 pt
= _conv((t
->tm_yday
+ DAYSPERWEEK
-
437 (DAYSPERWEEK
- 1))) / DAYSPERWEEK
,
438 fmt_padding
[PAD_FMT_WEEKOFYEAR
][PadIndex
], pt
, ptlim
);
441 pt
= _conv(t
->tm_wday
, "%d", pt
, ptlim
);
444 pt
= _fmt(tptr
->X_fmt
, t
, pt
, ptlim
, warnp
);
450 pt
= _fmt(tptr
->x_fmt
, t
, pt
, ptlim
, &warn2
);
459 pt
= _yconv(t
->tm_year
, TM_YEAR_BASE
, 0, 1,
463 pt
= _yconv(t
->tm_year
, TM_YEAR_BASE
, 1, 1,
468 if (t
->TM_ZONE
!= NULL
)
469 pt
= _add(t
->TM_ZONE
, pt
, ptlim
);
471 #endif /* defined TM_ZONE */
472 if (t
->tm_isdst
>= 0)
473 pt
= _add(tzname
[t
->tm_isdst
!= 0],
476 ** C99 says that %Z must be replaced by the
477 ** empty string if the time zone is not
490 #else /* !defined TM_GMTOFF */
492 ** C99 says that the UTC offset must
493 ** be computed by looking only at
494 ** tm_isdst. This requirement is
495 ** incorrect, since it means the code
496 ** must rely on magic (in this case
497 ** altzone and timezone), and the
498 ** magic might not have the correct
499 ** offset. Doing things correctly is
500 ** tricky and requires disobeying C99;
501 ** see GNU C strftime for details.
502 ** For now, punt and conform to the
503 ** standard, even though it's incorrect.
505 ** C99 says that %z must be replaced by the
506 ** empty string if the time zone is not
507 ** determinable, so output nothing if the
508 ** appropriate variables are not available.
510 if (t
->tm_isdst
== 0)
513 #else /* !defined USG_COMPAT */
515 #endif /* !defined USG_COMPAT */
519 #else /* !defined ALTZONE */
521 #endif /* !defined ALTZONE */
522 #endif /* !defined TM_GMTOFF */
527 pt
= _add(sign
, pt
, ptlim
);
529 diff
= (diff
/ MINSPERHOUR
) * 100 +
530 (diff
% MINSPERHOUR
);
532 fmt_padding
[PAD_FMT_YEAR
][PadIndex
], pt
, ptlim
);
536 pt
= _fmt(tptr
->date_fmt
, t
, pt
, ptlim
,
540 if (PadIndex
!= PAD_DEFAULT
)
545 if (PadIndex
!= PAD_DEFAULT
)
547 PadIndex
= PAD_SPACE
;
550 if (PadIndex
!= PAD_DEFAULT
)
556 ** X311J/88-090 (4.12.3.5): if conversion char is
557 ** undefined, behavior is undefined. Print out the
558 ** character itself as printf(3) also does.
572 _conv(n
, format
, pt
, ptlim
)
574 const char * const format
;
576 const char * const ptlim
;
578 char buf
[INT_STRLEN_MAXIMUM(int) + 1];
580 (void) sprintf(buf
, format
, n
);
581 return _add(buf
, pt
, ptlim
);
588 const char * const ptlim
;
590 while (pt
< ptlim
&& (*pt
= *str
++) != '\0')
596 ** POSIX and the C Standard are unclear or inconsistent about
597 ** what %C and %y do if the year is negative or exceeds 9999.
598 ** Use the convention that %C concatenated with %y yields the
599 ** same output as %Y, and that %Y contains at least 4 bytes,
600 ** with more only if necessary.
604 _yconv(a
, b
, convert_top
, convert_yy
, pt
, ptlim
)
607 const int convert_top
;
608 const int convert_yy
;
610 const char * const ptlim
;
616 trail
= a
% DIVISOR
+ b
% DIVISOR
;
617 lead
= a
/ DIVISOR
+ b
/ DIVISOR
+ trail
/ DIVISOR
;
619 if (trail
< 0 && lead
> 0) {
622 } else if (lead
< 0 && trail
> 0) {
627 if (lead
== 0 && trail
< 0)
628 pt
= _add("-0", pt
, ptlim
);
629 else pt
= _conv(lead
, "%02d", pt
, ptlim
);
632 pt
= _conv(((trail
< 0) ? -trail
: trail
), "%02d", pt
, ptlim
);