在不使用std库例程的情况下在日期/时间和时间戳之间进行转换

时间:2013-12-29 15:38:44

标签: c datetime timestamp mktime localtime

我试图在C中实现两个简单的转换器,日期/时间到时间戳,反之亦然,没有任何依赖于时间库例程(例如localtime,mktime等),主要是因为有些它们是线程不安全的。)

我之前在Convert date/time to time-stamp and vice versa下发布了一个类似的问题,现在想再次提交一些明显的更改:

我有以下日期/时间结构:

typedef struct
{
    unsigned char second; // 0-59
    unsigned char minute; // 0-59
    unsigned char hour;   // 0-59
    unsigned char day;    // 1-31
    unsigned char month;  // 1-12
    unsigned char year;   // 0-99 (representing 2000-2099)
}
date_time_t;

我想对以下转换例程(给定合法输入)有第二个意见:

static unsigned short days[4][12] =
{
    {   0,  31,  60,  91, 121, 152, 182, 213, 244, 274, 305, 335},
    { 366, 397, 425, 456, 486, 517, 547, 578, 609, 639, 670, 700},
    { 731, 762, 790, 821, 851, 882, 912, 943, 974,1004,1035,1065},
    {1096,1127,1155,1186,1216,1247,1277,1308,1339,1369,1400,1430},
};


unsigned int date_time_to_epoch(date_time_t* date_time)
{
    unsigned int second = date_time->second;  // 0-59
    unsigned int minute = date_time->minute;  // 0-59
    unsigned int hour   = date_time->hour;    // 0-23
    unsigned int day    = date_time->day-1;   // 0-30
    unsigned int month  = date_time->month-1; // 0-11
    unsigned int year   = date_time->year;    // 0-99
    return (((year/4*(365*4+1)+days[year%4][month]+day)*24+hour)*60+minute)*60+second;
}


void epoch_to_date_time(date_time_t* date_time,unsigned int epoch)
{
    date_time->second = epoch%60; epoch /= 60;
    date_time->minute = epoch%60; epoch /= 60;
    date_time->hour   = epoch%24; epoch /= 24;

    unsigned int years = epoch/(365*4+1)*4; epoch %= 365*4+1;

    unsigned int year;
    for (year=3; year>0; year--)
    {
        if (epoch >= days[year][0])
            break;
    }

    unsigned int month;
    for (month=11; month>0; month--)
    {
        if (epoch >= days[year][month])
            break;
    }

    date_time->year  = years+year;
    date_time->month = month+1;
    date_time->day   = epoch-days[year][month]+1;
}

我已经通过大量的法律意见(2000年1月1日至1999年12月31日之间)对此进行了测试。任何建设性意见将得到赞赏(绩效改进建议,可读性等)......

更新 - 我的最终目标(由于我发布此问题):

我有一个STM32(基于ARM的皮质),其定时器配置为每隔10ms中断CPU。另外,我连接了一个RTC,我可以从中读取日期/时间(以1秒的分辨率)。访问RTC的效率较低,因此我只想读一次,然后使用10ms定时器中断计算日期/时间。我希望避免使用'localtime',因为我必须使用互斥锁来保护它。想到的唯一解决方案是实现我自己的“本地时间”,并且随后的结果 - 我自己的“mktime”(上面代码中的我的时代从2000年开始算起秒数)。

1 个答案:

答案 0 :(得分:0)

为了提高性能,请考虑不要每秒epoch_to_date_time()(甚至每个计时器滴答),而是仅在较小的单元溢出时选择性地增加时间单位,例如: G。像

void another_second_passed(date_time_t *date_time)
{   // *date_time to persist from call to call, initialized once from RTC
    if (++date_time->second < 60) return;   // finished in 59 of 60 cases
    date_time->second = 0;
    if (++date_time->minute < 60) return;   // finished in 59 of 60 cases
    date_time->minute = 0;
    …
}