strftime.c 4.7 KB
Newer Older
R
Rich Felker 已提交
1 2 3
#include <stdio.h>
#include <stdlib.h>
#include <langinfo.h>
4
#include <locale.h>
R
Rich Felker 已提交
5
#include <time.h>
6
#include <limits.h>
7
#include "libc.h"
R
Rich Felker 已提交
8 9 10

// FIXME: integer overflows

11
const char *__nl_langinfo_l(nl_item, locale_t);
R
Rich Felker 已提交
12

13 14 15 16 17 18 19 20
static int is_leap(int y)
{
	/* Avoid overflow */
	if (y>INT_MAX-1900) y -= 2000;
	y += 1900;
	return !(y%4) && ((y%100) || !(y%400));
}

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
static int week_num(const struct tm *tm)
{
	int val = (tm->tm_yday + 7 - (tm->tm_wday+6)%7) / 7;
	/* If 1 Jan is just 1-3 days past Monday,
	 * the previous week is also in this year. */
	if ((tm->tm_wday - tm->tm_yday - 2 + 371) % 7 <= 2)
		val++;
	if (!val) {
		val = 52;
		/* If 31 December of prev year a Thursday,
		 * or Friday of a leap year, then the
		 * prev year has 53 weeks. */
		int dec31 = (tm->tm_wday - tm->tm_yday - 1 + 7) % 7;
		if (dec31 == 4 || (dec31 == 5 && is_leap(tm->tm_year%400-1)))
			val++;
	} else if (val == 53) {
		/* If 1 January is not a Thursday, and not
		 * a Wednesday of a leap year, then this
		 * year has only 52 weeks. */
		int jan1 = (tm->tm_wday - tm->tm_yday + 371) % 7;
		if (jan1 != 4 && (jan1 != 3 || !is_leap(tm->tm_year)))
			val = 1;
	}
	return val;
}

47 48
size_t __strftime_l(char *restrict, size_t, const char *restrict, const struct tm *restrict, locale_t);

49
const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm *tm, locale_t loc)
R
Rich Felker 已提交
50 51 52 53
{
	nl_item item;
	int val;
	const char *fmt;
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96

	switch (f) {
	case 'a':
		item = ABDAY_1 + tm->tm_wday;
		goto nl_strcat;
	case 'A':
		item = DAY_1 + tm->tm_wday;
		goto nl_strcat;
	case 'h':
	case 'b':
		item = ABMON_1 + tm->tm_mon;
		goto nl_strcat;
	case 'B':
		item = MON_1 + tm->tm_mon;
		goto nl_strcat;
	case 'c':
		item = D_T_FMT;
		goto nl_strftime;
	case 'C':
		val = (1900+tm->tm_year) / 100;
		fmt = "%02d";
		goto number;
	case 'd':
		val = tm->tm_mday;
		fmt = "%02d";
		goto number;
	case 'D':
		fmt = "%m/%d/%y";
		goto recu_strftime;
	case 'e':
		val = tm->tm_mday;
		fmt = "%2d";
		goto number;
	case 'F':
		fmt = "%Y-%m-%d";
		goto recu_strftime;
	case 'g':
	case 'G':
		fmt = "%04d";
		val = tm->tm_year + 1900;
		if (tm->tm_yday < 3 && week_num(tm) != 1) val--;
		else if (tm->tm_yday > 360 && week_num(tm) == 1) val++;
		if (f=='g') {
R
Rich Felker 已提交
97
			fmt = "%02d";
98
			val %= 100;
R
Rich Felker 已提交
99
		}
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
		goto number;
	case 'H':
		val = tm->tm_hour;
		fmt = "%02d";
		goto number;
	case 'I':
		val = tm->tm_hour;
		if (!val) val = 12;
		else if (val > 12) val -= 12;
		fmt = "%02d";
		goto number;
	case 'j':
		val = tm->tm_yday+1;
		fmt = "%03d";
		goto number;
	case 'm':
		val = tm->tm_mon+1;
		fmt = "%02d";
		goto number;
	case 'M':
		val = tm->tm_min;
		fmt = "%02d";
		goto number;
	case 'n':
124
		*l = 1;
R
Rich Felker 已提交
125
		return "\n";
126 127 128 129 130 131 132 133 134 135 136 137 138 139
	case 'p':
		item = tm->tm_hour >= 12 ? PM_STR : AM_STR;
		goto nl_strcat;
	case 'r':
		item = T_FMT_AMPM;
		goto nl_strftime;
	case 'R':
		fmt = "%H:%M";
		goto recu_strftime;
	case 'S':
		val = tm->tm_sec;
		fmt = "%02d";
		goto number;
	case 't':
140
		*l = 1;
R
Rich Felker 已提交
141
		return "\t";
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
	case 'T':
		fmt = "%H:%M:%S";
		goto recu_strftime;
	case 'u':
		val = tm->tm_wday ? tm->tm_wday : 7;
		fmt = "%d";
		goto number;
	case 'U':
		val = (tm->tm_yday + 7 - tm->tm_wday) / 7;
		fmt = "%02d";
		goto number;
	case 'W':
		val = (tm->tm_yday + 7 - (tm->tm_wday+6)%7) / 7;
		fmt = "%02d";
		goto number;
	case 'V':
		val = week_num(tm);
		fmt = "%02d";
		goto number;
	case 'w':
		val = tm->tm_wday;
		fmt = "%d";
		goto number;
	case 'x':
		item = D_FMT;
		goto nl_strftime;
	case 'X':
		item = T_FMT;
		goto nl_strftime;
	case 'y':
		val = tm->tm_year % 100;
		fmt = "%02d";
		goto number;
	case 'Y':
		val = tm->tm_year + 1900;
		fmt = "%04d";
		goto number;
	case 'z':
		val = -tm->__tm_gmtoff;
181
		*l = snprintf(*s, sizeof *s, "%+.2d%.2d", val/3600, abs(val%3600)/60);
R
Rich Felker 已提交
182
		return *s;
183
	case 'Z':
184 185
		fmt = tm->__tm_zone;
		goto string;
186
	case '%':
187
		*l = 1;
R
Rich Felker 已提交
188
		return "%";
189 190 191
	default:
		return 0;
	}
R
Rich Felker 已提交
192
number:
193
	*l = snprintf(*s, sizeof *s, fmt, val);
R
Rich Felker 已提交
194
	return *s;
R
Rich Felker 已提交
195
nl_strcat:
196 197 198 199
	fmt = __nl_langinfo_l(item, loc);
string:
	*l = strlen(fmt);
	return fmt;
R
Rich Felker 已提交
200
nl_strftime:
201
	fmt = __nl_langinfo_l(item, loc);
R
Rich Felker 已提交
202
recu_strftime:
203 204
	*l = __strftime_l(*s, sizeof *s, fmt, tm, loc);
	if (!*l) return 0;
R
Rich Felker 已提交
205
	return *s;
206 207 208 209 210
}

size_t __strftime_l(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm, locale_t loc)
{
	size_t l, k;
R
Rich Felker 已提交
211 212 213 214 215 216 217
	char buf[100];
	const char *t;
	for (l=0; l+1<n; f++) {
		if (!*f) {
			s[l] = 0;
			return l;
		}
218 219 220 221 222 223
		if (*f != '%') {
			s[l++] = *f;
			continue;
		}
		f++;
		if (*f == 'E' || *f == 'O') f++;
224 225
		t = __strftime_fmt_1(&buf, &k, *f, tm, loc);
		if (!t || k >= n-l)
R
Rich Felker 已提交
226 227
			return 0;
		memcpy(s+l, t, k);
228
		l += k;
R
Rich Felker 已提交
229
	}
R
Rich Felker 已提交
230
	return 0;
R
Rich Felker 已提交
231
}
232 233 234

size_t strftime(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm)
{
235
	return __strftime_l(s, n, f, tm, 0);
236 237 238
}

weak_alias(__strftime_l, strftime_l);