Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: util/win/time.cc

Issue 1119393003: win: Add support for CPUTimes and StartTime to snapshot (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@generate-dump
Patch Set: fixes Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« util/win/time.h ('K') | « util/win/time.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
26 GetSystemTimeAsFileTime(&filetime); 25 const uint64_t kMicrosecondsPerSecond = static_cast<uint64_t>(1E6);
26
27 timeval MicrosecondsToTimeval(uint64_t t) {
28 timeval tv;
29 tv.tv_sec = static_cast<long>(t / kMicrosecondsPerSecond);
30 tv.tv_usec = static_cast<long>(t % kMicrosecondsPerSecond);
31 return tv;
32 }
33
34 } // namespace
35
36 timeval FiletimeToTimevalEpoch(const FILETIME& filetime) {
27 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) | 37 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) |
28 filetime.dwLowDateTime; 38 filetime.dwLowDateTime;
29 t /= 10; // 100 nanosecond intervals to microseconds. 39 t /= 10; // 100 nanosecond intervals to microseconds.
30 // Windows epoch is 1601-01-01, and FILETIME ticks are 100 nanoseconds. 40 // 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 41 // 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, 42 // 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. 43 // not SI seconds, so there are no leap seconds to be considered.
34 const uint64_t kNumSecondsFrom1601To1970 = (369 * 365 + 89) * 86400ULL; 44 const uint64_t kNumSecondsFrom1601To1970 = (369 * 365 + 89) * 86400ULL;
35 const uint64_t kMicrosecondsPerSecond = static_cast<uint64_t>(1E6);
36 DCHECK_GE(t, kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond); 45 DCHECK_GE(t, kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond);
37 t -= kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond; 46 t -= kNumSecondsFrom1601To1970 * kMicrosecondsPerSecond;
38 tv->tv_sec = static_cast<long>(t / kMicrosecondsPerSecond); 47 return MicrosecondsToTimeval(t);
39 tv->tv_usec = static_cast<long>(t % kMicrosecondsPerSecond); 48 }
49
50 timeval FiletimeToTimevalAmount(const FILETIME& filetime) {
51 uint64_t t = (static_cast<uint64_t>(filetime.dwHighDateTime) << 32) |
52 filetime.dwLowDateTime;
53 t /= 10; // 100 nanosecond intervals to microseconds.
54 return MicrosecondsToTimeval(t);
55 }
56
57 void GetTimeOfDay(timeval* tv) {
58 FILETIME filetime;
59 GetSystemTimeAsFileTime(&filetime);
60 *tv = FiletimeToTimevalEpoch(filetime);
40 } 61 }
41 62
42 } // namespace crashpad 63 } // namespace crashpad
OLDNEW
« util/win/time.h ('K') | « util/win/time.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698