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 | 18 |
19 #include "base/logging.h" | 19 #include "base/logging.h" |
20 | 20 |
21 namespace crashpad { | 21 namespace crashpad { |
22 | 22 |
23 namespace { | 23 namespace { |
24 | 24 |
25 const uint64_t kMicrosecondsPerSecond = static_cast<uint64_t>(1E6); | 25 const uint64_t kMicrosecondsPerSecond = static_cast<uint64_t>(1E6); |
26 | 26 |
27 timeval MicrosecondsToTimeval(uint64_t t) { | 27 uint64_t FiletimeToMicroseconds(const FILETIME& filetime) { |
| 28 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | |
| 29 filetime.dwLowDateTime; |
| 30 return t / 10; // 100 nanosecond intervals to microseconds. |
| 31 } |
| 32 |
| 33 timeval MicrosecondsToTimeval(uint64_t microseconds) { |
28 timeval tv; | 34 timeval tv; |
29 tv.tv_sec = static_cast<long>(t / kMicrosecondsPerSecond); | 35 tv.tv_sec = static_cast<long>(microseconds / kMicrosecondsPerSecond); |
30 tv.tv_usec = static_cast<long>(t % kMicrosecondsPerSecond); | 36 tv.tv_usec = static_cast<long>(microseconds % kMicrosecondsPerSecond); |
31 return tv; | 37 return tv; |
32 } | 38 } |
33 | 39 |
34 } // namespace | 40 } // namespace |
35 | 41 |
36 timeval FiletimeToTimevalEpoch(const FILETIME& filetime) { | 42 timeval FiletimeToTimevalEpoch(const FILETIME& filetime) { |
37 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | | 43 uint64_t microseconds = FiletimeToMicroseconds(filetime); |
38 filetime.dwLowDateTime; | 44 |
39 t /= 10; // 100 nanosecond intervals to microseconds. | |
40 // Windows epoch is 1601-01-01, and FILETIME ticks are 100 nanoseconds. | 45 // Windows epoch is 1601-01-01, and FILETIME ticks are 100 nanoseconds. |
41 // 1601 to 1970 is 369 years + 89 leap days = 134774 days * 86400 seconds per | 46 // 1601 to 1970 is 369 years + 89 leap days = 134774 days * 86400 seconds per |
42 // day. It's not entirely clear, but it appears that these are solar seconds, | 47 // day. It's not entirely clear, but it appears that these are solar seconds, |
43 // not SI seconds, so there are no leap seconds to be considered. | 48 // not SI seconds, so there are no leap seconds to be considered. |
44 const uint64_t kNumSecondsFrom1601To1970 = (369 * 365 + 89) * 86400ULL; | 49 const uint64_t kNumSecondsFrom1601To1970 = (369 * 365 + 89) * 86400ULL; |
45 DCHECK_GE(t, kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond); | 50 DCHECK_GE(microseconds, kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond); |
46 t -= kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond; | 51 microseconds -= kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond; |
47 return MicrosecondsToTimeval(t); | 52 return MicrosecondsToTimeval(microseconds); |
48 } | 53 } |
49 | 54 |
50 timeval FiletimeToTimevalInterval(const FILETIME& filetime) { | 55 timeval FiletimeToTimevalInterval(const FILETIME& filetime) { |
51 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | | 56 return MicrosecondsToTimeval(FiletimeToMicroseconds(filetime)); |
52 filetime.dwLowDateTime; | |
53 t /= 10; // 100 nanosecond intervals to microseconds. | |
54 return MicrosecondsToTimeval(t); | |
55 } | 57 } |
56 | 58 |
57 void GetTimeOfDay(timeval* tv) { | 59 void GetTimeOfDay(timeval* tv) { |
58 FILETIME filetime; | 60 FILETIME filetime; |
59 GetSystemTimeAsFileTime(&filetime); | 61 GetSystemTimeAsFileTime(&filetime); |
60 *tv = FiletimeToTimevalEpoch(filetime); | 62 *tv = FiletimeToTimevalEpoch(filetime); |
61 } | 63 } |
62 | 64 |
63 } // namespace crashpad | 65 } // namespace crashpad |
OLD | NEW |