blob: 1a3b79e5104d1fd74f7359c068617b8ef2691df2 [file] [log] [blame]
kushi.p@gmail.come4869772011-04-22 22:13:07 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
mark@chromium.orgb93c0542008-09-30 07:18:01 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/rand_util.h"
6
7#include <math.h>
tfarina0dae6362015-05-19 07:14:09 +09008#include <stdint.h>
mark@chromium.orgb93c0542008-09-30 07:18:01 +09009
scottmg@chromium.orgfd621b92013-10-16 05:29:03 +090010#include <algorithm>
mark@chromium.orgc22c62b2008-09-30 23:26:33 +090011#include <limits>
12
mark@chromium.orgb93c0542008-09-30 07:18:01 +090013#include "base/logging.h"
avi@chromium.org68a745c2013-06-11 05:11:14 +090014#include "base/strings/string_util.h"
mark@chromium.orgb93c0542008-09-30 07:18:01 +090015
mark@chromium.orgb93c0542008-09-30 07:18:01 +090016namespace base {
17
18int RandInt(int min, int max) {
kushi.p@gmail.come4869772011-04-22 22:13:07 +090019 DCHECK_LE(min, max);
mark@chromium.orgb93c0542008-09-30 07:18:01 +090020
Nico Weber1796efe2015-10-30 05:42:58 +090021 uint64_t range = static_cast<uint64_t>(max) - min + 1;
22 // |range| is at most UINT_MAX + 1, so the result of RandGenerator(range)
23 // is at most UINT_MAX. Hence it's safe to cast it from uint64_t to int64_t.
24 int result =
25 static_cast<int>(min + static_cast<int64_t>(base::RandGenerator(range)));
kushi.p@gmail.com381e9662011-05-04 10:29:38 +090026 DCHECK_GE(result, min);
27 DCHECK_LE(result, max);
mark@chromium.orgb93c0542008-09-30 07:18:01 +090028 return result;
29}
30
31double RandDouble() {
joi@chromium.orgdf3561d2011-05-11 02:18:53 +090032 return BitsToOpenEndedUnitInterval(base::RandUint64());
33}
34
Nico Weber1796efe2015-10-30 05:42:58 +090035double BitsToOpenEndedUnitInterval(uint64_t bits) {
mark@chromium.orgc22c62b2008-09-30 23:26:33 +090036 // We try to get maximum precision by masking out as many bits as will fit
37 // in the target type's mantissa, and raising it to an appropriate power to
38 // produce output in the range [0, 1). For IEEE 754 doubles, the mantissa
39 // is expected to accommodate 53 bits.
mark@chromium.orgb93c0542008-09-30 07:18:01 +090040
avi486c61f2015-11-24 23:26:24 +090041 static_assert(std::numeric_limits<double>::radix == 2,
42 "otherwise use scalbn");
mark@chromium.orgc22c62b2008-09-30 23:26:33 +090043 static const int kBits = std::numeric_limits<double>::digits;
Nico Weber1796efe2015-10-30 05:42:58 +090044 uint64_t random_bits = bits & ((UINT64_C(1) << kBits) - 1);
mark@chromium.orgc22c62b2008-09-30 23:26:33 +090045 double result = ldexp(static_cast<double>(random_bits), -1 * kBits);
kushi.p@gmail.com381e9662011-05-04 10:29:38 +090046 DCHECK_GE(result, 0.0);
47 DCHECK_LT(result, 1.0);
mark@chromium.orgb93c0542008-09-30 07:18:01 +090048 return result;
49}
50
Nico Weber1796efe2015-10-30 05:42:58 +090051uint64_t RandGenerator(uint64_t range) {
dilmah@chromium.orgbd365732011-08-25 04:58:36 +090052 DCHECK_GT(range, 0u);
joi@chromium.orgedf24fc2011-05-31 02:39:09 +090053 // We must discard random results above this number, as they would
54 // make the random generator non-uniform (consider e.g. if
dilmah@chromium.orgbd365732011-08-25 04:58:36 +090055 // MAX_UINT64 was 7 and |range| was 5, then a result of 1 would be twice
56 // as likely as a result of 3 or 4).
Nico Weber1796efe2015-10-30 05:42:58 +090057 uint64_t max_acceptable_value =
58 (std::numeric_limits<uint64_t>::max() / range) * range - 1;
joi@chromium.orgedf24fc2011-05-31 02:39:09 +090059
Nico Weber1796efe2015-10-30 05:42:58 +090060 uint64_t value;
joi@chromium.orgedf24fc2011-05-31 02:39:09 +090061 do {
62 value = base::RandUint64();
dilmah@chromium.orgbd365732011-08-25 04:58:36 +090063 } while (value > max_acceptable_value);
joi@chromium.orgedf24fc2011-05-31 02:39:09 +090064
dilmah@chromium.orgbd365732011-08-25 04:58:36 +090065 return value % range;
isherman@chromium.org01eaa0b2010-08-31 06:07:05 +090066}
67
qsr@google.comfbda4d52011-05-05 17:46:11 +090068std::string RandBytesAsString(size_t length) {
pkasting@chromium.orgd3479372011-11-30 05:06:18 +090069 DCHECK_GT(length, 0u);
qsr@google.comfbda4d52011-05-05 17:46:11 +090070 std::string result;
71 RandBytes(WriteInto(&result, length + 1), length);
abarth@chromium.orgc19cb312011-04-30 06:03:54 +090072 return result;
73}
74
mark@chromium.orgb93c0542008-09-30 07:18:01 +090075} // namespace base