grpcrand.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. *
  3. * Copyright 2018 gRPC authors.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * 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. */
  18. // Package grpcrand implements math/rand functions in a concurrent-safe way
  19. // with a global random source, independent of math/rand's global source.
  20. package grpcrand
  21. import (
  22. "math/rand"
  23. "sync"
  24. "time"
  25. )
  26. var (
  27. r = rand.New(rand.NewSource(time.Now().UnixNano()))
  28. mu sync.Mutex
  29. )
  30. // Int implements rand.Int on the grpcrand global source.
  31. func Int() int {
  32. mu.Lock()
  33. defer mu.Unlock()
  34. return r.Int()
  35. }
  36. // Int63n implements rand.Int63n on the grpcrand global source.
  37. func Int63n(n int64) int64 {
  38. mu.Lock()
  39. defer mu.Unlock()
  40. return r.Int63n(n)
  41. }
  42. // Intn implements rand.Intn on the grpcrand global source.
  43. func Intn(n int) int {
  44. mu.Lock()
  45. defer mu.Unlock()
  46. return r.Intn(n)
  47. }
  48. // Int31n implements rand.Int31n on the grpcrand global source.
  49. func Int31n(n int32) int32 {
  50. mu.Lock()
  51. defer mu.Unlock()
  52. return r.Int31n(n)
  53. }
  54. // Float64 implements rand.Float64 on the grpcrand global source.
  55. func Float64() float64 {
  56. mu.Lock()
  57. defer mu.Unlock()
  58. return r.Float64()
  59. }
  60. // Uint64 implements rand.Uint64 on the grpcrand global source.
  61. func Uint64() uint64 {
  62. mu.Lock()
  63. defer mu.Unlock()
  64. return r.Uint64()
  65. }
  66. // Uint32 implements rand.Uint32 on the grpcrand global source.
  67. func Uint32() uint32 {
  68. mu.Lock()
  69. defer mu.Unlock()
  70. return r.Uint32()
  71. }
  72. // ExpFloat64 implements rand.ExpFloat64 on the grpcrand global source.
  73. func ExpFloat64() float64 {
  74. mu.Lock()
  75. defer mu.Unlock()
  76. return r.ExpFloat64()
  77. }
  78. // Shuffle implements rand.Shuffle on the grpcrand global source.
  79. var Shuffle = func(n int, f func(int, int)) {
  80. mu.Lock()
  81. defer mu.Unlock()
  82. r.Shuffle(n, f)
  83. }