CachedRandomBits.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. import java.util.Objects;
  19. import java.util.Random;

  20. /**
  21.  * Generates random integers of specific bit length.
  22.  *
  23.  * <p>
  24.  * It is more efficient than calling Random.nextInt(1 << nbBits). It uses a cache of cacheSize random bytes that it replenishes when it gets empty. This is
  25.  * especially beneficial for SecureRandom Drbg implementations, which incur a constant cost at each randomness generation.
  26.  * </p>
  27.  *
  28.  * <p>
  29.  * Used internally by RandomStringUtils.
  30.  * </p>
  31.  *
  32.  * <p>
  33.  * #NotThreadSafe#
  34.  * </p>
  35.  */
  36. final class CachedRandomBits {

  37.     private final Random random;

  38.     private final byte[] cache;

  39.     /**
  40.      * Index of the next bit in the cache to be used.
  41.      *
  42.      * <ul>
  43.      * <li>bitIndex=0 means the cache is fully random and none of the bits have been used yet.</li>
  44.      * <li>bitIndex=1 means that only the LSB of cache[0] has been used and all other bits can be used.</li>
  45.      * <li>bitIndex=8 means that only the 8 bits of cache[0] has been used.</li>
  46.      * </ul>
  47.      */
  48.     private int bitIndex;

  49.     /**
  50.      * Creates a new instance.
  51.      *
  52.      * @param cacheSize number of bytes cached (only affects performance)
  53.      * @param random random source
  54.      */
  55.     CachedRandomBits(final int cacheSize, final Random random) {
  56.         if (cacheSize <= 0) {
  57.             throw new IllegalArgumentException("cacheSize must be positive");
  58.         }
  59.         this.cache = new byte[cacheSize];
  60.         this.random = Objects.requireNonNull(random, "random");
  61.         this.random.nextBytes(this.cache);
  62.         this.bitIndex = 0;
  63.     }

  64.     /**
  65.      * Generates a random integer with the specified number of bits.
  66.      *
  67.      * @param bits number of bits to generate, MUST be between 1 and 32
  68.      * @return random integer with {@code bits} bits
  69.      */
  70.     public int nextBits(final int bits) {
  71.         if (bits > 32 || bits <= 0) {
  72.             throw new IllegalArgumentException("number of bits must be between 1 and 32");
  73.         }
  74.         int result = 0;
  75.         int generatedBits = 0; // number of generated bits up to now
  76.         while (generatedBits < bits) {
  77.             if (bitIndex >> 3 >= cache.length) {
  78.                 // we exhausted the number of bits in the cache
  79.                 // this should only happen if the bitIndex is exactly matching the cache length
  80.                 assert bitIndex == cache.length * 8;
  81.                 random.nextBytes(cache);
  82.                 bitIndex = 0;
  83.             }
  84.             // generatedBitsInIteration is the number of bits that we will generate
  85.             // in this iteration of the while loop
  86.             int generatedBitsInIteration = Math.min(8 - (bitIndex & 0x7), bits - generatedBits);
  87.             result = result << generatedBitsInIteration;
  88.             result |= (cache[bitIndex >> 3] >> (bitIndex & 0x7)) & ((1 << generatedBitsInIteration) - 1);
  89.             generatedBits += generatedBitsInIteration;
  90.             bitIndex += generatedBitsInIteration;
  91.         }
  92.         return result;
  93.     }
  94. }