1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 47 48 49 50 51 52 53 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 97 98 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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
/**
*
* strftime.c
*
* implements the ansi c function strftime()
*
* written 6 september 1989 by jim nutt
* released into the public domain by jim nutt
*
* modified 21-Oct-89 by Rob Duff
*
* modified 08-Dec-04 by Tobi Oetiker (added %V)
**/
#include <stddef.h> /* for size_t */
#include <stdarg.h> /* for va_arg */
#include <time.h> /* for struct tm */
#include "strftime.h"
static char *aday[] = {
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};
static char *day[] = {
"Sunday", "Monday", "Tuesday", "Wednesday",
"Thursday", "Friday", "Saturday"
};
static char *amonth[] = {
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
static char *month[] = {
"January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
};
char *tzname_[2] = {"CST", "CDT"}; /* Add your own defaults here */
static char buf[26];
static void strfmt(char *str, const char *fmt, ...);
/**
*
* size_t strftime_(char *str,
* size_t maxs,
* const char *fmt,
* const struct tm *t)
*
* this functions acts much like a sprintf for time/date output.
* given a pointer to an output buffer, a format string and a
* time, it copies the time to the output buffer formatted in
* accordance with the format string. the parameters are used
* as follows:
*
* str is a pointer to the output buffer, there should
* be at least maxs characters available at the address
* pointed to by str.
*
* maxs is the maximum number of characters to be copied
* into the output buffer, included the '\0' terminator
*
* fmt is the format string. a percent sign (%) is used
* to indicate that the following character is a special
* format character. the following are valid format
* characters:
*
* %A full weekday name (Monday)
* %a abbreviated weekday name (Mon)
* %B full month name (January)
* %b abbreviated month name (Jan)
* %c standard date and time representation
* %d day-of-month (01-31)
* %H hour (24 hour clock) (00-23)
* %I hour (12 hour clock) (01-12)
* %j day-of-year (001-366)
* %M minute (00-59)
* %m month (01-12)
* %p local equivalent of AM or PM
* %S second (00-59)
* %U week-of-year, first day sunday (00-53)
* %W week-of-year, first day monday (00-53)
* %V ISO 8601 Week number
* %w weekday (0-6, sunday is 0)
* %X standard time representation
* %x standard date representation
* %Y year with century
* %y year without century (00-99)
* %Z timezone name
* %% percent sign
*
* the standard date string is equivalent to:
*
* %a %b %d %Y
*
* the standard time string is equivalent to:
*
* %H:%M:%S
*
* the standard date and time string is equivalent to:
*
* %a %b %d %H:%M:%S %Y
*
* strftime_() returns the number of characters placed in the
* buffer, not including the terminating \0, or zero if more
* than maxs characters were produced.
*
**/
size_t strftime_(char *s, size_t maxs, const char *f, const struct tm *t)
{
int w,d;
char *p, *q, *r;
p = s;
q = s + maxs - 1;
while ((*f != '\0'))
{
if (*f++ == '%')
{
r = buf;
switch (*f++)
{
case '%' :
r = "%";
break;
case 'a' :
r = aday[t->tm_wday];
break;
case 'A' :
r = day[t->tm_wday];
break;
case 'b' :
r = amonth[t->tm_mon];
break;
case 'B' :
r = month[t->tm_mon];
break;
case 'c' :
strfmt(r, "%0 %0 %2 %2:%2:%2 %4",
aday[t->tm_wday], amonth[t->tm_mon],
t->tm_mday,t->tm_hour, t->tm_min,
t->tm_sec, t->tm_year+1900);
break;
case 'd' :
strfmt(r,"%2",t->tm_mday);
break;
case 'H' :
strfmt(r,"%2",t->tm_hour);
break;
case 'I' :
strfmt(r,"%2",(t->tm_hour%12)?t->tm_hour%12:12);
break;
case 'j' :
strfmt(r,"%3",t->tm_yday+1);
break;
case 'm' :
strfmt(r,"%2",t->tm_mon+1);
break;
case 'M' :
strfmt(r,"%2",t->tm_min);
break;
case 'p' :
r = (t->tm_hour>11)?"PM":"AM";
break;
case 'S' :
strfmt(r,"%2",t->tm_sec);
break;
case 'U' :
w = t->tm_yday/7;
if (t->tm_yday%7 > t->tm_wday)
w++;
strfmt(r, "%2", w);
break;
case 'W' :
w = t->tm_yday/7;
if (t->tm_yday%7 > (t->tm_wday+6)%7)
w++;
strfmt(r, "%2", w);
break;
case 'V':
/* ISO 8601 Week Of Year:
If the week (Monday - Sunday) containing January 1 has four or more
days in the new year, then it is week 1; otherwise it is week 53 of
the previous year and the next week is week one. */
w = (t->tm_yday + 7 - (t->tm_wday ? t->tm_wday - 1 : 6)) / 7;
d = (t->tm_yday + 7 - (t->tm_wday ? t->tm_wday - 1 : 6)) % 7;
if (d >= 4) { w++; } else if (w == 0) { w = 53; }
strfmt(r, "%2", w);
break;
case 'w' :
strfmt(r,"%1",t->tm_wday);
break;
case 'x' :
strfmt(r, "%3s %3s %2 %4", aday[t->tm_wday],
amonth[t->tm_mon], t->tm_mday, t->tm_year+1900);
break;
case 'X' :
strfmt(r, "%2:%2:%2", t->tm_hour,
t->tm_min, t->tm_sec);
break;
case 'y' :
strfmt(r,"%2",t->tm_year%100);
break;
case 'Y' :
strfmt(r,"%4",t->tm_year+1900);
break;
case 'Z' :
r = (t->tm_isdst && tzname_[1][0]) ?
tzname_[1] : tzname_[0];
break;
default:
buf[0] = '%'; /* reconstruct the format */
buf[1] = f[-1];
buf[2] = '\0';
if (buf[1] == 0)
f--; /* back up if at end of string */
}
while (*r)
{
if (p == q)
{
*q = '\0';
return 0;
}
*p++ = *r++;
}
}
else
{
if (p == q)
{
*q = '\0';
return 0;
}
*p++ = f[-1];
}
}
*p = '\0';
return p - s;
}
/*
* stdarg.h
*
typedef void *va_list;
#define va_start(vp,v) (vp=((char*)&v)+sizeof(v))
#define va_arg(vp,t) (*((t*)(vp))++)
#define va_end(vp)
*
*/
static int pow[5] = { 1, 10, 100, 1000, 10000 };
/**
* static void strfmt(char *str, char *fmt);
*
* simple sprintf for strftime
*
* each format descriptor is of the form %n
* where n goes from zero to four
*
* 0 -- string %s
* 1..4 -- int %?.?d
*
**/
static void strfmt(char *str, const char *fmt, ...)
{
int ival, ilen;
char *sval;
va_list vp;
va_start(vp, fmt);
while (*fmt)
{
if (*fmt++ == '%')
{
ilen = *fmt++ - '0';
if (ilen == 0) /* zero means string arg */
{
sval = va_arg(vp, char*);
while (*sval)
*str++ = *sval++;
}
else /* always leading zeros */
{
ival = va_arg(vp, int);
while (ilen)
{
ival %= pow[ilen--];
*str++ = (char)('0' + ival / pow[ilen]);
}
}
}
else *str++ = fmt[-1];
}
*str = '\0';
va_end(vp);
}
#ifdef TEST
#include <stdio.h> /* for printf */
#include <time.h> /* for strftime */
char test[80];
int main(int argc, char *argv[])
{
int len;
char *fmt;
time_t now;
time(&now);
fmt = (argc == 1) ? "%I:%M %p\n%c\n" : argv[1];
len = strftime_(test,sizeof test, fmt, localtime(&now));
printf("%d: %s\n", len, test);
return !len;
}
#endif /* TEST */
|