10

我有以下整数:

int y, mon, d, h, min, s;

它们的值分别是:2012062712、。如果我在我的应用程序的其他地方选择了“UTC”,我想表示“2012/06/27 12:47:53 UTC”的日期时间,或者如果我选择了“2012/06/27 12:47:53 AEST”的日期时间在我的应用程序的其他地方选择了“AEST”。4753

我想将其转换为time_t,这是我目前用来执行此操作的代码:

struct tm timeinfo;
timeinfo.tm_year = year - 1900;
timeinfo.tm_mon = mon - 1;
timeinfo.tm_mday = day;
timeinfo.tm_hour = hour;
timeinfo.tm_min = min;
timeinfo.tm_sec = sec;
//timeinfo.tm_isdst = 0; //TODO should this be set?

//TODO find POSIX or C standard way to do covert tm to time_t without in UTC instead of local time
#ifdef UNIX
return timegm(&timeinfo);
#else
return mktime(&timeinfo); //FIXME Still incorrect
#endif

所以我正在使用tm structand mktime,但是这不能很好地工作,因为它总是假设我的本地时区。

这样做的正确方法是什么?

所以下面是我到目前为止提出的解决方案。它基本上做三件事之一:

  1. 如果是 UNIX,只需使用timegm
  2. 如果不是 UNIX
    1. 或者,使用 UTC 纪元和本地纪元之间的差异作为偏移量进行数学运算
      • 保留:数学可能不正确
    2. 或者,将“TZ”环境变量临时设置为 UTC
      • 保留:如果/当此代码需要多线程时会出错
namespace tmUtil
{
    int const tm_yearCorrection = -1900;
    int const tm_monthCorrection = -1;
    int const tm_isdst_dontKnow = -1;

#if !defined(DEBUG_DATETIME_TIMEGM_ENVVARTZ) && !(defined(UNIX) && !defined(DEBUG_DATETIME_TIMEGM))
    static bool isLeap(int year)
    {
        return
            (year % 4) ? false
            : (year % 100) ? true
            : (year % 400) ? false
            : true;
    }

    static int daysIn(int year)
    {
        return isLeap(year) ? 366 : 365;
    }
#endif
}

time_t utc(int year, int mon, int day, int hour, int min, int sec)
{
    struct tm time = {0};
    time.tm_year = year + tmUtil::tm_yearCorrection;
    time.tm_mon = mon + tmUtil::tm_monthCorrection;
    time.tm_mday = day;
    time.tm_hour = hour;
    time.tm_min = min;
    time.tm_sec = sec;
    time.tm_isdst = tmUtil::tm_isdst_dontKnow;

    #if defined(UNIX) && !defined(DEBUG_DATETIME_TIMEGM) //TODO remove && 00
        time_t result;
        result = timegm(&time);
        return result;
    #else
        #if !defined(DEBUG_DATETIME_TIMEGM_ENVVARTZ)
            //TODO check that math is correct
            time_t fromEpochUtc = mktime(&time);

            struct tm localData;
            struct tm utcData;
            struct tm* loc = localtime_r (&fromEpochUtc, &localData);
            struct tm* utc = gmtime_r (&fromEpochUtc, &utcData);
            int utcYear = utc->tm_year - tmUtil::tm_yearCorrection;
            int gmtOff =
                (loc-> tm_sec - utc-> tm_sec)
                + (loc-> tm_min - utc-> tm_min) * 60
                + (loc->tm_hour - utc->tm_hour) * 60 * 60
                + (loc->tm_yday - utc->tm_yday) * 60 * 60 * 24
                + (loc->tm_year - utc->tm_year) * 60 * 60 * 24 * tmUtil::daysIn(utcYear);

            #ifdef UNIX
                if (loc->tm_gmtoff != gmtOff)
                {
                    StringBuilder err("loc->tm_gmtoff=", StringBuilder((int)(loc->tm_gmtoff)), " but gmtOff=", StringBuilder(gmtOff));
                    THROWEXCEPTION(err);
                }
            #endif

            int resultInt = fromEpochUtc + gmtOff;
            time_t result;
            result = (time_t)resultInt;
            return result;
        #else
            //TODO Find a way to do this without manipulating environment variables
            time_t result;
            char *tz;
            tz = getenv("TZ");
            setenv("TZ", "", 1);
            tzset();
            result = mktime(&time);
            if (tz)
                setenv("TZ", tz, 1);
            else
                unsetenv("TZ");
            tzset();
            return result;
        #endif
    #endif
}

NBStringBuilder是一个内部类,对于这个问题来说并不重要。

更多信息:

我知道这可以使用 boost 等轻松完成。但这不是选项。我需要它以数学方式完成,或者使用 ac 或 c++ 标准函数,或它们的组合。

timegm似乎解决了这个问题,但是,它似乎不是 C / POSIX 标准的一部分。这段代码目前在多个平台(Linux、OSX、Windows、iOS、Android (NDK))上编译,所以我需要找到一种方法让它在所有这些平台上工作,即使解决方案涉及#ifdef $PLATFORM类型的东西。

4

7 回答 7

4

这让我有点想吐在嘴里,但您可以将其转换为字符串 with strftime(),替换字符串中的时区,然后将其转换回 withstrptime()并转换为time_twith mktime()。详细地:

#ifdef UGLY_HACK_VOIDS_WARRANTY
time_t convert_time(const struct tm* tm)
{
    const size_t BUF_SIZE=256;
    char buffer[BUF_SIZE];
    strftime(buffer,256,"%F %H:%M:%S %z", tm);
    strncpy(&buffer[20], "+0001", 5); // +0001 is the time-zone offset from UTC in hours
    struct tm newtime = {0};
    strptime(buffer, "%F %H:%M:%S %z", &newtime);
    return mktime(&newtime);
}
#endif

但是,我强烈建议您说服权力毕竟增强是一种选择。Boost 对自定义时区有很好的支持。还有其他库也可以优雅地做到这一点。

于 2012-07-10T00:10:14.303 回答
4

如果您只想将struct tmUTC 中的给定转换为 a,time_t那么您可以这样做:

#include <time.h>

time_t utc_to_time_t(struct tm* timeinfo)
{
    tzset(); // load timezone information (this can be called just once)

    time_t t = mktime(timeinfo);
    return t - timezone;
}

这基本上将 UTC 时间转换time_t为好像给定时间是本地时间,然后对结果应用时区校正以将其恢复为 UTC。

在 gcc/cygwin 和 Visual Studio 2010 上测试。

我希望这有帮助!

更新:正如您很好指出的那样,当查询日期的夏令时状态与当前时间不同时,我上面的解决方案可能会返回一个小时的 time_t 值。

该问题的解决方案是有一个附加函数,它可以告诉您日期是否在 DST 区域内,并使用该日期和当前 DST 标志来调整返回的时间mktime。这实际上很容易做到。当您打电话时,mktime()您只需将tm_dst成员设置为-1,然后系统将尽力为您计算给定时间的 DST。假设我们对此信任系统,那么您可以使用此信息进行更正:

#include <time.h>

time_t utc_to_time_t(struct tm* timeinfo)
{
    tzset(); // load timezone information (this can be called just once)

    timeinfo->tm_isdst = -1; // let the system figure this out for us
    time_t t = mktime(timeinfo) - timezone;

    if (daylight == 0 && timeinfo->tm_isdst != 0)
        t += 3600;
    else if (daylight != 0 && timeinfo->tm_isdst == 0)
        t -= 3600;
    return t;
}
于 2012-07-04T17:54:54.373 回答
2

如果您在 Linux 或其他 UNIX 或类似 UNIX 的系统上,那么您可能有一个timegm功能可以满足您的需求。链接的手册页具有可移植的实现,因此您可以自己制作。在 Windows 上,我知道没有这样的功能。

于 2012-06-27T05:15:49.133 回答
1

经过几天的努力,试图获得一个timegm(1)可以在 Android 上运行的功能(不附带一个),我终于发现了这个简单而优雅的解决方案,它工作得很好:

time_t timegm( struct tm *tm ) {
  time_t t = mktime( tm );
  return t + localtime( &t )->tm_gmtoff;
}

我不明白为什么这不是一个合适的跨平台解决方案。

我希望这有帮助!

于 2014-01-29T18:53:59.827 回答
1
time_t my_timegm2(struct tm *tm)
{
    time_t ret = tm->tm_sec + tm->tm_min*60 + tm->tm_hour*3600 + tm->tm_yday*86400;
    ret += ((time_t)31536000) * (tm->tm_year-70);
    ret += ((tm->tm_year-69)/4)*86400 - ((tm->tm_year-1)/100)*86400 + ((tm->tm_year+299)/400)*86400;
    return ret;
}
于 2022-02-04T20:37:28.090 回答
0

似乎有一个更简单的解决方案:

#include <time64.h>
time_t timegm(struct tm* const t) 
{
  return (time_t)timegm64(t);
}

实际上,如果它真的有效,我还没有 testet,因为我还有一些移植工作要做,但它可以编译。

于 2014-12-08T21:50:04.713 回答
0

这是我的解决方案:

#ifdef WIN32
#   define timegm _mkgmtime
#endif

struct tm timeinfo;
timeinfo.tm_year = year - 1900;
timeinfo.tm_mon = mon - 1;
timeinfo.tm_mday = day;
timeinfo.tm_hour = hour;
timeinfo.tm_min = min;
timeinfo.tm_sec = sec;

return timegm(&timeinfo);

这应该适用于unix和windows

于 2018-08-30T14:02:04.353 回答