The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* |
Elliott Hughes | 5f56454 | 2014-06-19 13:54:10 -0700 | [diff] [blame] | 2 | ** Based on the UCB version with the copyright notice and sccsid |
| 3 | ** appearing below. |
| 4 | ** |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 5 | ** This is ANSIish only when "multibyte character == plain character". |
| 6 | */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 7 | |
| 8 | #include "private.h" |
| 9 | |
| 10 | /* |
| 11 | ** Copyright (c) 1989 The Regents of the University of California. |
| 12 | ** All rights reserved. |
| 13 | ** |
| 14 | ** Redistribution and use in source and binary forms are permitted |
| 15 | ** provided that the above copyright notice and this paragraph are |
| 16 | ** duplicated in all such forms and that any documentation, |
| 17 | ** advertising materials, and other materials related to such |
| 18 | ** distribution and use acknowledge that the software was developed |
| 19 | ** by the University of California, Berkeley. The name of the |
| 20 | ** University may not be used to endorse or promote products derived |
| 21 | ** from this software without specific prior written permission. |
Elliott Hughes | 5f56454 | 2014-06-19 13:54:10 -0700 | [diff] [blame] | 22 | ** THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 23 | ** IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED |
| 24 | ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
| 25 | */ |
| 26 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 27 | #include "tzfile.h" |
| 28 | #include "fcntl.h" |
| 29 | #include "locale.h" |
Elliott Hughes | 5f56454 | 2014-06-19 13:54:10 -0700 | [diff] [blame] | 30 | |
| 31 | #if __ANDROID__ |
Elliott Hughes | 905e6d5 | 2014-07-25 11:55:59 -0700 | [diff] [blame] | 32 | |
Elliott Hughes | 905e6d5 | 2014-07-25 11:55:59 -0700 | [diff] [blame] | 33 | /* LP32 had a 32-bit time_t, so we need to work around that here. */ |
Elliott Hughes | 52defb7 | 2014-05-05 17:14:02 -0700 | [diff] [blame] | 34 | #if defined(__LP64__) |
| 35 | #define time64_t time_t |
| 36 | #define mktime64 mktime |
| 37 | #else |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 38 | #include <time64.h> |
Elliott Hughes | 52defb7 | 2014-05-05 17:14:02 -0700 | [diff] [blame] | 39 | #endif |
Elliott Hughes | 905e6d5 | 2014-07-25 11:55:59 -0700 | [diff] [blame] | 40 | |
Elliott Hughes | 5f56454 | 2014-06-19 13:54:10 -0700 | [diff] [blame] | 41 | #include <ctype.h> |
Elliott Hughes | 905e6d5 | 2014-07-25 11:55:59 -0700 | [diff] [blame] | 42 | |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 43 | #endif |
Elliott Hughes | 905e6d5 | 2014-07-25 11:55:59 -0700 | [diff] [blame] | 44 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 45 | struct lc_time_T { |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 46 | const char * mon[MONSPERYEAR]; |
| 47 | const char * month[MONSPERYEAR]; |
| 48 | const char * wday[DAYSPERWEEK]; |
| 49 | const char * weekday[DAYSPERWEEK]; |
| 50 | const char * X_fmt; |
| 51 | const char * x_fmt; |
| 52 | const char * c_fmt; |
| 53 | const char * am; |
| 54 | const char * pm; |
| 55 | const char * date_fmt; |
| 56 | }; |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 57 | |
| 58 | #define Locale (&C_time_locale) |
| 59 | |
| 60 | static const struct lc_time_T C_time_locale = { |
| 61 | { |
| 62 | "Jan", "Feb", "Mar", "Apr", "May", "Jun", |
| 63 | "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" |
| 64 | }, { |
| 65 | "January", "February", "March", "April", "May", "June", |
| 66 | "July", "August", "September", "October", "November", "December" |
| 67 | }, { |
| 68 | "Sun", "Mon", "Tue", "Wed", |
| 69 | "Thu", "Fri", "Sat" |
| 70 | }, { |
| 71 | "Sunday", "Monday", "Tuesday", "Wednesday", |
| 72 | "Thursday", "Friday", "Saturday" |
| 73 | }, |
| 74 | |
| 75 | /* X_fmt */ |
| 76 | "%H:%M:%S", |
| 77 | |
| 78 | /* |
| 79 | ** x_fmt |
| 80 | ** C99 requires this format. |
| 81 | ** Using just numbers (as here) makes Quakers happier; |
| 82 | ** it's also compatible with SVR4. |
| 83 | */ |
| 84 | "%m/%d/%y", |
| 85 | |
| 86 | /* |
| 87 | ** c_fmt |
| 88 | ** C99 requires this format. |
| 89 | ** Previously this code used "%D %X", but we now conform to C99. |
| 90 | ** Note that |
| 91 | ** "%a %b %d %H:%M:%S %Y" |
| 92 | ** is used by Solaris 2.3. |
| 93 | */ |
| 94 | "%a %b %e %T %Y", |
| 95 | |
| 96 | /* am */ |
| 97 | "AM", |
| 98 | |
| 99 | /* pm */ |
| 100 | "PM", |
| 101 | |
| 102 | /* date_fmt */ |
| 103 | "%a %b %e %H:%M:%S %Z %Y" |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 104 | }; |
| 105 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 106 | static char * _add(const char *, char *, const char *, int); |
| 107 | static char * _conv(int, const char *, char *, const char *); |
| 108 | static char * _fmt(const char *, const struct tm *, char *, const char *, |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 109 | int *); |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 110 | static char * _yconv(int, int, bool, bool, char *, const char *, int); |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 111 | static char * getformat(int, char *, char *, char *, char *); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 112 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 113 | extern char * tzname[]; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 114 | |
| 115 | #ifndef YEAR_2000_NAME |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 116 | #define YEAR_2000_NAME "CHECK_STRFTIME_FORMATS_FOR_TWO_DIGIT_YEARS" |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 117 | #endif /* !defined YEAR_2000_NAME */ |
| 118 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 119 | #define IN_NONE 0 |
| 120 | #define IN_SOME 1 |
| 121 | #define IN_THIS 2 |
| 122 | #define IN_ALL 3 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 123 | |
| 124 | #define FORCE_LOWER_CASE 0x100 |
| 125 | |
| 126 | size_t |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 127 | strftime(char *s, size_t maxsize, const char *format, const struct tm *t) |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 128 | { |
| 129 | char * p; |
| 130 | int warn; |
| 131 | |
| 132 | tzset(); |
| 133 | warn = IN_NONE; |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 134 | p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn); |
Elliott Hughes | 9a5a3e8 | 2014-05-05 20:28:28 -0700 | [diff] [blame] | 135 | #ifndef NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 136 | if (warn != IN_NONE && getenv(YEAR_2000_NAME) != NULL) { |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 137 | fprintf(stderr, "\n"); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 138 | if (format == NULL) |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 139 | fprintf(stderr, "NULL strftime format "); |
| 140 | else fprintf(stderr, "strftime format \"%s\" ", |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 141 | format); |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 142 | fprintf(stderr, "yields only two digits of years in "); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 143 | if (warn == IN_SOME) |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 144 | fprintf(stderr, "some locales"); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 145 | else if (warn == IN_THIS) |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 146 | fprintf(stderr, "the current locale"); |
| 147 | else fprintf(stderr, "all locales"); |
| 148 | fprintf(stderr, "\n"); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 149 | } |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 150 | #endif /* !defined NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 151 | if (p == s + maxsize) |
| 152 | return 0; |
| 153 | *p = '\0'; |
| 154 | return p - s; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | static char *getformat(int modifier, char *normal, char *underscore, |
| 158 | char *dash, char *zero) { |
| 159 | switch (modifier) { |
| 160 | case '_': |
| 161 | return underscore; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 162 | case '-': |
| 163 | return dash; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 164 | case '0': |
| 165 | return zero; |
| 166 | } |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 167 | return normal; |
| 168 | } |
| 169 | |
| 170 | static char * |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 171 | _fmt(const char *format, const struct tm *t, char *pt, |
| 172 | const char *ptlim, int *warnp) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 173 | { |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 174 | for ( ; *format; ++format) { |
| 175 | if (*format == '%') { |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 176 | int modifier = 0; |
| 177 | label: |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 178 | switch (*++format) { |
| 179 | case '\0': |
| 180 | --format; |
| 181 | break; |
| 182 | case 'A': |
| 183 | pt = _add((t->tm_wday < 0 || |
| 184 | t->tm_wday >= DAYSPERWEEK) ? |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 185 | "?" : Locale->weekday[t->tm_wday], |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 186 | pt, ptlim, modifier); |
| 187 | continue; |
| 188 | case 'a': |
| 189 | pt = _add((t->tm_wday < 0 || |
| 190 | t->tm_wday >= DAYSPERWEEK) ? |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 191 | "?" : Locale->wday[t->tm_wday], |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 192 | pt, ptlim, modifier); |
| 193 | continue; |
| 194 | case 'B': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 195 | pt = _add((t->tm_mon < 0 || |
Eric Fischer | a48fa7f | 2009-05-15 13:33:20 -0700 | [diff] [blame] | 196 | t->tm_mon >= MONSPERYEAR) ? |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 197 | "?" : Locale->month[t->tm_mon], |
Eric Fischer | a48fa7f | 2009-05-15 13:33:20 -0700 | [diff] [blame] | 198 | pt, ptlim, modifier); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 199 | continue; |
| 200 | case 'b': |
| 201 | case 'h': |
| 202 | pt = _add((t->tm_mon < 0 || |
| 203 | t->tm_mon >= MONSPERYEAR) ? |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 204 | "?" : Locale->mon[t->tm_mon], |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 205 | pt, ptlim, modifier); |
| 206 | continue; |
| 207 | case 'C': |
| 208 | /* |
| 209 | ** %C used to do a... |
| 210 | ** _fmt("%a %b %e %X %Y", t); |
| 211 | ** ...whereas now POSIX 1003.2 calls for |
| 212 | ** something completely different. |
| 213 | ** (ado, 1993-05-24) |
| 214 | */ |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 215 | pt = _yconv(t->tm_year, TM_YEAR_BASE, |
| 216 | true, false, pt, ptlim, modifier); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 217 | continue; |
| 218 | case 'c': |
| 219 | { |
| 220 | int warn2 = IN_SOME; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 221 | |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 222 | pt = _fmt(Locale->c_fmt, t, pt, ptlim, &warn2); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 223 | if (warn2 == IN_ALL) |
| 224 | warn2 = IN_THIS; |
| 225 | if (warn2 > *warnp) |
| 226 | *warnp = warn2; |
| 227 | } |
| 228 | continue; |
| 229 | case 'D': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 230 | pt = _fmt("%m/%d/%y", t, pt, ptlim, warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 231 | continue; |
| 232 | case 'd': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 233 | pt = _conv(t->tm_mday, getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 234 | continue; |
| 235 | case 'E': |
| 236 | case 'O': |
| 237 | /* |
| 238 | ** C99 locale modifiers. |
| 239 | ** The sequences |
| 240 | ** %Ec %EC %Ex %EX %Ey %EY |
| 241 | ** %Od %oe %OH %OI %Om %OM |
| 242 | ** %OS %Ou %OU %OV %Ow %OW %Oy |
| 243 | ** are supposed to provide alternate |
| 244 | ** representations. |
| 245 | */ |
| 246 | goto label; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 247 | case '_': |
| 248 | case '-': |
| 249 | case '0': |
| 250 | case '^': |
| 251 | case '#': |
| 252 | modifier = *format; |
| 253 | goto label; |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 254 | case 'e': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 255 | pt = _conv(t->tm_mday, getformat(modifier, "%2d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 256 | continue; |
| 257 | case 'F': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 258 | pt = _fmt("%Y-%m-%d", t, pt, ptlim, warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 259 | continue; |
| 260 | case 'H': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 261 | pt = _conv(t->tm_hour, getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 262 | continue; |
| 263 | case 'I': |
| 264 | pt = _conv((t->tm_hour % 12) ? |
| 265 | (t->tm_hour % 12) : 12, |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 266 | getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 267 | continue; |
| 268 | case 'j': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 269 | pt = _conv(t->tm_yday + 1, getformat(modifier, "%03d", "%3d", "%d", "%03d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 270 | continue; |
| 271 | case 'k': |
| 272 | /* |
| 273 | ** This used to be... |
| 274 | ** _conv(t->tm_hour % 12 ? |
| 275 | ** t->tm_hour % 12 : 12, 2, ' '); |
| 276 | ** ...and has been changed to the below to |
| 277 | ** match SunOS 4.1.1 and Arnold Robbins' |
| 278 | ** strftime version 3.0. That is, "%k" and |
| 279 | ** "%l" have been swapped. |
| 280 | ** (ado, 1993-05-24) |
| 281 | */ |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 282 | pt = _conv(t->tm_hour, getformat(modifier, "%2d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 283 | continue; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 284 | #ifdef KITCHEN_SINK |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 285 | case 'K': |
| 286 | /* |
| 287 | ** After all this time, still unclaimed! |
| 288 | */ |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 289 | pt = _add("kitchen sink", pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 290 | continue; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 291 | #endif /* defined KITCHEN_SINK */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 292 | case 'l': |
| 293 | /* |
| 294 | ** This used to be... |
| 295 | ** _conv(t->tm_hour, 2, ' '); |
| 296 | ** ...and has been changed to the below to |
| 297 | ** match SunOS 4.1.1 and Arnold Robbin's |
| 298 | ** strftime version 3.0. That is, "%k" and |
| 299 | ** "%l" have been swapped. |
| 300 | ** (ado, 1993-05-24) |
| 301 | */ |
| 302 | pt = _conv((t->tm_hour % 12) ? |
| 303 | (t->tm_hour % 12) : 12, |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 304 | getformat(modifier, "%2d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 305 | continue; |
| 306 | case 'M': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 307 | pt = _conv(t->tm_min, getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 308 | continue; |
| 309 | case 'm': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 310 | pt = _conv(t->tm_mon + 1, getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 311 | continue; |
| 312 | case 'n': |
| 313 | pt = _add("\n", pt, ptlim, modifier); |
| 314 | continue; |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 315 | case 'P': |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 316 | case 'p': |
| 317 | pt = _add((t->tm_hour >= (HOURSPERDAY / 2)) ? |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 318 | Locale->pm : |
| 319 | Locale->am, |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 320 | pt, ptlim, (*format == 'P') ? FORCE_LOWER_CASE : modifier); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 321 | continue; |
| 322 | case 'R': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 323 | pt = _fmt("%H:%M", t, pt, ptlim, warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 324 | continue; |
| 325 | case 'r': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 326 | pt = _fmt("%I:%M:%S %p", t, pt, ptlim, warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 327 | continue; |
| 328 | case 'S': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 329 | pt = _conv(t->tm_sec, getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 330 | continue; |
| 331 | case 's': |
| 332 | { |
| 333 | struct tm tm; |
| 334 | char buf[INT_STRLEN_MAXIMUM( |
| 335 | time64_t) + 1]; |
| 336 | time64_t mkt; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 337 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 338 | tm = *t; |
| 339 | mkt = mktime64(&tm); |
| 340 | if (TYPE_SIGNED(time64_t)) |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 341 | snprintf(buf, sizeof(buf), "%"PRIdMAX, |
| 342 | (intmax_t) mkt); |
| 343 | else snprintf(buf, sizeof(buf), "%"PRIuMAX, |
| 344 | (uintmax_t) mkt); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 345 | pt = _add(buf, pt, ptlim, modifier); |
| 346 | } |
| 347 | continue; |
| 348 | case 'T': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 349 | pt = _fmt("%H:%M:%S", t, pt, ptlim, warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 350 | continue; |
| 351 | case 't': |
| 352 | pt = _add("\t", pt, ptlim, modifier); |
| 353 | continue; |
| 354 | case 'U': |
| 355 | pt = _conv((t->tm_yday + DAYSPERWEEK - |
| 356 | t->tm_wday) / DAYSPERWEEK, |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 357 | getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 358 | continue; |
| 359 | case 'u': |
| 360 | /* |
| 361 | ** From Arnold Robbins' strftime version 3.0: |
| 362 | ** "ISO 8601: Weekday as a decimal number |
| 363 | ** [1 (Monday) - 7]" |
| 364 | ** (ado, 1993-05-24) |
| 365 | */ |
| 366 | pt = _conv((t->tm_wday == 0) ? |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 367 | DAYSPERWEEK : t->tm_wday, |
| 368 | "%d", pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 369 | continue; |
| 370 | case 'V': /* ISO 8601 week number */ |
| 371 | case 'G': /* ISO 8601 year (four digits) */ |
| 372 | case 'g': /* ISO 8601 year (two digits) */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 373 | /* |
| 374 | ** From Arnold Robbins' strftime version 3.0: "the week number of the |
| 375 | ** year (the first Monday as the first day of week 1) as a decimal number |
| 376 | ** (01-53)." |
| 377 | ** (ado, 1993-05-24) |
| 378 | ** |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 379 | ** From <http://www.ft.uni-erlangen.de/~mskuhn/iso-time.html> by Markus Kuhn: |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 380 | ** "Week 01 of a year is per definition the first week which has the |
| 381 | ** Thursday in this year, which is equivalent to the week which contains |
| 382 | ** the fourth day of January. In other words, the first week of a new year |
| 383 | ** is the week which has the majority of its days in the new year. Week 01 |
| 384 | ** might also contain days from the previous year and the week before week |
| 385 | ** 01 of a year is the last week (52 or 53) of the previous year even if |
| 386 | ** it contains days from the new year. A week starts with Monday (day 1) |
| 387 | ** and ends with Sunday (day 7). For example, the first week of the year |
| 388 | ** 1997 lasts from 1996-12-30 to 1997-01-05..." |
| 389 | ** (ado, 1996-01-02) |
| 390 | */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 391 | { |
| 392 | int year; |
| 393 | int base; |
| 394 | int yday; |
| 395 | int wday; |
| 396 | int w; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 397 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 398 | year = t->tm_year; |
| 399 | base = TM_YEAR_BASE; |
| 400 | yday = t->tm_yday; |
| 401 | wday = t->tm_wday; |
| 402 | for ( ; ; ) { |
| 403 | int len; |
| 404 | int bot; |
| 405 | int top; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 406 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 407 | len = isleap_sum(year, base) ? |
| 408 | DAYSPERLYEAR : |
| 409 | DAYSPERNYEAR; |
| 410 | /* |
| 411 | ** What yday (-3 ... 3) does |
| 412 | ** the ISO year begin on? |
| 413 | */ |
| 414 | bot = ((yday + 11 - wday) % |
| 415 | DAYSPERWEEK) - 3; |
| 416 | /* |
| 417 | ** What yday does the NEXT |
| 418 | ** ISO year begin on? |
| 419 | */ |
| 420 | top = bot - |
| 421 | (len % DAYSPERWEEK); |
| 422 | if (top < -3) |
| 423 | top += DAYSPERWEEK; |
| 424 | top += len; |
| 425 | if (yday >= top) { |
| 426 | ++base; |
| 427 | w = 1; |
| 428 | break; |
| 429 | } |
| 430 | if (yday >= bot) { |
| 431 | w = 1 + ((yday - bot) / |
| 432 | DAYSPERWEEK); |
| 433 | break; |
| 434 | } |
| 435 | --base; |
| 436 | yday += isleap_sum(year, base) ? |
| 437 | DAYSPERLYEAR : |
| 438 | DAYSPERNYEAR; |
| 439 | } |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 440 | #ifdef XPG4_1994_04_09 |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 441 | if ((w == 52 && |
| 442 | t->tm_mon == TM_JANUARY) || |
| 443 | (w == 1 && |
| 444 | t->tm_mon == TM_DECEMBER)) |
| 445 | w = 53; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 446 | #endif /* defined XPG4_1994_04_09 */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 447 | if (*format == 'V') |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 448 | pt = _conv(w, getformat(modifier, "%02d", "%2d", "%d", "%02d"), |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 449 | pt, ptlim); |
| 450 | else if (*format == 'g') { |
| 451 | *warnp = IN_ALL; |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 452 | pt = _yconv(year, base, |
| 453 | false, true, |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 454 | pt, ptlim, modifier); |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 455 | } else pt = _yconv(year, base, |
| 456 | true, true, |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 457 | pt, ptlim, modifier); |
| 458 | } |
| 459 | continue; |
| 460 | case 'v': |
| 461 | /* |
| 462 | ** From Arnold Robbins' strftime version 3.0: |
| 463 | ** "date as dd-bbb-YYYY" |
| 464 | ** (ado, 1993-05-24) |
| 465 | */ |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 466 | pt = _fmt("%e-%b-%Y", t, pt, ptlim, warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 467 | continue; |
| 468 | case 'W': |
| 469 | pt = _conv((t->tm_yday + DAYSPERWEEK - |
| 470 | (t->tm_wday ? |
| 471 | (t->tm_wday - 1) : |
| 472 | (DAYSPERWEEK - 1))) / DAYSPERWEEK, |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 473 | getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 474 | continue; |
| 475 | case 'w': |
| 476 | pt = _conv(t->tm_wday, "%d", pt, ptlim); |
| 477 | continue; |
| 478 | case 'X': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 479 | pt = _fmt(Locale->X_fmt, t, pt, ptlim, warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 480 | continue; |
| 481 | case 'x': |
| 482 | { |
| 483 | int warn2 = IN_SOME; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 484 | |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 485 | pt = _fmt(Locale->x_fmt, t, pt, ptlim, &warn2); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 486 | if (warn2 == IN_ALL) |
| 487 | warn2 = IN_THIS; |
| 488 | if (warn2 > *warnp) |
| 489 | *warnp = warn2; |
| 490 | } |
| 491 | continue; |
| 492 | case 'y': |
| 493 | *warnp = IN_ALL; |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 494 | pt = _yconv(t->tm_year, TM_YEAR_BASE, |
| 495 | false, true, |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 496 | pt, ptlim, modifier); |
| 497 | continue; |
| 498 | case 'Y': |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 499 | pt = _yconv(t->tm_year, TM_YEAR_BASE, |
| 500 | true, true, |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 501 | pt, ptlim, modifier); |
| 502 | continue; |
| 503 | case 'Z': |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 504 | #ifdef TM_ZONE |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 505 | pt = _add(t->TM_ZONE, pt, ptlim, modifier); |
| 506 | #else |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 507 | if (t->tm_isdst >= 0) |
| 508 | pt = _add(tzname[t->tm_isdst != 0], |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 509 | pt, ptlim); |
| 510 | #endif |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 511 | /* |
| 512 | ** C99 says that %Z must be replaced by the |
| 513 | ** empty string if the time zone is not |
| 514 | ** determinable. |
| 515 | */ |
| 516 | continue; |
| 517 | case 'z': |
| 518 | { |
Elliott Hughes | e0d0b15 | 2013-09-27 00:04:30 -0700 | [diff] [blame] | 519 | long diff; |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 520 | char const * sign; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 521 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 522 | if (t->tm_isdst < 0) |
| 523 | continue; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 524 | #ifdef TM_GMTOFF |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 525 | diff = t->TM_GMTOFF; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 526 | #else /* !defined TM_GMTOFF */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 527 | /* |
Elliott Hughes | e0d0b15 | 2013-09-27 00:04:30 -0700 | [diff] [blame] | 528 | ** C99 says that the UT offset must |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 529 | ** be computed by looking only at |
| 530 | ** tm_isdst. This requirement is |
| 531 | ** incorrect, since it means the code |
| 532 | ** must rely on magic (in this case |
| 533 | ** altzone and timezone), and the |
| 534 | ** magic might not have the correct |
| 535 | ** offset. Doing things correctly is |
| 536 | ** tricky and requires disobeying C99; |
| 537 | ** see GNU C strftime for details. |
| 538 | ** For now, punt and conform to the |
| 539 | ** standard, even though it's incorrect. |
| 540 | ** |
| 541 | ** C99 says that %z must be replaced by the |
| 542 | ** empty string if the time zone is not |
| 543 | ** determinable, so output nothing if the |
| 544 | ** appropriate variables are not available. |
| 545 | */ |
| 546 | if (t->tm_isdst == 0) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 547 | #ifdef USG_COMPAT |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 548 | diff = -timezone; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 549 | #else /* !defined USG_COMPAT */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 550 | continue; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 551 | #endif /* !defined USG_COMPAT */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 552 | else |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 553 | #ifdef ALTZONE |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 554 | diff = -altzone; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 555 | #else /* !defined ALTZONE */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 556 | continue; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 557 | #endif /* !defined ALTZONE */ |
| 558 | #endif /* !defined TM_GMTOFF */ |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 559 | if (diff < 0) { |
| 560 | sign = "-"; |
| 561 | diff = -diff; |
| 562 | } else sign = "+"; |
| 563 | pt = _add(sign, pt, ptlim, modifier); |
| 564 | diff /= SECSPERMIN; |
| 565 | diff = (diff / MINSPERHOUR) * 100 + |
| 566 | (diff % MINSPERHOUR); |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 567 | pt = _conv(diff, getformat(modifier, "%04d", "%4d", "%d", "%04d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 568 | } |
| 569 | continue; |
| 570 | case '+': |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 571 | pt = _fmt(Locale->date_fmt, t, pt, ptlim, |
| 572 | warnp); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 573 | continue; |
| 574 | case '%': |
| 575 | /* |
| 576 | ** X311J/88-090 (4.12.3.5): if conversion char is |
| 577 | ** undefined, behavior is undefined. Print out the |
| 578 | ** character itself as printf(3) also does. |
| 579 | */ |
| 580 | default: |
| 581 | break; |
| 582 | } |
| 583 | } |
| 584 | if (pt == ptlim) |
| 585 | break; |
| 586 | *pt++ = *format; |
| 587 | } |
| 588 | return pt; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | static char * |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 592 | _conv(int n, const char *format, char *pt, const char *ptlim) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 593 | { |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 594 | char buf[INT_STRLEN_MAXIMUM(int) + 1]; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 595 | |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 596 | snprintf(buf, sizeof(buf), format, n); |
| 597 | return _add(buf, pt, ptlim, 0); |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | static char * |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 601 | _add(const char *str, char *pt, const char *const ptlim, int modifier) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 602 | { |
| 603 | int c; |
| 604 | |
| 605 | switch (modifier) { |
| 606 | case FORCE_LOWER_CASE: |
| 607 | while (pt < ptlim && (*pt = tolower(*str++)) != '\0') { |
| 608 | ++pt; |
| 609 | } |
| 610 | break; |
| 611 | |
| 612 | case '^': |
| 613 | while (pt < ptlim && (*pt = toupper(*str++)) != '\0') { |
| 614 | ++pt; |
| 615 | } |
| 616 | break; |
| 617 | |
| 618 | case '#': |
| 619 | while (pt < ptlim && (c = *str++) != '\0') { |
| 620 | if (isupper(c)) { |
| 621 | c = tolower(c); |
| 622 | } else if (islower(c)) { |
| 623 | c = toupper(c); |
| 624 | } |
| 625 | *pt = c; |
| 626 | ++pt; |
| 627 | } |
| 628 | |
| 629 | break; |
| 630 | |
| 631 | default: |
| 632 | while (pt < ptlim && (*pt = *str++) != '\0') { |
| 633 | ++pt; |
| 634 | } |
| 635 | } |
| 636 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 637 | return pt; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 638 | } |
| 639 | |
| 640 | /* |
| 641 | ** POSIX and the C Standard are unclear or inconsistent about |
| 642 | ** what %C and %y do if the year is negative or exceeds 9999. |
| 643 | ** Use the convention that %C concatenated with %y yields the |
| 644 | ** same output as %Y, and that %Y contains at least 4 bytes, |
| 645 | ** with more only if necessary. |
| 646 | */ |
| 647 | |
| 648 | static char * |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 649 | _yconv(int a, int b, bool convert_top, bool convert_yy, |
| 650 | char *pt, const char *ptlim, int modifier) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 651 | { |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 652 | register int lead; |
| 653 | register int trail; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 654 | |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 655 | #define DIVISOR 100 |
| 656 | trail = a % DIVISOR + b % DIVISOR; |
| 657 | lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; |
| 658 | trail %= DIVISOR; |
| 659 | if (trail < 0 && lead > 0) { |
| 660 | trail += DIVISOR; |
| 661 | --lead; |
| 662 | } else if (lead < 0 && trail > 0) { |
| 663 | trail -= DIVISOR; |
| 664 | ++lead; |
| 665 | } |
| 666 | if (convert_top) { |
| 667 | if (lead == 0 && trail < 0) |
| 668 | pt = _add("-0", pt, ptlim, modifier); |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 669 | else pt = _conv(lead, getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 670 | } |
| 671 | if (convert_yy) |
Elliott Hughes | 39d903a | 2014-07-25 15:50:31 -0700 | [diff] [blame] | 672 | pt = _conv(((trail < 0) ? -trail : trail), getformat(modifier, "%02d", "%2d", "%d", "%02d"), pt, ptlim); |
The Android Open Source Project | edbe7fc | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 673 | return pt; |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 674 | } |