我有以下的整数:
int y, mon, d, h, min, s;
它们的值是: 2012
, 06
, 27
, 12
, 47
, 53
分别。 我要代表“2012/06/27 12时47分53秒UTC”的日期时间,如果我有,如果我选择在我的应用“UTC”别的地方,或者“2012/06/27 12时47分53秒AEST”选择“AEST”别的地方我的应用程序。
我想这个转换成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 struct
和mktime
,然而这都不尽如人意,因为它总是假设我的本地时区。
什么是这样做的正确方法是什么?
所以下面是我想出了迄今为止的解决方案。 它基本上三种情况之一:
- 如果UNIX,只需使用
timegm
- 如果不是UNIX
- 无论是使用UTC时代和地方的时代之间的差异作为偏移做数学
- 预订:数学可能不正确
- 或者,临时设置的“TZ”环境变量UTC
- 预订:跳闸了,如果/需要是多线程的代码时
- 无论是使用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
}
NB StringBuilder
是一个内部类,它并没有为这个问题的目的,无所谓。
更多信息:
我知道,这可以很容易地使用升压,等人来完成。 但是,这是不是和选项。 我需要它在数学上进行,或使用C或C ++标准功能,或它们的组合。
timegm
似乎解决这个问题,但是,它并不出现在C / POSIX标准的一部分。 该代码目前被编译在多个平台(Linux,OSX,Windows中,的iOS,安卓(NDK)),所以我需要找到一种方法,使其在所有这些平台上工作,即使解决方案涉及#ifdef $PLATFORM
类型的东西。