1999-04-17 08:37:12 +08:00
|
|
|
|
/*
|
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
|
| PHP Version 5 |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
|
| Copyright (c) 1997-2004 The PHP Group |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
1999-07-16 21:13:16 +08:00
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
1999-07-16 21:13:16 +08:00
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
2003-03-18 20:06:09 +08:00
|
|
|
|
| Author: Stig S<EFBFBD>ther Bakken <ssb@php.net> |
|
1999-04-17 08:37:12 +08:00
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* $Id$ */
|
1999-04-24 04:06:01 +08:00
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
|
#include "php.h"
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#if HAVE_UNISTD_H
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-02-11 23:59:30 +08:00
|
|
|
|
#ifdef PHP_WIN32
|
1999-04-17 08:37:12 +08:00
|
|
|
|
#include "win32/time.h"
|
|
|
|
|
#else
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-01 02:05:22 +08:00
|
|
|
|
#include "php_lcg.h"
|
1999-04-17 08:37:12 +08:00
|
|
|
|
#include "uniqid.h"
|
|
|
|
|
|
2002-12-21 01:06:25 +08:00
|
|
|
|
/* {{{ proto string uniqid([string prefix , bool more_entropy])
|
2001-10-20 02:42:25 +08:00
|
|
|
|
Generates a unique ID */
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
1999-05-16 19:19:26 +08:00
|
|
|
|
PHP_FUNCTION(uniqid)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
{
|
2002-12-21 01:06:25 +08:00
|
|
|
|
char *prefix = "";
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
|
zend_bool more_entropy = 1;
|
|
|
|
|
#else
|
2001-10-20 02:26:30 +08:00
|
|
|
|
zend_bool more_entropy = 0;
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#endif
|
2002-12-21 01:06:25 +08:00
|
|
|
|
char *uniqid;
|
|
|
|
|
int sec, usec, argc, prefix_len = 0;
|
1999-04-17 08:37:12 +08:00
|
|
|
|
struct timeval tv;
|
1999-08-31 23:20:21 +08:00
|
|
|
|
|
2000-06-06 03:47:54 +08:00
|
|
|
|
argc = ZEND_NUM_ARGS();
|
2002-12-21 01:06:25 +08:00
|
|
|
|
if (zend_parse_parameters(argc TSRMLS_CC, "|sb", &prefix, &prefix_len,
|
2001-10-20 02:26:30 +08:00
|
|
|
|
&more_entropy)) {
|
|
|
|
|
return;
|
1999-08-31 23:20:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-11 23:59:30 +08:00
|
|
|
|
#if HAVE_USLEEP && !defined(PHP_WIN32)
|
2001-10-20 02:26:30 +08:00
|
|
|
|
if (!more_entropy) {
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#if defined(__CYGWIN__)
|
|
|
|
|
php_error_docref(NULL TSRMLS_CC, E_ERROR, "You must use 'more entropy' under CYGWIN.");
|
|
|
|
|
return;
|
2002-12-21 01:04:33 +08:00
|
|
|
|
#else
|
1999-08-31 23:20:21 +08:00
|
|
|
|
usleep(1);
|
2002-12-21 01:04:33 +08:00
|
|
|
|
#endif
|
1999-08-31 23:20:21 +08:00
|
|
|
|
}
|
|
|
|
|
#endif
|
1999-04-17 08:37:12 +08:00
|
|
|
|
gettimeofday((struct timeval *) &tv, (struct timezone *) NULL);
|
|
|
|
|
sec = (int) tv.tv_sec;
|
2002-12-21 00:34:42 +08:00
|
|
|
|
usec = (int) (tv.tv_usec % 0x100000);
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
|
|
/* The max value usec can have is 0xF423F, so we use only five hex
|
1999-08-31 23:20:21 +08:00
|
|
|
|
* digits for usecs.
|
1999-04-17 08:37:12 +08:00
|
|
|
|
*/
|
2001-10-20 02:26:30 +08:00
|
|
|
|
if (more_entropy) {
|
2002-12-21 01:06:25 +08:00
|
|
|
|
spprintf(&uniqid, 0, "%s%08x%05x%.8f", prefix, sec, usec, php_combined_lcg(TSRMLS_C) * 10);
|
1999-08-31 23:20:21 +08:00
|
|
|
|
} else {
|
2002-12-21 01:06:25 +08:00
|
|
|
|
spprintf(&uniqid, 0, "%s%08x%05x", prefix, sec, usec);
|
1999-08-31 23:20:21 +08:00
|
|
|
|
}
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
2002-12-21 01:06:25 +08:00
|
|
|
|
RETURN_STRING(uniqid, 0);
|
1999-04-17 08:37:12 +08:00
|
|
|
|
}
|
2002-12-21 00:34:42 +08:00
|
|
|
|
#endif
|
1999-04-17 08:37:12 +08:00
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Local variables:
|
|
|
|
|
* tab-width: 4
|
|
|
|
|
* c-basic-offset: 4
|
|
|
|
|
* End:
|
2001-09-09 21:29:31 +08:00
|
|
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
|
|
|
* vim<600: sw=4 ts=4
|
1999-04-17 08:37:12 +08:00
|
|
|
|
*/
|