VirtualBox

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

最後變更 在這個檔案從72140是 72140,由 vboxsync 提交於 7 年 前

IPRT/time: misc fixes (incorrect offUTC conversion sign, forgotten storing of offUTC, incorrect month/day calculation for first day of month, avoiding assertions when leap year needs to be recalulated) for local time, make RTTimeImplode process local time correctly, plus an implementation of RTTimeLocalNormalize and RTTimeConvertToZulu. Much improved testcase exercising overflow handling in the local time case.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Id Revision
檔案大小: 3.6 KB
 
1/* $Id: time2-win.cpp 72140 2018-05-07 14:21:31Z 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.alldomusa.eu.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 {
79 pTime->fFlags = (pTime->fFlags & ~RTTIME_FLAGS_TYPE_MASK) | RTTIME_FLAGS_TYPE_LOCAL;
80 pTime->offUTC = (LocalTime - *pTimeSpec) / RT_NS_1MIN;
81 }
82 return pTime;
83 }
84 }
85 }
86 }
87
88 /*
89 * The fallback is to use the current offset.
90 * (A better fallback would be to use the offset of the same time of the year.)
91 */
92 LocalTime = *pTimeSpec;
93 int64_t LocalUTCOffset = RTTimeLocalDeltaNano();
94 RTTimeSpecAddNano(&LocalTime, LocalUTCOffset);
95 pTime = RTTimeExplode(pTime, &LocalTime);
96 if (pTime)
97 {
98 pTime->fFlags = (pTime->fFlags & ~RTTIME_FLAGS_TYPE_MASK) | RTTIME_FLAGS_TYPE_LOCAL;
99 pTime->offUTC = LocalUTCOffset / RT_NS_1MIN;
100 }
101 return pTime;
102}
103
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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