|
|
|
//
|
|
|
|
// Copyright 2018 The Abseil Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ABSL_RANDOM_INTERNAL_DISTRIBUTION_CALLER_H_
|
|
|
|
#define ABSL_RANDOM_INTERNAL_DISTRIBUTION_CALLER_H_
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "absl/base/config.h"
|
|
|
|
#include "absl/base/internal/fast_type_id.h"
|
|
|
|
#include "absl/utility/utility.h"
|
|
|
|
|
|
|
|
namespace absl {
|
|
|
|
ABSL_NAMESPACE_BEGIN
|
|
|
|
namespace random_internal {
|
|
|
|
|
|
|
|
// DistributionCaller provides an opportunity to overload the general
|
|
|
|
// mechanism for calling a distribution, allowing for mock-RNG classes
|
|
|
|
// to intercept such calls.
|
|
|
|
template <typename URBG>
|
|
|
|
struct DistributionCaller {
|
Export of internal Abseil changes
--
0db7f4046f9b59c0f8c3df2f0eb7fd88fc328439 by Abseil Team <absl-team@google.com>:
Revise documentation of bit_cast:
* Removes inappropriate examples (round-tripping pointers, serialization), for which reinterpret_cast is more appropriate.
* Removes mention of "bit representation", which is not an explicit notion in C++. The best we get is "byte representation".
* Removes a circular defition of "bitcast" as itself, and instead explains what it does.
* Removes the mathism "for some values of", which is probably not totally accessible to a general audience, and in any case needless verbiage.
* Fixes comments in the example.
* Replaces some colloquialisms with simpler, more direct language.
PiperOrigin-RevId: 421791786
--
e04e64df55d93c1b9a09c0483b97cc4d8763260d by Derek Mauro <dmauro@google.com>:
Update Docker image to use GCC 11.2, Clang 14 (prerelease),
CMake 3.22.1, and Bazel 4.2.2
PiperOrigin-RevId: 421658559
--
d002bb3dc5cd1fc5b4cbd79a450efc894caa567c by Chris Kennelly <ckennelly@google.com>:
Add a small microbenchmark for absl::bit_width.
PiperOrigin-RevId: 421604852
--
131b057d1b76ecd7170421b48d661bb958ff676b by Evan Brown <ezb@google.com>:
Adds a disabled test for EBO in nested `CompressedTuple`s.
PiperOrigin-RevId: 421413134
--
e34c7876d3a1212d90c73c030ccae6169b682d43 by Jorg Brown <jorg@google.com>:
Show users a better error message if they pass a pointer to absl::Uniform.
PiperOrigin-RevId: 421090472
GitOrigin-RevId: 0db7f4046f9b59c0f8c3df2f0eb7fd88fc328439
Change-Id: I5a004e8d17e974fa4897a09d1466ae8fc65dfdbb
3 years ago
|
|
|
static_assert(!std::is_pointer<URBG>::value,
|
|
|
|
"You must pass a reference, not a pointer.");
|
|
|
|
// SFINAE to detect whether the URBG type includes a member matching
|
|
|
|
// bool InvokeMock(base_internal::FastTypeIdType, void*, void*).
|
|
|
|
//
|
|
|
|
// These live inside BitGenRef so that they have friend access
|
|
|
|
// to MockingBitGen. (see similar methods in DistributionCaller).
|
|
|
|
template <template <class...> class Trait, class AlwaysVoid, class... Args>
|
|
|
|
struct detector : std::false_type {};
|
|
|
|
template <template <class...> class Trait, class... Args>
|
|
|
|
struct detector<Trait, absl::void_t<Trait<Args...>>, Args...>
|
|
|
|
: std::true_type {};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
using invoke_mock_t = decltype(std::declval<T*>()->InvokeMock(
|
|
|
|
std::declval<::absl::base_internal::FastTypeIdType>(),
|
|
|
|
std::declval<void*>(), std::declval<void*>()));
|
|
|
|
|
|
|
|
using HasInvokeMock = typename detector<invoke_mock_t, void, URBG>::type;
|
|
|
|
|
|
|
|
// Default implementation of distribution caller.
|
|
|
|
template <typename DistrT, typename... Args>
|
|
|
|
static typename DistrT::result_type Impl(std::false_type, URBG* urbg,
|
|
|
|
Args&&... args) {
|
|
|
|
DistrT dist(std::forward<Args>(args)...);
|
|
|
|
return dist(*urbg);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mock implementation of distribution caller.
|
|
|
|
// The underlying KeyT must match the KeyT constructed by MockOverloadSet.
|
|
|
|
template <typename DistrT, typename... Args>
|
|
|
|
static typename DistrT::result_type Impl(std::true_type, URBG* urbg,
|
|
|
|
Args&&... args) {
|
|
|
|
using ResultT = typename DistrT::result_type;
|
|
|
|
using ArgTupleT = std::tuple<absl::decay_t<Args>...>;
|
|
|
|
using KeyT = ResultT(DistrT, ArgTupleT);
|
|
|
|
|
|
|
|
ArgTupleT arg_tuple(std::forward<Args>(args)...);
|
|
|
|
ResultT result;
|
|
|
|
if (!urbg->InvokeMock(::absl::base_internal::FastTypeId<KeyT>(), &arg_tuple,
|
|
|
|
&result)) {
|
|
|
|
auto dist = absl::make_from_tuple<DistrT>(arg_tuple);
|
|
|
|
result = dist(*urbg);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default implementation of distribution caller.
|
|
|
|
template <typename DistrT, typename... Args>
|
|
|
|
static typename DistrT::result_type Call(URBG* urbg, Args&&... args) {
|
|
|
|
return Impl<DistrT, Args...>(HasInvokeMock{}, urbg,
|
|
|
|
std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace random_internal
|
|
|
|
ABSL_NAMESPACE_END
|
|
|
|
} // namespace absl
|
|
|
|
|
|
|
|
#endif // ABSL_RANDOM_INTERNAL_DISTRIBUTION_CALLER_H_
|