Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "absl/container/internal/hash_generator_testing.h"
00016
00017 #include <deque>
00018
00019 namespace absl {
00020 namespace container_internal {
00021 namespace hash_internal {
00022 namespace {
00023
00024 class RandomDeviceSeedSeq {
00025 public:
00026 using result_type = typename std::random_device::result_type;
00027
00028 template <class Iterator>
00029 void generate(Iterator start, Iterator end) {
00030 while (start != end) {
00031 *start = gen_();
00032 ++start;
00033 }
00034 }
00035
00036 private:
00037 std::random_device gen_;
00038 };
00039
00040 }
00041
00042 std::mt19937_64* GetSharedRng() {
00043 RandomDeviceSeedSeq seed_seq;
00044 static auto* rng = new std::mt19937_64(seed_seq);
00045 return rng;
00046 }
00047
00048 std::string Generator<std::string>::operator()() const {
00049
00050 std::uniform_int_distribution<short> chars(0x20, 0x7E);
00051 std::string res;
00052 res.resize(32);
00053 std::generate(res.begin(), res.end(),
00054 [&]() { return chars(*GetSharedRng()); });
00055 return res;
00056 }
00057
00058 absl::string_view Generator<absl::string_view>::operator()() const {
00059 static auto* arena = new std::deque<std::string>();
00060
00061 std::uniform_int_distribution<short> chars(0x20, 0x7E);
00062 arena->emplace_back();
00063 auto& res = arena->back();
00064 res.resize(32);
00065 std::generate(res.begin(), res.end(),
00066 [&]() { return chars(*GetSharedRng()); });
00067 return res;
00068 }
00069
00070 }
00071 }
00072 }