Link to home
Start Free TrialLog in
Avatar of TomPro
TomProFlag for United States of America

asked on

Given an arbitrary UTC time and an arbitrary time zone, how do I know if the time uses daylight savings time?

I need to take an arbitrary date and time in UTC format and then figure out what that time was in a specific time zone.

Here are some examples of the data that we'll have to deal with:
   Translate March 28, 2001, 5 PM UTC to the central time zone
   Figure out Nov 4, 2007, 12 PM UTC to  the eastern time  zone
   Figure out Jan 1, 2009, 1 AM UTC to  the mountain time zone

Let's take the March 28, 2001 example first.  In 2001, the United States laws specified that daylight savings time did not begin until the first Sunday of April.  Starting in 2007, daylight saving time now starts on the second Sunday in March.  So depending on what rules you use, March 25 might or might not require daylight saving time.

Unfortunately, I'm not sure how to address this problem from within C++.  Vista and Windows 2008 have functions like GetDynamicTimeZoneInformation() and GetTimeZoneInformationForYear(), but I can't use them in older versions of Windows.  The closest function that XP seems to provide is GetTimeZoneInformation(), but this is limited to looking up time zone rules for the current calendar year.

I *could* try to code the logic manually, but what if legislation changes in the near future?  Then anyone who statically links to my library will get incorrect time stamps.

Any tips on what I can do to fix this problem?

Thanks!
Avatar of LordOfPorts
LordOfPorts
Flag of United States of America image

The SystemTimeToTzSpecificLocalTime function http://msdn.microsoft.com/en-us/library/ms724949(VS.85).aspx should provide a solution and it is available from Windows 2000 onwards. There is a number of examples for using it including e.g. http://weseetips.com/2008/05/28/how-to-convert-local-system-time-to-utc-or-gmt/

If the legislature changes the start date of the daylight savings time a patch would be released as the last time, that should take care of it.
...here is one more example related to the function that might be useful: http://www.codeproject.com/KB/cpp/TimeZoneConverter.aspx
Avatar of TomPro

ASKER

LordOfPorts,

It's interesting that SystemTimeToTzSpecificLocalTime() is supported by Windows 2000--in my local MSDN documentation it doesn't say that, but sure enough the online documentation says that it is.

I'll run a few tests later this evening to confirm, then if everything works I'll award the points.

Thanks!
Avatar of TomPro

ASKER

The plot thickens...

SystemTimeToTzSpecificLocalTime() apppears to work correctly on Windows XP, but not on Windows Server 2000 or Windows Server 2003.

Here's an example of a test case that's failing:

UTC time, in 100 nanosecond units:
128068740000000000

Expected Central Time answer:
2006-11-01T11:00:00.000-6:00

Results from XP:
2006-11-01T11:00:00.000-6:00

Results from Windows 2003 Server and 2000 Server:
2006-11-01T12:00:00.000-5:00

In 2006 (prior to the DST law changes brought into effect in 2007), DST in the United States ended on the last Sunday in October.  So on November 1, 2006, I think the clocks should have been on GMT-6:00,  not GMT-5:00.  So it looks like XP is correct and Windows 2000 / 2003 are incorrect.

This behavior shows up in the following code (error checking removed for simplicity).  Any ideas what might be happening?

Note:  All test systems are running in the Central Time (US & Canada) zone, and are set with accurate system time for the current time zone.

Thanks!


int 100nsUTCToLocalISO(__int64 time100ns, char *retTime, int retTimeSize)
{
int rstatus = 0;
FILETIME utcFileTime;
FILETIME localFileTime;
__int64 local100ns;
SYSTEMTIME sTime_UTC;
SYSTEMTIME sTime_LOC;
 
memcpy(&utcFileTime, &time100ns, sizeof(utcFileTime));
 
// convert the file time to UTC system time
FileTimeToSystemTime(&utcFileTime, &sTime_UTC);
 
// convert from UTC to local time
// THIS IS WHERE XP AND 2000 / 2003 BEHAVE DIFFERENTLY
SystemTimeToTzSpecificLocalTime(NULL, &sTime_UTC, &sTime_LOC);
 
// get the FILETIME for the local time
SystemTimeToFileTime(&sTime_LOC, &localFileTime);
 
// ...
// Write XML ISO timestamp in local time zone to retTime buffer
// ...
 
return rstatus;
}

Open in new window

As the first step just to confirm are the patches http://support.microsoft.com/gp/dst_prodlist installed on the machines running Windows 2000 and 2003?

Second item is the call to the SystemTimeToTzSpecificLocalTime above whereby the first argument, the time zone information structure reference, is NULL which makes the function use the currently active time zone information; from reading the comprehensive MSDN article at http://support.microsoft.com/kb/932955 , specifically the "Local time conversion in Windows" section it appears that this can indeed introduce historical inaccuracies because of the changes to the DST so you indeed do have an issue when it comes to identifying the correct offset related the years.
ASKER CERTIFIED SOLUTION
Avatar of LordOfPorts
LordOfPorts
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of TomPro

ASKER

The Windows 2003 system has the 951072 v2 patch, which looks like the latest one.  I haven't looked at the Windows 2000 system yet.

The line that you pointed out from KB 932955 is interesting--but I'm not sure why the time translation would work in XP but not in 2000.
Avatar of TomPro

ASKER

LordOfPorts,

Thanks for the excellent answers.  I'm awarding points now.


Avatar of TomPro

ASKER

You did a great job explaining a very complicated facet of Windows time-keeping.  Thanks for the great work.