php_rand.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Rasmus Lerdorf <rasmus@php.net> |
  16. | Zeev Suraski <zeev@zend.com> |
  17. | Pedro Melo <melo@ip.pt> |
  18. | Sterling Hughes <sterling@php.net> |
  19. | |
  20. | Based on code from: Shawn Cokus <Cokus@math.washington.edu> |
  21. +----------------------------------------------------------------------+
  22. */
  23. /* $Id$ */
  24. #ifndef PHP_RAND_H
  25. #define PHP_RAND_H
  26. #include <stdlib.h>
  27. #include "basic_functions.h"
  28. #include "php_lcg.h"
  29. /* System Rand functions */
  30. #ifndef RAND_MAX
  31. #define RAND_MAX (1<<15)
  32. #endif
  33. /* In ZTS mode we rely on rand_r() so we must use RAND_MAX. */
  34. #if !defined(ZTS) && (defined(HAVE_LRAND48) || defined(HAVE_RANDOM))
  35. #define PHP_RAND_MAX 2147483647
  36. #else
  37. #define PHP_RAND_MAX RAND_MAX
  38. #endif
  39. #define RAND_RANGE(__n, __min, __max, __tmax) \
  40. (__n) = (__min) + (long) ((double) ( (double) (__max) - (__min) + 1.0) * ((__n) / ((__tmax) + 1.0)))
  41. /* MT Rand */
  42. #define PHP_MT_RAND_MAX ((long) (0x7FFFFFFF)) /* (1<<31) - 1 */
  43. #ifdef PHP_WIN32
  44. #define GENERATE_SEED() (((long) (time(0) * GetCurrentProcessId())) ^ ((long) (1000000.0 * php_combined_lcg(TSRMLS_C))))
  45. #else
  46. #define GENERATE_SEED() (((long) (time(0) * getpid())) ^ ((long) (1000000.0 * php_combined_lcg(TSRMLS_C))))
  47. #endif
  48. PHPAPI void php_srand(long seed TSRMLS_DC);
  49. PHPAPI long php_rand(TSRMLS_D);
  50. PHPAPI void php_mt_srand(php_uint32 seed TSRMLS_DC);
  51. PHPAPI php_uint32 php_mt_rand(TSRMLS_D);
  52. #endif /* PHP_RAND_H */