]>
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.c 7.64";
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.40 2004/06/14 10:31:52 stefanf 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 *, int *);
47 size_t strftime(char * __restrict
, size_t, const char * __restrict
,
48 const struct tm
* __restrict
);
50 extern char * tzname
[];
52 #ifndef YEAR_2000_NAME
53 #define YEAR_2000_NAME "CHECK_STRFTIME_FORMATS_FOR_TWO_DIGIT_YEARS"
54 #endif /* !defined YEAR_2000_NAME */
63 strftime(char * __restrict s
, size_t maxsize
, const char * __restrict format
,
64 const struct tm
* __restrict t
)
71 p
= _fmt(((format
== NULL
) ? "%c" : format
), t
, s
, s
+ maxsize
, &warn
);
72 #ifndef NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
73 if (warn
!= IN_NONE
&& getenv(YEAR_2000_NAME
) != NULL
) {
74 (void) fprintf(stderr
, "\n");
76 (void) fprintf(stderr
, "NULL strftime format ");
77 else (void) fprintf(stderr
, "strftime format \"%s\" ",
79 (void) fprintf(stderr
, "yields only two digits of years in ");
81 (void) fprintf(stderr
, "some locales");
82 else if (warn
== IN_THIS
)
83 (void) fprintf(stderr
, "the current locale");
84 else (void) fprintf(stderr
, "all locales");
85 (void) fprintf(stderr
, "\n");
87 #endif /* !defined NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU */
95 _fmt(format
, t
, pt
, ptlim
, warnp
)
97 const struct tm
* const t
;
99 const char * const ptlim
;
102 int Ealternative
, Oalternative
;
103 struct lc_time_T
*tptr
= __get_current_time_locale();
105 for ( ; *format
; ++format
) {
106 if (*format
== '%') {
115 pt
= _add((t
->tm_wday
< 0 ||
116 t
->tm_wday
>= DAYSPERWEEK
) ?
117 "?" : tptr
->weekday
[t
->tm_wday
],
121 pt
= _add((t
->tm_wday
< 0 ||
122 t
->tm_wday
>= DAYSPERWEEK
) ?
123 "?" : tptr
->wday
[t
->tm_wday
],
127 pt
= _add((t
->tm_mon
< 0 ||
128 t
->tm_mon
>= MONSPERYEAR
) ?
129 "?" : (Oalternative
? tptr
->alt_month
:
130 tptr
->month
)[t
->tm_mon
],
135 pt
= _add((t
->tm_mon
< 0 ||
136 t
->tm_mon
>= MONSPERYEAR
) ?
137 "?" : tptr
->mon
[t
->tm_mon
],
142 ** %C used to do a...
143 ** _fmt("%a %b %e %X %Y", t);
144 ** ...whereas now POSIX 1003.2 calls for
145 ** something completely different.
148 pt
= _conv((t
->tm_year
+ TM_YEAR_BASE
) / 100,
155 pt
= _fmt(tptr
->c_fmt
, t
, pt
, ptlim
, warnp
);
163 pt
= _fmt("%m/%d/%y", t
, pt
, ptlim
, warnp
);
166 pt
= _conv(t
->tm_mday
, "%02d", pt
, ptlim
);
169 if (Ealternative
|| Oalternative
)
175 ** C99 locale modifiers.
177 ** %Ec %EC %Ex %EX %Ey %EY
178 ** %Od %oe %OH %OI %Om %OM
179 ** %OS %Ou %OU %OV %Ow %OW %Oy
180 ** are supposed to provide alternate
186 if (Ealternative
|| Oalternative
)
191 pt
= _conv(t
->tm_mday
, "%2d", pt
, ptlim
);
194 pt
= _fmt("%Y-%m-%d", t
, pt
, ptlim
, warnp
);
197 pt
= _conv(t
->tm_hour
, "%02d", pt
, ptlim
);
200 pt
= _conv((t
->tm_hour
% 12) ?
201 (t
->tm_hour
% 12) : 12,
205 pt
= _conv(t
->tm_yday
+ 1, "%03d", pt
, ptlim
);
209 ** This used to be...
210 ** _conv(t->tm_hour % 12 ?
211 ** t->tm_hour % 12 : 12, 2, ' ');
212 ** ...and has been changed to the below to
213 ** match SunOS 4.1.1 and Arnold Robbins'
214 ** strftime version 3.0. That is, "%k" and
215 ** "%l" have been swapped.
218 pt
= _conv(t
->tm_hour
, "%2d", pt
, ptlim
);
223 ** After all this time, still unclaimed!
225 pt
= _add("kitchen sink", pt
, ptlim
);
227 #endif /* defined KITCHEN_SINK */
230 ** This used to be...
231 ** _conv(t->tm_hour, 2, ' ');
232 ** ...and has been changed to the below to
233 ** match SunOS 4.1.1 and Arnold Robbin's
234 ** strftime version 3.0. That is, "%k" and
235 ** "%l" have been swapped.
238 pt
= _conv((t
->tm_hour
% 12) ?
239 (t
->tm_hour
% 12) : 12,
243 pt
= _conv(t
->tm_min
, "%02d", pt
, ptlim
);
246 pt
= _conv(t
->tm_mon
+ 1, "%02d", pt
, ptlim
);
249 pt
= _add("\n", pt
, ptlim
);
252 pt
= _add((t
->tm_hour
>= (HOURSPERDAY
/ 2)) ?
258 pt
= _fmt("%H:%M", t
, pt
, ptlim
, warnp
);
261 pt
= _fmt(tptr
->ampm_fmt
, t
, pt
, ptlim
,
265 pt
= _conv(t
->tm_sec
, "%02d", pt
, ptlim
);
270 char buf
[INT_STRLEN_MAXIMUM(
276 if (TYPE_SIGNED(time_t))
277 (void) sprintf(buf
, "%ld",
279 else (void) sprintf(buf
, "%lu",
280 (unsigned long) mkt
);
281 pt
= _add(buf
, pt
, ptlim
);
285 pt
= _fmt("%H:%M:%S", t
, pt
, ptlim
, warnp
);
288 pt
= _add("\t", pt
, ptlim
);
291 pt
= _conv((t
->tm_yday
+ DAYSPERWEEK
-
292 t
->tm_wday
) / DAYSPERWEEK
,
297 ** From Arnold Robbins' strftime version 3.0:
298 ** "ISO 8601: Weekday as a decimal number
302 pt
= _conv((t
->tm_wday
== 0) ?
303 DAYSPERWEEK
: t
->tm_wday
,
306 case 'V': /* ISO 8601 week number */
307 case 'G': /* ISO 8601 year (four digits) */
308 case 'g': /* ISO 8601 year (two digits) */
310 ** From Arnold Robbins' strftime version 3.0: "the week number of the
311 ** year (the first Monday as the first day of week 1) as a decimal number
315 ** From "http://www.ft.uni-erlangen.de/~mskuhn/iso-time.html" by Markus Kuhn:
316 ** "Week 01 of a year is per definition the first week which has the
317 ** Thursday in this year, which is equivalent to the week which contains
318 ** the fourth day of January. In other words, the first week of a new year
319 ** is the week which has the majority of its days in the new year. Week 01
320 ** might also contain days from the previous year and the week before week
321 ** 01 of a year is the last week (52 or 53) of the previous year even if
322 ** it contains days from the new year. A week starts with Monday (day 1)
323 ** and ends with Sunday (day 7). For example, the first week of the year
324 ** 1997 lasts from 1996-12-30 to 1997-01-05..."
333 year
= t
->tm_year
+ TM_YEAR_BASE
;
345 ** What yday (-3 ... 3) does
346 ** the ISO year begin on?
348 bot
= ((yday
+ 11 - wday
) %
351 ** What yday does the NEXT
352 ** ISO year begin on?
365 w
= 1 + ((yday
- bot
) /
370 yday
+= isleap(year
) ?
374 #ifdef XPG4_1994_04_09
376 && t
->tm_mon
== TM_JANUARY
)
378 && t
->tm_mon
== TM_DECEMBER
))
380 #endif /* defined XPG4_1994_04_09 */
382 pt
= _conv(w
, "%02d",
384 else if (*format
== 'g') {
386 pt
= _conv(year
% 100, "%02d",
388 } else pt
= _conv(year
, "%04d",
394 ** From Arnold Robbins' strftime version 3.0:
395 ** "date as dd-bbb-YYYY"
398 pt
= _fmt("%e-%b-%Y", t
, pt
, ptlim
, warnp
);
401 pt
= _conv((t
->tm_yday
+ DAYSPERWEEK
-
404 (DAYSPERWEEK
- 1))) / DAYSPERWEEK
,
408 pt
= _conv(t
->tm_wday
, "%d", pt
, ptlim
);
411 pt
= _fmt(tptr
->X_fmt
, t
, pt
, ptlim
, warnp
);
417 pt
= _fmt(tptr
->x_fmt
, t
, pt
, ptlim
, &warn2
);
426 pt
= _conv((t
->tm_year
+ TM_YEAR_BASE
) % 100,
430 pt
= _conv(t
->tm_year
+ TM_YEAR_BASE
, "%04d",
435 if (t
->TM_ZONE
!= NULL
)
436 pt
= _add(t
->TM_ZONE
, pt
, ptlim
);
438 #endif /* defined TM_ZONE */
439 if (t
->tm_isdst
>= 0)
440 pt
= _add(tzname
[t
->tm_isdst
!= 0],
443 ** C99 says that %Z must be replaced by the
444 ** empty string if the time zone is not
457 #else /* !defined TM_GMTOFF */
459 ** C99 says that the UTC offset must
460 ** be computed by looking only at
461 ** tm_isdst. This requirement is
462 ** incorrect, since it means the code
463 ** must rely on magic (in this case
464 ** altzone and timezone), and the
465 ** magic might not have the correct
466 ** offset. Doing things correctly is
467 ** tricky and requires disobeying C99;
468 ** see GNU C strftime for details.
469 ** For now, punt and conform to the
470 ** standard, even though it's incorrect.
472 ** C99 says that %z must be replaced by the
473 ** empty string if the time zone is not
474 ** determinable, so output nothing if the
475 ** appropriate variables are not available.
477 if (t
->tm_isdst
== 0)
480 #else /* !defined USG_COMPAT */
482 #endif /* !defined USG_COMPAT */
486 #else /* !defined ALTZONE */
488 #endif /* !defined ALTZONE */
489 #endif /* !defined TM_GMTOFF */
494 pt
= _add(sign
, pt
, ptlim
);
496 pt
= _conv((diff
/60)*100 + diff%60
,
501 pt
= _fmt(tptr
->date_fmt
, t
, pt
, ptlim
,
506 ** X311J/88-090 (4.12.3.5): if conversion char is
507 ** undefined, behavior is undefined. Print out the
508 ** character itself as printf(3) also does.
522 _conv(n
, format
, pt
, ptlim
)
524 const char * const format
;
526 const char * const ptlim
;
528 char buf
[INT_STRLEN_MAXIMUM(int) + 1];
530 (void) sprintf(buf
, format
, n
);
531 return _add(buf
, pt
, ptlim
);
538 const char * const ptlim
;
540 while (pt
< ptlim
&& (*pt
= *str
++) != '\0')