mirror of https://github.com/apache/cassandra
362 lines
10 KiB
Java
362 lines
10 KiB
Java
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
package accord.utils;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Comparator;
|
|
import java.util.List;
|
|
import java.util.NavigableSet;
|
|
import java.util.Random;
|
|
import java.util.Set;
|
|
import java.util.stream.DoubleStream;
|
|
import java.util.stream.IntStream;
|
|
import java.util.stream.LongStream;
|
|
|
|
public interface RandomSource
|
|
{
|
|
static RandomSource wrap(Random random)
|
|
{
|
|
return new WrappedRandomSource(random);
|
|
}
|
|
|
|
void nextBytes(byte[] bytes);
|
|
|
|
boolean nextBoolean();
|
|
|
|
int nextInt();
|
|
|
|
default int nextInt(int maxExclusive)
|
|
{
|
|
return nextInt(0, maxExclusive);
|
|
}
|
|
|
|
default int nextInt(int minInclusive, int maxExclusive)
|
|
{
|
|
// this is diff behavior than ThreadLocalRandom, which returns nextInt
|
|
if (minInclusive >= maxExclusive)
|
|
throw new IllegalArgumentException(String.format("Min (%s) should be less than max (%d).", minInclusive, maxExclusive));
|
|
|
|
int result = nextInt();
|
|
int delta = maxExclusive - minInclusive;
|
|
int mask = delta - 1;
|
|
if ((delta & mask) == 0) // power of two
|
|
result = (result & mask) + minInclusive;
|
|
else if (delta > 0)
|
|
{
|
|
// reject over-represented candidates
|
|
for (int u = result >>> 1; // ensure nonnegative
|
|
u + mask - (result = u % delta) < 0; // rejection check
|
|
u = nextInt() >>> 1) // retry
|
|
;
|
|
result += minInclusive;
|
|
}
|
|
else
|
|
{
|
|
// range not representable as int
|
|
while (result < minInclusive || result >= maxExclusive)
|
|
result = nextInt();
|
|
}
|
|
return result;
|
|
}
|
|
|
|
default IntStream ints()
|
|
{
|
|
return IntStream.generate(this::nextInt);
|
|
}
|
|
|
|
default IntStream ints(int maxExclusive)
|
|
{
|
|
return IntStream.generate(() -> nextInt(maxExclusive));
|
|
}
|
|
|
|
default IntStream ints(int minInclusive, int maxExclusive)
|
|
{
|
|
return IntStream.generate(() -> nextInt(minInclusive, maxExclusive));
|
|
}
|
|
|
|
long nextLong();
|
|
|
|
default long nextLong(long maxExclusive)
|
|
{
|
|
return nextLong(0, maxExclusive);
|
|
}
|
|
|
|
default long nextLong(long minInclusive, long maxExclusive)
|
|
{
|
|
// this is diff behavior than ThreadLocalRandom, which returns nextLong
|
|
if (minInclusive >= maxExclusive)
|
|
throw new IllegalArgumentException(String.format("Min (%s) should be less than max (%d).", minInclusive, maxExclusive));
|
|
|
|
long result = nextLong();
|
|
long delta = maxExclusive - minInclusive;
|
|
long mask = delta - 1;
|
|
if ((delta & mask) == 0L) // power of two
|
|
result = (result & mask) + minInclusive;
|
|
else if (delta > 0L)
|
|
{
|
|
// reject over-represented candidates
|
|
for (long u = result >>> 1; // ensure nonnegative
|
|
u + mask - (result = u % delta) < 0L; // rejection check
|
|
u = nextLong() >>> 1) // retry
|
|
;
|
|
result += minInclusive;
|
|
}
|
|
else
|
|
{
|
|
// range not representable as long
|
|
while (result < minInclusive || result >= maxExclusive)
|
|
result = nextLong();
|
|
}
|
|
return result;
|
|
}
|
|
|
|
default LongStream longs()
|
|
{
|
|
return LongStream.generate(this::nextLong);
|
|
}
|
|
|
|
default LongStream longs(long maxExclusive)
|
|
{
|
|
return LongStream.generate(() -> nextLong(maxExclusive));
|
|
}
|
|
|
|
default LongStream longs(long minInclusive, long maxExclusive)
|
|
{
|
|
return LongStream.generate(() -> nextLong(minInclusive, maxExclusive));
|
|
}
|
|
|
|
float nextFloat();
|
|
|
|
double nextDouble();
|
|
|
|
default double nextDouble(double maxExclusive)
|
|
{
|
|
return nextDouble(0, maxExclusive);
|
|
}
|
|
|
|
default double nextDouble(double minInclusive, double maxExclusive)
|
|
{
|
|
if (minInclusive >= maxExclusive)
|
|
throw new IllegalArgumentException(String.format("Min (%s) should be less than max (%d).", minInclusive, maxExclusive));
|
|
|
|
double result = nextDouble();
|
|
result = result * (maxExclusive - minInclusive) + minInclusive;
|
|
if (result >= maxExclusive) // correct for rounding
|
|
result = Double.longBitsToDouble(Double.doubleToLongBits(maxExclusive) - 1);
|
|
return result;
|
|
}
|
|
|
|
default DoubleStream doubles()
|
|
{
|
|
return DoubleStream.generate(this::nextDouble);
|
|
}
|
|
|
|
default DoubleStream doubles(double maxExclusive)
|
|
{
|
|
return DoubleStream.generate(() -> nextDouble(maxExclusive));
|
|
}
|
|
|
|
default DoubleStream doubles(double minInclusive, double maxExclusive)
|
|
{
|
|
return DoubleStream.generate(() -> nextDouble(minInclusive, maxExclusive));
|
|
}
|
|
|
|
double nextGaussian();
|
|
|
|
default int pickInt(int first, int second, int... rest)
|
|
{
|
|
int offset = nextInt(0, rest.length + 2);
|
|
switch (offset)
|
|
{
|
|
case 0: return first;
|
|
case 1: return second;
|
|
default: return rest[offset - 2];
|
|
}
|
|
}
|
|
|
|
default int pickInt(int[] array)
|
|
{
|
|
return pickInt(array, 0, array.length);
|
|
}
|
|
|
|
default int pickInt(int[] array, int offset, int length)
|
|
{
|
|
Invariants.checkIndexInBounds(array.length, offset, length);
|
|
if (length == 1)
|
|
return array[offset];
|
|
return array[nextInt(offset, offset + length)];
|
|
}
|
|
|
|
default long pickLong(long first, long second, long... rest)
|
|
{
|
|
int offset = nextInt(0, rest.length + 2);
|
|
switch (offset)
|
|
{
|
|
case 0: return first;
|
|
case 1: return second;
|
|
default: return rest[offset - 2];
|
|
}
|
|
}
|
|
|
|
default long pickLong(long[] array)
|
|
{
|
|
return pickLong(array, 0, array.length);
|
|
}
|
|
|
|
default long pickLong(long[] array, int offset, int length)
|
|
{
|
|
Invariants.checkIndexInBounds(array.length, offset, length);
|
|
if (length == 1)
|
|
return array[offset];
|
|
return array[nextInt(offset, offset + length)];
|
|
}
|
|
|
|
default <T extends Comparable<T>> T pick(Set<T> set)
|
|
{
|
|
List<T> values = new ArrayList<>(set);
|
|
// Non-ordered sets may have different iteration order on different environments, which would make a seed produce different histories!
|
|
// To avoid such a problem, make sure to apply a deterministic function (sort).
|
|
if (!(set instanceof NavigableSet))
|
|
values.sort(Comparator.naturalOrder());
|
|
return pick(values);
|
|
}
|
|
|
|
default <T> T pick(T first, T second, T... rest)
|
|
{
|
|
int offset = nextInt(0, rest.length + 2);
|
|
switch (offset)
|
|
{
|
|
case 0: return first;
|
|
case 1: return second;
|
|
default: return rest[offset - 2];
|
|
}
|
|
}
|
|
|
|
default <T> T pick(T[] array)
|
|
{
|
|
return array[nextInt(array.length)];
|
|
}
|
|
|
|
default <T> T pick(List<T> values)
|
|
{
|
|
return pick(values, 0, values.size());
|
|
}
|
|
|
|
default <T> T pick(List<T> values, int offset, int length)
|
|
{
|
|
Invariants.checkIndexInBounds(values.size(), offset, length);
|
|
if (length == 1)
|
|
return values.get(offset);
|
|
return values.get(nextInt(offset, offset + length));
|
|
}
|
|
|
|
void setSeed(long seed);
|
|
|
|
RandomSource fork();
|
|
|
|
/**
|
|
* Returns true with a probability of {@code chance}. This logic is logically the same as
|
|
* <pre>{@code nextFloat() < chance}</pre>
|
|
*
|
|
* @param chance cumulative probability in range [0..1]
|
|
*/
|
|
default boolean decide(float chance)
|
|
{
|
|
return nextFloat() < chance;
|
|
}
|
|
|
|
/**
|
|
* Returns true with a probability of {@code chance}. This logic is logically the same as
|
|
* <pre>{@code nextDouble() < chance}</pre>
|
|
*
|
|
* @param chance cumulative probability in range [0..1]
|
|
*/
|
|
default boolean decide(double chance)
|
|
{
|
|
return nextDouble() < chance;
|
|
}
|
|
|
|
default long reset()
|
|
{
|
|
long seed = nextLong();
|
|
setSeed(seed);
|
|
return seed;
|
|
}
|
|
|
|
default Random asJdkRandom()
|
|
{
|
|
return new Random()
|
|
{
|
|
@Override
|
|
public void setSeed(long seed)
|
|
{
|
|
RandomSource.this.setSeed(seed);
|
|
}
|
|
|
|
@Override
|
|
public void nextBytes(byte[] bytes)
|
|
{
|
|
RandomSource.this.nextBytes(bytes);
|
|
}
|
|
|
|
@Override
|
|
public int nextInt()
|
|
{
|
|
return RandomSource.this.nextInt();
|
|
}
|
|
|
|
@Override
|
|
public int nextInt(int bound)
|
|
{
|
|
return RandomSource.this.nextInt(bound);
|
|
}
|
|
|
|
@Override
|
|
public long nextLong()
|
|
{
|
|
return RandomSource.this.nextLong();
|
|
}
|
|
|
|
@Override
|
|
public boolean nextBoolean()
|
|
{
|
|
return RandomSource.this.nextBoolean();
|
|
}
|
|
|
|
@Override
|
|
public float nextFloat()
|
|
{
|
|
return RandomSource.this.nextFloat();
|
|
}
|
|
|
|
@Override
|
|
public double nextDouble()
|
|
{
|
|
return RandomSource.this.nextDouble();
|
|
}
|
|
|
|
@Override
|
|
public double nextGaussian()
|
|
{
|
|
return RandomSource.this.nextGaussian();
|
|
}
|
|
};
|
|
}
|
|
}
|