1 /* -*- c-file-style: "linux" -*- */
6 * Public-domain implementation of ANSI C library routine.
8 * It's written in old-style C for maximal portability.
9 * However, since I'm used to prototypes, I've included them too.
11 * If you want stuff in the System V ascftime routine, add the SYSV_EXT define.
12 * For extensions from SunOS, add SUNOS_EXT.
13 * For stuff needed to implement the P1003.2 date command, add POSIX2_DATE.
14 * For VMS dates, add VMS_EXT.
15 * For a an RFC822 time format, add MAILHEADER_EXT.
16 * For ISO week years, add ISO_DATE_EXT.
17 * For complete POSIX semantics, add POSIX_SEMANTICS.
19 * The code for %c, %x, and %X now follows the 1003.2 specification for
21 * This version ignores LOCALE information.
22 * It also doesn't worry about multi-byte characters.
25 * This file is also shipped with GAWK (GNU Awk), gawk specific bits of
26 * code are included if GAWK is defined.
29 * January, February, March, 1991
30 * Updated March, April 1992
32 * Updated February, 1994
34 * Updated January, 1995
35 * Updated September, 1995
36 * Updated January, 1996
38 * Fixes from ado@elsie.nci.nih.gov
39 * February 1991, May 1992
40 * Fixes from Tor Lillqvist tml@tik.vtt.fi
42 * Further fixes from ado@elsie.nci.nih.gov
44 * %z code from chip@chinacat.unicom.com
45 * Applied September 1995
46 * %V code fixed (again) and %G, %g added,
50 #include "ruby/internal/config.h"
57 #include <sys/types.h>
60 #if defined(TM_IN_SYS_TIME) || !defined(GAWK)
61 #include <sys/types.h>
62 #ifdef HAVE_SYS_TIME_H
69 #include "internal/string.h"
70 #include "internal/vm.h"
71 #include "ruby/encoding.h"
72 #include "ruby/ruby.h"
73 #include "ruby/util.h"
76 /* defaults: season to taste */
77 #define SYSV_EXT 1 /* stuff in System V ascftime routine */
78 #define SUNOS_EXT 1 /* stuff in SunOS strftime routine */
79 #define POSIX2_DATE 1 /* stuff in Posix 1003.2 date command */
80 #define VMS_EXT 1 /* include %v for VMS date format */
81 #define MAILHEADER_EXT 1 /* add %z for HHMM format */
82 #define ISO_DATE_EXT 1 /* %G and %g for year of ISO week */
84 #if defined(ISO_DATE_EXT)
85 #if ! defined(POSIX2_DATE)
90 #if defined(POSIX2_DATE)
91 #if ! defined(SYSV_EXT)
94 #if ! defined(SUNOS_EXT)
99 #if defined(POSIX2_DATE)
100 #define adddecl(stuff) stuff
102 #define adddecl(stuff)
105 #undef strchr /* avoid AIX weirdness */
107 #if !defined __STDC__ && !defined _WIN32
109 static int weeknumber();
110 adddecl(static int iso8601wknum();)
111 static int weeknumber_v();
112 adddecl(static int iso8601wknum_v();)
114 static int weeknumber(const struct tm
*timeptr
, int firstweekday
);
115 adddecl(static int iso8601wknum(const struct tm
*timeptr
);)
116 static int weeknumber_v(const struct vtm
*vtm
, int firstweekday
);
117 adddecl(static int iso8601wknum_v(const struct vtm
*vtm
);)
124 extern void *malloc();
125 extern void *realloc();
126 extern char *getenv();
127 extern char *strchr();
130 #define range(low, item, hi) max((low), min((item), (hi)))
132 #undef min /* just in case */
134 /* min --- return minimum of two numbers */
139 return (a
< b
? a
: b
);
142 #undef max /* also, just in case */
144 /* max --- return maximum of two numbers */
149 return (a
> b
? a
: b
);
152 #ifdef NO_STRING_LITERAL_CONCATENATION
153 #error No string literal concatenation
156 #define add(x,y) (rb_funcall((x), '+', 1, (y)))
157 #define sub(x,y) (rb_funcall((x), '-', 1, (y)))
158 #define mul(x,y) (rb_funcall((x), '*', 1, (y)))
159 #define quo(x,y) (rb_funcall((x), rb_intern("quo"), 1, (y)))
160 #define div(x,y) (rb_funcall((x), rb_intern("div"), 1, (y)))
161 #define mod(x,y) (rb_funcall((x), '%', 1, (y)))
163 /* strftime --- produce formatted time */
165 enum {LEFT
, CHCASE
, LOWER
, UPPER
};
166 #define BIT_OF(n) (1U<<(n))
169 resize_buffer(VALUE ftime
, char *s
, const char **start
, const char **endp
,
170 ptrdiff_t n
, size_t maxsize
)
172 size_t len
= s
- *start
;
173 size_t nlen
= len
+ n
* 2;
175 if (nlen
< len
|| nlen
> maxsize
) {
178 rb_str_set_len(ftime
, len
);
179 rb_str_modify_expand(ftime
, nlen
-len
);
180 s
= RSTRING_PTR(ftime
);
187 buffer_size_check(const char *s
,
188 const char *format_end
, size_t format_len
,
192 const char *format
= format_end
-format_len
;
193 VALUE fmt
= rb_enc_str_new(format
, format_len
, enc
);
194 rb_syserr_fail_str(ERANGE
, fmt
);
199 case_conv(char *s
, ptrdiff_t i
, int flags
)
201 switch (flags
& (BIT_OF(UPPER
)|BIT_OF(LOWER
))) {
204 if (ISLOWER(*s
)) *s
= TOUPPER(*s
);
209 if (ISUPPER(*s
)) *s
= TOLOWER(*s
);
220 format_value(VALUE val
, int base
)
222 if (!RB_BIGNUM_TYPE_P(val
))
223 val
= rb_Integer(val
);
224 return rb_big2str(val
, base
);
228 * enc is the encoding of the format. It is used as the encoding of resulted
229 * string, but the name of the month and weekday are always US-ASCII. So it
230 * is only used for the timezone name on Windows.
233 rb_strftime_with_timespec(VALUE ftime
, const char *format
, size_t format_len
,
234 rb_encoding
*enc
, VALUE time
, const struct vtm
*vtm
,
235 VALUE timev
, struct timespec
*ts
, int gmt
, size_t maxsize
)
237 size_t len
= RSTRING_LEN(ftime
);
238 char *s
= RSTRING_PTR(ftime
);
239 const char *start
= s
;
240 const char *endp
= start
+ rb_str_capacity(ftime
);
241 const char *const format_end
= format
+ format_len
;
244 auto char tbuf
[TBUFSIZE
];
249 int precision
, flags
, colons
;
251 #ifdef MAILHEADER_EXT
256 /* various tables, useful in North America */
257 static const char days_l
[][10] = {
258 "Sunday", "Monday", "Tuesday", "Wednesday",
259 "Thursday", "Friday", "Saturday",
261 static const char months_l
[][10] = {
262 "January", "February", "March", "April",
263 "May", "June", "July", "August", "September",
264 "October", "November", "December",
266 static const char ampm
[][3] = { "AM", "PM", };
268 if (format
== NULL
|| format_len
== 0 || vtm
== NULL
) {
273 (enc
== rb_usascii_encoding() ||
274 enc
== rb_ascii8bit_encoding() ||
275 enc
== rb_locale_encoding())) {
280 for (; format
< format_end
; format
++) {
281 #define FLAG_FOUND() do { \
285 #define NEEDS(n) do { \
286 if (s >= endp || (n) >= endp - s - 1) { \
287 s = resize_buffer(ftime, s, &start, &endp, (n), maxsize); \
288 buffer_size_check(s, format_end, format_len, enc); \
291 #define FILL_PADDING(i) do { \
292 if (!(flags & BIT_OF(LEFT)) && precision > (i)) { \
294 memset(s, padding ? padding : ' ', precision - (i)); \
295 s += precision - (i); \
301 #define FMT_PADDING(fmt, def_pad) \
302 (&"%*"fmt"\0""%0*"fmt[\
303 (padding == '0' || (!padding && (def_pad) == '0')) ? \
304 rb_strlen_lit("%*"fmt)+1 : 0])
305 #define FMT_PRECISION(def_prec) \
306 ((flags & BIT_OF(LEFT)) ? (1) : \
307 (precision <= 0) ? (def_prec) : (precision))
308 #define FMT(def_pad, def_prec, fmt, val) \
310 precision = FMT_PRECISION(def_prec); \
313 rb_str_set_len(ftime, len); \
314 rb_str_catf(ftime, FMT_PADDING(fmt, def_pad), \
316 RSTRING_GETMEM(ftime, s, len); \
317 endp = (start = s) + rb_str_capacity(ftime); \
320 #define STRFTIME(fmt) \
323 rb_str_set_len(ftime, len); \
324 if (!rb_strftime_with_timespec(ftime, (fmt), rb_strlen_lit(fmt), \
325 enc, time, vtm, timev, ts, gmt, maxsize)) \
327 s = RSTRING_PTR(ftime); \
328 i = RSTRING_LEN(ftime) - len; \
329 endp = (start = s) + rb_str_capacity(ftime); \
331 if (i > 0) case_conv(s, i, flags); \
332 if (precision > i) {\
336 memmove(s + precision - i, s, i);\
337 memset(s, padding ? padding : ' ', precision - i); \
342 #define FMTV(def_pad, def_prec, fmt, val) \
345 if (FIXNUM_P(tmp)) { \
346 FMT((def_pad), (def_prec), "l"fmt, FIX2LONG(tmp)); \
349 const int base = ((fmt[0] == 'x') ? 16 : \
350 (fmt[0] == 'o') ? 8 : \
352 precision = FMT_PRECISION(def_prec); \
353 if (!padding) padding = (def_pad); \
354 tmp = format_value(tmp, base); \
355 i = RSTRING_LEN(tmp); \
357 rb_str_set_len(ftime, s-start); \
358 rb_str_append(ftime, tmp); \
359 RSTRING_GETMEM(ftime, s, len); \
360 endp = (start = s) + rb_str_capacity(ftime); \
365 tp
= memchr(format
, '%', format_end
- format
);
366 if (!tp
) tp
= format_end
;
368 memcpy(s
, format
, tp
- format
);
371 if (format
== format_end
) break;
380 if (++format
>= format_end
) goto unknown
;
387 case 'a': /* abbreviated weekday name */
388 if (flags
& BIT_OF(CHCASE
)) {
389 flags
&= ~(BIT_OF(LOWER
)|BIT_OF(CHCASE
));
390 flags
|= BIT_OF(UPPER
);
395 i
= 3, tp
= days_l
[vtm
->wday
];
398 case 'A': /* full weekday name */
399 if (flags
& BIT_OF(CHCASE
)) {
400 flags
&= ~(BIT_OF(LOWER
)|BIT_OF(CHCASE
));
401 flags
|= BIT_OF(UPPER
);
406 i
= strlen(tp
= days_l
[vtm
->wday
]);
410 case 'h': /* abbreviated month name */
412 case 'b': /* abbreviated month name */
413 if (flags
& BIT_OF(CHCASE
)) {
414 flags
&= ~(BIT_OF(LOWER
)|BIT_OF(CHCASE
));
415 flags
|= BIT_OF(UPPER
);
417 if (vtm
->mon
< 1 || vtm
->mon
> 12)
420 i
= 3, tp
= months_l
[vtm
->mon
-1];
423 case 'B': /* full month name */
424 if (flags
& BIT_OF(CHCASE
)) {
425 flags
&= ~(BIT_OF(LOWER
)|BIT_OF(CHCASE
));
426 flags
|= BIT_OF(UPPER
);
428 if (vtm
->mon
< 1 || vtm
->mon
> 12)
431 i
= strlen(tp
= months_l
[vtm
->mon
-1]);
434 case 'c': /* appropriate date and time representation */
435 STRFTIME("%a %b %e %H:%M:%S %Y");
438 case 'd': /* day of the month, 01 - 31 */
439 i
= range(1, vtm
->mday
, 31);
440 FMT('0', 2, "d", (int)i
);
443 case 'H': /* hour, 24-hour clock, 00 - 23 */
444 i
= range(0, vtm
->hour
, 23);
445 FMT('0', 2, "d", (int)i
);
448 case 'I': /* hour, 12-hour clock, 01 - 12 */
449 i
= range(0, vtm
->hour
, 23);
454 FMT('0', 2, "d", (int)i
);
457 case 'j': /* day of the year, 001 - 366 */
458 i
= range(1, vtm
->yday
, 366);
459 FMT('0', 3, "d", (int)i
);
462 case 'm': /* month, 01 - 12 */
463 i
= range(1, vtm
->mon
, 12);
464 FMT('0', 2, "d", (int)i
);
467 case 'M': /* minute, 00 - 59 */
468 i
= range(0, vtm
->min
, 59);
469 FMT('0', 2, "d", (int)i
);
472 case 'p': /* AM or PM based on 12-hour clock */
473 case 'P': /* am or pm based on 12-hour clock */
474 if ((*format
== 'p' && (flags
& BIT_OF(CHCASE
))) ||
475 (*format
== 'P' && !(flags
& (BIT_OF(CHCASE
)|BIT_OF(UPPER
))))) {
476 flags
&= ~(BIT_OF(UPPER
)|BIT_OF(CHCASE
));
477 flags
|= BIT_OF(LOWER
);
479 i
= range(0, vtm
->hour
, 23);
489 time_t sec
= ts
->tv_sec
;
491 FMT('0', 1, PRI_TIMET_PREFIX
"d", sec
);
493 FMT('0', 1, PRI_TIMET_PREFIX
"u", sec
);
496 VALUE sec
= div(timev
, INT2FIX(1));
497 FMTV('0', 1, "d", sec
);
501 case 'S': /* second, 00 - 60 */
502 i
= range(0, vtm
->sec
, 60);
503 FMT('0', 2, "d", (int)i
);
506 case 'U': /* week of year, Sunday is first day of week */
507 FMT('0', 2, "d", weeknumber_v(vtm
, 0));
510 case 'w': /* weekday, Sunday == 0, 0 - 6 */
511 i
= range(0, vtm
->wday
, 6);
512 FMT('0', 1, "d", (int)i
);
515 case 'W': /* week of year, Monday is first day of week */
516 FMT('0', 2, "d", weeknumber_v(vtm
, 1));
519 case 'x': /* appropriate date representation */
520 STRFTIME("%m/%d/%y");
523 case 'X': /* appropriate time representation */
524 STRFTIME("%H:%M:%S");
527 case 'y': /* year without a century, 00 - 99 */
528 i
= NUM2INT(mod(vtm
->year
, INT2FIX(100)));
529 FMT('0', 2, "d", (int)i
);
532 case 'Y': /* year with century */
533 if (FIXNUM_P(vtm
->year
)) {
534 long y
= FIX2LONG(vtm
->year
);
535 FMT('0', 0 <= y
? 4 : 5, "ld", y
);
538 FMTV('0', 4, "d", vtm
->year
);
542 #ifdef MAILHEADER_EXT
543 case 'z': /* time zone offset east of GMT e.g. -0600 */
548 off
= NUM2LONG(rb_funcall(vtm
->utc_offset
, rb_intern("round"), 0));
550 if (off
< 0 || (gmt
&& (flags
& BIT_OF(LEFT
)))) {
558 case 0: /* %z -> +hhmm */
559 precision
= precision
<= 5 ? 2 : precision
-3;
560 NEEDS(precision
+ 3);
563 case 1: /* %:z -> +hh:mm */
564 precision
= precision
<= 6 ? 2 : precision
-4;
565 NEEDS(precision
+ 4);
568 case 2: /* %::z -> +hh:mm:ss */
569 precision
= precision
<= 9 ? 2 : precision
-7;
570 NEEDS(precision
+ 7);
573 case 3: /* %:::z -> +hh[:mm[:ss]] */
574 if (off
% 3600 == 0) {
575 precision
= precision
<= 3 ? 2 : precision
-1;
576 NEEDS(precision
+ 3);
578 else if (off
% 60 == 0) {
579 precision
= precision
<= 6 ? 2 : precision
-4;
580 NEEDS(precision
+ 4);
583 precision
= precision
<= 9 ? 2 : precision
-7;
584 NEEDS(precision
+ 9);
592 i
= snprintf(s
, endp
- s
, (padding
== ' ' ? "%+*ld" : "%+.*ld"),
593 precision
+ (padding
== ' '), sign
* (off
/ 3600));
595 if (sign
< 0 && off
< 3600) {
596 *(padding
== ' ' ? s
+ i
- 2 : s
) = '-';
600 if (colons
== 3 && off
== 0)
604 i
= snprintf(s
, endp
- s
, "%02d", (int)(off
/ 60));
608 if (colons
== 3 && off
== 0)
612 i
= snprintf(s
, endp
- s
, "%02d", (int)off
);
617 #endif /* MAILHEADER_EXT */
619 case 'Z': /* time zone name or abbreviation */
620 if (flags
& BIT_OF(CHCASE
)) {
621 flags
&= ~(BIT_OF(UPPER
)|BIT_OF(CHCASE
));
622 flags
|= BIT_OF(LOWER
);
629 if (NIL_P(vtm
->zone
)) {
634 zone
= rb_time_zone_abbreviation(vtm
->zone
, time
);
636 tp
= RSTRING_PTR(zone
);
638 for (i
= 0; i
< TBUFSIZE
&& tp
[i
]; i
++) {
639 if ((unsigned char)tp
[i
] > 0x7F) {
640 VALUE str
= rb_str_conv_enc_opts(rb_str_new_cstr(tp
), rb_locale_encoding(), enc
, ECONV_UNDEF_REPLACE
|ECONV_INVALID_REPLACE
, Qnil
);
641 i
= strlcpy(tbuf
, RSTRING_PTR(str
), TBUFSIZE
);
653 case 'n': /* same as \n */
658 case 't': /* same as \t */
663 case 'D': /* date as %m/%d/%y */
664 STRFTIME("%m/%d/%y");
667 case 'e': /* day of month, blank padded */
668 FMT(' ', 2, "d", range(1, vtm
->mday
, 31));
671 case 'r': /* time as %I:%M:%S %p */
672 STRFTIME("%I:%M:%S %p");
675 case 'R': /* time as %H:%M */
679 case 'T': /* time as %H:%M:%S */
680 STRFTIME("%H:%M:%S");
685 case 'k': /* hour, 24-hour clock, blank pad */
686 i
= range(0, vtm
->hour
, 23);
687 FMT(' ', 2, "d", (int)i
);
690 case 'l': /* hour, 12-hour clock, 1 - 12, blank pad */
691 i
= range(0, vtm
->hour
, 23);
696 FMT(' ', 2, "d", (int)i
);
702 case 'v': /* date as dd-bbb-YYYY */
703 STRFTIME("%e-%^b-%4Y");
710 FMTV('0', 2, "d", div(vtm
->year
, INT2FIX(100)));
714 /* POSIX locale extensions, ignored for now */
715 if (!format
[1] || !strchr("cCxXyY", format
[1]))
719 /* POSIX locale extensions, ignored for now */
720 if (!format
[1] || !strchr("deHkIlmMSuUVwWy", format
[1]))
724 case 'V': /* week of year according ISO 8601 */
725 FMT('0', 2, "d", iso8601wknum_v(vtm
));
729 /* ISO 8601: Weekday as a decimal number [1 (Monday) - 7] */
730 FMT('0', 1, "d", vtm
->wday
== 0 ? 7 : vtm
->wday
);
732 #endif /* POSIX2_DATE */
740 * If it's December but the ISO week number is one,
741 * that week is in next year.
742 * If it's January but the ISO week number is 52 or
743 * 53, that week is in last year.
744 * Otherwise, it's this year.
747 VALUE yv
= vtm
->year
;
748 w
= iso8601wknum_v(vtm
);
749 if (vtm
->mon
== 12 && w
== 1)
750 yv
= add(yv
, INT2FIX(1));
751 else if (vtm
->mon
== 1 && w
>= 52)
752 yv
= sub(yv
, INT2FIX(1));
754 if (*format
== 'G') {
756 const long y
= FIX2LONG(yv
);
757 FMT('0', 0 <= y
? 4 : 5, "ld", y
);
760 FMTV('0', 4, "d", yv
);
764 yv
= mod(yv
, INT2FIX(100));
766 FMT('0', 2, "ld", y
);
771 #endif /* ISO_DATE_EXT */
780 * fractional second digits. default is 9 digits
783 * %3N millisecond (3 digits)
784 * %6N microsecond (6 digits)
785 * %9N nanosecond (9 digits)
789 if (precision
<= 0) {
795 long subsec
= ts
->tv_nsec
;
797 snprintf(s
, endp
- s
, "%09ld", subsec
);
798 memset(s
+9, '0', precision
-9);
803 for (i
= 0; i
< 9-precision
; i
++)
805 snprintf(s
, endp
- s
, "%0*ld", precision
, subsec
);
810 VALUE subsec
= mod(timev
, INT2FIX(1));
816 subsec
= mul(subsec
, INT2FIX(1000000000));
823 subsec
= mul(subsec
, INT2FIX(n
));
824 subsec
= div(subsec
, INT2FIX(1));
826 if (FIXNUM_P(subsec
)) {
827 (void)snprintf(s
, endp
- s
, "%0*ld", precision
, FIX2LONG(subsec
));
831 VALUE args
[2], result
;
832 args
[0] = INT2FIX(precision
);
834 result
= rb_str_format(2, args
,
835 rb_fstring_lit("%0*d"));
836 (void)strlcpy(s
, StringValueCStr(result
), endp
-s
);
842 case 'F': /* Equivalent to %Y-%m-%d */
843 STRFTIME("%Y-%m-%d");
848 flags
|= BIT_OF(LEFT
);
849 padding
= precision
= 0;
854 flags
|= BIT_OF(UPPER
);
859 flags
|= BIT_OF(CHCASE
);
868 for (colons
= 1; colons
<= 3; ++colons
) {
869 if (format
+colons
>= format_end
) goto unknown
;
870 if (format
[colons
] == 'z') break;
871 if (format
[colons
] != ':') goto unknown
;
873 format
+= colons
- 1;
878 case '1': case '2': case '3': case '4':
879 case '5': case '6': case '7': case '8': case '9':
883 unsigned long u
= ruby_scan_digits(format
, format_end
-format
, 10, &n
, &ov
);
884 if (ov
|| u
> INT_MAX
) goto unknown
;
903 s
= case_conv(s
, i
, flags
);
906 if (format
!= format_end
) {
910 rb_str_set_len(ftime
, len
);
911 rb_str_resize(ftime
, len
);
919 strftime_size_limit(size_t format_len
)
921 size_t limit
= format_len
* (1*1024*1024);
922 if (limit
< format_len
) limit
= format_len
;
923 else if (limit
< 1024) limit
= 1024;
928 rb_strftime(const char *format
, size_t format_len
, rb_encoding
*enc
,
929 VALUE time
, const struct vtm
*vtm
, VALUE timev
, int gmt
)
931 VALUE result
= rb_enc_str_new(0, 0, enc
);
932 return rb_strftime_with_timespec(result
, format
, format_len
, enc
,
933 time
, vtm
, timev
, NULL
, gmt
,
934 strftime_size_limit(format_len
));
938 rb_strftime_timespec(const char *format
, size_t format_len
, rb_encoding
*enc
,
939 VALUE time
, const struct vtm
*vtm
, struct timespec
*ts
, int gmt
)
941 VALUE result
= rb_enc_str_new(0, 0, enc
);
942 return rb_strftime_with_timespec(result
, format
, format_len
, enc
,
943 time
, vtm
, Qnil
, ts
, gmt
,
944 strftime_size_limit(format_len
));
949 rb_strftime_limit(const char *format
, size_t format_len
, rb_encoding
*enc
,
950 VALUE time
, const struct vtm
*vtm
, struct timespec
*ts
,
951 int gmt
, size_t maxsize
)
953 VALUE result
= rb_enc_str_new(0, 0, enc
);
954 return rb_strftime_with_timespec(result
, format
, format_len
, enc
,
955 time
, vtm
, Qnil
, ts
, gmt
, maxsize
);
959 /* isleap --- is a year a leap year? */
964 return ((year
% 4 == 0 && year
% 100 != 0) || year
% 400 == 0);
969 vtm2tm_noyear(const struct vtm
*vtm
, struct tm
*result
)
973 /* for isleap() in iso8601wknum. +100 is -1900 (mod 400). */
974 tm
.tm_year
= FIX2INT(mod(vtm
->year
, INT2FIX(400))) + 100;
976 tm
.tm_mon
= vtm
->mon
-1;
977 tm
.tm_mday
= vtm
->mday
;
978 tm
.tm_hour
= vtm
->hour
;
979 tm
.tm_min
= vtm
->min
;
980 tm
.tm_sec
= vtm
->sec
;
981 tm
.tm_wday
= vtm
->wday
;
982 tm
.tm_yday
= vtm
->yday
-1;
983 tm
.tm_isdst
= vtm
->isdst
;
984 #if defined(HAVE_STRUCT_TM_TM_GMTOFF)
985 tm
.tm_gmtoff
= NUM2LONG(vtm
->utc_offset
);
987 #if defined(HAVE_TM_ZONE)
988 tm
.tm_zone
= (char *)vtm
->zone
;
994 /* iso8601wknum --- compute week number according to ISO 8601 */
997 iso8601wknum(const struct tm
*timeptr
)
1001 * If the week (Monday to Sunday) containing January 1
1002 * has four or more days in the new year, then it is week 1;
1003 * otherwise it is the highest numbered week of the previous
1004 * year (52 or 53), and the next week is week 1.
1006 * ADR: This means if Jan 1 was Monday through Thursday,
1007 * it was week 1, otherwise week 52 or 53.
1009 * XPG4 erroneously included POSIX.2 rationale text in the
1010 * main body of the standard. Thus it requires week 53.
1013 int weeknum
, jan1day
;
1015 /* get week number, Monday as first day of the week */
1016 weeknum
= weeknumber(timeptr
, 1);
1019 * With thanks and tip of the hatlo to tml@tik.vtt.fi
1021 * What day of the week does January 1 fall on?
1023 * (timeptr->tm_yday - jan1.tm_yday) MOD 7 ==
1024 * (timeptr->tm_wday - jan1.tm_wday) MOD 7
1028 * timeptr->tm_wday MOD 7 == timeptr->tm_wday
1029 * from which it follows that. . .
1031 jan1day
= timeptr
->tm_wday
- (timeptr
->tm_yday
% 7);
1036 * If Jan 1 was a Monday through Thursday, it was in
1037 * week 1. Otherwise it was last year's highest week, which is
1038 * this year's week 0.
1040 * What does that mean?
1041 * If Jan 1 was Monday, the week number is exactly right, it can
1043 * If it was Tuesday through Thursday, the weeknumber is one
1044 * less than it should be, so we add one.
1045 * Otherwise, Friday, Saturday or Sunday, the week number is
1046 * OK, but if it is 0, it needs to be 52 or 53.
1049 case 1: /* Monday */
1051 case 2: /* Tuesday */
1052 case 3: /* Wednesday */
1053 case 4: /* Thursday */
1056 case 5: /* Friday */
1057 case 6: /* Saturday */
1058 case 0: /* Sunday */
1060 #ifdef USE_BROKEN_XPG4
1061 /* XPG4 (as of March 1994) says 53 unconditionally */
1064 /* get week number of last week of last year */
1065 struct tm dec31ly
; /* 12/31 last year */
1068 dec31ly
.tm_mon
= 11;
1069 dec31ly
.tm_mday
= 31;
1070 dec31ly
.tm_wday
= (jan1day
== 0) ? 6 : jan1day
- 1;
1071 dec31ly
.tm_yday
= 364 + isleap(dec31ly
.tm_year
+ 1900L);
1072 weeknum
= iso8601wknum(& dec31ly
);
1078 if (timeptr
->tm_mon
== 11) {
1080 * The last week of the year
1081 * can be in week 1 of next year.
1084 * This can only happen if
1092 wday
= timeptr
->tm_wday
;
1093 mday
= timeptr
->tm_mday
;
1094 if ( (wday
== 1 && (mday
>= 29 && mday
<= 31))
1095 || (wday
== 2 && (mday
== 30 || mday
== 31))
1096 || (wday
== 3 && mday
== 31))
1104 iso8601wknum_v(const struct vtm
*vtm
)
1107 vtm2tm_noyear(vtm
, &tm
);
1108 return iso8601wknum(&tm
);
1113 /* weeknumber --- figure how many weeks into the year */
1115 /* With thanks and tip of the hatlo to ado@elsie.nci.nih.gov */
1118 weeknumber(const struct tm
*timeptr
, int firstweekday
)
1120 int wday
= timeptr
->tm_wday
;
1123 if (firstweekday
== 1) {
1124 if (wday
== 0) /* sunday */
1129 ret
= ((timeptr
->tm_yday
+ 7 - wday
) / 7);
1136 weeknumber_v(const struct vtm
*vtm
, int firstweekday
)
1139 vtm2tm_noyear(vtm
, &tm
);
1140 return weeknumber(&tm
, firstweekday
);
1144 /* ADR --- I'm loathe to mess with ado's code ... */
1146 Date
: Wed
, 24 Apr
91 20:54:08 MDT
1147 From
: Michal Jaegermann
<audfax
!emory
!vm
.ucs
.UAlberta
.CA
!NTOMCZAK
>
1148 To
: arnold@audiofax
.com
1151 in a process of fixing of
strftime() in libraries on Atari ST I grabbed
1152 some pieces of code from your own strftime
. When doing that it came
1153 to mind that your
weeknumber() function compiles a little bit nicer
1154 in the following form
:
1156 * firstweekday is 0 if starting in Sunday, non-zero if in Monday
1159 return (timeptr
->tm_yday
- timeptr
->tm_wday
+
1160 (firstweekday
? (timeptr
->tm_wday
? 8 : 1) : 7)) / 7;
1162 How nicer it depends on a compiler
, of course
, but always a tiny bit
.
1166 ntomczak@vm
.ucs
.ualberta
.ca
1169 #ifdef TEST_STRFTIME
1179 * "tst" is a test driver for the function "strftime".
1186 * Control Data Systems, Inc.
1187 * vogelke@c-17igp.wpafb.af.mil
1193 * cc -o tst -DTEST_STRFTIME strftime.c
1196 /* ADR: I reformatted this to my liking, and deleted some unneeded code. */
1201 #include <sys/time.h>
1207 * Array of time formats.
1210 static char *array
[] =
1212 "(%%A) full weekday name, var length (Sunday..Saturday) %A",
1213 "(%%B) full month name, var length (January..December) %B",
1215 "(%%D) date (%%m/%%d/%%y) %D",
1216 "(%%E) Locale extensions (ignored) %E",
1217 "(%%H) hour (24-hour clock, 00..23) %H",
1218 "(%%I) hour (12-hour clock, 01..12) %I",
1219 "(%%M) minute (00..59) %M",
1220 "(%%O) Locale extensions (ignored) %O",
1221 "(%%R) time, 24-hour (%%H:%%M) %R",
1222 "(%%S) second (00..60) %S",
1223 "(%%T) time, 24-hour (%%H:%%M:%%S) %T",
1224 "(%%U) week of year, Sunday as first day of week (00..53) %U",
1225 "(%%V) week of year according to ISO 8601 %V",
1226 "(%%W) week of year, Monday as first day of week (00..53) %W",
1227 "(%%X) appropriate locale time representation (%H:%M:%S) %X",
1228 "(%%Y) year with century (1970...) %Y",
1229 "(%%Z) timezone (EDT), or blank if timezone not determinable %Z",
1230 "(%%a) locale's abbreviated weekday name (Sun..Sat) %a",
1231 "(%%b) locale's abbreviated month name (Jan..Dec) %b",
1232 "(%%c) full date (Sat Nov 4 12:02:33 1989)%n%t%t%t %c",
1233 "(%%d) day of the month (01..31) %d",
1234 "(%%e) day of the month, blank-padded ( 1..31) %e",
1235 "(%%h) should be same as (%%b) %h",
1236 "(%%j) day of the year (001..366) %j",
1237 "(%%k) hour, 24-hour clock, blank pad ( 0..23) %k",
1238 "(%%l) hour, 12-hour clock, blank pad ( 1..12) %l",
1239 "(%%m) month (01..12) %m",
1240 "(%%p) locale's AM or PM based on 12-hour clock %p",
1241 "(%%r) time, 12-hour (same as %%I:%%M:%%S %%p) %r",
1242 "(%%u) ISO 8601: Weekday as decimal number [1 (Monday) - 7] %u",
1243 "(%%v) VMS date (dd-bbb-YYYY) %v",
1244 "(%%w) day of week (0..6, Sunday == 0) %w",
1245 "(%%x) appropriate locale date representation %x",
1246 "(%%y) last two digits of year (00..99) %y",
1247 "(%%z) timezone offset east of GMT as HHMM (e.g. -0500) %z",
1254 main(int argc
, char **argv
)
1259 char string
[MAXTIME
];
1268 /* Call the function. */
1270 clock
= time((long *) 0);
1271 tm
= localtime(&clock
);
1273 for (k
= 0; next
= array
[k
]; k
++) {
1274 length
= strftime(string
, MAXTIME
, next
, tm
);
1275 printf("%s\n", string
);
1280 #endif /* TEST_STRFTIME */