2017-05-26 04:48:44 +08:00
|
|
|
/*
|
|
|
|
* DeterministicRandom.h
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FLOW_DETERIMINISTIC_RANDOM_H
|
|
|
|
#define FLOW_DETERIMINISTIC_RANDOM_H
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cinttypes>
|
2018-10-20 01:30:13 +08:00
|
|
|
#include "flow/IRandom.h"
|
2019-03-04 04:57:43 +08:00
|
|
|
#include "flow/Error.h"
|
|
|
|
#include "flow/Trace.h"
|
2019-05-24 09:51:59 +08:00
|
|
|
#include "flow/FastRef.h"
|
2017-05-26 04:48:44 +08:00
|
|
|
|
|
|
|
#include <random>
|
|
|
|
|
2019-05-24 09:51:59 +08:00
|
|
|
class DeterministicRandom : public IRandom, public ReferenceCounted<DeterministicRandom> {
|
2017-05-26 04:48:44 +08:00
|
|
|
private:
|
|
|
|
std::mt19937 random;
|
|
|
|
uint64_t next;
|
2019-05-11 05:01:52 +08:00
|
|
|
bool useRandLog;
|
2017-05-26 04:48:44 +08:00
|
|
|
|
2019-12-05 05:32:38 +08:00
|
|
|
uint64_t gen64();
|
2017-05-26 04:48:44 +08:00
|
|
|
|
|
|
|
public:
|
2019-12-05 05:32:38 +08:00
|
|
|
DeterministicRandom(uint32_t seed, bool useRandLog = false);
|
|
|
|
double random01() override;
|
|
|
|
int randomInt(int min, int maxPlusOne) override;
|
|
|
|
int64_t randomInt64(int64_t min, int64_t maxPlusOne) override;
|
|
|
|
uint32_t randomUInt32() override;
|
2020-12-04 06:06:11 +08:00
|
|
|
uint64_t randomUInt64() override;
|
2019-12-05 05:32:38 +08:00
|
|
|
uint32_t randomSkewedUInt32(uint32_t min, uint32_t maxPlusOne) override;
|
|
|
|
UID randomUniqueID() override;
|
|
|
|
char randomAlphaNumeric() override;
|
|
|
|
std::string randomAlphaNumeric(int length) override;
|
|
|
|
uint64_t peek() const override;
|
|
|
|
void addref() override;
|
|
|
|
void delref() override;
|
2017-05-26 04:48:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|