mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

This reverts commit dfe19719e5
.
Reason for revert: Breaks fuzzers in Chromium builds. See https://ci.chromium.org/ui/p/chromium/builders/try/linux-libfuzzer-asan-rel/685438/overview. I am reverting since this blocks the roll but I will be in touch for a fix.
Original change's description:
> Enable use of rtc::SystemTimeNanos() provided by Chromium
>
> This is the third CL out of three to enable overriding
> of the function SystemTimeNanos() in rtc_base/system_time.cc
>
> When WebRTC is built as part of Chromium the rtc::SystemTimeNanos()
> function provided by Chromium will be used. This is controlled
> by the build argument rtc_exclude_system_time which directly
> maps to the macro WEBRTC_EXCLUDE_SYSTEM_TIME.
>
> By doing this we are making sure that the WebRTC and Chromium
> clocks are the same.
>
> Bug: chromium:516700
> Change-Id: If7f749c4aadefb1cfc07ba4c7e3f45dc6c31118b
> Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/208223
> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#33337}
TBR=kron@webrtc.org
Bug: chromium:516700
Change-Id: I9ecd1784a6c1cdac8bae07d34f7df20c62a21a95
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/208740
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33340}
92 lines
2.9 KiB
C++
92 lines
2.9 KiB
C++
/*
|
|
* Copyright 2021 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <limits>
|
|
|
|
#if defined(WEBRTC_POSIX)
|
|
#include <sys/time.h>
|
|
#if defined(WEBRTC_MAC)
|
|
#include <mach/mach_time.h>
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(WEBRTC_WIN)
|
|
// clang-format off
|
|
// clang formatting would put <windows.h> last,
|
|
// which leads to compilation failure.
|
|
#include <windows.h>
|
|
#include <mmsystem.h>
|
|
#include <sys/timeb.h>
|
|
// clang-format on
|
|
#endif
|
|
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/numerics/safe_conversions.h"
|
|
#include "rtc_base/system_time.h"
|
|
#include "rtc_base/time_utils.h"
|
|
|
|
namespace rtc {
|
|
|
|
int64_t SystemTimeNanos() {
|
|
int64_t ticks;
|
|
#if defined(WEBRTC_MAC)
|
|
static mach_timebase_info_data_t timebase;
|
|
if (timebase.denom == 0) {
|
|
// Get the timebase if this is the first time we run.
|
|
// Recommended by Apple's QA1398.
|
|
if (mach_timebase_info(&timebase) != KERN_SUCCESS) {
|
|
RTC_NOTREACHED();
|
|
}
|
|
}
|
|
// Use timebase to convert absolute time tick units into nanoseconds.
|
|
const auto mul = [](uint64_t a, uint32_t b) -> int64_t {
|
|
RTC_DCHECK_NE(b, 0);
|
|
RTC_DCHECK_LE(a, std::numeric_limits<int64_t>::max() / b)
|
|
<< "The multiplication " << a << " * " << b << " overflows";
|
|
return rtc::dchecked_cast<int64_t>(a * b);
|
|
};
|
|
ticks = mul(mach_absolute_time(), timebase.numer) / timebase.denom;
|
|
#elif defined(WEBRTC_POSIX)
|
|
struct timespec ts;
|
|
// TODO(deadbeef): Do we need to handle the case when CLOCK_MONOTONIC is not
|
|
// supported?
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
ticks = kNumNanosecsPerSec * static_cast<int64_t>(ts.tv_sec) +
|
|
static_cast<int64_t>(ts.tv_nsec);
|
|
#elif defined(WINUWP)
|
|
ticks = WinUwpSystemTimeNanos();
|
|
#elif defined(WEBRTC_WIN)
|
|
static volatile LONG last_timegettime = 0;
|
|
static volatile int64_t num_wrap_timegettime = 0;
|
|
volatile LONG* last_timegettime_ptr = &last_timegettime;
|
|
DWORD now = timeGetTime();
|
|
// Atomically update the last gotten time
|
|
DWORD old = InterlockedExchange(last_timegettime_ptr, now);
|
|
if (now < old) {
|
|
// If now is earlier than old, there may have been a race between threads.
|
|
// 0x0fffffff ~3.1 days, the code will not take that long to execute
|
|
// so it must have been a wrap around.
|
|
if (old > 0xf0000000 && now < 0x0fffffff) {
|
|
num_wrap_timegettime++;
|
|
}
|
|
}
|
|
ticks = now + (num_wrap_timegettime << 32);
|
|
// TODO(deadbeef): Calculate with nanosecond precision. Otherwise, we're
|
|
// just wasting a multiply and divide when doing Time() on Windows.
|
|
ticks = ticks * kNumNanosecsPerMillisec;
|
|
#else
|
|
#error Unsupported platform.
|
|
#endif
|
|
return ticks;
|
|
}
|
|
|
|
} // namespace rtc
|