OLD | NEW |
---|---|
1 // Copyright 2015 The Crashpad Authors. All rights reserved. | 1 // Copyright 2015 The Crashpad Authors. All rights reserved. |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
13 // limitations under the License. | 13 // limitations under the License. |
14 | 14 |
15 #include "util/win/time.h" | 15 #include "util/win/time.h" |
16 | 16 |
17 #include <inttypes.h> | 17 #include <inttypes.h> |
18 #include <windows.h> | |
19 | 18 |
20 #include "base/logging.h" | 19 #include "base/logging.h" |
21 | 20 |
22 namespace crashpad { | 21 namespace crashpad { |
23 | 22 |
24 void GetTimeOfDay(timeval* tv) { | 23 namespace { |
25 FILETIME filetime; | 24 const uint64_t kMicrosecondsPerSecond = static_cast<uint64_t>(1E6); |
26 GetSystemTimeAsFileTime(&filetime); | 25 } // namespace |
26 | |
27 timeval FiletimeToTimevalEpoch(const FILETIME& filetime) { | |
27 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | | 28 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | |
28 filetime.dwLowDateTime; | 29 filetime.dwLowDateTime; |
29 t /= 10; // 100 nanosecond intervals to microseconds. | 30 t /= 10; // 100 nanosecond intervals to microseconds. |
30 // Windows epoch is 1601-01-01, and FILETIME ticks are 100 nanoseconds. | 31 // Windows epoch is 1601-01-01, and FILETIME ticks are 100 nanoseconds. |
31 // 1601 to 1970 is 369 years + 89 leap days = 134774 days * 86400 seconds per | 32 // 1601 to 1970 is 369 years + 89 leap days = 134774 days * 86400 seconds per |
32 // day. It's not entirely clear, but it appears that these are solar seconds, | 33 // day. It's not entirely clear, but it appears that these are solar seconds, |
33 // not SI seconds, so there are no leap seconds to be considered. | 34 // not SI seconds, so there are no leap seconds to be considered. |
34 const uint64_t kNumSecondsFrom1601To1970 = (369 * 365 + 89) * 86400ULL; | 35 const uint64_t kNumSecondsFrom1601To1970 = (369 * 365 + 89) * 86400ULL; |
35 const uint64_t kMicrosecondsPerSecond = static_cast<uint64_t>(1E6); | |
36 DCHECK_GE(t, kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond); | 36 DCHECK_GE(t, kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond); |
37 t -= kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond; | 37 t -= kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond; |
38 tv->tv_sec = static_cast<long>(t / kMicrosecondsPerSecond); | 38 timeval tv; |
39 tv->tv_usec = static_cast<long>(t % kMicrosecondsPerSecond); | 39 tv.tv_sec = static_cast<long>(t / kMicrosecondsPerSecond); |
40 tv.tv_usec = static_cast<long>(t % kMicrosecondsPerSecond); | |
41 return tv; | |
42 } | |
43 | |
44 timeval FiletimeToTimevalAmount(const FILETIME& filetime) { | |
Mark Mentovai
2015/05/04 21:29:24
I’m on the fence about having these two functions
scottmg
2015/05/05 16:45:48
I was too. I made a MicrosecondsToTimeval helper.
| |
45 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | | |
46 filetime.dwLowDateTime; | |
47 t /= 10; // 100 nanosecond intervals to microseconds. | |
48 timeval tv; | |
49 tv.tv_sec = static_cast<long>(t / kMicrosecondsPerSecond); | |
50 tv.tv_usec = static_cast<long>(t % kMicrosecondsPerSecond); | |
51 return tv; | |
52 } | |
53 | |
54 void GetTimeOfDay(timeval* tv) { | |
55 FILETIME filetime; | |
56 GetSystemTimeAsFileTime(&filetime); | |
57 *tv = FiletimeToTimevalEpoch(filetime); | |
40 } | 58 } |
41 | 59 |
42 } // namespace crashpad | 60 } // namespace crashpad |
OLD | NEW |