MarcoFalke
commented at 1:08 pm on April 27, 2020:
member
A naive implementation of this template is dangerous, because the call site might accidentally omit the template parameter:
0template<typename D> 1D GetRandDur(const D& duration_max)
2{
3return D{GetRand(duration_max.count())};
4}
5 6BOOST_AUTO_TEST_CASE(util_time_GetRandTime)
7{
8 std::chrono::seconds rand_hour = GetRandDur(std::chrono::hours{1});
9// Want seconds to be in range [0..1hour), but always get zero :((((
10 BOOST_CHECK_EQUAL(rand_hour.count(), 0);
11}
Luckily std::common_type is already specialised in the standard lib for std::chrono::duration (https://en.cppreference.com/w/cpp/chrono/duration/common_type). And its effect seem to be that the call site must always specify the template argument explicitly.
So instead of implementing the function for each duration type by hand, replace it with a templated version that is safe to use.
MarcoFalke
commented at 1:16 pm on April 27, 2020:
member
MarcoFalke
commented at 6:36 pm on April 27, 2020:
Done
DrahtBot
commented at 5:49 pm on April 27, 2020:
member
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
Conflicts
No conflicts as of last run.
MarcoFalke force-pushed
on Apr 27, 2020
DrahtBot added the label
Tests
on Apr 27, 2020
promag
commented at 10:07 pm on April 27, 2020:
member
ACKfaf2e857790182a5f192cd59c5a46c5310bf9cd0.
DrahtBot added the label
Needs rebase
on Apr 29, 2020
MarcoFalke force-pushed
on Apr 29, 2020
DrahtBot removed the label
Needs rebase
on Apr 29, 2020
in
src/random.h:70
in
fa05a4caf4outdated
66@@ -67,9 +67,21 @@
67 * Thread-safe.
68 */
69 void GetRandBytes(unsigned char* buf, int num) noexcept;
70+/** Generate a random integer in the range [0..range). Precondition: range > 0 */
When you’re changing these comments anyway, you might want to add that the random number comes from a uniform distribution (especially for durations this is not obvious).
MarcoFalke
commented at 1:20 pm on April 30, 2020:
Thanks, fixed
Add templated GetRandomDuration<>fa0e5b89cf
test: Add test for GetRandMillis and GetRandMicros0000ea3265
MarcoFalke force-pushed
on Apr 30, 2020
laanwj
commented at 1:27 pm on April 30, 2020:
member
jonatack
commented at 2:53 pm on April 30, 2020:
member
ACK0000ea3 thanks for the improved documentation. Code review, built, ran src/test/test_bitcoin -t random_tests -l test_suite for the new unit tests, git diff fa05a4c 0000ea3 since previous review:
0diff --git a/src/random.h b/src/random.h
1index bb9b8c2a2a..0c6dc24983 100644
2--- a/src/random.h
3+++ b/src/random.h
4@@ -67,9 +67,9 @@
5 * Thread-safe.
6 */
7 void GetRandBytes(unsigned char* buf, int num) noexcept;
8-/** Generate a random integer in the range [0..range). Precondition: range > 0 */
9+/** Generate a uniform random integer in the range [0..range). Precondition: range > 0 */
10 uint64_t GetRand(uint64_t nMax) noexcept;
11-/** Generate a random duration in the range [0..max). Precondition: max.count() > 0 */
12+/** Generate a uniform random duration in the range [0..max). Precondition: max.count() > 0 */
(or perhaps those are unrelated cleanups and I’m confused)
MarcoFalke
commented at 3:28 pm on April 30, 2020:
The secure allocator is only needed for g_rng, which is in the cpp file. The lines are simply moved up a few lines. They have been sorted because I touched this file with my editor for other reasons.
This is a metadata mirror of the GitHub repository
bitcoin/bitcoin.
This site is not affiliated with GitHub.
Content is generated from a GitHub metadata backup.
generated: 2025-04-04 03:12 UTC
This site is hosted by @0xB10C More mirrored repositories can be found on mirror.b10c.me