1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #include "php.h"
- #include <stdlib.h>
- #if HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #include <string.h>
- #include <errno.h>
- #include <stdio.h>
- #ifdef PHP_WIN32
- #include "win32/time.h"
- #else
- #include <sys/time.h>
- #endif
- #include "php_lcg.h"
- #include "uniqid.h"
- #ifdef HAVE_GETTIMEOFDAY
- ZEND_TLS struct timeval prev_tv = { 0, 0 };
- PHP_FUNCTION(uniqid)
- {
- char *prefix = "";
- zend_bool more_entropy = 0;
- zend_string *uniqid;
- int sec, usec;
- size_t prefix_len = 0;
- struct timeval tv;
- ZEND_PARSE_PARAMETERS_START(0, 2)
- Z_PARAM_OPTIONAL
- Z_PARAM_STRING(prefix, prefix_len)
- Z_PARAM_BOOL(more_entropy)
- ZEND_PARSE_PARAMETERS_END();
-
- do {
- (void)gettimeofday((struct timeval *) &tv, (struct timezone *) NULL);
- } while (tv.tv_sec == prev_tv.tv_sec && tv.tv_usec == prev_tv.tv_usec);
- prev_tv.tv_sec = tv.tv_sec;
- prev_tv.tv_usec = tv.tv_usec;
- sec = (int) tv.tv_sec;
- usec = (int) (tv.tv_usec % 0x100000);
-
- if (more_entropy) {
- uniqid = strpprintf(0, "%s%08x%05x%.8F", prefix, sec, usec, php_combined_lcg() * 10);
- } else {
- uniqid = strpprintf(0, "%s%08x%05x", prefix, sec, usec);
- }
- RETURN_STR(uniqid);
- }
- #endif
|