mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 06:40:43 +01:00

This removes the redundant type and replaces all usages. A slight change in behavior is that we no longer get nanosecond resolution. This should not matter since no current code requires nanosecond resolution. Bug: webrtc:9155 Change-Id: I04334e08c686d95731621a6c8a7e40400d0ae3b2 Reviewed-on: https://webrtc-review.googlesource.com/71163 Commit-Queue: Sebastian Jansson <srte@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23174}
150 lines
5 KiB
C++
150 lines
5 KiB
C++
/*
|
|
* Copyright (c) 2018 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.
|
|
*/
|
|
|
|
#ifndef API_UNITS_TIME_DELTA_H_
|
|
#define API_UNITS_TIME_DELTA_H_
|
|
|
|
#include <stdint.h>
|
|
#include <cmath>
|
|
#include <limits>
|
|
#include <string>
|
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
namespace webrtc {
|
|
namespace timedelta_impl {
|
|
constexpr int64_t kPlusInfinityVal = std::numeric_limits<int64_t>::max();
|
|
constexpr int64_t kMinusInfinityVal = std::numeric_limits<int64_t>::min();
|
|
} // namespace timedelta_impl
|
|
|
|
// TimeDelta represents the difference between two timestamps. Commonly this can
|
|
// be a duration. However since two Timestamps are not guaranteed to have the
|
|
// same epoch (they might come from different computers, making exact
|
|
// synchronisation infeasible), the duration covered by a TimeDelta can be
|
|
// undefined. To simplify usage, it can be constructed and converted to
|
|
// different units, specifically seconds (s), milliseconds (ms) and
|
|
// microseconds (us).
|
|
class TimeDelta {
|
|
public:
|
|
TimeDelta() = delete;
|
|
static TimeDelta Zero() { return TimeDelta(0); }
|
|
static TimeDelta PlusInfinity() {
|
|
return TimeDelta(timedelta_impl::kPlusInfinityVal);
|
|
}
|
|
static TimeDelta MinusInfinity() {
|
|
return TimeDelta(timedelta_impl::kMinusInfinityVal);
|
|
}
|
|
static TimeDelta seconds(int64_t seconds) {
|
|
return TimeDelta::us(seconds * 1000000);
|
|
}
|
|
static TimeDelta ms(int64_t milliseconds) {
|
|
return TimeDelta::us(milliseconds * 1000);
|
|
}
|
|
static TimeDelta us(int64_t microseconds) {
|
|
// Infinities only allowed via use of explicit constants.
|
|
RTC_DCHECK(microseconds > std::numeric_limits<int64_t>::min());
|
|
RTC_DCHECK(microseconds < std::numeric_limits<int64_t>::max());
|
|
return TimeDelta(microseconds);
|
|
}
|
|
int64_t seconds() const {
|
|
return (us() + (us() >= 0 ? 500000 : -500000)) / 1000000;
|
|
}
|
|
int64_t ms() const { return (us() + (us() >= 0 ? 500 : -500)) / 1000; }
|
|
int64_t us() const {
|
|
RTC_DCHECK(IsFinite());
|
|
return microseconds_;
|
|
}
|
|
int64_t ns() const {
|
|
RTC_DCHECK(us() > std::numeric_limits<int64_t>::min() / 1000);
|
|
RTC_DCHECK(us() < std::numeric_limits<int64_t>::max() / 1000);
|
|
return us() * 1000;
|
|
}
|
|
|
|
double SecondsAsDouble() const;
|
|
|
|
TimeDelta Abs() const { return TimeDelta::us(std::abs(us())); }
|
|
bool IsZero() const { return microseconds_ == 0; }
|
|
bool IsFinite() const { return !IsInfinite(); }
|
|
bool IsInfinite() const {
|
|
return microseconds_ == timedelta_impl::kPlusInfinityVal ||
|
|
microseconds_ == timedelta_impl::kMinusInfinityVal;
|
|
}
|
|
bool IsPlusInfinity() const {
|
|
return microseconds_ == timedelta_impl::kPlusInfinityVal;
|
|
}
|
|
bool IsMinusInfinity() const {
|
|
return microseconds_ == timedelta_impl::kMinusInfinityVal;
|
|
}
|
|
TimeDelta operator+(const TimeDelta& other) const {
|
|
return TimeDelta::us(us() + other.us());
|
|
}
|
|
TimeDelta operator-(const TimeDelta& other) const {
|
|
return TimeDelta::us(us() - other.us());
|
|
}
|
|
TimeDelta& operator-=(const TimeDelta& other) {
|
|
microseconds_ -= other.us();
|
|
return *this;
|
|
}
|
|
TimeDelta& operator+=(const TimeDelta& other) {
|
|
microseconds_ += other.us();
|
|
return *this;
|
|
}
|
|
|
|
bool operator==(const TimeDelta& other) const {
|
|
return microseconds_ == other.microseconds_;
|
|
}
|
|
bool operator!=(const TimeDelta& other) const {
|
|
return microseconds_ != other.microseconds_;
|
|
}
|
|
bool operator<=(const TimeDelta& other) const {
|
|
return microseconds_ <= other.microseconds_;
|
|
}
|
|
bool operator>=(const TimeDelta& other) const {
|
|
return microseconds_ >= other.microseconds_;
|
|
}
|
|
bool operator>(const TimeDelta& other) const {
|
|
return microseconds_ > other.microseconds_;
|
|
}
|
|
bool operator<(const TimeDelta& other) const {
|
|
return microseconds_ < other.microseconds_;
|
|
}
|
|
|
|
private:
|
|
explicit TimeDelta(int64_t us) : microseconds_(us) {}
|
|
int64_t microseconds_;
|
|
};
|
|
|
|
inline TimeDelta operator*(const TimeDelta& delta, const double& scalar) {
|
|
return TimeDelta::us(std::round(delta.us() * scalar));
|
|
}
|
|
inline TimeDelta operator*(const double& scalar, const TimeDelta& delta) {
|
|
return delta * scalar;
|
|
}
|
|
inline TimeDelta operator*(const TimeDelta& delta, const int64_t& scalar) {
|
|
return TimeDelta::us(delta.us() * scalar);
|
|
}
|
|
inline TimeDelta operator*(const int64_t& scalar, const TimeDelta& delta) {
|
|
return delta * scalar;
|
|
}
|
|
inline TimeDelta operator*(const TimeDelta& delta, const int32_t& scalar) {
|
|
return TimeDelta::us(delta.us() * scalar);
|
|
}
|
|
inline TimeDelta operator*(const int32_t& scalar, const TimeDelta& delta) {
|
|
return delta * scalar;
|
|
}
|
|
|
|
inline TimeDelta operator/(const TimeDelta& delta, const int64_t& scalar) {
|
|
return TimeDelta::us(delta.us() / scalar);
|
|
}
|
|
|
|
std::string ToString(const TimeDelta& value);
|
|
} // namespace webrtc
|
|
|
|
#endif // API_UNITS_TIME_DELTA_H_
|