time.c 11.5 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * Copyright (c) 2006-2018, RT-Thread Development Team
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2019-08-21     zhangjun     copy from minilibc
9
 * 2020-09-07     Meco Man     combine gcc armcc iccarm
10
 * 2021-02-05     Meco Man     add timegm()
mysterywolf's avatar
mysterywolf 已提交
11
 * 2021-02-07     Meco Man     fixed gettimeofday()
mysterywolf's avatar
mysterywolf 已提交
12
 * 2021-02-08     Meco Man     add settimeofday() stime()
13
 * 2021-02-10     Meco Man     add ctime_r() and re-implement ctime()
14
 * 2021-02-11     Meco Man     fix bug #3183 - align days[] and months[] to 4 bytes
mysterywolf's avatar
mysterywolf 已提交
15
 *                             add difftime()
mysterywolf's avatar
mysterywolf 已提交
16
 * 2021-02-12     Meco Man     add errno
17 18 19
 * 2012-12-08     Bernard      <clock_time.c> fix the issue of _timevalue.tv_usec initialization,
 *                             which found by Rob <rdent@iinet.net.au>
 * 2021-02-12     Meco Man     move all of the functions located in <clock_time.c> to this file
20 21
 */

22
#include <sys/time.h>
23
#include <rtthread.h>
24 25 26 27 28 29 30
#ifdef RT_USING_DEVICE
#include <rtdevice.h>
#endif

/* seconds per day */
#define SPD 24*60*60

31
/* days per month -- nonleap! */
32
static const short __spm[13] =
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
{
    0,
    (31),
    (31 + 28),
    (31 + 28 + 31),
    (31 + 28 + 31 + 30),
    (31 + 28 + 31 + 30 + 31),
    (31 + 28 + 31 + 30 + 31 + 30),
    (31 + 28 + 31 + 30 + 31 + 30 + 31),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31),
};
48 49 50

ALIGN(4) static const char days[] = "Sun Mon Tue Wed Thu Fri Sat ";
ALIGN(4) static const char months[] = "Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ";
51

52
static int __isleap(int year)
53 54 55 56 57 58 59
{
    /* every fourth year is a leap year except for century years that are
     * not divisible by 400. */
    /*  return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)); */
    return (!(year % 4) && ((year % 100) || !(year % 400)));
}

60 61 62 63 64 65
static void num2str(char *c, int i)
{
    c[0] = i / 10 + '0';
    c[1] = i % 10 + '0';
}

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
struct tm *gmtime_r(const time_t *timep, struct tm *r)
{
    time_t i;
    register time_t work = *timep % (SPD);
    r->tm_sec = work % 60;
    work /= 60;
    r->tm_min = work % 60;
    r->tm_hour = work / 60;
    work = *timep / (SPD);
    r->tm_wday = (4 + work) % 7;
    for (i = 1970;; ++i)
    {
        register time_t k = __isleap(i) ? 366 : 365;
        if (work >= k)
            work -= k;
        else
            break;
    }
    r->tm_year = i - 1900;
    r->tm_yday = work;

    r->tm_mday = 1;
    if (__isleap(i) && (work > 58))
    {
        if (work == 59)
            r->tm_mday = 2; /* 29.2. */
        work -= 1;
    }

    for (i = 11; i && (__spm[i] > work); --i)
        ;
    r->tm_mon = i;
    r->tm_mday += work - __spm[i];
mysterywolf's avatar
mysterywolf 已提交
99 100

    r->tm_isdst = 0;
101 102
    return r;
}
mysterywolf's avatar
update  
mysterywolf 已提交
103
RTM_EXPORT(gmtime_r);
104 105 106 107 108 109

struct tm* gmtime(const time_t* t)
{
    static struct tm tmp;
    return gmtime_r(t, &tmp);
}
mysterywolf's avatar
update  
mysterywolf 已提交
110
RTM_EXPORT(gmtime);
111

112
/*TODO: timezone */
113 114
struct tm* localtime_r(const time_t* t, struct tm* r)
{
115
    time_t local_tz;
mysterywolf's avatar
update  
mysterywolf 已提交
116
    int utc_plus;
117

mysterywolf's avatar
mysterywolf 已提交
118 119
    utc_plus = 0; /* GTM: UTC+0 */
    local_tz = *t + utc_plus * 3600;
120
    return gmtime_r(&local_tz, r);
121
}
mysterywolf's avatar
update  
mysterywolf 已提交
122
RTM_EXPORT(localtime_r);
123 124 125 126 127 128

struct tm* localtime(const time_t* t)
{
    static struct tm tmp;
    return localtime_r(t, &tmp);
}
mysterywolf's avatar
update  
mysterywolf 已提交
129
RTM_EXPORT(localtime);
130

131
/* TODO: timezone */
132 133
time_t mktime(struct tm * const t)
{
134
    return timegm(t);
135
}
mysterywolf's avatar
update  
mysterywolf 已提交
136
RTM_EXPORT(mktime);
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

char* asctime_r(const struct tm *t, char *buf)
{
    /* "Wed Jun 30 21:49:08 1993\n" */
    *(int*) buf = *(int*) (days + (t->tm_wday << 2));
    *(int*) (buf + 4) = *(int*) (months + (t->tm_mon << 2));
    num2str(buf + 8, t->tm_mday);
    if (buf[8] == '0')
        buf[8] = ' ';
    buf[10] = ' ';
    num2str(buf + 11, t->tm_hour);
    buf[13] = ':';
    num2str(buf + 14, t->tm_min);
    buf[16] = ':';
    num2str(buf + 17, t->tm_sec);
    buf[19] = ' ';
    num2str(buf + 20, (t->tm_year + 1900) / 100);
    num2str(buf + 22, (t->tm_year + 1900) % 100);
    buf[24] = '\n';
    return buf;
}
mysterywolf's avatar
update  
mysterywolf 已提交
158
RTM_EXPORT(asctime_r);
159 160 161 162 163 164

char* asctime(const struct tm *timeptr)
{
    static char buf[25];
    return asctime_r(timeptr, buf);
}
mysterywolf's avatar
update  
mysterywolf 已提交
165
RTM_EXPORT(asctime);
166

167
char *ctime_r (const time_t * tim_p, char * result)
168
{
mysterywolf's avatar
mysterywolf 已提交
169 170
    struct tm tm;
    return asctime_r (localtime_r (tim_p, &tm), result);
171
}
mysterywolf's avatar
update  
mysterywolf 已提交
172
RTM_EXPORT(ctime_r);
173 174 175 176

char* ctime(const time_t *tim_p)
{
    return asctime (localtime (tim_p));
177
}
mysterywolf's avatar
update  
mysterywolf 已提交
178
RTM_EXPORT(ctime);
179

mysterywolf's avatar
mysterywolf 已提交
180 181 182 183
double difftime (time_t tim1, time_t tim2)
{
    return (double)(tim1 - tim2);
}
mysterywolf's avatar
update  
mysterywolf 已提交
184
RTM_EXPORT(difftime);
mysterywolf's avatar
mysterywolf 已提交
185

186 187 188 189 190
/**
 * Returns the current time.
 *
 * @param time_t * t the timestamp pointer, if not used, keep NULL.
 *
mysterywolf's avatar
mysterywolf 已提交
191 192
 * @return The value ((time_t)-1) is returned if the calendar time is not available. 
 *         If timer is not a NULL pointer, the return value is also stored in timer.
193 194
 *
 */
195
RT_WEAK time_t time(time_t *t)
196
{
mysterywolf's avatar
mysterywolf 已提交
197
    time_t time_now = ((time_t)-1); /* default is not available */
mysterywolf's avatar
mysterywolf 已提交
198

199
#ifdef RT_USING_RTC
mysterywolf's avatar
mysterywolf 已提交
200 201
    static rt_device_t device = RT_NULL;

mysterywolf's avatar
mysterywolf 已提交
202
    /* optimization: find rtc device only first */
mysterywolf's avatar
mysterywolf 已提交
203 204 205 206
    if (device == RT_NULL)
    {
        device = rt_device_find("rtc");
    }
207

mysterywolf's avatar
mysterywolf 已提交
208
    /* read timestamp from RTC device */
mysterywolf's avatar
mysterywolf 已提交
209
    if (device != RT_NULL)
210
    {
mysterywolf's avatar
mysterywolf 已提交
211 212 213 214 215
        if (rt_device_open(device, 0) == RT_EOK)
        {
            rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time_now);
            rt_device_close(device);
        }
216 217 218 219 220 221 222 223 224
    }
#endif /* RT_USING_RTC */

    /* if t is not NULL, write timestamp to *t */
    if (t != RT_NULL)
    {
        *t = time_now;
    }

mysterywolf's avatar
mysterywolf 已提交
225 226 227 228 229
    if(time_now == (time_t)-1)
    {
        errno = ENOSYS;
    }

230 231
    return time_now;
}
mysterywolf's avatar
update  
mysterywolf 已提交
232
RTM_EXPORT(time);
233 234 235 236 237

RT_WEAK clock_t clock(void)
{
    return rt_tick_get();
}
mysterywolf's avatar
update  
mysterywolf 已提交
238
RTM_EXPORT(clock);
239

mysterywolf's avatar
mysterywolf 已提交
240
int stime(const time_t *t)
241
{
mysterywolf's avatar
mysterywolf 已提交
242 243 244 245 246 247 248 249 250 251 252
#ifdef RT_USING_RTC
    rt_device_t device;

    /* read timestamp from RTC device. */
    device = rt_device_find("rtc");
    if (rt_device_open(device, 0) == RT_EOK)
    {
        rt_device_control(device, RT_DEVICE_CTRL_RTC_SET_TIME, (void*)t);
        rt_device_close(device);
    }
    else
253
    {
mysterywolf's avatar
mysterywolf 已提交
254
        errno = ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
255
        return -1;
256
    }
mysterywolf's avatar
update  
mysterywolf 已提交
257
    return 0;
mysterywolf's avatar
mysterywolf 已提交
258 259

#else
mysterywolf's avatar
mysterywolf 已提交
260
    errno = ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
261 262
    return -1;
#endif /* RT_USING_RTC */
263
}
mysterywolf's avatar
update  
mysterywolf 已提交
264
RTM_EXPORT(stime);
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

time_t timegm(struct tm * const t)
{
    register time_t day;
    register time_t i;
    register time_t years = t->tm_year - 70;

    if (t->tm_sec > 60)
    {
        t->tm_min += t->tm_sec / 60;
        t->tm_sec %= 60;
    }
    if (t->tm_min > 60)
    {
        t->tm_hour += t->tm_min / 60;
        t->tm_min %= 60;
    }
    if (t->tm_hour > 24)
    {
        t->tm_mday += t->tm_hour / 24;
        t->tm_hour %= 24;
    }
    if (t->tm_mon > 12)
    {
        t->tm_year += t->tm_mon / 12;
        t->tm_mon %= 12;
    }
    while (t->tm_mday > __spm[1 + t->tm_mon])
    {
        if (t->tm_mon == 1 && __isleap(t->tm_year + 1900))
        {
            --t->tm_mday;
        }
        t->tm_mday -= __spm[t->tm_mon];
        ++t->tm_mon;
        if (t->tm_mon > 11)
        {
            t->tm_mon = 0;
            ++t->tm_year;
        }
    }

    if (t->tm_year < 70)
        return (time_t) - 1;

    /* Days since 1970 is 365 * number of years + number of leap years since 1970 */
    day = years * 365 + (years + 1) / 4;

    /* After 2100 we have to substract 3 leap years for every 400 years
     This is not intuitive. Most mktime implementations do not support
     dates after 2059, anyway, so we might leave this out for it's
     bloat. */
    if (years >= 131)
    {
        years -= 131;
        years /= 100;
        day -= (years >> 2) * 3 + 1;
        if ((years &= 3) == 3)
            years--;
        day -= years;
    }

    day += t->tm_yday = __spm[t->tm_mon] + t->tm_mday - 1 +
                        (__isleap(t->tm_year + 1900) & (t->tm_mon > 1));

    /* day is now the number of days since 'Jan 1 1970' */
    i = 7;
    t->tm_wday = (day + 4) % i; /* Sunday=0, Monday=1, ..., Saturday=6 */

    i = 24;
    day *= i;
    i = 60;
    return ((day + t->tm_hour) * i + t->tm_min) * i + t->tm_sec;
}
mysterywolf's avatar
update  
mysterywolf 已提交
339
RTM_EXPORT(timegm);
mysterywolf's avatar
mysterywolf 已提交
340 341 342 343

/* TODO: timezone */
int gettimeofday(struct timeval *tv, struct timezone *tz)
{
mysterywolf's avatar
mysterywolf 已提交
344 345 346
    time_t t = time(RT_NULL);

    if (tv != RT_NULL && t != (time_t)-1)
mysterywolf's avatar
mysterywolf 已提交
347
    {
mysterywolf's avatar
mysterywolf 已提交
348
        tv->tv_sec = t;
mysterywolf's avatar
mysterywolf 已提交
349 350 351 352 353
        tv->tv_usec = 0;
        return 0;
    }
    else
    {
mysterywolf's avatar
mysterywolf 已提交
354
        errno = ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
355 356 357
        return -1;
    }
}
mysterywolf's avatar
update  
mysterywolf 已提交
358
RTM_EXPORT(gettimeofday);
mysterywolf's avatar
mysterywolf 已提交
359 360 361 362 363 364

/* TODO: timezone */
int settimeofday(const struct timeval *tv, const struct timezone *tz)
{
    if (tv != RT_NULL)
    {
mysterywolf's avatar
mysterywolf 已提交
365
        return stime((const time_t *)&tv->tv_sec);
mysterywolf's avatar
mysterywolf 已提交
366 367 368
    }
    else
    {
mysterywolf's avatar
mysterywolf 已提交
369
        errno = ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
370 371 372
        return -1;
    }
}
mysterywolf's avatar
update  
mysterywolf 已提交
373
RTM_EXPORT(settimeofday);
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515

#ifdef RT_USING_PTHREADS
static struct timeval _timevalue;
static int clock_time_system_init()
{
    time_t time;
    rt_tick_t tick;
    rt_device_t device;

    time = 0;
    device = rt_device_find("rtc");
    if (device != RT_NULL)
    {
        /* get realtime seconds */
        rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
    }

    /* get tick */
    tick = rt_tick_get();

    _timevalue.tv_usec = (tick%RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK;
    _timevalue.tv_sec = time - tick/RT_TICK_PER_SECOND - 1;

    return 0;
}
INIT_COMPONENT_EXPORT(clock_time_system_init);

int clock_getres(clockid_t clockid, struct timespec *res)
{
    int ret = 0;

    if (res == RT_NULL)
    {
        rt_set_errno(EINVAL);
        return -1;
    }

    switch (clockid)
    {
    case CLOCK_REALTIME:
        res->tv_sec = 0;
        res->tv_nsec = NANOSECOND_PER_SECOND/RT_TICK_PER_SECOND;
        break;

#ifdef RT_USING_CPUTIME
    case CLOCK_CPUTIME_ID:
        res->tv_sec  = 0;
        res->tv_nsec = clock_cpu_getres();
        break;
#endif

    default:
        ret = -1;
        rt_set_errno(EINVAL);
        break;
    }

    return ret;
}
RTM_EXPORT(clock_getres);

int clock_gettime(clockid_t clockid, struct timespec *tp)
{
    int ret = 0;

    if (tp == RT_NULL)
    {
        rt_set_errno(EINVAL);
        return -1;
    }

    switch (clockid)
    {
    case CLOCK_REALTIME:
        {
            /* get tick */
            int tick = rt_tick_get();

            tp->tv_sec  = _timevalue.tv_sec + tick / RT_TICK_PER_SECOND;
            tp->tv_nsec = (_timevalue.tv_usec + (tick % RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK) * 1000;
        }
        break;

#ifdef RT_USING_CPUTIME
    case CLOCK_CPUTIME_ID:
        {
            float unit = 0;
            long long cpu_tick;

            unit = clock_cpu_getres();
            cpu_tick = clock_cpu_gettime();

            tp->tv_sec  = ((int)(cpu_tick * unit)) / NANOSECOND_PER_SECOND;
            tp->tv_nsec = ((int)(cpu_tick * unit)) % NANOSECOND_PER_SECOND;
        }
        break;
#endif
    default:
        rt_set_errno(EINVAL);
        ret = -1;
    }

    return ret;
}
RTM_EXPORT(clock_gettime);

int clock_settime(clockid_t clockid, const struct timespec *tp)
{
    int second;
    rt_tick_t tick;
    rt_device_t device;

    if ((clockid != CLOCK_REALTIME) || (tp == RT_NULL))
    {
        rt_set_errno(EINVAL);

        return -1;
    }

    /* get second */
    second = tp->tv_sec;
    /* get tick */
    tick = rt_tick_get();

    /* update timevalue */
    _timevalue.tv_usec = MICROSECOND_PER_SECOND - (tick % RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK;
    _timevalue.tv_sec = second - tick/RT_TICK_PER_SECOND - 1;

    /* update for RTC device */
    device = rt_device_find("rtc");
    if (device != RT_NULL)
    {
        /* set realtime seconds */
        rt_device_control(device, RT_DEVICE_CTRL_RTC_SET_TIME, &second);
    }
    else
        return -1;

    return 0;
}
RTM_EXPORT(clock_settime);
#endif /*RT_USING_PTHREADS*/