Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_RAND_UTIL_H_ | 5 #ifndef BASE_RAND_UTIL_H_ |
| 6 #define BASE_RAND_UTIL_H_ | 6 #define BASE_RAND_UTIL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/base_api.h" | 11 #include "base/base_api.h" |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/callback.h" | |
| 13 | 14 |
| 14 namespace base { | 15 namespace base { |
| 15 | 16 |
| 16 // Returns a random number in range [0, kuint64max]. Thread-safe. | 17 // Returns a random number in range [0, kuint64max]. Thread-safe. |
| 17 BASE_API uint64 RandUint64(); | 18 BASE_API uint64 RandUint64(); |
| 18 | 19 |
| 19 // Returns a random number between min and max (inclusive). Thread-safe. | 20 // Returns a random number between min and max (inclusive). Thread-safe. |
| 20 BASE_API int RandInt(int min, int max); | 21 BASE_API int RandInt(int min, int max); |
| 21 | 22 |
| 23 typedef base::Callback<int(int, int)> RandIntCallback; | |
|
brettw
2011/06/27 22:24:48
I don't understand why this is here. It's not nece
agayev
2011/06/27 23:53:52
I thought callback for a RandInt is general enough
willchan no longer on Chromium
2011/06/28 09:58:23
This looks to be an ease of use vs dependency bloa
brettw
2011/06/28 16:09:52
I might define it at the top of your DNS class so
agayev
2011/06/28 16:22:20
It's not specific to DNS. For example, UDPSocket
| |
| 24 | |
| 22 // Returns a random number in range [0, max). Thread-safe. | 25 // Returns a random number in range [0, max). Thread-safe. |
| 23 // | 26 // |
| 24 // Note that this can be used as an adapter for std::random_shuffle(): | 27 // Note that this can be used as an adapter for std::random_shuffle(): |
| 25 // Given a pre-populated |std::vector<int> myvector|, shuffle it as | 28 // Given a pre-populated |std::vector<int> myvector|, shuffle it as |
| 26 // std::random_shuffle(myvector.begin(), myvector.end(), base::RandGenerator); | 29 // std::random_shuffle(myvector.begin(), myvector.end(), base::RandGenerator); |
| 27 BASE_API uint64 RandGenerator(uint64 max); | 30 BASE_API uint64 RandGenerator(uint64 max); |
| 28 | 31 |
| 29 // Returns a random double in range [0, 1). Thread-safe. | 32 // Returns a random double in range [0, 1). Thread-safe. |
| 30 BASE_API double RandDouble(); | 33 BASE_API double RandDouble(); |
| 31 | 34 |
| 32 // Given input |bits|, convert with maximum precision to a double in | 35 // Given input |bits|, convert with maximum precision to a double in |
| 33 // the range [0, 1). Thread-safe. | 36 // the range [0, 1). Thread-safe. |
| 34 BASE_API double BitsToOpenEndedUnitInterval(uint64 bits); | 37 BASE_API double BitsToOpenEndedUnitInterval(uint64 bits); |
| 35 | 38 |
| 36 // Fills |output_length| bytes of |output| with cryptographically strong random | 39 // Fills |output_length| bytes of |output| with cryptographically strong random |
| 37 // data. | 40 // data. |
| 38 BASE_API void RandBytes(void* output, size_t output_length); | 41 BASE_API void RandBytes(void* output, size_t output_length); |
| 39 | 42 |
| 40 // Fills a string of length |length| with with cryptographically strong random | 43 // Fills a string of length |length| with with cryptographically strong random |
| 41 // data and returns it. | 44 // data and returns it. |
| 42 // | 45 // |
| 43 // Not that this is a variation of |RandBytes| with a different return type. | 46 // Not that this is a variation of |RandBytes| with a different return type. |
| 44 BASE_API std::string RandBytesAsString(size_t length); | 47 BASE_API std::string RandBytesAsString(size_t length); |
| 45 | 48 |
| 46 } // namespace base | 49 } // namespace base |
| 47 | 50 |
| 48 #endif // BASE_RAND_UTIL_H_ | 51 #endif // BASE_RAND_UTIL_H_ |
| OLD | NEW |