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

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

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

22 23
static int week_num(const struct tm *tm)
{
24
	int val = (tm->tm_yday + 7U - (tm->tm_wday+6U)%7) / 7;
25 26
	/* If 1 Jan is just 1-3 days past Monday,
	 * the previous week is also in this year. */
27
	if ((tm->tm_wday + 371U - tm->tm_yday - 2) % 7 <= 2)
28 29 30 31 32 33
		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. */
34
		int dec31 = (tm->tm_wday + 7U - tm->tm_yday - 1) % 7;
35 36 37 38 39 40
		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. */
41
		int jan1 = (tm->tm_wday + 371U - tm->tm_yday) % 7;
42 43 44 45 46 47
		if (jan1 != 4 && (jan1 != 3 || !is_leap(tm->tm_year)))
			val = 1;
	}
	return val;
}

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

50
const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm *tm, locale_t loc, int pad)
R
Rich Felker 已提交
51 52
{
	nl_item item;
53
	long long val;
54
	const char *fmt = "-";
55
	int width = 2, def_pad = '0';
56 57 58

	switch (f) {
	case 'a':
59
		if (tm->tm_wday > 6U) goto string;
60 61 62
		item = ABDAY_1 + tm->tm_wday;
		goto nl_strcat;
	case 'A':
63
		if (tm->tm_wday > 6U) goto string;
64 65 66 67
		item = DAY_1 + tm->tm_wday;
		goto nl_strcat;
	case 'h':
	case 'b':
68
		if (tm->tm_mon > 11U) goto string;
69 70 71
		item = ABMON_1 + tm->tm_mon;
		goto nl_strcat;
	case 'B':
72
		if (tm->tm_mon > 11U) goto string;
73 74 75 76 77 78
		item = MON_1 + tm->tm_mon;
		goto nl_strcat;
	case 'c':
		item = D_T_FMT;
		goto nl_strftime;
	case 'C':
79
		val = (1900LL+tm->tm_year) / 100;
80
		goto number;
81 82
	case 'e':
		def_pad = '_';
83 84 85 86 87 88 89 90 91 92 93
	case 'd':
		val = tm->tm_mday;
		goto number;
	case 'D':
		fmt = "%m/%d/%y";
		goto recu_strftime;
	case 'F':
		fmt = "%Y-%m-%d";
		goto recu_strftime;
	case 'g':
	case 'G':
94
		val = tm->tm_year + 1900LL;
95 96
		if (tm->tm_yday < 3 && week_num(tm) != 1) val--;
		else if (tm->tm_yday > 360 && week_num(tm) == 1) val++;
97 98
		if (f=='g') val %= 100;
		else width = 4;
99 100 101 102 103 104 105 106 107 108 109
		goto number;
	case 'H':
		val = tm->tm_hour;
		goto number;
	case 'I':
		val = tm->tm_hour;
		if (!val) val = 12;
		else if (val > 12) val -= 12;
		goto number;
	case 'j':
		val = tm->tm_yday+1;
110
		width = 3;
111 112 113 114 115 116 117 118
		goto number;
	case 'm':
		val = tm->tm_mon+1;
		goto number;
	case 'M':
		val = tm->tm_min;
		goto number;
	case 'n':
119
		*l = 1;
R
Rich Felker 已提交
120
		return "\n";
121 122 123 124 125 126 127 128 129
	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;
130
	case 's':
131
		val = __tm_to_secs(tm) - tm->__tm_gmtoff;
132
		width = 1;
133
		goto number;
134 135 136 137
	case 'S':
		val = tm->tm_sec;
		goto number;
	case 't':
138
		*l = 1;
R
Rich Felker 已提交
139
		return "\t";
140 141 142 143 144
	case 'T':
		fmt = "%H:%M:%S";
		goto recu_strftime;
	case 'u':
		val = tm->tm_wday ? tm->tm_wday : 7;
145
		width = 1;
146 147
		goto number;
	case 'U':
148
		val = (tm->tm_yday + 7U - tm->tm_wday) / 7;
149 150
		goto number;
	case 'W':
151
		val = (tm->tm_yday + 7U - (tm->tm_wday+6U)%7) / 7;
152 153 154 155 156 157
		goto number;
	case 'V':
		val = week_num(tm);
		goto number;
	case 'w':
		val = tm->tm_wday;
158
		width = 1;
159 160 161 162 163 164 165 166
		goto number;
	case 'x':
		item = D_FMT;
		goto nl_strftime;
	case 'X':
		item = T_FMT;
		goto nl_strftime;
	case 'y':
R
Rich Felker 已提交
167 168
		val = (tm->tm_year + 1900LL) % 100;
		if (val < 0) val = -val;
169 170
		goto number;
	case 'Y':
171
		val = tm->tm_year + 1900LL;
172 173 174 175
		if (val >= 10000) {
			*l = snprintf(*s, sizeof *s, "+%lld", val);
			return *s;
		}
176
		width = 4;
177 178
		goto number;
	case 'z':
179 180 181 182
		if (tm->tm_isdst < 0) {
			*l = 0;
			return "";
		}
183 184
		*l = snprintf(*s, sizeof *s, "%+.4ld",
			tm->__tm_gmtoff/3600*100 + tm->__tm_gmtoff%3600/60);
R
Rich Felker 已提交
185
		return *s;
186
	case 'Z':
187 188 189 190 191
		if (tm->tm_isdst < 0) {
			*l = 0;
			return "";
		}
		fmt = __tm_to_tzname(tm);
192
		goto string;
193
	case '%':
194
		*l = 1;
R
Rich Felker 已提交
195
		return "%";
196 197 198
	default:
		return 0;
	}
R
Rich Felker 已提交
199
number:
200 201 202 203 204 205
	switch (pad ? pad : def_pad) {
	case '-': *l = snprintf(*s, sizeof *s, "%lld", val); break;
	case '_': *l = snprintf(*s, sizeof *s, "%*lld", width, val); break;
	case '0':
	default:  *l = snprintf(*s, sizeof *s, "%0*lld", width, val); break;
	}
R
Rich Felker 已提交
206
	return *s;
R
Rich Felker 已提交
207
nl_strcat:
208 209 210 211
	fmt = __nl_langinfo_l(item, loc);
string:
	*l = strlen(fmt);
	return fmt;
R
Rich Felker 已提交
212
nl_strftime:
213
	fmt = __nl_langinfo_l(item, loc);
R
Rich Felker 已提交
214
recu_strftime:
215 216
	*l = __strftime_l(*s, sizeof *s, fmt, tm, loc);
	if (!*l) return 0;
R
Rich Felker 已提交
217
	return *s;
218 219 220 221 222
}

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 已提交
223
	char buf[100];
224
	char *p;
R
Rich Felker 已提交
225
	const char *t;
226
	int pad, plus;
227
	unsigned long width;
228
	for (l=0; l<n; f++) {
R
Rich Felker 已提交
229 230 231 232
		if (!*f) {
			s[l] = 0;
			return l;
		}
233 234 235 236 237
		if (*f != '%') {
			s[l++] = *f;
			continue;
		}
		f++;
238 239
		pad = 0;
		if (*f == '-' || *f == '_' || *f == '0') pad = *f++;
240 241 242 243 244 245 246 247
		if ((plus = (*f == '+'))) f++;
		width = strtoul(f, &p, 10);
		if (*p == 'C' || *p == 'F' || *p == 'G' || *p == 'Y') {
			if (!width && p!=f) width = 1;
		} else {
			width = 0;
		}
		f = p;
248
		if (*f == 'E' || *f == 'O') f++;
249
		t = __strftime_fmt_1(&buf, &k, *f, tm, loc, pad);
250
		if (!t) break;
251
		if (width) {
252 253 254
			/* Trim off any sign and leading zeros, then
			 * count remaining digits to determine behavior
			 * for the + flag. */
255 256
			if (*t=='+' || *t=='-') t++, k--;
			for (; *t=='0' && t[1]-'0'<10U; t++, k--);
257 258 259 260
			if (width < k) width = k;
			size_t d;
			for (d=0; t[d]-'0'<10U; d++);
			if (tm->tm_year < -1900) {
261
				s[l++] = '-';
262 263 264 265 266
				width--;
			} else if (plus && d+(width-k) >= (*p=='C'?3:5)) {
				s[l++] = '+';
				width--;
			}
267
			for (; width > k && l < n; width--)
268 269
				s[l++] = '0';
		}
270
		if (k > n-l) k = n-l;
R
Rich Felker 已提交
271
		memcpy(s+l, t, k);
272
		l += k;
R
Rich Felker 已提交
273
	}
274 275 276 277
	if (n) {
		if (l==n) l=n-1;
		s[l] = 0;
	}
R
Rich Felker 已提交
278
	return 0;
R
Rich Felker 已提交
279
}
280 281 282

size_t strftime(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm)
{
283
	return __strftime_l(s, n, f, tm, CURRENT_LOCALE);
284 285 286
}

weak_alias(__strftime_l, strftime_l);