This refactoring takes a careful approach to avoid rushing the change: * stub headers are left in all the old locations of webrtc/base * existing GN targets are kept and now just forward to the moved ones using public_deps. The only exception to the above is the base_java target and its .java files, which were moved to webrtc/rtc_base right away since it's not possible to use public_deps for android_library. To avoid breaking builds, a temporary Dummy.java file was added to the new intermediate target in webrtc/rtc_base:base_java as well to avoid hitting a GN assert in the android_library template. The above approach should make the transition smooth without breaking downstream. A helper script was created (https://codereview.webrtc.org/2879203002/) and was run like this: stub-headers.py -s webrtc/base -d webrtc/rtc_base -i 7634 stub-headers.py -s webrtc/base/numerics -d webrtc/rtc_base/numerics -i 7634 Fixed invalid header guards in the following files: webrtc/base/base64.h webrtc/base/cryptstring.h webrtc/base/event.h webrtc/base/flags.h webrtc/base/httpbase.h webrtc/base/httpcommon-inl.h webrtc/base/httpcommon.h webrtc/base/httpserver.h webrtc/base/logsinks.h webrtc/base/macutils.h webrtc/base/nattypes.h webrtc/base/openssladapter.h webrtc/base/opensslstreamadapter.h webrtc/base/pathutils.h webrtc/base/physicalsocketserver.h webrtc/base/proxyinfo.h webrtc/base/sigslot.h webrtc/base/sigslotrepeater.h webrtc/base/socket.h webrtc/base/socketaddresspair.h webrtc/base/socketfactory.h webrtc/base/stringutils.h webrtc/base/testbase64.h webrtc/base/testutils.h webrtc/base/transformadapter.h webrtc/base/win32filesystem.h Added new header guards to: sslroots.h testbase64.h BUG=webrtc:7634 NOTRY=True NOPRESUBMIT=True R=kwiberg@webrtc.org Review-Url: https://codereview.webrtc.org/2877023002 . Cr-Commit-Position: refs/heads/master@{#18816}
94 lines
3.1 KiB
C++
94 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2015 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 WEBRTC_RTC_BASE_RANDOM_H_
|
|
#define WEBRTC_RTC_BASE_RANDOM_H_
|
|
|
|
#include <limits>
|
|
|
|
#include "webrtc/typedefs.h"
|
|
#include "webrtc/base/constructormagic.h"
|
|
#include "webrtc/base/checks.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class Random {
|
|
public:
|
|
// TODO(tommi): Change this so that the seed can be initialized internally,
|
|
// e.g. by offering two ways of constructing or offer a static method that
|
|
// returns a seed that's suitable for initialization.
|
|
// The problem now is that callers are calling clock_->TimeInMicroseconds()
|
|
// which calls TickTime::Now().Ticks(), which can return a very low value on
|
|
// Mac and can result in a seed of 0 after conversion to microseconds.
|
|
// Besides the quality of the random seed being poor, this also requires
|
|
// the client to take on extra dependencies to generate a seed.
|
|
// If we go for a static seed generator in Random, we can use something from
|
|
// webrtc/base and make sure that it works the same way across platforms.
|
|
// See also discussion here: https://codereview.webrtc.org/1623543002/
|
|
explicit Random(uint64_t seed);
|
|
|
|
// Return pseudo-random integer of the specified type.
|
|
// We need to limit the size to 32 bits to keep the output close to uniform.
|
|
template <typename T>
|
|
T Rand() {
|
|
static_assert(std::numeric_limits<T>::is_integer &&
|
|
std::numeric_limits<T>::radix == 2 &&
|
|
std::numeric_limits<T>::digits <= 32,
|
|
"Rand is only supported for built-in integer types that are "
|
|
"32 bits or smaller.");
|
|
return static_cast<T>(NextOutput());
|
|
}
|
|
|
|
// Uniformly distributed pseudo-random number in the interval [0, t].
|
|
uint32_t Rand(uint32_t t);
|
|
|
|
// Uniformly distributed pseudo-random number in the interval [low, high].
|
|
uint32_t Rand(uint32_t low, uint32_t high);
|
|
|
|
// Uniformly distributed pseudo-random number in the interval [low, high].
|
|
int32_t Rand(int32_t low, int32_t high);
|
|
|
|
// Normal Distribution.
|
|
double Gaussian(double mean, double standard_deviation);
|
|
|
|
// Exponential Distribution.
|
|
double Exponential(double lambda);
|
|
|
|
private:
|
|
// Outputs a nonzero 64-bit random number.
|
|
uint64_t NextOutput() {
|
|
state_ ^= state_ >> 12;
|
|
state_ ^= state_ << 25;
|
|
state_ ^= state_ >> 27;
|
|
RTC_DCHECK(state_ != 0x0ULL);
|
|
return state_ * 2685821657736338717ull;
|
|
}
|
|
|
|
uint64_t state_;
|
|
|
|
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(Random);
|
|
};
|
|
|
|
// Return pseudo-random number in the interval [0.0, 1.0).
|
|
template <>
|
|
float Random::Rand<float>();
|
|
|
|
// Return pseudo-random number in the interval [0.0, 1.0).
|
|
template <>
|
|
double Random::Rand<double>();
|
|
|
|
// Return pseudo-random boolean value.
|
|
template <>
|
|
bool Random::Rand<bool>();
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_RTC_BASE_RANDOM_H_
|