-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom.cpp
70 lines (54 loc) · 1.66 KB
/
random.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module;
/*
eLyKseeR or LXR - cryptographic data archiving software
https://github.com/eLyKseeR/elykseer-cpp
Copyright (C) 2019-2025 Alexander Diemand
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <memory>
#include <random>
#include <mutex>
#include <stdint.h>
module lxr_random;
namespace lxr {
struct Random::pimpl {
pimpl() {
std::random_device rng_dev;
rng_gen.reset(new std::mt19937(rng_dev()));
}
std::unique_ptr<std::mt19937> rng_gen{};
std::mutex rng_mutex;
};
Random::Random()
: _pimpl(new Random::pimpl)
{}
Random::~Random()
{
if (_pimpl) {
_pimpl.reset();
}
}
Random& Random::rng() {
static Random _rng;
return _rng;
}
uint32_t Random::random() const
{
std::lock_guard<std::mutex> lock(_pimpl->rng_mutex);
return std::uniform_int_distribution<uint32_t>(0)(*_pimpl->rng_gen);
}
uint32_t Random::random(uint32_t max) const
{
std::lock_guard<std::mutex> lock(_pimpl->rng_mutex);
return std::uniform_int_distribution<uint32_t>(0, max - 1)(*_pimpl->rng_gen);
}
} // namespace