VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/win/time2-win.cpp@ 71128

Last change on this file since 71128 was 70345, checked in by vboxsync, 7 years ago

IPRT: More NT 3.1 compatibility tweaking.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.4 KB
Line 
1/* $Id: time2-win.cpp 70345 2017-12-26 15:51:56Z vboxsync $ */
2/** @file
3 * IPRT - Time, Windows.
4 */
5
6/*
7 * Copyright (C) 2006-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#define LOG_GROUP RTLOGGROUP_TIME
32#include <iprt/win/windows.h>
33
34#include <iprt/time.h>
35#include "internal/iprt.h"
36
37#include <iprt/assert.h>
38#include <iprt/err.h>
39#include "internal/time.h"
40
41#include "internal-r3-win.h"
42
43
44RTDECL(int) RTTimeSet(PCRTTIMESPEC pTime)
45{
46 FILETIME FileTime;
47 SYSTEMTIME SysTime;
48 if (FileTimeToSystemTime(RTTimeSpecGetNtFileTime(pTime, &FileTime), &SysTime))
49 {
50 if (SetSystemTime(&SysTime))
51 return VINF_SUCCESS;
52 }
53 return RTErrConvertFromWin32(GetLastError());
54}
55
56
57RTDECL(PRTTIME) RTTimeLocalExplode(PRTTIME pTime, PCRTTIMESPEC pTimeSpec)
58{
59 RTTIMESPEC LocalTime;
60 if (g_pfnSystemTimeToTzSpecificLocalTime)
61 {
62 /*
63 * FileTimeToLocalFileTime does not do the right thing, so we'll have
64 * to convert to system time and SystemTimeToTzSpecificLocalTime instead.
65 */
66 SYSTEMTIME SystemTimeIn;
67 FILETIME FileTime;
68 if (FileTimeToSystemTime(RTTimeSpecGetNtFileTime(pTimeSpec, &FileTime), &SystemTimeIn))
69 {
70 SYSTEMTIME SystemTimeOut;
71 if (g_pfnSystemTimeToTzSpecificLocalTime(NULL /* use current TZI */, &SystemTimeIn, &SystemTimeOut))
72 {
73 if (SystemTimeToFileTime(&SystemTimeOut, &FileTime))
74 {
75 RTTimeSpecSetNtFileTime(&LocalTime, &FileTime);
76 pTime = RTTimeExplode(pTime, &LocalTime);
77 if (pTime)
78 pTime->fFlags = (pTime->fFlags & ~RTTIME_FLAGS_TYPE_MASK) | RTTIME_FLAGS_TYPE_LOCAL;
79 return pTime;
80 }
81 }
82 }
83 }
84
85 /*
86 * The fallback is to use the current offset.
87 * (A better fallback would be to use the offset of the same time of the year.)
88 */
89 LocalTime = *pTimeSpec;
90 RTTimeSpecAddNano(&LocalTime, RTTimeLocalDeltaNano());
91 pTime = RTTimeExplode(pTime, &LocalTime);
92 if (pTime)
93 pTime->fFlags = (pTime->fFlags & ~RTTIME_FLAGS_TYPE_MASK) | RTTIME_FLAGS_TYPE_LOCAL;
94 return pTime;
95}
96
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette