2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Slice.h"
|
2020-06-24 13:47:36 +02:00
|
|
|
#include "td/utils/Span.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-06-26 01:24:13 +02:00
|
|
|
#include <utility>
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Random {
|
|
|
|
public:
|
|
|
|
#if TD_HAVE_OPENSSL
|
|
|
|
static void secure_bytes(MutableSlice dest);
|
|
|
|
static void secure_bytes(unsigned char *ptr, size_t size);
|
|
|
|
static int32 secure_int32();
|
|
|
|
static int64 secure_int64();
|
2019-07-04 12:55:17 +02:00
|
|
|
static uint32 secure_uint32();
|
|
|
|
static uint64 secure_uint64();
|
2018-03-26 16:01:27 +02:00
|
|
|
|
|
|
|
// works only for current thread
|
|
|
|
static void add_seed(Slice bytes, double entropy = 0);
|
2020-06-24 13:47:36 +02:00
|
|
|
static void secure_cleanup();
|
2018-12-31 20:04:05 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static uint32 fast_uint32();
|
|
|
|
static uint64 fast_uint64();
|
|
|
|
|
|
|
|
// distribution is not uniform, min and max are included
|
|
|
|
static int fast(int min, int max);
|
2020-06-24 13:47:36 +02:00
|
|
|
static double fast(double min, double max);
|
2020-10-08 11:47:03 +02:00
|
|
|
static bool fast_bool();
|
2018-08-13 19:15:09 +02:00
|
|
|
|
2020-06-24 13:47:36 +02:00
|
|
|
class Fast {
|
|
|
|
public:
|
|
|
|
uint64 operator()() {
|
|
|
|
return fast_uint64();
|
|
|
|
}
|
|
|
|
};
|
2018-08-13 19:15:09 +02:00
|
|
|
class Xorshift128plus {
|
|
|
|
public:
|
2018-09-07 02:41:21 +02:00
|
|
|
explicit Xorshift128plus(uint64 seed);
|
2018-08-13 19:15:09 +02:00
|
|
|
Xorshift128plus(uint64 seed_a, uint64 seed_b);
|
|
|
|
uint64 operator()();
|
2018-12-19 15:48:39 +01:00
|
|
|
int fast(int min, int max);
|
2020-06-24 13:47:36 +02:00
|
|
|
int64 fast64(int64 min, int64 max);
|
2020-06-12 17:06:40 +02:00
|
|
|
void bytes(MutableSlice dest);
|
2018-08-13 19:15:09 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint64 seed_[2];
|
|
|
|
};
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
2020-06-24 13:47:36 +02:00
|
|
|
template <class T, class R>
|
2020-06-26 01:24:13 +02:00
|
|
|
void random_shuffle(MutableSpan<T> v, R &rnd) {
|
|
|
|
for (size_t i = 1; i < v.size(); i++) {
|
|
|
|
auto pos = static_cast<size_t>(rnd()) % (i + 1);
|
|
|
|
using std::swap;
|
|
|
|
swap(v[i], v[pos]);
|
2020-06-24 13:47:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|