time-win.cpp revision 6162a4a3d82747a7d0a3a2b2633a67a945cb5002
/* $Id$ */
/** @file
* IPRT - Time, Windows.
*/
/*
* Copyright (C) 2006-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP RTLOGGROUP_TIME
#include <Windows.h>
/*
* Note! The selected time source be the exact same one as we use in kernel land!
*/
//#define USE_TICK_COUNT
//#define USE_PERFORMANCE_COUNTER
//# define USE_FILE_TIME
//#if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64)
# define USE_INTERRUPT_TIME
//#else
//# define USE_TICK_COUNT
//#endif
#ifdef USE_INTERRUPT_TIME
typedef struct _MY_KSYSTEM_TIME
{
typedef struct _MY_KUSER_SHARED_DATA
{
volatile MY_KSYSTEM_TIME InterruptTime;
/* The rest is not relevant. */
#endif /* USE_INTERRUPT_TIME */
{
#if defined USE_TICK_COUNT
/*
* This would work if it didn't flip over every 49 (or so) days.
*/
#elif defined USE_PERFORMANCE_COUNTER
/*
* Slow and not derived from InterruptTime.
*/
static LARGE_INTEGER llFreq;
static unsigned uMult;
{
if (!QueryPerformanceFrequency(&llFreq))
}
if (QueryPerformanceCounter(&ll))
#elif defined USE_FILE_TIME
/*
* This is SystemTime not InterruptTime.
*/
return u64 * 100;
#elif defined USE_INTERRUPT_TIME
# if 0 /* ASSUME 0x7ffe0000 is set in stone */
/*
* This is exactly what we want, but we have to obtain it by non-official
* means.
*/
if (!s_pUserSharedData)
{
/** @todo find official way of getting this or some more clever
* detection algorithm if necessary. The com debugger class
* exports this too, windbg knows it too... */
}
# endif
/* use interrupt time */
do
{
#else
# error "Must select a method bright guy!"
#endif
}
{
return rtTimeGetSystemNanoTS();
}
{
return rtTimeGetSystemNanoTS() / 1000000;
}
{
}
{
{
if (SetSystemTime(&SysTime))
return VINF_SUCCESS;
}
return RTErrConvertFromWin32(GetLastError());
}
{
}
{
/*
* UTC = local + Tzi.Bias;
* The bias is given in minutes.
*/
return 0;
}
{
/*
* FileTimeToLocalFileTime does not do the right thing, so we'll have
* to convert to system time and SystemTimeToTzSpecificLocalTime instead.
*/
{
{
{
if (pTime)
return pTime;
}
}
}
/*
* The fallback is to use the current offset.
* (A better fallback would be to use the offset of the same time of the year.)
*/
if (pTime)
return pTime;
}