00001 /* 00002 * Copyright (c) 2000, 2020, Oracle and/or its affiliates. 00003 * 00004 * Licensed under the Universal Permissive License v 1.0 as shown at 00005 * http://oss.oracle.com/licenses/upl. 00006 */ 00007 #ifndef COH_RANDOM_HPP 00008 #define COH_RANDOM_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/native/NativeAtomic64.hpp" 00013 #include "coherence/util/List.hpp" 00014 00015 COH_OPEN_NAMESPACE2(coherence,util) 00016 00017 using coherence::native::NativeAtomic64; 00018 using coherence::util::List; 00019 00020 00021 /** 00022 * An instance of this class is used to generate a stream of pseudorandom 00023 * numbers. This class is an implementation of D. H. Lehmer's linear 00024 * congruential formula as described by Donald E. Knuth in: 00025 * The Art of Computer Programming, Volume 2, Section 3.2.1. 00026 * 00027 * @author js 2008.03.27 00028 */ 00029 class COH_EXPORT Random 00030 : public class_spec<Random> 00031 { 00032 friend class factory<Random>; 00033 00034 // ----- constructors --------------------------------------------------- 00035 00036 protected: 00037 /** 00038 * Create a new Random instance without supplying a seed. The seed 00039 * will be initialized by the default algorithm provided in seed(). 00040 */ 00041 Random(); 00042 00043 /** 00044 * Create a new Random instance, specifying a seed to use. 00045 */ 00046 Random(int64_t lSeed); 00047 00048 00049 // ----- Random interface ----------------------------------------------- 00050 00051 public: 00052 /** 00053 * Returns a pseudorandom, uniformly distributed int value between 0 00054 * (inclusive) and the specified value (exclusive), drawn from this 00055 * random number generator's sequence. 00056 * 00057 * @paran n the upper bound (exclusive) for the returned value 00058 * 00059 * @return an int32_t value in the range [0, n) 00060 * 00061 * @throws IllegalArgumentException if n is <= 0 00062 */ 00063 virtual int32_t nextInt32(int32_t n); 00064 00065 /** 00066 * Returns the next pseudorandom, uniformly distributed boolean value 00067 * from this random number generator's sequence. 00068 * 00069 * @return the next bool value 00070 */ 00071 virtual bool nextBoolean(); 00072 00073 /** 00074 * Returns the next pseudorandom, uniformly distributed int32_t value 00075 * from this random number generator's sequence. 00076 * 00077 * @return the next int32_t value in the range [Integer32::min_value, 00078 * Integer32::max_value] 00079 */ 00080 virtual int32_t nextInt32(); 00081 00082 /** 00083 * Returns the next pseudorandom, uniformly distributed int64_t value 00084 * from this random number generator's sequence. 00085 * 00086 * @return the next int64_t value in the range [Integer64::min_value, 00087 * Integer64::max_value] 00088 */ 00089 virtual int64_t nextInt64(); 00090 00091 /** 00092 * Returns the next pseudorandom, uniformly distributed float32_t 00093 * value from this random number generator's sequence. 00094 * 00095 * @return the next float32_t value in the range [0.0, 1.0] 00096 */ 00097 virtual float32_t nextFloat32(); 00098 00099 /** 00100 * Returns the next pseudorandom, uniformly distributed float64_t 00101 * value from this random number generator's sequence. 00102 * 00103 * @return the next float64_t value in the range [0.0, 1.0] 00104 */ 00105 virtual float64_t nextFloat64(); 00106 00107 /** 00108 * Provides a default seeding algorithm that is used to seed this 00109 * random number if no seed is provided. 00110 */ 00111 virtual void seed(); 00112 00113 /** 00114 * Sets the seed of this random number generator using a single long 00115 * seed. 00116 */ 00117 virtual void setSeed(int64_t lSeed); 00118 00119 00120 // ----- helper methods ------------------------------------------------- 00121 00122 public: 00123 /** 00124 * Randomize the order of the elements within the passed array. 00125 * 00126 * @param ha an array of objects to randomize 00127 * 00128 * @return the array that was passed in, with its contents 00129 * unchanged except for the order in which they appear 00130 * 00131 * @since Coherence 3.2 00132 */ 00133 static ObjectArray::Handle randomize(ObjectArray::Handle ha); 00134 00135 /** 00136 * Randomize the order of the elements within the passed list. 00137 * 00138 * @param ha a list of objects to randomize 00139 * 00140 * @return the list that was passed in, with its contents 00141 * unchanged except for the order in which they appear 00142 * 00143 * @since Coherence 3.4 00144 */ 00145 static List::Handle randomize(List::Handle hl); 00146 00147 protected: 00148 /** 00149 * Implementation of the random number algorithm which generates the 00150 * next pseudorandom number. 00151 * 00152 * Generates a 32 bit int value with it's corresponding bits being 00153 * individually generated pseudorandom 1's and 0's. This method 00154 * should be overridden to provide a new random number algorithm. 00155 * 00156 * @param nBits number of random bits to generate 00157 * 00158 * @return the next pseudorandom number with the specified number of 00159 * randomly generated bits 00160 */ 00161 virtual int32_t next(int32_t nBits); 00162 00163 00164 // ----- constants ------------------------------------------------------ 00165 00166 public: 00167 /** 00168 * Return the static Random instance. 00169 * 00170 * @return the static Random instance 00171 */ 00172 static Handle getInstance(); 00173 00174 00175 // ----- data members --------------------------------------------------- 00176 00177 protected: 00178 /** 00179 * The internal state associated with this pseudorandom number 00180 * generator. 00181 */ 00182 NativeAtomic64 m_atomicSeed; 00183 }; 00184 00185 COH_CLOSE_NAMESPACE2 00186 00187 #endif // COH_RANDOM_HPP 00188