2 * Copyright 2013 Garrett D'Amore <garrett@damore.org>
3 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
4 * Copyright (c) 1989 The Regents of the University of California.
7 * Redistribution and use in source and binary forms are permitted
8 * provided that the above copyright notice and this paragraph are
9 * duplicated in all such forms and that any documentation,
10 * advertising materials, and other materials related to such
11 * distribution and use acknowledge that the software was developed
12 * by the University of California, Berkeley. The name of the
13 * University may not be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
27 #include "timelocal.h"
28 #include "localeimpl.h"
30 static char *_add(const char *, char *, const char *);
31 static char *_conv(int, const char *, char *, const char *);
32 static char *_fmt(locale_t
, const char *, const struct tm
*, char *,
34 static char *_yconv(int, int, int, int, char *, const char *);
36 extern char *tzname
[];
48 static const char *fmt_padding
[][4] = {
49 /* DEFAULT, LESS, SPACE, ZERO */
50 #define PAD_FMT_MONTHDAY 0
52 #define PAD_FMT_CENTURY 0
53 #define PAD_FMT_SHORTYEAR 0
54 #define PAD_FMT_MONTH 0
55 #define PAD_FMT_WEEKOFYEAR 0
56 #define PAD_FMT_DAYOFMONTH 0
57 { "%02d", "%d", "%2d", "%02d" },
58 #define PAD_FMT_SDAYOFMONTH 1
59 #define PAD_FMT_SHMS 1
60 { "%2d", "%d", "%2d", "%02d" },
61 #define PAD_FMT_DAYOFYEAR 2
62 { "%03d", "%d", "%3d", "%03d" },
63 #define PAD_FMT_YEAR 3
64 { "%04d", "%d", "%4d", "%04d" }
69 strftime_l(char *_RESTRICT_KYWD s
, size_t maxsize
,
70 const char *_RESTRICT_KYWD format
, const struct tm
*_RESTRICT_KYWD t
,
76 p
= _fmt(loc
, ((format
== NULL
) ? "%c" : format
), t
, s
, s
+ maxsize
);
84 strftime(char *_RESTRICT_KYWD s
, size_t maxsize
,
85 const char *_RESTRICT_KYWD format
, const struct tm
*_RESTRICT_KYWD t
)
87 return (strftime_l(s
, maxsize
, format
, t
, uselocale(NULL
)));
91 _fmt(locale_t loc
, const char *format
, const struct tm
*t
, char *pt
,
92 const char * const ptlim
)
94 int Ealternative
, Oalternative
, PadIndex
;
95 const struct lc_time
*tptr
= loc
->time
;
97 #define PADDING(x) fmt_padding[x][PadIndex]
99 for (; *format
; ++format
) {
100 if (*format
== '%') {
103 PadIndex
= PAD_DEFAULT
;
110 pt
= _add((t
->tm_wday
< 0 ||
111 t
->tm_wday
>= DAYSPERWEEK
) ?
112 "?" : tptr
->weekday
[t
->tm_wday
],
116 pt
= _add((t
->tm_wday
< 0 ||
117 t
->tm_wday
>= DAYSPERWEEK
) ?
118 "?" : tptr
->wday
[t
->tm_wday
],
122 pt
= _add((t
->tm_mon
< 0 ||
123 t
->tm_mon
>= MONSPERYEAR
) ?
124 "?" : (tptr
->month
)[t
->tm_mon
],
129 pt
= _add((t
->tm_mon
< 0 ||
130 t
->tm_mon
>= MONSPERYEAR
) ?
131 "?" : tptr
->mon
[t
->tm_mon
],
137 * _fmt("%a %b %e %X %Y", t);
138 * ...whereas now POSIX 1003.2 calls for
139 * something completely different.
142 pt
= _yconv(t
->tm_year
, TM_YEAR_BASE
, 1, 0,
146 pt
= _fmt(loc
, tptr
->c_fmt
, t
, pt
, ptlim
);
149 pt
= _fmt(loc
, "%m/%d/%y", t
, pt
, ptlim
);
152 pt
= _conv(t
->tm_mday
,
153 PADDING(PAD_FMT_DAYOFMONTH
), pt
, ptlim
);
156 if (Ealternative
|| Oalternative
)
162 * C99 locale modifiers.
164 * %Ec %EC %Ex %EX %Ey %EY
165 * %Od %oe %OH %OI %Om %OM
166 * %OS %Ou %OU %OV %Ow %OW %Oy
167 * are supposed to provide alternate
170 if (Ealternative
|| Oalternative
)
175 pt
= _conv(t
->tm_mday
,
176 PADDING(PAD_FMT_SDAYOFMONTH
), pt
, ptlim
);
179 pt
= _fmt(loc
, "%Y-%m-%d", t
, pt
, ptlim
);
182 pt
= _conv(t
->tm_hour
, PADDING(PAD_FMT_HMS
),
186 pt
= _conv((t
->tm_hour
% 12) ?
187 (t
->tm_hour
% 12) : 12,
188 PADDING(PAD_FMT_HMS
), pt
, ptlim
);
191 pt
= _conv(t
->tm_yday
+ 1,
192 PADDING(PAD_FMT_DAYOFYEAR
), pt
, ptlim
);
197 * _conv(t->tm_hour % 12 ?
198 * t->tm_hour % 12 : 12, 2, ' ');
199 * ...and has been changed to the below to
200 * match SunOS 4.1.1 and Arnold Robbins'
201 * strftime version 3.0. That is, "%k" and
202 * "%l" have been swapped.
205 pt
= _conv(t
->tm_hour
,
206 PADDING(PAD_FMT_SHMS
), pt
, ptlim
);
211 * _conv(t->tm_hour, 2, ' ');
212 * ...and has been changed to the below to
213 * match SunOS 4.1.1 and Arnold Robbin's
214 * strftime version 3.0. That is, "%k" and
215 * "%l" have been swapped.
218 pt
= _conv((t
->tm_hour
% 12) ?
219 (t
->tm_hour
% 12) : 12,
220 PADDING(PAD_FMT_SHMS
), pt
, ptlim
);
223 pt
= _conv(t
->tm_min
, PADDING(PAD_FMT_HMS
),
227 pt
= _conv(t
->tm_mon
+ 1,
228 PADDING(PAD_FMT_MONTH
),
232 pt
= _add("\n", pt
, ptlim
);
235 pt
= _add((t
->tm_hour
>= (HOURSPERDAY
/ 2)) ?
236 tptr
->pm
: tptr
->am
, pt
, ptlim
);
239 pt
= _fmt(loc
, "%H:%M", t
, pt
, ptlim
);
242 pt
= _fmt(loc
, tptr
->ampm_fmt
, t
, pt
, ptlim
);
245 pt
= _conv(t
->tm_sec
, PADDING(PAD_FMT_HMS
),
255 (void) asprintf(&buf
, "%ld", mktime(&tm
));
256 pt
= _add(buf
, pt
, ptlim
);
261 pt
= _fmt(loc
, "%H:%M:%S", t
, pt
, ptlim
);
264 pt
= _add("\t", pt
, ptlim
);
267 pt
= _conv((t
->tm_yday
+ DAYSPERWEEK
-
268 t
->tm_wday
) / DAYSPERWEEK
,
269 PADDING(PAD_FMT_WEEKOFYEAR
),
274 * From Arnold Robbins' strftime version 3.0:
275 * "ISO 8601: Weekday as a decimal number
279 pt
= _conv((t
->tm_wday
== 0) ?
280 DAYSPERWEEK
: t
->tm_wday
,
283 case 'V': /* ISO 8601 week number */
284 case 'G': /* ISO 8601 year (four digits) */
285 case 'g': /* ISO 8601 year (two digits) */
287 * From Arnold Robbins' strftime version 3.0: "the week number of the
288 * year (the first Monday as the first day of week 1) as a decimal number
292 * From "http://www.ft.uni-erlangen.de/~mskuhn/iso-time.html" by Markus Kuhn:
293 * "Week 01 of a year is per definition the first week which has the
294 * Thursday in this year, which is equivalent to the week which contains
295 * the fourth day of January. In other words, the first week of a new year
296 * is the week which has the majority of its days in the new year. Week 01
297 * might also contain days from the previous year and the week before week
298 * 01 of a year is the last week (52 or 53) of the previous year even if
299 * it contains days from the new year. A week starts with Monday (day 1)
300 * and ends with Sunday (day 7). For example, the first week of the year
301 * 1997 lasts from 1996-12-30 to 1997-01-05..."
320 len
= isleap_sum(year
, base
) ?
321 DAYSPERLYEAR
: DAYSPERNYEAR
;
323 * What yday (-3 ... 3) does
324 * the ISO year begin on?
326 bot
= ((yday
+ 11 - wday
) %
329 * What yday does the NEXT
332 top
= bot
- (len
% DAYSPERWEEK
);
342 w
= 1 + ((yday
- bot
) /
347 yday
+= isleap_sum(year
, base
) ?
348 DAYSPERLYEAR
: DAYSPERNYEAR
;
350 #ifdef XPG4_1994_04_09
351 if ((w
== 52 && t
->tm_mon
== TM_JANUARY
) ||
352 (w
== 1 && t
->tm_mon
== TM_DECEMBER
))
354 #endif /* defined XPG4_1994_04_09 */
357 PADDING(PAD_FMT_WEEKOFYEAR
),
359 else if (*format
== 'g') {
360 pt
= _yconv(year
, base
, 0, 1,
363 pt
= _yconv(year
, base
, 1, 1,
369 * From Arnold Robbins' strftime version 3.0:
370 * "date as dd-bbb-YYYY"
373 pt
= _fmt(loc
, "%e-%b-%Y", t
, pt
, ptlim
);
376 pt
= _conv((t
->tm_yday
+ DAYSPERWEEK
-
379 (DAYSPERWEEK
- 1))) / DAYSPERWEEK
,
380 PADDING(PAD_FMT_WEEKOFYEAR
),
384 pt
= _conv(t
->tm_wday
, "%d", pt
, ptlim
);
387 pt
= _fmt(loc
, tptr
->X_fmt
, t
, pt
, ptlim
);
390 pt
= _fmt(loc
, tptr
->x_fmt
, t
, pt
, ptlim
);
393 pt
= _yconv(t
->tm_year
, TM_YEAR_BASE
, 0, 1,
397 pt
= _yconv(t
->tm_year
, TM_YEAR_BASE
, 1, 1,
401 if (t
->tm_isdst
>= 0)
402 pt
= _add(tzname
[t
->tm_isdst
!= 0],
405 * C99 says that %Z must be replaced by the
406 * empty string if the time zone is not
418 * C99 says that the UTC offset must
419 * be computed by looking only at
420 * tm_isdst. This requirement is
421 * incorrect, since it means the code
422 * must rely on magic (in this case
423 * altzone and timezone), and the
424 * magic might not have the correct
425 * offset. Doing things correctly is
426 * tricky and requires disobeying C99;
427 * see GNU C strftime for details.
428 * For now, punt and conform to the
429 * standard, even though it's incorrect.
431 * C99 says that %z must be replaced by the
432 * empty string if the time zone is not
433 * determinable, so output nothing if the
434 * appropriate variables are not available.
436 if (t
->tm_isdst
== 0)
445 pt
= _add(sign
, pt
, ptlim
);
447 diff
= (diff
/ MINSPERHOUR
) * 100 +
448 (diff
% MINSPERHOUR
);
449 pt
= _conv(diff
, PADDING(PAD_FMT_YEAR
),
454 pt
= _fmt(loc
, tptr
->date_fmt
, t
, pt
, ptlim
);
457 if (PadIndex
!= PAD_DEFAULT
)
462 if (PadIndex
!= PAD_DEFAULT
)
464 PadIndex
= PAD_SPACE
;
467 if (PadIndex
!= PAD_DEFAULT
)
473 * X311J/88-090 (4.12.3.5): if conversion char is
474 * undefined, behavior is undefined. Print out the
475 * character itself as printf(3) also does.
489 _conv(const int n
, const char *format
, char *const pt
,
490 const char *const ptlim
)
494 (void) sprintf(buf
, format
, n
);
495 return (_add(buf
, pt
, ptlim
));
499 _add(const char *str
, char *pt
, const char *const ptlim
)
501 while (pt
< ptlim
&& (*pt
= *str
++) != '\0')
507 * POSIX and the C Standard are unclear or inconsistent about
508 * what %C and %y do if the year is negative or exceeds 9999.
509 * Use the convention that %C concatenated with %y yields the
510 * same output as %Y, and that %Y contains at least 4 bytes,
511 * with more only if necessary.
515 _yconv(const int a
, const int b
, const int convert_top
, const int convert_yy
,
516 char *pt
, const char * const ptlim
)
522 trail
= a
% DIVISOR
+ b
% DIVISOR
;
523 lead
= a
/ DIVISOR
+ b
/ DIVISOR
+ trail
/ DIVISOR
;
525 if (trail
< 0 && lead
> 0) {
528 } else if (lead
< 0 && trail
> 0) {
533 if (lead
== 0 && trail
< 0)
534 pt
= _add("-0", pt
, ptlim
);
535 else pt
= _conv(lead
, "%02d", pt
, ptlim
);
538 pt
= _conv(((trail
< 0) ? -trail
: trail
), "%02d", pt
, ptlim
);